@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 500;
  color: #080808;
  background: url(../images/common/bg.jpg) center center/cover repeat; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1326px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 18px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

main {
  padding-top: 80px; }
  @media only screen and (max-width: 767px) {
    main {
      padding-top: 60px; } }

.contact-area {
  background: #55A4CE;
  color: #fff;
  padding: 48px 0 80px; }
  @media only screen and (max-width: 767px) {
    .contact-area {
      padding: 40px 0 52px; } }
  .contact-area .inner {
    max-width: 1274px;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .contact-area .inner {
        display: block; } }
  .contact-area .c-head {
    width: 50%;
    margin-top: 4px; }
    @media only screen and (max-width: 767px) {
      .contact-area .c-head {
        width: 100%;
        margin-top: 0; } }
    .contact-area .c-head .c-title02 .en {
      color: #D9D9D9;
      -webkit-text-stroke: 1px #D9D9D9;
      text-stroke: 1px #D9D9D9; }
  .contact-area__banner {
    width: 45.30988275%; }
    @media only screen and (max-width: 767px) {
      .contact-area__banner {
        width: 100%; } }
    .contact-area__banner .banner {
      display: block;
      height: 240px;
      position: relative;
      margin-top: 32px; }
      @media only screen and (max-width: 767px) {
        .contact-area__banner .banner {
          margin-top: 20px;
          height: 150px; } }
      @media only screen and (max-width: 767px) {
        .contact-area__banner .banner:first-of-type {
          margin-top: 16px; } }
      .contact-area__banner .banner:hover .image img {
        transform: scale(1.1); }
      .contact-area__banner .banner .image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden; }
        .contact-area__banner .banner .image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center;
          transition: transform .3s; }
      .contact-area__banner .banner span {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.6;
        font-weight: 700;
        position: absolute;
        right: 16px;
        bottom: 22px;
        display: flex;
        align-items: center;
        justify-content: flex-end; }
        @media only screen and (max-width: 767px) {
          .contact-area__banner .banner span {
            font-size: 12px;
            font-size: 1.2rem;
            right: 13px;
            bottom: 11px; } }
        .contact-area__banner .banner span i {
          margin-left: 5px; }
          @media only screen and (max-width: 767px) {
            .contact-area__banner .banner span i {
              width: 15px;
              margin-left: 3px; } }
          .contact-area__banner .banner span i img {
            display: block; }

.footer {
  padding: 0px 0 52px; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 0 0 18px; } }
  .footer .inner {
    max-width: 100%;
    padding: 0 60px; }
    @media only screen and (max-width: 767px) {
      .footer .inner {
        padding: 0 18px; } }
  .footer__top {
    display: flex;
    justify-content: space-between;
    padding-top: 49px;
    padding-bottom: 39px; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 28px 0 29px; } }
  .footer__logo {
    display: block;
    width: 138px;
    transition: opacity .3s; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        width: 126px; } }
    .footer__logo:hover {
      opacity: 0.6; }
  .footer__list {
    margin-top: -4px; }
    .footer__list li {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.71428571;
      font-weight: 500;
      margin-bottom: 12px; }
      @media only screen and (max-width: 767px) {
        .footer__list li {
          font-size: 10px;
          font-size: 1rem;
          margin-bottom: 8px; } }
      .footer__list li:last-of-type {
        margin-bottom: 0; }
      .footer__list li a {
        transition: opacity .3s; }
        .footer__list li a:hover {
          opacity: 0.6; }
  .footer__bottom {
    border-top: 1px solid #B7B7B7;
    padding-top: 11px;
    display: flex;
    justify-content: space-between;
    padding-right: 20px; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        padding-top: 16px;
        padding-right: 0; } }
  .footer__copyright {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 300;
    font-family: "din-2014", sans-serif; }
    @media only screen and (max-width: 767px) {
      .footer__copyright {
        font-size: 10px;
        font-size: 1rem; } }
  .footer__privacy-policy {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
    transition: opacity .3s; }
    @media only screen and (max-width: 767px) {
      .footer__privacy-policy {
        font-size: 10px;
        font-size: 1rem; } }
    .footer__privacy-policy:hover {
      opacity: 0.6; }

.header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  padding: 0 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  z-index: 99;
  transition: background-color .3s,  color .3s, transform .3s, opacity .3s; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 48px;
      padding: 0 8px 0 17px; } }
  .header.downMove {
    transform: translate(0, 0); }
  .header.upMove {
    transform: translate(0, -80px); }
    @media only screen and (max-width: 767px) {
      .header.upMove {
        transform: translate(0, -48px); } }
  .header.white {
    color: #000;
    background: #fff; }
    .header.white .header__logo .white {
      opacity: 0; }
    .header.white .header__logo .black {
      opacity: 1; }
    .header.white .gnav .btn {
      filter: none; }
    .header.white .hamburger .hamburger__inner span {
      background: #000; }
  .header.is-active {
    color: #000;
    transform: translate(0, 0) !important; }
    .header.is-active .header__logo .white {
      opacity: 0; }
    .header.is-active .header__logo .black {
      opacity: 0; }
    .header.is-active .header__logo .white-sp {
      opacity: 1; }
    .header.is-active .hamburger .hamburger__inner span {
      background: #fff; }
  .header__logo {
    display: block;
    width: 164px;
    position: relative;
    transition: opacity .3s;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 109px; } }
    .header__logo:hover {
      opacity: 0.6; }
    .header__logo img {
      transition: opacity .3s; }
    .header__logo .black {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
    .header__logo .white-sp {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
  .header .gnav {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
        background: #55A4CE;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        color: #fff;
        padding: 133px 36px; } }
    @media only screen and (max-width: 767px) {
      .header .gnav.is-active {
        opacity: 1;
        visibility: visible; } }
    .header .gnav__list {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-right: 22px; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list {
          display: block;
          margin-right: 0;
          width: 180px; } }
      .header .gnav__list li {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        font-weight: 700;
        margin-left: 32px; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.71385542;
            font-weight: 500;
            margin: 0 0 20px; } }
        .header .gnav__list li a {
          transition: opacity .3s; }
          .header .gnav__list li a:hover {
            opacity: 0.6; }
    .header .gnav .btn-col {
      display: flex;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .header .gnav .btn-col {
          margin-top: 58px;
          justify-content: space-between;
          width: 100%; } }
    .header .gnav .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 34px;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      font-weight: 700;
      margin-left: 10px;
      filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
      transition: color .3s, background-color .3s; }
      @media only screen and (max-width: 767px) {
        .header .gnav .btn {
          font-size: 13px;
          font-size: 1.3rem;
          height: 40px;
          margin: 0;
          filter: none; } }
      @media only screen and (max-width: 767px) {
        .header .gnav .btn:first-of-type {
          margin-left: 0; } }
      .header .gnav .btn.blue {
        width: 132px;
        color: #fff;
        background: #55A4CE; }
        @media only screen and (max-width: 767px) {
          .header .gnav .btn.blue {
            width: 50.330033%;
            color: #55A4CE;
            background: #fff; } }
        .header .gnav .btn.blue:hover {
          background: #8BC5E4; }
      .header .gnav .btn.white {
        width: 120px;
        background: #fff;
        color: #080808;
        border: 1px solid #55A4CE; }
        @media only screen and (max-width: 767px) {
          .header .gnav .btn.white {
            width: 45.54455446%;
            background: none;
            color: #fff;
            border: 1px solid #fff; } }
        .header .gnav .btn.white:hover {
          color: #B4B4B4; }

.cv-btn {
  position: fixed;
  bottom: 40px;
  right: 0;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s; }
  .cv-btn.show {
    opacity: 1;
    visibility: visible; }
  .cv-btn .btn {
    width: 40px;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    padding-left: 1px;
    transition: color .3s, background-color .3s; }
    .cv-btn .btn.blue {
      background: #55A4CE;
      color: #fff; }
      .cv-btn .btn.blue:hover {
        background: #8BC5E4; }
    .cv-btn .btn.white {
      border: 1px solid #55A4CE;
      background: #ffff; }
      .cv-btn .btn.white:hover {
        color: #B4B4B4; }

.hamburger {
  width: 40px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101; }
  .hamburger.is-active .hamburger__inner span {
    background: #fff; }
    .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
      transform: rotate(135deg);
      top: 7px; }
    .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
      width: 0; }
    .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
      transform: rotate(-135deg);
      bottom: 7px; }
  .hamburger__inner {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .hamburger__inner span {
      width: 20px;
      height: 2px;
      display: block;
      background: #fff;
      transition: transform .3s, top .3s, bottom .3s, width .3s, background-color .3s;
      position: relative; }
      .hamburger__inner span:nth-of-type(2) {
        position: absolute;
        top: 7px;
        right: 0; }

.c-title02 .en {
  font-size: 120px;
  font-size: 12rem;
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  line-height: 1.25;
  display: block;
  margin-left: -0.05em;
  word-break: break-all; }
  @media only screen and (max-width: 1366px) {
    .c-title02 .en {
      font-size: 8.78477306vw; } }
  @media only screen and (max-width: 767px) {
    .c-title02 .en {
      font-size: 60px;
      font-size: 6rem;
      line-height: 1.2; } }
  .c-title02 .en.stroke {
    color: #D9D9D9;
    -webkit-text-stroke: 1px #B7B7B7;
    text-stroke: 1px #B7B7B7; }

.c-title02 .jp {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 600;
  display: block; }
  @media only screen and (max-width: 767px) {
    .c-title02 .jp {
      font-size: 16px;
      font-size: 1.6rem; } }
  .c-title02 .jp strong {
    font-size: 40px;
    font-size: 4rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
    font-feature-settings: "palt"; }
    @media only screen and (max-width: 767px) {
      .c-title02 .jp strong {
        font-size: 24px;
        font-size: 2.4rem; } }

.c-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.83333333; } }

.c-head .c-text01 {
  margin-top: 16px; }
  @media only screen and (max-width: 767px) {
    .c-head .c-text01 {
      margin-top: 4px; } }

.c-main-visual {
  width: 100%;
  height: 453px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-main-visual {
      height: 226px; } }
  .c-main-visual .inner {
    max-width: 1282px;
    height: 100%;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .c-main-visual .inner {
        padding-bottom: 20px; } }
  .c-main-visual .c-title02 {
    position: relative;
    color: #fff; }
    .c-main-visual .c-title02 .en {
      line-height: 1.15; }
  .c-main-visual__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .c-main-visual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }

.c-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 500;
  padding: 16px 0; }
  @media only screen and (max-width: 767px) {
    .c-breadcrumb {
      padding: 12px 0;
      font-size: 11px;
      font-size: 1.1rem; } }
  .c-breadcrumb li {
    margin-right: 7px;
    display: flex;
    align-items: center; }
    .c-breadcrumb li a {
      white-space: nowrap; }
    .c-breadcrumb li:last-of-type {
      margin-right: 0; }
      .c-breadcrumb li:last-of-type span {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1; }
      .c-breadcrumb li:last-of-type:after {
        content: none; }
    .c-breadcrumb li:after {
      content: "";
      width: 4px;
      height: 8px;
      display: inline-block;
      background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
      margin-left: 7px; }
    .c-breadcrumb li span {
      color: #A3A3A3; }

.c-more {
  display: flex;
  align-items: center;
  width: max-content;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2;
  font-weight: 500;
  padding-bottom: 2px; }
  @media only screen and (max-width: 767px) {
    .c-more {
      font-size: 10px;
      font-size: 1rem;
      padding-bottom: 1px; } }
  .c-more:hover:after {
    transform: scaleX(0);
    transform-origin: right; }
  .c-more.prev:before {
    order: 1;
    margin: 0 7px 0 0;
    transform: rotate(180deg); }
  .c-more:before {
    content: "";
    width: 6px;
    height: 11px;
    display: inline-block;
    background: url(../images/common/arrow_right_2.svg) center center/cover no-repeat;
    order: 2;
    margin-left: 7px; }
    @media only screen and (max-width: 767px) {
      .c-more:before {
        width: 3px;
        height: 6px;
        margin-left: 5px; } }
  .c-more span {
    order: 1; }
  .c-more:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0px;
    transition: transform .3s;
    transform: scaleX(1);
    transform-origin: left; }

.c-sp-slider {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .c-sp-slider {
      overflow: visible; } }
  @media only screen and (max-width: 767px) {
    .c-sp-slider .c-interview-list {
      margin-top: 0;
      display: flex;
      flex-wrap: nowrap; } }
  @media only screen and (max-width: 767px) {
    .c-sp-slider .c-interview-list li {
      margin-top: 0;
      border-left: 1px solid #B7B7B7;
      width: 283px; } }
  @media only screen and (max-width: 767px) {
    .c-sp-slider .c-interview-list li a {
      display: block;
      padding: 0 22px; } }
  @media only screen and (max-width: 767px) {
    .c-sp-slider .c-interview-list li a .image .logo {
      width: 83px; } }

.c-interview-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 38px; }
  @media only screen and (max-width: 767px) {
    .c-interview-list {
      display: block;
      margin-top: 32px; } }
  .c-interview-list li {
    width: 29.60470984%;
    margin-right: 5.59293524%;
    margin-top: 4.79394449%; }
    @media only screen and (max-width: 767px) {
      .c-interview-list li {
        width: 100%;
        margin: 40px 0 0; } }
    @media only screen and (max-width: 767px) {
      .c-interview-list li:first-of-type {
        margin-top: 0; } }
    @media only screen and (min-width: 768px) {
      .c-interview-list li:nth-of-type(3n) {
        margin-right: 0; } }
    @media only screen and (min-width: 768px) {
      .c-interview-list li:nth-of-type(-n + 3) {
        margin-top: 0; } }
    .c-interview-list li a:hover .image > img {
      transform: scale(1.1); }
    .c-interview-list li a .image {
      padding-top: 71.02272727%;
      position: relative;
      overflow: hidden; }
      .c-interview-list li a .image > img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center center;
        transition: transform .3s; }
      .c-interview-list li a .image .logo {
        width: 122px;
        position: absolute;
        right: 3px;
        bottom: 3px; }
        @media only screen and (max-width: 767px) {
          .c-interview-list li a .image .logo {
            width: 117px; } }
    .c-interview-list li a .text {
      margin-top: 17px; }
      @media only screen and (max-width: 767px) {
        .c-interview-list li a .text {
          margin-top: 12px; } }
      .c-interview-list li a .text .title {
        display: block;
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.6;
        font-weight: 700;
        margin-bottom: 1px; }
        @media only screen and (max-width: 767px) {
          .c-interview-list li a .text .title {
            font-size: 12px;
            font-size: 1.2rem; } }
      .c-interview-list li a .text .assignment {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.71428571;
        font-weight: 500;
        margin-bottom: 1px; }
        @media only screen and (max-width: 767px) {
          .c-interview-list li a .text .assignment {
            font-size: 10px;
            font-size: 1rem;
            line-height: 1.77777778; } }
      .c-interview-list li a .text .company {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.71428571;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          .c-interview-list li a .text .company {
            font-size: 10px;
            font-size: 1rem;
            line-height: 1.77777778; } }

.c-submit {
  width: 100%;
  max-width: 359px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 4px;
  background: #000;
  color: #fff;
  transition: color .3s, background-color .3s;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .c-submit {
      height: 46px;
      font-size: 17px;
      font-size: 1.7rem;
      border-radius: 3px; } }
  .c-submit:hover {
    background: #55A4CE; }

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 110px; }
  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 50px; } }
  .wp-pagenavi span, .wp-pagenavi a {
    border: none;
    width: auto;
    height: auto;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.75;
    font-weight: 500;
    margin: 0 10px;
    color: #A6A6A6; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi span, .wp-pagenavi a {
        font-size: 17px;
        font-size: 1.7rem;
        margin: 0 12px; } }
  .wp-pagenavi .current {
    color: #000037; }
  .wp-pagenavi .previouspostslink {
    margin-right: 16px; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .previouspostslink {
        margin-right: 18px; } }
    .wp-pagenavi .previouspostslink .prev {
      width: 9px;
      height: 14px;
      position: relative; }
      .wp-pagenavi .previouspostslink .prev:before {
        content: "";
        width: 9px;
        height: 14px;
        display: inline-block;
        background: url(../images/common/arrow_left.svg) center center/cover no-repeat;
        transform: rotate(0deg);
        position: absolute;
        top: 0;
        left: 0; }
  .wp-pagenavi .nextpostslink {
    margin-left: 16px; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .nextpostslink {
        margin-left: 18px; } }
    .wp-pagenavi .nextpostslink .next {
      width: 9px;
      height: 14px;
      position: relative; }
      .wp-pagenavi .nextpostslink .next:before {
        content: "";
        width: 9px;
        height: 14px;
        display: inline-block;
        background: url(../images/common/arrow_left.svg) center center/cover no-repeat;
        transform: rotate(180deg);
        position: absolute;
        top: 0;
        left: 0; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.case-study_detail main {
  overflow: hidden; }

body.case-study_detail .whole .inner {
  padding: 0 64px;
  max-width: 1326px; }
  @media only screen and (max-width: 767px) {
    body.case-study_detail .whole .inner {
      padding: 0 18px; } }

body.case-study_detail .whole__cont {
  padding: 116px 0 160px; }
  @media only screen and (max-width: 767px) {
    body.case-study_detail .whole__cont {
      padding: 28px 0 60px; } }
  body.case-study_detail .whole__cont > dl {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.case-study_detail .whole__cont > dl {
        display: block; } }
    body.case-study_detail .whole__cont > dl > dt {
      color: #55A4CE;
      width: 36.8729097%;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.case-study_detail .whole__cont > dl > dt {
          width: 100%;
          padding-right: 0; } }
      body.case-study_detail .whole__cont > dl > dt .c-title02 {
        margin-top: 0px; }
        body.case-study_detail .whole__cont > dl > dt .c-title02 .en {
          line-height: 0.88;
          margin-bottom: 12px; }
      body.case-study_detail .whole__cont > dl > dt .info {
        background: #fff;
        max-width: 334px;
        margin-top: 70px; }
        @media only screen and (max-width: 767px) {
          body.case-study_detail .whole__cont > dl > dt .info {
            max-width: 100%;
            margin-top: 40px;
            margin-bottom: 36px; } }
        @media only screen and (max-width: 767px) {
          body.case-study_detail .whole__cont > dl > dt .info .logo {
            width: 167px; } }
        body.case-study_detail .whole__cont > dl > dt .info__cont {
          padding: 16px 34px 38px; }
          @media only screen and (max-width: 767px) {
            body.case-study_detail .whole__cont > dl > dt .info__cont {
              padding: 7px 14px 14px; } }
          body.case-study_detail .whole__cont > dl > dt .info__cont dl {
            display: block;
            margin-bottom: 16px; }
            @media only screen and (max-width: 767px) {
              body.case-study_detail .whole__cont > dl > dt .info__cont dl {
                margin-bottom: 8px; } }
            body.case-study_detail .whole__cont > dl > dt .info__cont dl:last-of-type {
              margin-bottom: 0; }
            body.case-study_detail .whole__cont > dl > dt .info__cont dl dt {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.71428571;
              font-weight: 500;
              color: #3C90BD;
              display: block; }
              @media only screen and (max-width: 767px) {
                body.case-study_detail .whole__cont > dl > dt .info__cont dl dt {
                  font-size: 10px;
                  font-size: 1rem;
                  line-height: 1.77777778; } }
            body.case-study_detail .whole__cont > dl > dt .info__cont dl dd {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.71428571;
              font-weight: 500;
              display: block;
              color: #080808; }
              @media only screen and (max-width: 767px) {
                body.case-study_detail .whole__cont > dl > dt .info__cont dl dd {
                  font-size: 10px;
                  font-size: 1rem;
                  line-height: 1.77777778; } }
    body.case-study_detail .whole__cont > dl > dd {
      width: 63.1270903%; }
      @media only screen and (max-width: 767px) {
        body.case-study_detail .whole__cont > dl > dd {
          width: 100%; } }
      body.case-study_detail .whole__cont > dl > dd .news-list li {
        border-top: 1px solid #CBCBCB; }
        body.case-study_detail .whole__cont > dl > dd .news-list li:last-of-type {
          border-bottom: 1px solid #CBCBCB; }
        body.case-study_detail .whole__cont > dl > dd .news-list li a {
          display: flex;
          align-items: center;
          padding: 18px 0 16px; }
          body.case-study_detail .whole__cont > dl > dd .news-list li a .date {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            font-weight: 500;
            width: 87px; }
          body.case-study_detail .whole__cont > dl > dd .news-list li a .title {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 2;
            font-weight: 500;
            width: calc(100% - 87px);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap; }
      body.case-study_detail .whole__cont > dl > dd .post {
        margin-bottom: 93px; }
        @media only screen and (max-width: 767px) {
          body.case-study_detail .whole__cont > dl > dd .post {
            margin-bottom: 20px; } }
        body.case-study_detail .whole__cont > dl > dd .post .head {
          margin-bottom: 32px;
          padding-bottom: 32px;
          border-bottom: 1px solid #CBCBCB; }
          @media only screen and (max-width: 767px) {
            body.case-study_detail .whole__cont > dl > dd .post .head {
              padding-bottom: 8px;
              margin-bottom: 36px; } }
          body.case-study_detail .whole__cont > dl > dd .post .head .title {
            font-size: 40px;
            font-size: 4rem;
            line-height: 1.5;
            font-weight: 700; }
            @media only screen and (max-width: 767px) {
              body.case-study_detail .whole__cont > dl > dd .post .head .title {
                font-size: 24px;
                font-size: 2.4rem; } }
        body.case-study_detail .whole__cont > dl > dd .post img {
          width: 100%;
          margin-bottom: 48px; }
          @media only screen and (max-width: 767px) {
            body.case-study_detail .whole__cont > dl > dd .post img {
              margin-bottom: 28px; } }
        body.case-study_detail .whole__cont > dl > dd .post .content {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.case-study_detail .whole__cont > dl > dd .post .content {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.83333333; } }
          body.case-study_detail .whole__cont > dl > dd .post .content .block {
            margin-bottom: 48px; }
            @media only screen and (max-width: 767px) {
              body.case-study_detail .whole__cont > dl > dd .post .content .block {
                margin-bottom: 40px; } }
          body.case-study_detail .whole__cont > dl > dd .post .content h2 {
            font-size: 24px;
            font-size: 2.4rem;
            line-height: 1.6;
            font-weight: 600;
            border-left: 6px solid #55A4CE;
            color: #55A4CE;
            padding-left: 17px;
            margin-bottom: 18px; }
            @media only screen and (max-width: 767px) {
              body.case-study_detail .whole__cont > dl > dd .post .content h2 {
                font-size: 16px;
                font-size: 1.6rem;
                padding-left: 10px;
                border-left: 3px solid #55A4CE;
                margin-bottom: 10px; } }
          body.case-study_detail .whole__cont > dl > dd .post .content p {
            margin-bottom: 19px; }
            @media only screen and (max-width: 767px) {
              body.case-study_detail .whole__cont > dl > dd .post .content p {
                margin-bottom: 10px; } }
      @media only screen and (max-width: 767px) {
        body.case-study_detail .whole__cont > dl > dd .c-more {
          margin: 0 auto; } }

body.case-study_detail .other {
  padding-top: 64px;
  padding-bottom: 140px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.case-study_detail .other {
      padding: 20px 0 44px; } }
  body.case-study_detail .other:before {
    content: "";
    width: calc(100% - 80px);
    max-width: 1246px;
    height: 1px;
    display: block;
    background: #B7B7B7;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%); }
    @media only screen and (max-width: 767px) {
      body.case-study_detail .other:before {
        width: calc(100% - 36px); } }
  body.case-study_detail .other .sub-title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: 600;
    display: block;
    margin-bottom: 38px;
    padding-left: 24px; }
    @media only screen and (max-width: 767px) {
      body.case-study_detail .other .sub-title {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 16px;
        padding-left: 0; } }
  body.case-study_detail .other .c-interview-list {
    padding: 0 24px; }
    @media only screen and (max-width: 767px) {
      body.case-study_detail .other .c-interview-list {
        padding: 0;
        margin: 0; } }

body.case-study main {
  padding-top: 0; }

@media only screen and (max-width: 767px) {
  body.case-study .c-main-visual .c-title02 .en {
    line-height: 1; } }

body.case-study .whole .c-breadcrumb {
  padding-left: 24px; }
  @media only screen and (max-width: 767px) {
    body.case-study .whole .c-breadcrumb {
      padding-left: 0; } }

body.case-study .whole .sub-title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    body.case-study .whole .sub-title {
      font-size: 16px;
      font-size: 1.6rem; } }

body.case-study .whole .coming-soon {
  padding: 190px 0;
  text-align: center;
  font-size: 62px;
  font-size: 6.2rem;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  color: #D9D9D9; }
  @media only screen and (max-width: 767px) {
    body.case-study .whole .coming-soon {
      padding: 95px 0;
      font-size: 31px;
      font-size: 3.1rem; } }

body.case-study .whole .interview {
  padding: 64px 24px 121px;
  border-bottom: 1px solid #B7B7B7;
  border: none; }
  @media only screen and (max-width: 767px) {
    body.case-study .whole .interview {
      padding: 38px 0 100px; } }
  body.case-study .whole .interview .c-more {
    margin: 86px auto 0; }

body.case-study .whole .other {
  padding: 64px 24px 160px; }
  @media only screen and (max-width: 767px) {
    body.case-study .whole .other {
      padding: 38px 0 100px; } }
  body.case-study .whole .other .c-more {
    margin: 96px auto 0; }
  body.case-study .whole .other .sub-title {
    margin-bottom: 66px; }
    @media only screen and (max-width: 767px) {
      body.case-study .whole .other .sub-title {
        margin-bottom: 40px; } }
  body.case-study .whole .other .other-list {
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.case-study .whole .other .other-list {
        display: block; } }
    body.case-study .whole .other .other-list > li {
      width: 29.68881413%;
      margin-right: 5.4667788%;
      margin-top: 5.5508831%; }
      @media only screen and (max-width: 767px) {
        body.case-study .whole .other .other-list > li {
          width: 100%;
          margin: 40px 0 0; } }
      @media only screen and (max-width: 767px) {
        body.case-study .whole .other .other-list > li:first-of-type {
          margin-top: 0; } }
      @media only screen and (min-width: 768px) {
        body.case-study .whole .other .other-list > li:nth-of-type(3n) {
          margin-right: 0; } }
      @media only screen and (min-width: 768px) {
        body.case-study .whole .other .other-list > li:nth-of-type(-n + 3) {
          margin-top: 0; } }
      body.case-study .whole .other .other-list > li .title {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.3;
        font-weight: 700;
        padding-left: 10px;
        border-left: 6px solid #55A4CE;
        display: block;
        margin-bottom: 28px; }
        @media only screen and (max-width: 767px) {
          body.case-study .whole .other .other-list > li .title {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.6;
            padding-left: 15px;
            margin-bottom: 12px; } }
      body.case-study .whole .other .other-list > li dl {
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          body.case-study .whole .other .other-list > li dl {
            margin-bottom: 6px; } }
        body.case-study .whole .other .other-list > li dl:last-of-type {
          margin-bottom: 0; }
        body.case-study .whole .other .other-list > li dl dt {
          padding: 0 10px;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.714;
          font-weight: 500;
          color: #fff;
          background: #55A4CE;
          display: inline-block;
          padding-top: 2px;
          margin-bottom: 8px; }
          @media only screen and (max-width: 767px) {
            body.case-study .whole .other .other-list > li dl dt {
              font-size: 10px;
              font-size: 1rem;
              padding: 0 4px;
              margin-bottom: 4px; } }
        body.case-study .whole .other .other-list > li dl dd {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.71428571;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.case-study .whole .other .other-list > li dl dd {
              font-size: 10px;
              font-size: 1rem;
              line-height: 1.77777778; } }
          body.case-study .whole .other .other-list > li dl dd strong {
            font-size: 20px;
            font-size: 2rem;
            line-height: 1.6;
            font-weight: 700;
            color: #3C90BD; }
            @media only screen and (max-width: 767px) {
              body.case-study .whole .other .other-list > li dl dd strong {
                font-size: 12px;
                font-size: 1.2rem; } }
          body.case-study .whole .other .other-list > li dl dd ul li {
            padding-left: 20px;
            position: relative; }
            @media only screen and (max-width: 767px) {
              body.case-study .whole .other .other-list > li dl dd ul li {
                padding-left: 14px; } }
            body.case-study .whole .other .other-list > li dl dd ul li:before {
              content: "";
              width: 5px;
              height: 5px;
              display: inline-block;
              background: #000;
              border-radius: 50%;
              top: 9px;
              left: 6px;
              position: absolute; }
              @media only screen and (max-width: 767px) {
                body.case-study .whole .other .other-list > li dl dd ul li:before {
                  width: 3px;
                  height: 3px;
                  top: 7px;
                  left: 4px; } }

body.company main {
  padding-top: 0; }

body.company .title {
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.2;
  font-family: "din-2014", sans-serif;
  font-weight: 300;
  color: #D9D9D9;
  word-break: break-all; }
  @media only screen and (max-width: 1366px) {
    body.company .title {
      font-size: 5.85651537vw; } }
  @media only screen and (max-width: 767px) {
    body.company .title {
      font-size: 40px;
      font-size: 4rem;
      display: inline-block;
      border-bottom: 1px solid #D9D9D9;
      padding-bottom: 12px; } }
  body.company .title.stroke {
    -webkit-text-stroke: 1px #B7B7B7;
    text-stroke: 1px #B7B7B7; }

body.company .read .c-breadcrumb {
  padding-left: 24px; }
  @media only screen and (max-width: 767px) {
    body.company .read .c-breadcrumb {
      padding-left: 0; } }

body.company .read__cont {
  padding: 64px 24px 120px; }
  @media only screen and (max-width: 767px) {
    body.company .read__cont {
      padding: 40px 0 60px; } }
  body.company .read__cont dl {
    display: flex;
    margin-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      body.company .read__cont dl {
        display: block;
        margin-bottom: 60px; } }
    body.company .read__cont dl:last-of-type {
      margin-bottom: 0; }
    body.company .read__cont dl dt {
      width: 34.11580595%;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.company .read__cont dl dt {
          width: auto;
          padding-right: 0;
          margin-bottom: 20px; } }
    body.company .read__cont dl dd {
      width: 65.88419405%;
      padding-left: 90px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.company .read__cont dl dd {
          width: 100%;
          padding-left: 0; } }
      body.company .read__cont dl dd:before {
        content: "";
        width: 1px;
        height: calc(100% - 10px);
        display: block;
        background: #B7B7B7;
        position: absolute;
        top: 10px;
        left: 0; }
        @media only screen and (max-width: 767px) {
          body.company .read__cont dl dd:before {
            content: none; } }
      body.company .read__cont dl dd strong {
        display: block;
        font-size: 40px;
        font-size: 4rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 700;
        margin-bottom: 16px;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.company .read__cont dl dd strong {
            font-size: 24px;
            font-size: 2.4rem;
            margin-bottom: 8px; } }
        body.company .read__cont dl dd strong span {
          margin-left: -0.15em; }
      body.company .read__cont dl dd p {
        font-size: 20px;
        font-size: 2rem;
        line-height: 2.6;
        font-weight: 700;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.company .read__cont dl dd p {
            font-size: 14px;
            font-size: 1.4rem; } }
      @media only screen and (max-width: 767px) {
        body.company .read__cont dl dd ul {
          margin-top: 20px; } }
      body.company .read__cont dl dd ul li {
        margin-bottom: 40px;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.company .read__cont dl dd ul li {
            margin-bottom: 20px; } }
        body.company .read__cont dl dd ul li:last-of-type {
          margin-bottom: 0; }
        body.company .read__cont dl dd ul li .en {
          display: block;
          font-size: 41px;
          font-size: 4.1rem;
          letter-spacing: 0.05em;
          font-family: "din-2014", sans-serif;
          font-weight: 600; }
          @media only screen and (max-width: 767px) {
            body.company .read__cont dl dd ul li .en {
              font-size: 24px;
              font-size: 2.4rem; } }
        body.company .read__cont dl dd ul li .jp {
          display: block;
          font-size: 20px;
          font-size: 2rem;
          line-height: 2.6;
          font-weight: 700; }
          @media only screen and (max-width: 767px) {
            body.company .read__cont dl dd ul li .jp {
              font-size: 14px;
              font-size: 1.4rem; } }

body.company .message {
  background: #55A4CE;
  color: #fff;
  padding: 120px 0; }
  @media only screen and (max-width: 767px) {
    body.company .message {
      padding: 60px 0; } }
  body.company .message__cont {
    display: flex;
    padding: 0 24px; }
    @media only screen and (max-width: 767px) {
      body.company .message__cont {
        display: block;
        padding: 0; } }
    body.company .message__cont dt {
      width: 34.11580595%;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.company .message__cont dt {
          width: 100%;
          padding-right: 0;
          margin-bottom: 28px; } }
    body.company .message__cont dd {
      width: 65.88419405%;
      padding-left: 90px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.company .message__cont dd {
          width: 100%;
          padding-left: 0; } }
      body.company .message__cont dd:before {
        content: "";
        width: 1px;
        height: calc(100% - 10px);
        display: block;
        background: #B7B7B7;
        position: absolute;
        top: 10px;
        left: 0; }
        @media only screen and (max-width: 767px) {
          body.company .message__cont dd:before {
            content: none; } }
      body.company .message__cont dd .image {
        margin-top: 10px; }
        @media only screen and (max-width: 767px) {
          body.company .message__cont dd .image {
            margin-top: 0; } }
      body.company .message__cont dd .text {
        margin-top: 40px; }
        @media only screen and (max-width: 767px) {
          body.company .message__cont dd .text {
            margin-top: 24px; } }
        body.company .message__cont dd .text strong {
          display: block;
          font-size: 40px;
          font-size: 4rem;
          letter-spacing: 0.05em;
          line-height: 1.5;
          font-weight: 700;
          margin-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            body.company .message__cont dd .text strong {
              font-size: 24px;
              font-size: 2.4rem;
              margin-bottom: 8px; } }
        body.company .message__cont dd .text p {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          font-weight: 500;
          margin-bottom: 24px; }
          @media only screen and (max-width: 767px) {
            body.company .message__cont dd .text p {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.83333333;
              margin-bottom: 9px; } }
        body.company .message__cont dd .text .name small {
          display: block;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.71428571;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.company .message__cont dd .text .name small {
              font-size: 10px;
              font-size: 1rem;
              line-height: 1.7775571; } }
        body.company .message__cont dd .text .name span {
          display: block;
          font-size: 20px;
          font-size: 2rem;
          line-height: 1.6;
          font-weight: 700; }
          @media only screen and (max-width: 767px) {
            body.company .message__cont dd .text .name span {
              font-size: 13px;
              font-size: 1.3rem; } }

body.company .profile {
  padding: 120px 0 0; }
  @media only screen and (max-width: 767px) {
    body.company .profile {
      padding: 60px 0 0; } }
  body.company .profile__cont {
    display: flex;
    border-bottom: 1px solid #B7B7B7;
    padding: 0 24px;
    padding-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      body.company .profile__cont {
        display: block;
        padding: 0;
        padding-bottom: 60px; } }
    body.company .profile__cont dt {
      width: 34.11580595%;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.company .profile__cont dt {
          width: 100%;
          padding-right: 0;
          margin-bottom: 14px; } }
    body.company .profile__cont dd {
      width: 65.88419405%;
      padding-left: 90px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.company .profile__cont dd {
          width: 100%;
          padding-left: 0; } }
      body.company .profile__cont dd:before {
        content: "";
        width: 1px;
        height: calc(100% - 10px);
        display: block;
        background: #B7B7B7;
        position: absolute;
        top: 10px;
        left: 0; }
        @media only screen and (max-width: 767px) {
          body.company .profile__cont dd:before {
            content: none; } }
      body.company .profile__cont dd table tbody tr:last-of-type th, body.company .profile__cont dd table tbody tr:last-of-type td {
        padding-bottom: 0; }
      body.company .profile__cont dd table tbody tr th {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 500;
        width: 140px;
        vertical-align: top;
        padding: 12px 0; }
        @media only screen and (max-width: 767px) {
          body.company .profile__cont dd table tbody tr th {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.83333333;
            width: 77px;
            padding: 6px 0; } }
      body.company .profile__cont dd table tbody tr td {
        padding: 12px 0;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 500;
        width: calc(100% - 140px); }
        @media only screen and (max-width: 767px) {
          body.company .profile__cont dd table tbody tr td {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.83333333;
            width: calc(100% - 77px);
            padding: 6px 0; } }
        body.company .profile__cont dd table tbody tr td ul li {
          padding-left: 24px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.company .profile__cont dd table tbody tr td ul li {
              padding-left: 14px; } }
          body.company .profile__cont dd table tbody tr td ul li:before {
            content: "";
            width: 6px;
            height: 6px;
            display: block;
            background: #000;
            border-radius: 50%;
            position: absolute;
            top: 13px;
            left: 7px; }
            @media only screen and (max-width: 767px) {
              body.company .profile__cont dd table tbody tr td ul li:before {
                width: 4px;
                height: 4px;
                top: 9px;
                left: 4px; } }

body.company .team {
  padding: 120px 0; }
  @media only screen and (max-width: 767px) {
    body.company .team {
      padding: 60px 0; } }
  body.company .team__cont {
    padding: 0 24px; }
    @media only screen and (max-width: 767px) {
      body.company .team__cont {
        padding: 0; } }
  body.company .team__list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.company .team__list {
        margin-top: 20px;
        display: block; } }
    body.company .team__list li {
      width: 46.63865546%;
      margin-right: 6.72268908%;
      margin-top: 64px; }
      @media only screen and (max-width: 767px) {
        body.company .team__list li {
          width: 100%;
          margin-right: 0;
          margin-top: 32px; } }
      @media only screen and (min-width: 768px) {
        body.company .team__list li:nth-of-type(-n + 2) {
          margin-top: 0; } }
      @media only screen and (max-width: 767px) {
        body.company .team__list li:nth-of-type(-n + 1) {
          margin-top: 0; } }
      body.company .team__list li:nth-of-type(2n) {
        margin-right: 0; }
      body.company .team__list li .text {
        margin-top: 21px; }
        @media only screen and (max-width: 767px) {
          body.company .team__list li .text {
            margin-top: 12px; } }
        body.company .team__list li .text .name {
          display: block;
          font-size: 20px;
          font-size: 2rem;
          line-height: 1.6;
          font-weight: 700;
          margin-bottom: 1px; }
          @media only screen and (max-width: 767px) {
            body.company .team__list li .text .name {
              font-size: 12px;
              font-size: 1.2rem; } }
        body.company .team__list li .text .role {
          display: block;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.71428571;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.company .team__list li .text .role {
              font-size: 10px;
              font-size: 1rem;
              line-height: 1.77777778; } }
        body.company .team__list li .text p {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.71428571;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.company .team__list li .text p {
              font-size: 10px;
              font-size: 1rem;
              line-height: 1.77777778; } }

body.contact .contact-area {
  display: none; }

body.contact .footer__top {
  border-top: 1px solid #B7B7B7; }

body.contact .whole__cont {
  padding-top: 100px;
  padding-bottom: 366px; }
  @media only screen and (max-width: 767px) {
    body.contact .whole__cont {
      padding: 28px 0 60px; } }
  body.contact .whole__cont .c-title02 {
    color: #55A4CE;
    margin-bottom: 62px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole__cont .c-title02 {
        margin-bottom: 40px; } }
  body.contact .whole__cont .cont {
    max-width: 841px;
    margin: 0 auto; }
    body.contact .whole__cont .cont .thanks {
      text-align: center; }
      body.contact .whole__cont .cont .thanks strong {
        display: block;
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.6;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__cont .cont .thanks strong {
            font-size: 16px;
            font-size: 1.6rem; } }
      body.contact .whole__cont .cont .thanks p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 500;
        margin: 31px auto 65px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__cont .cont .thanks p {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.83333333;
            margin: 15px auto 25px; } }
      body.contact .whole__cont .cont .thanks .c-more {
        margin: 0 auto; }
    body.contact .whole__cont .cont .formArea {
      padding: 90px 78px;
      background: #FBFBFB; }
      @media only screen and (max-width: 767px) {
        body.contact .whole__cont .cont .formArea {
          padding: 20px 14px 40px; } }
      body.contact .whole__cont .cont .formArea__form .col2 {
        display: flex;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__cont .cont .formArea__form .col2 {
            display: block; } }
        body.contact .whole__cont .cont .formArea__form .col2 dl {
          width: 48.24561404%; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__cont .cont .formArea__form .col2 dl {
              width: 100%; } }
      body.contact .whole__cont .cont .formArea__form dl {
        margin-bottom: 32px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__cont .cont .formArea__form dl {
            margin-bottom: 16px; } }
        body.contact .whole__cont .cont .formArea__form dl dt {
          display: flex;
          align-items: center;
          margin-bottom: 5px; }
          body.contact .whole__cont .cont .formArea__form dl dt span {
            font-size: 13px;
            font-size: 1.3rem;
            font-weight: 500; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__cont .cont .formArea__form dl dt span {
                font-size: 12px;
                font-size: 1.2rem; } }
          body.contact .whole__cont .cont .formArea__form dl dt em {
            margin-left: 4px;
            border-radius: 2px;
            color: #fff;
            background: #55A4CE;
            font-size: 10px;
            font-size: 1rem;
            font-weight: 500;
            width: 39px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 1px; }
            @media only screen and (max-width: 767px) {
              body.contact .whole__cont .cont .formArea__form dl dt em {
                padding-top: 1px;
                padding-bottom: 0;
                margin-left: 3px; } }
        body.contact .whole__cont .cont .formArea__form dl dd input[type="text"] {
          width: 100%;
          height: 40px;
          border-radius: 2px;
          border: 1px solid #D9D9D9;
          background: #F5F5F5;
          padding: 6px 8px;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__cont .cont .formArea__form dl dd input[type="text"] {
              height: 37px;
              font-size: 13px;
              font-size: 1.3rem;
              padding: 5px 7px; } }
          body.contact .whole__cont .cont .formArea__form dl dd input[type="text"]::placeholder {
            color: #B7B7B7; }
        body.contact .whole__cont .cont .formArea__form dl dd select {
          width: 100%;
          height: 40px;
          border-radius: 2px;
          border: 1px solid #D9D9D9;
          background: #F5F5F5;
          padding: 6px 8px;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__cont .cont .formArea__form dl dd select {
              font-size: 13px;
              font-size: 1.3rem;
              padding: 5px 7px; } }
        body.contact .whole__cont .cont .formArea__form dl dd textarea {
          width: 100%;
          height: 194px;
          border-radius: 2px;
          border: 1px solid #D9D9D9;
          background: #F5F5F5;
          padding: 6px 8px;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
          font-weight: 500;
          resize: none; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__cont .cont .formArea__form dl dd textarea {
              font-size: 13px;
              font-size: 1.3rem;
              padding: 5px 7px;
              height: 180px; } }
        body.contact .whole__cont .cont .formArea__form dl dd p {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
          margin-top: 14px;
          padding-left: 8px;
          padding-bottom: 14px; }
          @media only screen and (max-width: 767px) {
            body.contact .whole__cont .cont .formArea__form dl dd p {
              font-size: 13px;
              font-size: 1.3rem;
              padding-left: 7px;
              padding-bottom: 10px; } }
      body.contact .whole__cont .cont .formArea__form .agree {
        font-size: 10px;
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        margin: 65px auto 32px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__cont .cont .formArea__form .agree {
            margin: 40px auto 27px; } }
        body.contact .whole__cont .cont .formArea__form .agree a {
          text-decoration: underline; }
      body.contact .whole__cont .cont .formArea__form .c-submit.confirm {
        margin-top: 270px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole__cont .cont .formArea__form .c-submit.confirm {
            margin-top: 50px; } }

body.news .whole .inner {
  padding: 0 64px;
  max-width: 1326px; }
  @media only screen and (max-width: 767px) {
    body.news .whole .inner {
      padding: 0 18px; } }

body.news .whole__cont {
  padding: 116px 0 214px; }
  @media only screen and (max-width: 767px) {
    body.news .whole__cont {
      padding: 40px 0 100px; } }
  body.news .whole__cont dl {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.news .whole__cont dl {
        display: block; } }
    body.news .whole__cont dl dt {
      color: #55A4CE;
      width: 36.8729097%;
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        body.news .whole__cont dl dt {
          width: 100%;
          padding-right: 0;
          margin-bottom: 40px; } }
      body.news .whole__cont dl dt .c-title02 {
        margin-top: -28px; }
    body.news .whole__cont dl dd {
      width: 63.1270903%; }
      @media only screen and (max-width: 767px) {
        body.news .whole__cont dl dd {
          width: 100%; } }
      body.news .whole__cont dl dd .news-list li {
        border-top: 1px solid #CBCBCB; }
        body.news .whole__cont dl dd .news-list li:last-of-type {
          border-bottom: 1px solid #CBCBCB; }
        body.news .whole__cont dl dd .news-list li a {
          display: flex;
          align-items: center;
          padding: 18px 0 16px; }
          @media only screen and (max-width: 767px) {
            body.news .whole__cont dl dd .news-list li a {
              padding: 9px 0 8px;
              align-items: flex-start; } }
          body.news .whole__cont dl dd .news-list li a .date {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            font-weight: 500;
            width: 87px; }
            @media only screen and (max-width: 767px) {
              body.news .whole__cont dl dd .news-list li a .date {
                font-size: 10px;
                font-size: 1rem;
                width: 83px;
                padding-left: 8px;
                margin-top: 3px; } }
          body.news .whole__cont dl dd .news-list li a .title {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 2;
            font-weight: 500;
            width: calc(100% - 87px); }
            @media only screen and (min-width: 768px) {
              body.news .whole__cont dl dd .news-list li a .title {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap; } }
            @media only screen and (max-width: 767px) {
              body.news .whole__cont dl dd .news-list li a .title {
                font-size: 12px;
                font-size: 1.2rem;
                line-height: 1.83333333;
                width: calc(100% - 83px);
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 2; } }
      body.news .whole__cont dl dd .post {
        margin-bottom: 75px; }
        @media only screen and (max-width: 767px) {
          body.news .whole__cont dl dd .post {
            margin-bottom: 60px; } }
        body.news .whole__cont dl dd .post .head {
          margin-bottom: 32px;
          padding-bottom: 32px;
          border-bottom: 1px solid #CBCBCB; }
          @media only screen and (max-width: 767px) {
            body.news .whole__cont dl dd .post .head {
              padding-bottom: 8px;
              margin-bottom: 20px; } }
          body.news .whole__cont dl dd .post .head .date {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            font-weight: 500;
            display: block;
            margin-bottom: 12px; }
            @media only screen and (max-width: 767px) {
              body.news .whole__cont dl dd .post .head .date {
                font-size: 10px;
                font-size: 1rem;
                margin-bottom: 6px; } }
          body.news .whole__cont dl dd .post .head .title {
            font-size: 24px;
            font-size: 2.4rem;
            line-height: 1.6;
            font-weight: 600; }
            @media only screen and (max-width: 767px) {
              body.news .whole__cont dl dd .post .head .title {
                font-size: 16px;
                font-size: 1.6rem; } }
        body.news .whole__cont dl dd .post img {
          width: 100%;
          margin-bottom: 40px; }
          @media only screen and (max-width: 767px) {
            body.news .whole__cont dl dd .post img {
              margin-bottom: 16px; } }
        body.news .whole__cont dl dd .post .content {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.news .whole__cont dl dd .post .content {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.83333333; } }
      @media only screen and (max-width: 767px) {
        body.news .whole__cont dl dd .c-more {
          margin: 0 auto; } }

body.privacy-policy .whole__cont {
  padding-top: 100px;
  padding-bottom: 234px; }
  @media only screen and (max-width: 767px) {
    body.privacy-policy .whole__cont {
      padding-top: 28px;
      padding-bottom: 60px; } }
  body.privacy-policy .whole__cont .c-title02 {
    color: #55A4CE;
    margin-bottom: 62px; }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .whole__cont .c-title02 {
        margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .whole__cont .c-title02 .en {
        line-height: 1; } }
  body.privacy-policy .whole__cont .cont {
    max-width: 755px;
    margin: 0 auto;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71428571;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .whole__cont .cont {
        font-size: 10px;
        font-size: 1rem;
        line-height: 1.77777778; } }
    body.privacy-policy .whole__cont .cont dl {
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        body.privacy-policy .whole__cont .cont dl {
          margin-top: 20px; } }
      body.privacy-policy .whole__cont .cont dl dt {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.6;
        font-weight: 700;
        margin-bottom: 8px; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole__cont .cont dl dt {
            font-size: 12px;
            font-size: 1.2rem;
            margin-bottom: 4px; } }
      body.privacy-policy .whole__cont .cont dl dd ul li {
        padding-left: 20px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole__cont .cont dl dd ul li {
            padding-left: 14px; } }
        body.privacy-policy .whole__cont .cont dl dd ul li:before {
          content: "";
          width: 5px;
          height: 5px;
          display: inline-block;
          background: #000;
          border-radius: 50%;
          top: 9px;
          left: 6px;
          position: absolute; }
          @media only screen and (max-width: 767px) {
            body.privacy-policy .whole__cont .cont dl dd ul li:before {
              width: 3px;
              height: 3px;
              left: 5px;
              top: 7px; } }

body.top main {
  padding-top: 0; }
  body.top main .inner {
    max-width: 1326px; }

body.top .c-wrap {
  padding: 0 24px;
  border-bottom: 1px solid #B7B7B7; }
  @media only screen and (max-width: 767px) {
    body.top .c-wrap {
      padding: 0 0px; } }

body.top .main-visual {
  width: 100%;
  height: 738px;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      height: 597px; } }
  body.top .main-visual:before {
    content: "";
    width: 100%;
    height: 455px;
    display: block;
    background: linear-gradient(to bottom, white, #6f869f, #305c8b);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: +1;
    mix-blend-mode: multiply; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual:before {
        height: 265px; } }
  body.top .main-visual__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .main-visual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .main-visual__logo {
    width: 977px;
    height: 738px;
    position: absolute;
    top: 0;
    right: -258px;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__logo {
        width: 398px;
        height: 301px;
        right: -105px;
        top: auto;
        bottom: 145px; } }
    body.top .main-visual__logo > div {
      position: absolute;
      opacity: 0; }
    body.top .main-visual__logo .top {
      top: 0; }
    body.top .main-visual__logo .right {
      right: 0; }
    body.top .main-visual__logo .bottom {
      bottom: 0; }
    body.top .main-visual__logo .left {
      left: 0; }
    body.top .main-visual__logo .top.left {
      width: 456px;
      mask-image: linear-gradient(-30deg, transparent 50%, black 50%);
      -webkit-mask-image: linear-gradient(-30deg, transparent 50%, black 50%);
      mask-size: 0% 0%;
      -webkit-mask-size: 0% 0%;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      mask-position: 0% 0%;
      -webkit-mask-position: 0% 0%;
      animation: mask-animation 0.5s ease-in-out forwards;
      animation-delay: 1s; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__logo .top.left {
          width: 186px; } }
    body.top .main-visual__logo .top.right {
      width: 719px;
      mask-image: linear-gradient(30deg, transparent 50%, black 50%);
      -webkit-mask-image: linear-gradient(30deg, transparent 50%, black 50%);
      mask-size: 0% 0%;
      -webkit-mask-size: 0% 0%;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      mask-position: 100% 0%;
      -webkit-mask-position: 100% 0%;
      animation: mask-animation 0.6s ease-in-out forwards;
      animation-delay: 1.1s; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__logo .top.right {
          width: 293px; } }
    body.top .main-visual__logo .bottom.left {
      width: 719px;
      mask-image: linear-gradient(30deg, transparent 50%, black 50%);
      -webkit-mask-image: linear-gradient(30deg, transparent 50%, black 50%);
      mask-size: 0% 0%;
      -webkit-mask-size: 0% 0%;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      mask-position: 100% 0%;
      -webkit-mask-position: 100% 0%;
      animation: mask-animation 0.5s ease-in-out forwards;
      animation-delay: 1.5s; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__logo .bottom.left {
          width: 293px; } }
    body.top .main-visual__logo .bottom.right {
      width: 456px;
      mask-image: linear-gradient(-30deg, transparent 50%, black 50%);
      -webkit-mask-image: linear-gradient(-30deg, transparent 50%, black 50%);
      mask-size: 0% 0%;
      -webkit-mask-size: 0% 0%;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      mask-position: 0% 0%;
      -webkit-mask-position: 0% 0%;
      animation: mask-animation 0.5s ease-in-out forwards;
      animation-delay: 1.8s; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__logo .bottom.right {
          width: 186px; } }

@keyframes mask-animation {
  0% {
    mask-size: 0% 0%;
    -webkit-mask-size: 0% 0%;
    opacity: 0; }
  100% {
    mask-size: 250% 250%;
    -webkit-mask-size: 250% 250%;
    opacity: 1; } }
  body.top .main-visual__text {
    position: absolute;
    left: 84px;
    bottom: 55px;
    color: #55A4CE;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__text {
        width: 100%;
        left: 20px;
        bottom: 23px; } }
    body.top .main-visual__text strong {
      display: block;
      font-size: 120px;
      font-size: 12rem;
      line-height: 0.87;
      font-family: "din-2014", sans-serif;
      font-weight: 300;
      margin-bottom: 26px;
      margin-left: -5px;
      -webkit-text-stroke: 1px #55A4CE;
      text-stroke: 1px #55A4CE; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__text strong {
          font-size: 52px;
          font-size: 5.2rem;
          line-height: 0.87462715;
          margin: 0; } }
    body.top .main-visual__text p {
      font-size: 32px;
      font-size: 3.2rem;
      line-height: 1.4;
      font-weight: 700; }

body.top .logo-slider {
  overflow: hidden;
  background: #fff;
  padding: 6px 0; }
  body.top .logo-slider__list {
    display: flex;
    width: auto; }
    body.top .logo-slider__list li {
      margin-right: 40px; }
      body.top .logo-slider__list li img {
        width: auto;
        height: 48px; }
  body.top .logo-slider .swiper {
    overflow: visible; }
    body.top .logo-slider .swiper .swiper-wrapper {
      transition-timing-function: linear !important; }
    body.top .logo-slider .swiper .swiper-slide {
      width: auto; }
    body.top .logo-slider .swiper .w117 {
      width: 117px; }
    body.top .logo-slider .swiper .w43 {
      width: 43px; }
    body.top .logo-slider .swiper .w104 {
      width: 104px; }
    body.top .logo-slider .swiper .w51 {
      width: 51px; }
    body.top .logo-slider .swiper .w129 {
      width: 129px; }
    body.top .logo-slider .swiper .w55 {
      width: 55px; }
    body.top .logo-slider .swiper .w111 {
      width: 111px; }
    body.top .logo-slider .swiper .w96 {
      width: 96px; }

body.top .read .c-wrap {
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.top .read .c-wrap {
      padding: 0 18px;
      padding-top: 60px;
      padding-bottom: 60px;
      display: block; } }

body.top .read__text h2 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 17px; }
  @media only screen and (max-width: 767px) {
    body.top .read__text h2 {
      font-size: 28px;
      font-size: 2.8rem;
      margin-bottom: 8px; } }

body.top .read__text p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2.6;
  font-weight: 700; }
  @media only screen and (max-width: 767px) {
    body.top .read__text p {
      font-size: 14px;
      font-size: 1.4rem; } }

body.top .read__logo {
  width: 245px;
  margin-right: 44px;
  margin-bottom: 16px; }
  @media only screen and (max-width: 767px) {
    body.top .read__logo {
      width: 122px;
      margin: 39px 0 0 auto; } }
  body.top .read__logo img {
    width: 100%; }

body.top .issue .c-wrap {
  padding-top: 56px;
  padding-bottom: 83px; }
  @media only screen and (max-width: 767px) {
    body.top .issue .c-wrap {
      padding-top: 40px;
      padding-bottom: 52px; } }

body.top .issue dl {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.top .issue dl {
      display: block; } }
  body.top .issue dl dt {
    width: 31.49078727%;
    padding-right: 40px; }
    @media only screen and (max-width: 767px) {
      body.top .issue dl dt {
        width: 100%;
        padding: 0; } }
  body.top .issue dl dd {
    width: 68.50921273%;
    padding-left: 60px;
    margin-top: 27px;
    border-left: 1px solid #B7B7B7; }
    @media only screen and (max-width: 767px) {
      body.top .issue dl dd {
        width: 100%;
        padding-left: 0;
        border: none;
        margin-top: 16px; } }

body.top .issue__list {
  display: flex;
  flex-wrap: wrap; }
  body.top .issue__list li {
    width: 46.56992084%;
    margin-right: 6.86015832%;
    margin-top: 3.56200528%; }
    @media only screen and (max-width: 767px) {
      body.top .issue__list li {
        width: 48.52507375%;
        margin-right: 2.9498525%; } }
    body.top .issue__list li:nth-of-type(2n) {
      margin-right: 0; }
    body.top .issue__list li:nth-of-type(-n + 2) {
      margin-top: 0; }
    body.top .issue__list li .text {
      margin-top: 8px;
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.6;
      font-weight: 700;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        body.top .issue__list li .text {
          font-size: 12px;
          font-size: 1.2rem;
          margin-top: 4px; } }

body.top .solution .c-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.top .solution .c-wrap {
      padding: 40px 0 52px;
      display: block; } }

body.top .solution__text {
  width: 49.83305509%; }
  @media only screen and (max-width: 767px) {
    body.top .solution__text {
      width: 100%; } }
  body.top .solution__text .c-title02 {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.top .solution__text .c-title02 {
        margin-bottom: 12px; } }

body.top .solution__image {
  width: 46.32721202%;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .solution__image {
      width: 100%;
      margin-top: 48px; } }
  body.top .solution__image .swiper-pagination {
    position: static;
    transform: translate(0, 0);
    margin-top: 16px; }
    @media only screen and (max-width: 767px) {
      body.top .solution__image .swiper-pagination {
        margin-top: 10px; } }
    body.top .solution__image .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      opacity: 1;
      margin: 0 4px;
      background: #D9D9D9; }
      @media only screen and (max-width: 767px) {
        body.top .solution__image .swiper-pagination .swiper-pagination-bullet {
          width: 8px;
          height: 8px; } }
    body.top .solution__image .swiper-pagination .swiper-pagination-bullet-active {
      background: #B7B7B7; }

body.top .team .c-wrap {
  padding-top: 53px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.top .team .c-wrap {
      padding: 40px 0 52px;
      display: block; } }

body.top .team__text {
  width: 47.77123633%; }
  @media only screen and (max-width: 767px) {
    body.top .team__text {
      width: 100%; } }
  body.top .team__text .c-title02 {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.top .team__text .c-title02 {
        margin-bottom: 4px; } }
  body.top .team__text .c-text01 {
    margin-bottom: 32px; }

body.top .team__image {
  width: 46.67788057%;
  margin-top: 27px; }
  @media only screen and (max-width: 767px) {
    body.top .team__image {
      width: 100%; } }
  body.top .team__image .text {
    margin-top: 21px; }
    @media only screen and (max-width: 767px) {
      body.top .team__image .text {
        margin-top: 12px; } }
    body.top .team__image .text strong {
      display: block;
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.6;
      font-weight: 700;
      margin-bottom: 1px; }
      @media only screen and (max-width: 767px) {
        body.top .team__image .text strong {
          font-size: 12px;
          font-size: 1.2rem; } }
    body.top .team__image .text span {
      display: block;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.71428571;
      font-weight: 500;
      margin-bottom: 1px; }
      @media only screen and (max-width: 767px) {
        body.top .team__image .text span {
          font-size: 10px;
          font-size: 1rem;
          line-height: 1.77777778;
          margin-bottom: 0; } }
    body.top .team__image .text p {
      display: block;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.71428571;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.top .team__image .text p {
          font-size: 10px;
          font-size: 1rem;
          line-height: 1.77777778; } }

@media only screen and (max-width: 767px) {
  body.top .team .c-more {
    margin: 28px auto 0; } }

@media only screen and (max-width: 767px) {
  body.top .case-study {
    overflow: hidden; } }

body.top .case-study .c-wrap {
  padding-top: 51px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    body.top .case-study .c-wrap {
      padding: 52px 0; } }

body.top .case-study__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }
  @media only screen and (max-width: 767px) {
    body.top .case-study__head {
      display: block; } }

body.top .case-study .coming-soon {
  padding: 160px 0 204px;
  text-align: center;
  font-size: 62px;
  font-size: 6.2rem;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  color: #D9D9D9; }
  @media only screen and (max-width: 767px) {
    body.top .case-study .coming-soon {
      padding: 114px 0 137px;
      font-size: 31px;
      font-size: 3.1rem; } }

@media only screen and (max-width: 767px) {
  body.top .case-study .c-interview-list {
    margin-top: 32px; } }

body.top .case-study .c-interview-list li {
  position: relative; }
  body.top .case-study .c-interview-list li:first-of-type:before {
    content: none; }
  body.top .case-study .c-interview-list li:before {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background: #B7B7B7;
    position: absolute;
    top: 0;
    left: -9.55%; }
    @media only screen and (max-width: 767px) {
      body.top .case-study .c-interview-list li:before {
        content: none; } }
  body.top .case-study .c-interview-list li a .text .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1; }

@media only screen and (max-width: 767px) {
  body.top .case-study .c-more {
    margin: 28px auto 0; } }

body.top .comparison .c-wrap {
  padding-top: 50px;
  padding-bottom: 83px; }
  @media only screen and (max-width: 767px) {
    body.top .comparison .c-wrap {
      padding: 52px 0; } }

body.top .comparison__image {
  margin-top: 32px; }
  @media only screen and (max-width: 767px) {
    body.top .comparison__image {
      margin-top: 16px; } }
  @media only screen and (max-width: 767px) {
    body.top .comparison__image > div {
      overflow: scroll;
      padding-bottom: 8px; } }
  body.top .comparison__image .simplebar-track.simplebar-horizontal {
    height: 8px;
    background: #fff;
    border-radius: 8px;
    margin: 0 auto;
    width: 100%; }
  body.top .comparison__image .simplebar-scrollbar {
    height: 8px !important;
    background: #D9D9D9;
    border-radius: 8px;
    top: 0 !important; }
    body.top .comparison__image .simplebar-scrollbar:before {
      background: #D9D9D9 !important; }
  @media only screen and (max-width: 767px) {
    body.top .comparison__image img {
      width: 803px;
      max-width: 803px;
      margin-bottom: 1px; } }

body.top .plan .c-wrap {
  padding-top: 77px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.top .plan .c-wrap {
      padding: 40px 0 52px;
      display: block; } }

body.top .plan__text {
  width: 30.48576214%;
  padding-right: 40px; }
  @media only screen and (max-width: 767px) {
    body.top .plan__text {
      width: 100%;
      padding-right: 0; } }
  body.top .plan__text .c-title02 {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.top .plan__text .c-title02 {
        margin-bottom: 4px; } }
  body.top .plan__text .c-text01 {
    max-width: 290px; }
    @media only screen and (max-width: 767px) {
      body.top .plan__text .c-text01 {
        max-width: 100%; } }

body.top .plan__list {
  width: 69.51423786%;
  margin-top: 27px; }
  @media only screen and (max-width: 767px) {
    body.top .plan__list {
      width: 100%;
      margin-top: 32px; } }
  @media only screen and (max-width: 767px) {
    body.top .plan__list__wrap {
      overflow: scroll;
      padding-bottom: 20px; } }
  body.top .plan__list .simplebar-track.simplebar-horizontal {
    height: 8px;
    background: #fff;
    border-radius: 8px;
    margin: 0 auto;
    width: 100%; }
  body.top .plan__list .simplebar-scrollbar {
    height: 8px !important;
    background: #D9D9D9;
    border-radius: 8px;
    top: 0 !important; }
    body.top .plan__list .simplebar-scrollbar:before {
      background: #D9D9D9 !important; }
  body.top .plan__list ul {
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.top .plan__list ul {
        width: 560px; } }
    body.top .plan__list ul li {
      width: 32.04819277%;
      margin-right: 1.92771084%; }
      body.top .plan__list ul li:nth-of-type(3n) {
        margin-right: 0; }
      body.top .plan__list ul li dl {
        background: #fff;
        height: 100%; }
        body.top .plan__list ul li dl dt {
          color: #fff;
          background: #55A4CE;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 53px;
          font-size: 20px;
          font-size: 2rem;
          line-height: 1.6;
          font-weight: 700; }
          @media only screen and (max-width: 767px) {
            body.top .plan__list ul li dl dt {
              font-size: 13px;
              font-size: 1.3rem;
              height: 36px;
              padding-top: 3px; } }
        body.top .plan__list ul li dl dd {
          padding: 24px 12px 17px;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            body.top .plan__list ul li dl dd {
              padding: 10px 8px 11px; } }
          body.top .plan__list ul li dl dd > div:nth-of-type(1) {
            padding-bottom: 15px; }
            @media only screen and (max-width: 767px) {
              body.top .plan__list ul li dl dd > div:nth-of-type(1) {
                padding-bottom: 10px; } }
          body.top .plan__list ul li dl dd > div:nth-of-type(2) {
            border-top: 1px solid #EBEBEB;
            padding-top: 14px; }
            @media only screen and (max-width: 767px) {
              body.top .plan__list ul li dl dd > div:nth-of-type(2) {
                padding-top: 9px; } }
          body.top .plan__list ul li dl dd .price {
            margin-bottom: 6px;
            font-size: 19px;
            font-size: 1.9rem;
            line-height: 1.1;
            font-weight: 600; }
            @media only screen and (max-width: 767px) {
              body.top .plan__list ul li dl dd .price {
                margin-bottom: 3px;
                font-size: 13px;
                font-size: 1.3rem; } }
            body.top .plan__list ul li dl dd .price strong {
              font-size: 40px;
              font-size: 4rem;
              font-family: "din-2014", sans-serif;
              display: inline-block;
              margin-left: 7px;
              margin-right: 5px;
              position: relative;
              top: 2px; }
              @media only screen and (max-width: 767px) {
                body.top .plan__list ul li dl dd .price strong {
                  font-size: 27px;
                  font-size: 2.7rem; } }
          body.top .plan__list ul li dl dd span {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.375;
            font-weight: 500;
            display: block; }
            @media only screen and (max-width: 767px) {
              body.top .plan__list ul li dl dd span {
                font-size: 11px;
                font-size: 1.1rem; } }
          body.top .plan__list ul li dl dd p {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.71428571;
            font-weight: 500; }
            @media only screen and (max-width: 767px) {
              body.top .plan__list ul li dl dd p {
                font-size: 10px;
                font-size: 1rem; } }

body.top .slider-area {
  overflow: hidden; }
  body.top .slider-area .c-wrap {
    padding: 80px 0; }
    @media only screen and (max-width: 767px) {
      body.top .slider-area .c-wrap {
        padding: 32px 0; } }
  body.top .slider-area .swiper {
    overflow: visible; }
    body.top .slider-area .swiper .swiper-wrapper {
      transition-timing-function: linear !important; }
    body.top .slider-area .swiper .swiper-slide {
      width: 431px; }
      @media only screen and (max-width: 767px) {
        body.top .slider-area .swiper .swiper-slide {
          width: 215px; } }

body.top .faq .c-wrap {
  padding-top: 51px;
  padding-bottom: 62px;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.top .faq .c-wrap {
      padding: 40px 0 100px;
      display: block; } }

body.top .faq__text {
  width: 33.24958124%;
  padding-right: 40px; }
  @media only screen and (max-width: 767px) {
    body.top .faq__text {
      width: 100%;
      padding-right: 0; } }

body.top .faq__list {
  width: 66.75041876%;
  margin-top: 11px; }
  @media only screen and (max-width: 767px) {
    body.top .faq__list {
      width: 100%;
      margin-top: 16px; } }
  body.top .faq__list dl {
    border-top: 1px solid #B7B7B7; }
    body.top .faq__list dl:first-of-type {
      border-top: none; }
    @media only screen and (max-width: 767px) {
      body.top .faq__list dl:last-of-type {
        border-bottom: 1px solid #B7B7B7; } }
    body.top .faq__list dl dt {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.75;
      font-weight: 600;
      padding: 16px 0;
      position: relative;
      cursor: pointer; }
      @media only screen and (max-width: 767px) {
        body.top .faq__list dl dt {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.6;
          padding: 12px 20px 12px 26px; } }
      body.top .faq__list dl dt.active:after {
        transform: rotate(-180deg); }
      @media only screen and (max-width: 767px) {
        body.top .faq__list dl dt span {
          position: absolute;
          top: 12px;
          left: 0; } }
      body.top .faq__list dl dt:after {
        content: "";
        width: 15px;
        height: 6px;
        display: inline-block;
        background: url(../images/common/arrow_bottom.svg) center center/cover no-repeat;
        position: absolute;
        right: 0;
        bottom: 24px;
        transition: transform .3s; }
        @media only screen and (max-width: 767px) {
          body.top .faq__list dl dt:after {
            width: 11px;
            height: 4px;
            bottom: 15px; } }
    body.top .faq__list dl dd {
      margin-top: 8px;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2;
      font-weight: 500;
      padding-bottom: 24px;
      display: none; }
      @media only screen and (max-width: 767px) {
        body.top .faq__list dl dd {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.83333333;
          margin-top: 0;
          padding-left: 18px;
          padding-right: 18px;
          padding-bottom: 16px; } }
