@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: "Jost", sans-serif;
  font-weight: 500;
  color: #5F5F5F; }

* {
  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;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.6; }

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='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: 1066px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 20px; } }

[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: 100px; }
  @media only screen and (max-width: 767px) {
    main {
      padding-top: 70px; } }

.footer {
  border-top: 1px solid #5BDABC;
  color: #5BDABC; }
  .footer__top {
    padding: 45px 0 63px; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 54px 0 64px; } }
  .footer__logo {
    display: block;
    width: 142px;
    margin: 0 auto 58px; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        width: 118px;
        margin-bottom: 68px; } }
  .footer__list {
    display: flex;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .footer__list {
        padding: 0 28px;
        justify-content: space-between; } }
    .footer__list ul {
      margin: 0 40px; }
      @media only screen and (max-width: 767px) {
        .footer__list ul {
          margin: 0;
          width: 44.5%; } }
      .footer__list ul li {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.025em;
        line-height: 1.4;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          .footer__list ul li {
            font-size: 14px;
            font-size: 1.4rem;
            margin-bottom: 24px; } }
        .footer__list ul li:last-of-type {
          margin-bottom: 0; }
        .footer__list ul li.child {
          padding-left: 25px;
          position: relative; }
          .footer__list ul li.child:before {
            content: "";
            width: 10px;
            height: 1px;
            display: inline-block;
            background: #5BDABC;
            position: absolute;
            top: 9px;
            left: 0; }
  .footer__bottom {
    border-top: 1px solid #5BDABC;
    padding: 44px 0 38px;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.025em;
    line-height: 1.16666667;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        padding-bottom: 12px; } }

.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 94px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: background-color .3s; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 70px;
      padding: 0 10px 0 19px; } }
  .header:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s; }
  .header.white:before {
    opacity: 0; }
  .header.white .header__logo .color {
    opacity: 0; }
  .header.white .header__logo .white {
    opacity: 1; }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list li {
      color: #fff;
      text-shadow: 0 0 4px rgba(0, 0, 0, 0.26); } }
  .header.white .hamburger__inner span {
    background: #fff; }
  @media only screen and (max-width: 767px) {
    .header.is-active {
      background: #fff !important;
      border-bottom: 1px solid #CECECE; } }
  .header.is-active .header__logo .color {
    opacity: 1 !important; }
  .header.is-active .header__logo .white {
    opacity: 0 !important; }
  .header.is-active .hamburger__inner span {
    background: #5BDABC !important; }
  .header__logo {
    display: block;
    width: 210px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 113px; } }
    .header__logo img {
      transition: opacity .3s; }
    .header__logo .white {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
  .header .gnav {
    position: relative; }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        position: fixed;
        width: 100%;
        height: calc(100vh - 70px);
        top: 70px;
        left: 0;
        background: #fff;
        overflow: scroll;
        padding-bottom: 80px;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s; } }
    @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; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list {
          display: block; } }
      .header .gnav__list li {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.02em;
        line-height: 1.4;
        font-weight: 400;
        color: #5BDABC;
        margin-left: 35px;
        transition: color .3s; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li {
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.025em;
            font-weight: 500;
            margin-left: 0;
            border-bottom: 1px solid #CECECE; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a, .header .gnav__list li span {
            display: block;
            padding: 20px;
            position: relative; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a:after, .header .gnav__list li span:after {
            content: "";
            width: 6px;
            height: 12px;
            display: block;
            position: absolute;
            top: 50%;
            right: 22px;
            transform: translate(0%, -50%);
            background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
            transition: transform .3s; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li .trigger.active:after {
            transform: translate(0%, -50%) rotate(90deg); } }
        .header .gnav__list li.en {
          font-size: 15px;
          font-size: 1.5rem;
          font-weight: 400; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li .child-list {
            border-top: 1px solid #CECECE;
            display: none; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li .child-list li:last-of-type {
            border-bottom: none; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li .child-list li a:after {
            content: none; } }
    .header .gnav .contact-area {
      padding: 27px 20px; }
      .header .gnav .contact-area .tel {
        color: #5BDABC;
        margin-bottom: 20px; }
        .header .gnav .contact-area .tel small {
          display: block;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.025em;
          line-height: 1.16666667;
          font-weight: 500;
          margin-bottom: 10px; }
        .header .gnav .contact-area .tel a {
          display: block;
          font-size: 28px;
          font-size: 2.8rem;
          letter-spacing: 0.02em;
          font-weight: 400; }

.hamburger {
  width: 42px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    transform: rotate(135deg);
    top: 4px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    transform: rotate(-135deg);
    bottom: 3px; }
  .hamburger__inner {
    width: 22px;
    height: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .hamburger__inner span {
      width: 22px;
      height: 1px;
      display: block;
      background: #5BDABC;
      transition: transform .3s, top .3s, bottom .3s, width .3s, background-color .3s;
      position: relative; }

.c-title02 {
  color: #5BDABC; }
  .c-title02 .en {
    display: block;
    font-size: 34px;
    font-size: 3.4rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .c-title02 .en {
        font-size: 25px;
        font-size: 2.5rem; } }
  .c-title02 .jp {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1.16666667;
    font-weight: 500;
    margin-top: 2px; }
    @media only screen and (max-width: 767px) {
      .c-title02 .jp {
        font-size: 10px;
        font-size: 1rem; } }
  .c-title02.center {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .c-title02.center {
        text-align: left; } }

.c-title03 {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.002em;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #5F5F5F; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 22px;
      font-size: 2.2rem;
      line-height: 1.27272727; } }

.c-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-weight: 500;
  color: #5F5F5F; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.57142857; } }

.c-sub-title {
  color: #5BDABC; }
  .c-sub-title .en {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.025em;
    line-height: 1.4;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .c-sub-title .en {
        font-size: 25px;
        font-size: 2.5rem;
        letter-spacing: 0.1em; } }
  .c-sub-title .jp {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.025em;
    line-height: 1.16666667;
    font-weight: 400;
    display: inline-block;
    margin-left: 8px; }
    @media only screen and (max-width: 767px) {
      .c-sub-title .jp {
        font-size: 10px;
        font-size: 1rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        display: block;
        margin-left: 0;
        margin-top: 3px; } }

.c-page-title {
  color: #5BDABC; }
  .c-page-title .en {
    font-size: 50px;
    font-size: 5rem;
    letter-spacing: 0.025em;
    line-height: 1.4;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .c-page-title .en {
        font-size: 25px;
        font-size: 2.5rem;
        display: block;
        letter-spacing: 0.1em; } }
  .c-page-title .jp {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1.16666667;
    font-weight: 600;
    display: inline-block;
    margin-left: 14px; }
    @media only screen and (max-width: 767px) {
      .c-page-title .jp {
        font-size: 10px;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 5px; } }

.c-index__title {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.16666667;
  font-weight: 500;
  color: #E6E6E6;
  margin-bottom: 22px; }

.c-index__list li {
  padding-left: 21px;
  position: relative;
  color: #5BDABC;
  margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .c-index__list li {
      padding-left: 22px;
      margin-bottom: 22px; } }
  .c-index__list li:last-of-type {
    margin-bottom: 0; }
  .c-index__list li:before {
    content: "";
    width: 6px;
    height: 12px;
    display: block;
    background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%); }
    @media only screen and (max-width: 767px) {
      .c-index__list li:before {
        width: 5px;
        height: 10px; } }
  @media only screen and (max-width: 767px) {
    .c-index__list li a {
      display: flex;
      align-items: flex-end; } }
  .c-index__list li .en {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.025em;
    line-height: 1.4;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .c-index__list li .en {
        font-size: 12px;
        font-size: 1.2rem;
        order: 2; } }
  .c-index__list li .jp {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.025em;
    line-height: 1.16666667;
    font-weight: 400;
    display: inline-block;
    margin-left: 8px; }
    @media only screen and (max-width: 767px) {
      .c-index__list li .jp {
        font-size: 18px;
        font-size: 1.8rem;
        margin: 0 8px 0 0; } }

.c-breadcrumb {
  display: flex;
  align-items: center; }
  .c-breadcrumb li {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.16666667;
    font-weight: 400;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      .c-breadcrumb li {
        font-size: 10px;
        font-size: 1rem; } }
    .c-breadcrumb li a {
      white-space: nowrap; }
    .c-breadcrumb li:after {
      content: "";
      width: 5px;
      height: 10px;
      background: url(../images/common/arrow_right_gray.svg) center center/cover no-repeat;
      display: inline-block;
      margin: 0 9px 0 4px; }
      @media only screen and (max-width: 767px) {
        .c-breadcrumb li:after {
          width: 4px;
          height: 8px;
          margin: 0 8px 0 3px; } }
    .c-breadcrumb li:last-of-type {
      white-space: normal; }
      .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 span {
      color: #5BDABC; }

.c-btn {
  width: 100%;
  max-width: 282px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #5BDABC;
  color: #5BDABC;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 400;
  padding-top: 3px;
  transition: color .3s, background-color .3s; }
  @media only screen and (min-width: 768px) {
    .c-btn:hover {
      background: #5BDABC;
      color: #fff;
      opacity: 1; } }

.c-image-text {
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .c-image-text {
      flex-direction: column; } }
  .c-image-text__image {
    width: 50%; }
    @media only screen and (max-width: 767px) {
      .c-image-text__image {
        width: 100%; } }
  .c-image-text__text {
    width: 50%;
    padding: 40px 110px; }
    @media only screen and (max-width: 767px) {
      .c-image-text__text {
        width: 100%;
        padding: 20px 0 60px;
        order: 2; } }
    .c-image-text__text.left {
      padding-left: 40px; }
      @media only screen and (max-width: 767px) {
        .c-image-text__text.left {
          padding-left: 0; } }
      .c-image-text__text.left .box {
        margin-left: auto; }
    .c-image-text__text.right {
      padding-right: 40px; }
      @media only screen and (max-width: 767px) {
        .c-image-text__text.right {
          padding-right: 0; } }
    .c-image-text__text .box {
      max-width: 448px; }
      @media only screen and (max-width: 767px) {
        .c-image-text__text .box {
          max-width: 100%; } }
    .c-image-text__text .sub-title {
      color: #5BDABC;
      margin-bottom: 28px; }
      @media only screen and (max-width: 767px) {
        .c-image-text__text .sub-title {
          margin-bottom: 16px; } }
      .c-image-text__text .sub-title .jp {
        display: block;
        font-size: 34px;
        font-size: 3.4rem;
        letter-spacing: 0.1em;
        line-height: 1.4;
        font-weight: 400;
        margin-bottom: 3px; }
        @media only screen and (max-width: 767px) {
          .c-image-text__text .sub-title .jp {
            font-size: 23px;
            font-size: 2.3rem; } }
      .c-image-text__text .sub-title .en {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.2;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          .c-image-text__text .sub-title .en {
            font-size: 10px;
            font-size: 1rem; } }
    .c-image-text__text .c-title03 {
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .c-image-text__text .c-title03 {
          margin-bottom: 10px; } }
    .c-image-text__text .c-text01 {
      margin-bottom: 30px;
      letter-spacing: 0.002em;
      max-width: 443px; }
      @media only screen and (max-width: 767px) {
        .c-image-text__text .c-text01 {
          max-width: 100%; } }
    @media only screen and (max-width: 767px) {
      .c-image-text__text .c-btn {
        margin: 30px auto 0;
        width: max-content;
        height: auto;
        padding: 0;
        border: none;
        white-space: nowrap; }
        .c-image-text__text .c-btn:after {
          content: "";
          width: 6px;
          height: 12px;
          display: inline-block;
          background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
          margin-left: 17px; } }

.c-recruit {
  padding: 66px 28px 16px 68px;
  display: block;
  color: #fff;
  background: url(../images/common/recruit_bg.jpg) center center/cover no-repeat; }
  @media only screen and (max-width: 767px) {
    .c-recruit {
      padding: 36px 20px 10px;
      background: url(../images/common/recruit_bg_sp.jpg) center center/cover no-repeat; } }
  .c-recruit__text {
    margin-bottom: 52px; }
    @media only screen and (max-width: 767px) {
      .c-recruit__text {
        margin-bottom: 56px; } }
    .c-recruit__text small {
      font-size: 18px;
      font-size: 1.8rem;
      margin-bottom: 14p;
      letter-spacing: 0.1em;
      font-weight: 400;
      display: block;
      margin-bottom: 12px; }
      @media only screen and (max-width: 767px) {
        .c-recruit__text small {
          font-size: 10px;
          font-size: 1rem;
          margin-bottom: 10px; } }
    .c-recruit__text strong {
      font-size: 39px;
      font-size: 3.9rem;
      letter-spacing: 0.05em;
      line-height: 1.58974359;
      font-weight: 400; }
      @media only screen and (max-width: 767px) {
        .c-recruit__text strong {
          font-size: 20px;
          font-size: 2rem;
          letter-spacing: 0.025em;
          line-height: 1.3; } }
  .c-recruit__link {
    width: 230px;
    margin-left: auto; }
    @media only screen and (max-width: 767px) {
      .c-recruit__link {
        width: 106px; } }
    .c-recruit__link span {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1;
      font-weight: 700;
      display: block; }
      @media only screen and (max-width: 767px) {
        .c-recruit__link span {
          font-size: 12px;
          font-size: 1.2rem;
          font-weight: 500; } }
    .c-recruit__link i {
      width: 100%; }
      .c-recruit__link i img {
        display: block;
        width: 100%; }

.wp-pagenavi {
  margin-top: 125px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 100px; } }
  .wp-pagenavi a, .wp-pagenavi span {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.025em;
    font-weight: 500;
    margin: 0 5px;
    transition: color .3s; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi a, .wp-pagenavi span {
        margin: 0 2px;
        width: 39px;
        height: 39px;
        font-size: 11px;
        font-size: 1.1rem; } }
    .wp-pagenavi a:hover, .wp-pagenavi span:hover {
      color: #5BDABC; }
  .wp-pagenavi .current {
    color: #5BDABC;
    border: 1px solid #5BDABC; }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    width: auto; }
  .wp-pagenavi .previouspostslink {
    margin-right: 40px; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .previouspostslink {
        margin-right: 14px; } }
  .wp-pagenavi .nextpostslink {
    margin-left: 40px; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .nextpostslink {
        margin-left: 14px; } }

/* 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.company .intro {
  padding: 20px 0 109px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.company .intro {
      padding: 18px 0 40px; } }
  body.company .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.company .intro .c-breadcrumb {
        margin-bottom: 50px; } }

@media only screen and (max-width: 767px) {
  body.company .read {
    padding: 0 0 74px;
    position: relative; } }

@media only screen and (max-width: 767px) {
  body.company .read:before {
    content: "";
    width: 100%;
    height: calc(100% - 76px);
    display: block;
    background: rgba(91, 218, 188, 0.1);
    position: absolute;
    left: 0;
    bottom: 0; } }

body.company .read .inner {
  max-width: 1252px; }

body.company .read__col {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    body.company .read__col {
      display: block; } }
  body.company .read__col .image {
    width: 57.16723549%;
    min-height: 640px;
    margin-left: -100px;
    margin-left: -8.53242321%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.company .read__col .image {
        width: 100%;
        margin: 0 0 24px;
        min-height: 0; } }
    body.company .read__col .image:before {
      content: "";
      width: 154.17910448%;
      height: 100%;
      display: block;
      background: rgba(91, 218, 188, 0.1);
      position: absolute;
      left: 0;
      top: -49px; }
      @media only screen and (max-width: 767px) {
        body.company .read__col .image:before {
          content: none; } }
    body.company .read__col .image img {
      position: relative;
      width: 100%;
      min-height: 640px;
      object-fit: cover;
      object-position: center center; }
      @media only screen and (max-width: 767px) {
        body.company .read__col .image img {
          min-height: 0; } }
  body.company .read__col .text {
    width: 41%;
    padding-right: 35px;
    margin-bottom: 56px; }
    @media only screen and (max-width: 767px) {
      body.company .read__col .text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 0; } }
    body.company .read__col .text .c-title03 {
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        body.company .read__col .text .c-title03 {
          margin-bottom: 15px; } }

body.company .job-description {
  padding: 75px 0 120px; }
  @media only screen and (max-width: 767px) {
    body.company .job-description {
      padding: 50px 0 60px; } }
  body.company .job-description__table {
    margin-top: 43px; }
    @media only screen and (max-width: 767px) {
      body.company .job-description__table {
        margin-top: 10px; } }
    body.company .job-description__table table {
      width: 100%;
      border-top: 1px solid #E6E6E6; }
      @media only screen and (max-width: 767px) {
        body.company .job-description__table table {
          border: none;
          display: block; } }
      @media only screen and (max-width: 767px) {
        body.company .job-description__table table tbody {
          display: block; } }
      body.company .job-description__table table tbody tr {
        border-bottom: 1px solid #E6E6E6; }
        @media only screen and (max-width: 767px) {
          body.company .job-description__table table tbody tr {
            display: block;
            padding: 22px 0; } }
        body.company .job-description__table table tbody tr th {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2.125;
          font-weight: 500;
          width: 178px;
          padding: 20px 8px;
          vertical-align: top; }
          @media only screen and (max-width: 767px) {
            body.company .job-description__table table tbody tr th {
              line-height: 2;
              display: block;
              width: 100%;
              margin-bottom: 14px;
              padding: 0; } }
        body.company .job-description__table table tbody tr td {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2.125;
          width: calc(100% - 178px);
          padding: 20px 0; }
          @media only screen and (max-width: 767px) {
            body.company .job-description__table table tbody tr td {
              line-height: 2;
              display: block;
              width: 100%;
              padding: 0; } }

body.company .bottom {
  padding: 100px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.company .bottom {
      padding: 40px 0 100px; } }

body.contact .intro {
  padding: 20px 0 109px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.contact .intro {
      padding: 18px 0 40px; } }
  body.contact .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.contact .intro .c-breadcrumb {
        margin-bottom: 50px; } }

body.contact input:-internal-autofill-selected {
  background-color: #fff !important; }

body.contact input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  color: #5F5F5F !important;
  -webkit-text-fill-color: #5F5F5F !important; }

body.contact input:focus {
  color: #5F5F5F !important; }

body.contact .attention {
  background: rgba(91, 218, 188, 0.11);
  padding: 18px 18px 16px;
  color: #5BDABC;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    body.contact .attention {
      font-size: 14px;
      font-size: 1.4rem;
      padding: 16px 16px 14px;
      margin-bottom: 4px; } }

body.contact .cont {
  padding-bottom: 196px; }
  @media only screen and (max-width: 767px) {
    body.contact .cont {
      padding-bottom: 200px; } }
  body.contact .cont .inner {
    max-width: 878px; }
  body.contact .cont .formArea__table {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .formArea__table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont .formArea__table.confirm tbody tr {
        padding: 20px 0 18px; } }
    body.contact .cont .formArea__table.confirm tbody tr:first-of-type {
      border-top: 1px solid #E6E6E6; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea__table.confirm tbody tr:first-of-type {
          border-top: none; } }
      body.contact .cont .formArea__table.confirm tbody tr:first-of-type th {
        padding-top: 18px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont .formArea__table.confirm tbody tr:first-of-type th {
            padding-top: 0; } }
    body.contact .cont .formArea__table.confirm tbody tr th {
      border-bottom: 1px solid #E6E6E6;
      padding: 18px 0 16px;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea__table.confirm tbody tr th {
          border: none;
          padding: 0;
          margin-bottom: 15px; } }
    body.contact .cont .formArea__table.confirm tbody tr td {
      padding: 18px 0 16px; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea__table.confirm tbody tr td {
          padding: 0; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont .formArea__table tbody {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont .formArea__table tbody tr {
        display: block;
        border-bottom: 1px solid #E6E6E6; } }
    body.contact .cont .formArea__table tbody tr:first-of-type th {
      padding-top: 0;
      border-bottom: 1px solid #E6E6E6; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea__table tbody tr:first-of-type th {
          border: none; } }
    body.contact .cont .formArea__table tbody tr th {
      width: 236px;
      vertical-align: top;
      padding-top: 30px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea__table tbody tr th {
          width: 100%;
          display: block;
          padding: 0;
          padding-top: 24px;
          margin-bottom: 0px; } }
      body.contact .cont .formArea__table tbody tr th span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 500; }
      body.contact .cont .formArea__table tbody tr th em {
        font-size: 10px;
        font-size: 1rem;
        letter-spacing: 0.05em;
        font-weight: 700;
        color: #fff;
        display: inline-block;
        background: #5BDABC;
        padding: 4px 6px 2px;
        margin-left: 3px;
        position: relative;
        top: -2px; }
        body.contact .cont .formArea__table tbody tr th em.gray {
          background: #E6E6E6; }
    body.contact .cont .formArea__table tbody tr td {
      width: calc(100% - 236px);
      border-bottom: 1px solid #E6E6E6;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea__table tbody tr td {
          width: 100%;
          display: block;
          border: none; } }
      body.contact .cont .formArea__table tbody tr td p {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 400; }
      body.contact .cont .formArea__table tbody tr td .radio-list {
        margin-bottom: 25px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont .formArea__table tbody tr td .radio-list {
            margin-top: 24px; } }
        body.contact .cont .formArea__table tbody tr td .radio-list li {
          margin-bottom: 10px;
          position: relative; }
          body.contact .cont .formArea__table tbody tr td .radio-list li input {
            width: 1px;
            height: 1px;
            opacity: 0;
            top: 0;
            left: 0;
            position: absolute; }
            body.contact .cont .formArea__table tbody tr td .radio-list li input:checked + label > i:before {
              opacity: 1; }
          body.contact .cont .formArea__table tbody tr td .radio-list li label {
            display: flex;
            align-items: center; }
            body.contact .cont .formArea__table tbody tr td .radio-list li label i {
              width: 28px;
              height: 28px;
              display: block;
              border-radius: 50%;
              border: 1px solid #E6E6E6;
              position: relative;
              margin-right: 22px; }
              body.contact .cont .formArea__table tbody tr td .radio-list li label i:before {
                content: "";
                width: 16px;
                height: 16px;
                display: block;
                border-radius: 50%;
                background: #5BDABC;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                opacity: 0; }
            body.contact .cont .formArea__table tbody tr td .radio-list li label span {
              font-size: 16px;
              font-size: 1.6rem;
              letter-spacing: 0.05em;
              font-weight: 500; }
      body.contact .cont .formArea__table tbody tr td input[type="text"] {
        width: 100%;
        height: 76px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 500;
        padding: 0 22px;
        color: #5F5F5F !important; }
        @media only screen and (max-width: 767px) {
          body.contact .cont .formArea__table tbody tr td input[type="text"] {
            height: 60px;
            padding: 0; } }
        body.contact .cont .formArea__table tbody tr td input[type="text"]::placeholder {
          font-size: 12px;
          font-size: 1.2rem;
          color: #E6E6E6; }
      body.contact .cont .formArea__table tbody tr td textarea {
        width: 100%;
        height: 196px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 500;
        padding: 32px 22px;
        resize: none;
        color: #5F5F5F !important; }
        @media only screen and (max-width: 767px) {
          body.contact .cont .formArea__table tbody tr td textarea {
            height: 145px;
            padding: 20px 0; } }
        body.contact .cont .formArea__table tbody tr td textarea::placeholder {
          font-size: 12px;
          font-size: 1.2rem;
          color: #E6E6E6; }
  body.contact .cont .formArea .privacy {
    margin: 50px 0; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .formArea .privacy {
        margin: 40px 0; } }
    body.contact .cont .formArea .privacy__box {
      margin-top: 24px;
      border: 1px solid #E6E6E6;
      height: 306px;
      overflow-y: scroll; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .formArea .privacy__box {
          margin-top: 16px; } }
      body.contact .cont .formArea .privacy__box > div {
        padding: 24px 40px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont .formArea .privacy__box > div {
            padding: 28px 20px; } }
      body.contact .cont .formArea .privacy__box strong {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 500;
        margin-bottom: 4px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont .formArea .privacy__box strong {
            font-size: 14px;
            font-size: 1.4rem; } }
      body.contact .cont .formArea .privacy__box p {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.002em;
        line-height: 1.83333333;
        font-weight: 500; }
  body.contact .cont .formArea .agree {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: max-content;
    margin: 0 auto; }
    body.contact .cont .formArea .agree input {
      width: 1px;
      height: 1px;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0; }
      body.contact .cont .formArea .agree input:checked + label > i:before {
        opacity: 1; }
    body.contact .cont .formArea .agree label {
      display: flex;
      align-items: center;
      justify-content: center; }
      body.contact .cont .formArea .agree label i {
        width: 28px;
        height: 28px;
        display: block;
        border-radius: 50%;
        border: 1px solid #E6E6E6;
        position: relative;
        margin-right: 22px; }
        body.contact .cont .formArea .agree label i:before {
          content: "";
          width: 16px;
          height: 16px;
          display: block;
          border-radius: 50%;
          background: #5BDABC;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          opacity: 0; }
      body.contact .cont .formArea .agree label span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        font-weight: 500; }
      body.contact .cont .formArea .agree label em {
        font-size: 10px;
        font-size: 1rem;
        letter-spacing: 0.05em;
        font-weight: 700;
        color: #fff;
        display: inline-block;
        background: #5BDABC;
        padding: 4px 6px 2px;
        margin-left: 6px;
        position: relative; }
  body.contact .cont .formArea .c-btn {
    margin: 60px auto 0; }
  body.contact .cont .formArea .modify {
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.025em;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5BDABC;
    width: max-content;
    margin: 35px auto 0; }
    body.contact .cont .formArea .modify svg {
      position: relative;
      top: -1px; }
    body.contact .cont .formArea .modify span {
      margin-left: 15px; }
  body.contact .cont .thanks {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .thanks {
        margin-top: 30px; } }
    body.contact .cont .thanks strong {
      display: block;
      font-size: 21px;
      font-size: 2.1rem;
      letter-spacing: 0.05em;
      line-height: 1.52380952;
      font-weight: 500;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .thanks strong {
          font-size: 18px;
          font-size: 1.8rem;
          margin-bottom: 10px; } }
    body.contact .cont .thanks p {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.6875;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .thanks p {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.85714286;
          text-align: left; } }

body.news_detail .intro {
  padding: 20px 0 0px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.news_detail .intro {
      padding: 18px 0 0px; } }
  body.news_detail .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .intro .c-breadcrumb {
        margin-bottom: 40px; } }

body.news_detail .cont {
  padding-bottom: 115px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .cont {
      padding-bottom: 40px; } }
  body.news_detail .cont .inner {
    max-width: 880px; }
  body.news_detail .cont .thumbnail {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .thumbnail {
        margin-bottom: 16px; } }
    body.news_detail .cont .thumbnail img {
      width: 100%; }
  body.news_detail .cont .title {
    border-bottom: 1px solid #5BDABC;
    padding-bottom: 23px;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    line-height: 1.41666667;
    font-weight: 500;
    margin-bottom: 22px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
        padding-bottom: 16px;
        margin-bottom: 16px; } }
  body.news_detail .cont .date-cate {
    display: flex;
    align-items: center;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .date-cate {
        margin-bottom: 28px; } }
    body.news_detail .cont .date-cate .date {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.002em;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.news_detail .cont .date-cate .date {
          font-size: 12px;
          font-size: 1.2rem; } }
    body.news_detail .cont .date-cate .cate {
      display: inline-block;
      padding: 6px 22px 5px;
      color: #5BDABC;
      border: 1px solid #5BDABC;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.002em;
      font-weight: 500;
      margin-left: 19px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .cont .date-cate .cate {
          font-size: 10px;
          font-size: 1rem;
          padding: 6px 12px 5px;
          margin-left: 10px; } }
  body.news_detail .cont .post {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.9375;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .post {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.025em;
        line-height: 1.78571429; } }
    body.news_detail .cont .post h2 {
      font-weight: 500;
      padding: 20px 25px 18px;
      background: rgba(91, 218, 188, 0.1);
      margin-bottom: 10px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .cont .post h2 {
          padding: 12px 14px 10px;
          margin-bottom: 12px; } }
    body.news_detail .cont .post p {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .cont .post p {
          margin-bottom: 20px; } }

body.news_detail .prev-next {
  border-top: 1px solid #5BDABC;
  padding: 125px 0; }
  @media only screen and (max-width: 767px) {
    body.news_detail .prev-next {
      padding: 60px 0; } }
  body.news_detail .prev-next .inner {
    max-width: 880px;
    display: flex;
    justify-content: space-between; }
  body.news_detail .prev-next a {
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.025em;
    font-weight: 500;
    color: #5BDABC;
    display: flex;
    align-items: center;
    width: max-content; }
    @media only screen and (max-width: 767px) {
      body.news_detail .prev-next a {
        font-size: 12px;
        font-size: 1.2rem; } }
    body.news_detail .prev-next a span {
      margin: 0 14px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .prev-next a span {
          margin: 0 8px; } }
    body.news_detail .prev-next a svg {
      position: relative;
      top: -1px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .prev-next a svg {
          top: 0; } }

body.news_detail .all-prev {
  border-top: 1px solid #5BDABC;
  padding: 60px 0; }
  @media only screen and (max-width: 767px) {
    body.news_detail .all-prev {
      padding: 32px 0 100px; } }
  body.news_detail .all-prev a {
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.025em;
    font-weight: 500;
    color: #5BDABC;
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.news_detail .all-prev a {
        font-size: 12px;
        font-size: 1.2rem; } }
    body.news_detail .all-prev a span {
      margin-left: 14px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .all-prev a span {
          margin-left: 8px; } }
    body.news_detail .all-prev a svg {
      position: relative;
      top: -1px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .all-prev a svg {
          top: 0; } }

body.news .intro {
  padding: 20px 0 60px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.news .intro {
      padding: 18px 0 40px; } }
  body.news .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.news .intro .c-breadcrumb {
        margin-bottom: 50px; } }

body.news .cont {
  padding-bottom: 125px; }
  @media only screen and (max-width: 767px) {
    body.news .cont {
      padding-bottom: 100px; } }
  body.news .cont .cate-list {
    display: flex;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      body.news .cont .cate-list {
        margin-bottom: 1px; } }
    body.news .cont .cate-list li {
      margin-right: 24px; }
      @media only screen and (max-width: 767px) {
        body.news .cont .cate-list li {
          margin-right: 16px; } }
      body.news .cont .cate-list li:last-of-type {
        margin-right: 0; }
      body.news .cont .cate-list li.current a {
        color: #5BDABC; }
        body.news .cont .cate-list li.current a:after {
          opacity: 1; }
      body.news .cont .cate-list li a {
        padding: 0 12px 20px;
        display: block;
        text-align: center;
        position: relative;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.002em;
        font-weight: 500;
        transition: color .3s; }
        @media only screen and (max-width: 767px) {
          body.news .cont .cate-list li a {
            font-size: 12px;
            font-size: 1.2rem;
            padding-bottom: 18px; } }
        body.news .cont .cate-list li a:hover {
          color: #5BDABC;
          opacity: 1; }
        body.news .cont .cate-list li a:after {
          content: "";
          width: 100%;
          height: 2px;
          display: block;
          background: #5BDABC;
          position: absolute;
          left: 0;
          bottom: -1px;
          opacity: 0; }
  body.news .cont .c-news-list li {
    border-bottom: 1px solid #E6E6E6; }
    body.news .cont .c-news-list li a {
      display: flex;
      padding: 21px 0 20px; }
      @media only screen and (max-width: 767px) {
        body.news .cont .c-news-list li a {
          display: block;
          padding: 18px 0 15px; } }
      body.news .cont .c-news-list li a .date-cate {
        width: 214px;
        display: flex;
        align-items: flex-start; }
        @media only screen and (max-width: 767px) {
          body.news .cont .c-news-list li a .date-cate {
            width: 100%;
            align-items: center;
            margin-bottom: 8px; } }
        body.news .cont .c-news-list li a .date-cate .date {
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.002em;
          font-weight: 500;
          line-height: 1.16666667;
          width: 95px;
          margin-top: 10px; }
          @media only screen and (max-width: 767px) {
            body.news .cont .c-news-list li a .date-cate .date {
              width: auto;
              margin-top: 0; } }
        body.news .cont .c-news-list li a .date-cate .cate {
          display: inline-block;
          border: 1px solid #5BDABC;
          color: #5BDABC;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.002em;
          line-height: 1.16666667;
          font-weight: 500;
          padding: 4px 22px;
          margin-top: 4px; }
          @media only screen and (max-width: 767px) {
            body.news .cont .c-news-list li a .date-cate .cate {
              font-size: 10px;
              font-size: 1rem;
              padding: 4px 12px;
              margin-left: 10px;
              margin-top: 0; } }
      body.news .cont .c-news-list li a .title {
        width: calc(100% - 214px);
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.88888889;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          body.news .cont .c-news-list li a .title {
            width: 100%;
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.5; } }

body.recruit .intro {
  padding: 20px 0 50px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.recruit .intro {
      padding: 18px 0 40px; } }
  body.recruit .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.recruit .intro .c-breadcrumb {
        margin-bottom: 50px; } }

body.recruit .greeting {
  background: rgba(91, 218, 188, 0.1);
  padding: 110px 0; }
  @media only screen and (max-width: 767px) {
    body.recruit .greeting {
      padding: 40px 0; } }
  body.recruit .greeting .c-title03 {
    margin-bottom: 22px; }
    @media only screen and (max-width: 767px) {
      body.recruit .greeting .c-title03 {
        margin-bottom: 14px; } }
  @media only screen and (max-width: 767px) {
    body.recruit .greeting .c-text01 {
      letter-spacing: 0.05em;
      line-height: 1.85714286; } }

body.recruit .job-description {
  padding: 75px 0 0px; }
  @media only screen and (max-width: 767px) {
    body.recruit .job-description {
      padding: 52px 0 75px; } }
  body.recruit .job-description__table {
    margin-top: 43px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job-description__table {
        margin-top: 10px; } }
    body.recruit .job-description__table table {
      width: 100%;
      border-top: 1px solid #E6E6E6; }
      @media only screen and (max-width: 767px) {
        body.recruit .job-description__table table {
          border: none;
          display: block; } }
      @media only screen and (max-width: 767px) {
        body.recruit .job-description__table table tbody {
          display: block; } }
      body.recruit .job-description__table table tbody tr {
        border-bottom: 1px solid #E6E6E6; }
        @media only screen and (max-width: 767px) {
          body.recruit .job-description__table table tbody tr {
            display: block;
            padding: 22px 0; } }
        body.recruit .job-description__table table tbody tr th {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2.125;
          font-weight: 500;
          width: 178px;
          padding: 20px 8px;
          vertical-align: top; }
          @media only screen and (max-width: 767px) {
            body.recruit .job-description__table table tbody tr th {
              line-height: 2;
              display: block;
              width: 100%;
              margin-bottom: 6px;
              padding: 0; } }
        body.recruit .job-description__table table tbody tr td {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2.125;
          font-weight: 500;
          width: calc(100% - 178px);
          padding: 20px 0; }
          @media only screen and (max-width: 767px) {
            body.recruit .job-description__table table tbody tr td {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.85714286;
              display: block;
              width: 100%;
              padding: 0; } }

body.recruit .welfare {
  padding: 75px 0 50px; }
  @media only screen and (max-width: 767px) {
    body.recruit .welfare {
      padding: 60px 0 0; } }
  body.recruit .welfare__list {
    margin-top: 43px;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.recruit .welfare__list {
        margin-top: 22px; } }
    body.recruit .welfare__list li {
      width: 30.22312373%;
      margin-right: 4.6653144%;
      margin-top: 4.6653144%; }
      @media only screen and (max-width: 767px) {
        body.recruit .welfare__list li {
          width: 48.35820896%;
          margin-right: 3.28358208%;
          margin-top: 48px; } }
      @media only screen and (max-width: 767px) {
        body.recruit .welfare__list li:nth-of-type(-n + 2) {
          margin-top: 0; } }
      @media only screen and (max-width: 767px) {
        body.recruit .welfare__list li:nth-of-type(2n) {
          margin-right: 0; } }
      @media only screen and (min-width: 768px) {
        body.recruit .welfare__list li:nth-of-type(-n + 3) {
          margin-top: 0; } }
      @media only screen and (min-width: 768px) {
        body.recruit .welfare__list li:nth-of-type(3n) {
          margin-right: 0; } }
      body.recruit .welfare__list li .icon {
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.recruit .welfare__list li .icon {
            height: 52px; } }
        @media only screen and (max-width: 767px) {
          body.recruit .welfare__list li .icon img {
            max-height: 100%; } }
      body.recruit .welfare__list li .text {
        margin-top: 20px; }
        @media only screen and (max-width: 767px) {
          body.recruit .welfare__list li .text {
            margin-top: 10px; } }
        body.recruit .welfare__list li .text h3 {
          text-align: center;
          font-size: 20px;
          font-size: 2rem;
          letter-spacing: 0.05em;
          line-height: 1.4;
          font-weight: 500;
          color: #5BDABC; }
          @media only screen and (max-width: 767px) {
            body.recruit .welfare__list li .text h3 {
              font-size: 14px;
              font-size: 1.4rem; } }
        body.recruit .welfare__list li .text p {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2;
          font-weight: 500;
          margin-top: 14px; }
          @media only screen and (max-width: 767px) {
            body.recruit .welfare__list li .text p {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.66666667; } }

body.recruit .faq {
  padding: 75px 0 300px; }
  @media only screen and (max-width: 767px) {
    body.recruit .faq {
      padding: 50px 0 200px; } }
  body.recruit .faq__list {
    border-top: 1px solid #E6E6E6;
    margin-top: 43px; }
    @media only screen and (max-width: 767px) {
      body.recruit .faq__list {
        margin-top: 22px; } }
    body.recruit .faq__list dl {
      border-bottom: 1px solid #E6E6E6; }
      body.recruit .faq__list dl dt {
        padding: 26px 8px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2.125;
        font-weight: 500;
        position: relative;
        cursor: pointer; }
        @media only screen and (max-width: 767px) {
          body.recruit .faq__list dl dt {
            padding: 22px 8px; } }
        body.recruit .faq__list dl dt.active:after {
          transform: translate(0%, -50%) rotate(0deg); }
        body.recruit .faq__list dl dt:after {
          content: "";
          width: 14px;
          height: 7px;
          display: block;
          background: url(../images/common/arrow_bottom.svg) center center/cover no-repeat;
          position: absolute;
          top: 50%;
          right: 29px;
          transform: translate(0%, -50%) rotate(-90deg);
          transition: transform .3s; }
      body.recruit .faq__list dl dd {
        padding: 0 8px 6px;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 2;
        position: relative;
        top: -20px;
        display: none; }
        @media only screen and (max-width: 767px) {
          body.recruit .faq__list dl dd {
            top: 0;
            padding: 0 8px 22px; } }
  body.recruit .faq .c-btn {
    margin: 60px auto 0; }

body.service_detail .intro {
  padding: 20px 0 30px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.service_detail .intro {
      padding: 18px 0 50px; } }
  body.service_detail .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.service_detail .intro .c-breadcrumb {
        margin-bottom: 50px; } }
  body.service_detail .intro .text-image {
    margin-top: 54px;
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.service_detail .intro .text-image {
        flex-direction: column;
        margin-top: 21px; } }
    body.service_detail .intro .text-image .text {
      width: 51.32924335%;
      padding-right: 59px; }
      @media only screen and (max-width: 767px) {
        body.service_detail .intro .text-image .text {
          width: 100%;
          order: 2;
          padding-right: 0; } }
      body.service_detail .intro .text-image .text .c-text01 {
        letter-spacing: 0.002em;
        line-height: 1.875;
        margin-bottom: 60px; }
        @media only screen and (max-width: 767px) {
          body.service_detail .intro .text-image .text .c-text01 {
            letter-spacing: 0.1em;
            line-height: 1.85714286;
            margin-bottom: 26px; } }
    body.service_detail .intro .text-image .image {
      width: 68.50715746%;
      margin-right: -19.83640082%; }
      @media only screen and (max-width: 767px) {
        body.service_detail .intro .text-image .image {
          width: 100%;
          margin-right: 0px;
          margin-bottom: 16px; } }

body.service_detail .features {
  background: rgba(91, 218, 188, 0.05);
  padding: 236px 0 148px; }
  @media only screen and (max-width: 767px) {
    body.service_detail .features {
      padding: 50px 0 60px; } }
  body.service_detail .features .c-sub-title {
    margin-bottom: 43px; }
    @media only screen and (max-width: 767px) {
      body.service_detail .features .c-sub-title {
        margin-bottom: 18px; } }
  @media only screen and (max-width: 767px) {
    body.service_detail .features .c-text01 {
      letter-spacing: 0.05em;
      line-height: 1.85714286; } }
  body.service_detail .features__article {
    margin-top: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5BDABC; }
    @media only screen and (max-width: 767px) {
      body.service_detail .features__article {
        margin-top: 56px;
        display: block; } }
    body.service_detail .features__article strong {
      display: block;
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.025em;
      font-weight: 500;
      line-height: 1.4; }
      @media only screen and (max-width: 767px) {
        body.service_detail .features__article strong {
          font-size: 16px;
          font-size: 1.6rem;
          text-align: center;
          margin-bottom: 25px; } }
    body.service_detail .features__article__list {
      display: flex;
      justify-content: space-between;
      width: calc(100% - 330px); }
      @media only screen and (max-width: 767px) {
        body.service_detail .features__article__list {
          width: 100%; } }
      body.service_detail .features__article__list li {
        width: 31%;
        border-radius: 50%;
        border: 1px solid #5BDABC;
        position: relative; }
        body.service_detail .features__article__list li:last-of-type:after {
          content: none; }
        body.service_detail .features__article__list li:after {
          content: "";
          width: 12.5%;
          height: 1px;
          display: block;
          background: #5BDABC;
          position: absolute;
          top: 50%;
          right: -12.5%;
          transform: translate(0%, -50%); }
        body.service_detail .features__article__list li > div {
          padding-top: 100%;
          position: relative; }
        body.service_detail .features__article__list li span {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.002em;
          font-weight: 500; }

body.service_detail .flow {
  padding-top: 125px; }
  @media only screen and (max-width: 767px) {
    body.service_detail .flow {
      padding: 50px 0 56px; } }
  body.service_detail .flow__list {
    margin-top: 32px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.service_detail .flow__list {
        margin-top: 20px; } }
    body.service_detail .flow__list:before {
      content: "";
      width: 1px;
      height: calc(100% - 55px);
      border-right: 1px dashed #5BDABC;
      display: block;
      position: absolute;
      top: 27px;
      left: 27px; }
    body.service_detail .flow__list li {
      display: flex;
      justify-content: space-between;
      margin-bottom: 50px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.service_detail .flow__list li {
          margin-bottom: 34px; } }
      body.service_detail .flow__list li:last-of-type {
        margin-bottom: 0; }
      body.service_detail .flow__list li .num {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        border: 1px solid #5BDABC;
        color: #5BDABC;
        background: #fff;
        font-size: 20px;
        font-size: 2rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2px; }
      body.service_detail .flow__list li .text {
        width: calc(100% - 86px); }
        body.service_detail .flow__list li .text strong {
          display: block;
          font-size: 21px;
          font-size: 2.1rem;
          letter-spacing: 0.002em;
          line-height: 1.4;
          font-weight: 600;
          margin-bottom: 5px; }
          @media only screen and (max-width: 767px) {
            body.service_detail .flow__list li .text strong {
              font-size: 18px;
              font-size: 1.8rem; } }
        body.service_detail .flow__list li .text p {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.002em;
          line-height: 1.75;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.service_detail .flow__list li .text p {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.57142857; } }

body.service_detail .other {
  padding-top: 120px;
  padding-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    body.service_detail .other {
      padding: 56px 0 100px; } }
  body.service_detail .other__list {
    max-width: 916px;
    margin: 34px auto 0;
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.service_detail .other__list {
        margin-top: 20px;
        display: block; } }
    body.service_detail .other__list li {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        body.service_detail .other__list li {
          width: 100%;
          margin-bottom: 130px; } }
      @media only screen and (max-width: 767px) {
        body.service_detail .other__list li:last-of-type {
          margin-bottom: 0; } }
      body.service_detail .other__list li .text {
        text-align: center;
        margin-top: 26px; }
        @media only screen and (max-width: 767px) {
          body.service_detail .other__list li .text {
            margin-top: 20px; } }
        body.service_detail .other__list li .text .title {
          color: #5BDABC; }
          body.service_detail .other__list li .text .title .jp {
            display: block;
            font-size: 32px;
            font-size: 3.2rem;
            letter-spacing: 0.1em;
            line-height: 1.4;
            font-weight: 400; }
            @media only screen and (max-width: 767px) {
              body.service_detail .other__list li .text .title .jp {
                font-size: 23px;
                font-size: 2.3rem; } }
          body.service_detail .other__list li .text .title .en {
            display: block;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.05em;
            line-height: 1.35714286;
            font-weight: 500;
            margin-top: 6px; }
            @media only screen and (max-width: 767px) {
              body.service_detail .other__list li .text .title .en {
                font-size: 10px;
                font-size: 1rem; } }
        body.service_detail .other__list li .text .c-btn {
          margin: 30px auto 0; }

body.service_detail .bottom {
  padding: 100px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.service_detail .bottom {
      padding: 0px 0 100px; } }

body.service .intro {
  padding: 20px 0 78px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.service .intro {
      padding: 18px 0 50px; } }
  body.service .intro .c-breadcrumb {
    margin-bottom: 85px; }
    @media only screen and (max-width: 767px) {
      body.service .intro .c-breadcrumb {
        margin-bottom: 50px; } }
  body.service .intro .text-image {
    margin-top: 54px;
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.service .intro .text-image {
        flex-direction: column; } }
    body.service .intro .text-image .text {
      width: 51.32924335%;
      padding-right: 59px; }
      @media only screen and (max-width: 767px) {
        body.service .intro .text-image .text {
          width: 100%;
          order: 2;
          padding-right: 0; } }
      body.service .intro .text-image .text .c-text01 {
        letter-spacing: 0.002em;
        line-height: 1.875;
        margin-bottom: 60px; }
        @media only screen and (max-width: 767px) {
          body.service .intro .text-image .text .c-text01 {
            letter-spacing: 0.1em;
            line-height: 1.57142857;
            margin-bottom: 45px; } }
    body.service .intro .text-image .image {
      width: 68.50715746%;
      margin-right: -19.83640082%; }
      @media only screen and (max-width: 767px) {
        body.service .intro .text-image .image {
          width: calc(100% + 20px);
          margin-right: -20px;
          margin-bottom: 25px; } }

body.service .service {
  padding: 100px 0 0px; }
  @media only screen and (max-width: 767px) {
    body.service .service {
      padding: 0px 0 0px; } }
  body.service .service .c-title02 {
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.service .service .c-title02 {
        margin-bottom: 40px; } }
  body.service .service .inner {
    max-width: 100%;
    padding: 0; }
    @media only screen and (max-width: 767px) {
      body.service .service .inner {
        padding: 0 20px; } }

body.service .bottom {
  padding: 100px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.service .bottom {
      padding: 40px 0 100px; } }

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

body.top .main-visual {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      height: 295px; } }
  body.top .main-visual:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0; }
  body.top .main-visual__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .main-visual__image video, body.top .main-visual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .main-visual__text {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }
    body.top .main-visual__text .en {
      display: block;
      font-size: 71px;
      font-size: 7.1rem;
      letter-spacing: 0.05em;
      line-height: 1.4;
      font-weight: 300; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__text .en {
          font-size: 32px;
          font-size: 3.2rem;
          line-height: 0.9375; } }
    body.top .main-visual__text .jp {
      display: block;
      font-size: 33px;
      font-size: 3.3rem;
      letter-spacing: 0.002em;
      font-weight: 600;
      font-family: "Oswald", sans-serif; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__text .jp {
          font-size: 11px;
          font-size: 1.1rem;
          margin-top: 10px; } }
  body.top .main-visual__scroll {
    position: absolute;
    color: #fff;
    right: 28px;
    bottom: 40px;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__scroll {
        right: 20px;
        bottom: 20px; } }
    body.top .main-visual__scroll span {
      font-size: 11px;
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      font-weight: 400;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      margin-bottom: 14px; }
    body.top .main-visual__scroll b {
      display: block;
      height: 32px;
      padding-top: 2px;
      overflow: hidden; }
    body.top .main-visual__scroll i {
      width: 1px;
      height: 30px;
      display: block;
      background: #fff;
      position: relative;
      margin: 0 auto; }
      body.top .main-visual__scroll i:before {
        content: "";
        width: 5px;
        height: 5px;
        display: block;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: -2px;
        left: -2px;
        animation: scrollAnimation 2s cubic-bezier(0.76, 0, 0.24, 1) infinite; }

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0); }
  48% {
    transform: translateY(36px);
    -webkit-transform: translateY(36px);
    opacity: 1; }
  50% {
    opacity: 0; }
  60% {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px); }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0); } }

body.top .news {
  padding: 100px 0; }
  @media only screen and (max-width: 767px) {
    body.top .news {
      padding: 50px 0 100px;
      position: relative; } }
  body.top .news__list {
    max-width: 788px;
    margin: 50px auto 60px;
    border-top: 1px solid #E6E6E6; }
    @media only screen and (max-width: 767px) {
      body.top .news__list {
        margin: 22px auto 0; } }
    body.top .news__list li {
      border-bottom: 1px solid #E6E6E6; }
      body.top .news__list li a {
        padding: 15px 86px 15px 78px;
        display: flex; }
        @media only screen and (max-width: 767px) {
          body.top .news__list li a {
            padding: 10px 0; } }
        body.top .news__list li a .date {
          width: 100px;
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.02em;
          line-height: 1.4;
          font-weight: 500;
          color: #5BDABC;
          margin-top: 3px; }
          @media only screen and (max-width: 767px) {
            body.top .news__list li a .date {
              font-size: 11px;
              font-size: 1.1rem;
              width: 74px;
              margin-top: 1px; } }
        body.top .news__list li a .title {
          width: calc(100% - 100px);
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.08em;
          line-height: 1.85714286;
          font-weight: 500;
          color: #5F5F5F; }
          @media only screen and (max-width: 767px) {
            body.top .news__list li a .title {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.5;
              width: calc(100% - 74px); } }
  @media only screen and (max-width: 767px) {
    body.top .news .btn-wrap {
      width: 80px;
      height: 40px;
      position: absolute;
      top: 54px;
      right: 20px; } }
  body.top .news .c-btn {
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.top .news .c-btn {
        width: 80px;
        height: 40px;
        font-size: 12px;
        font-size: 1.2rem;
        padding: 0; } }

body.top .read {
  padding: 50px 0 0;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .read {
      padding: 0 0 76px;
      position: relative; } }
  @media only screen and (max-width: 767px) {
    body.top .read:before {
      content: "";
      width: 100%;
      height: calc(100% - 76px);
      display: block;
      background: rgba(91, 218, 188, 0.1);
      position: absolute;
      left: 0;
      bottom: 0; } }
  body.top .read .inner {
    max-width: 1252px; }
  body.top .read__col {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      body.top .read__col {
        display: block; } }
    body.top .read__col .image {
      width: 57.16723549%;
      min-height: 640px;
      margin-left: -100px;
      margin-left: -8.53242321%;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .read__col .image {
          width: 100%;
          margin: 0 0 24px;
          min-height: 0; } }
      body.top .read__col .image:before {
        content: "";
        width: 154.17910448%;
        height: 100%;
        display: block;
        background: rgba(91, 218, 188, 0.1);
        position: absolute;
        left: 0;
        top: -49px; }
        @media only screen and (max-width: 767px) {
          body.top .read__col .image:before {
            content: none; } }
      body.top .read__col .image img {
        position: relative;
        width: 100%;
        min-height: 640px;
        object-fit: cover;
        object-position: center center; }
        @media only screen and (max-width: 767px) {
          body.top .read__col .image img {
            min-height: 0; } }
    body.top .read__col .text {
      width: 41.5%;
      padding-right: 35px;
      margin-bottom: 56px; }
      @media only screen and (max-width: 767px) {
        body.top .read__col .text {
          width: 100%;
          padding-right: 0;
          margin-bottom: 0; } }
      body.top .read__col .text .c-title03 {
        margin-bottom: 20px; }
        @media only screen and (max-width: 767px) {
          body.top .read__col .text .c-title03 {
            margin-bottom: 15px; } }

body.top .service {
  padding: 100px 0 107px; }
  @media only screen and (max-width: 767px) {
    body.top .service {
      padding: 80px 0 100px; } }
  body.top .service .c-title02 {
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.top .service .c-title02 {
        margin-bottom: 40px; } }
  body.top .service .inner {
    max-width: 100%;
    padding: 0; }
    @media only screen and (max-width: 767px) {
      body.top .service .inner {
        padding: 0 20px; } }
  body.top .service .bottom .c-btn {
    margin: 60px auto 0; }

body.top .recruit {
  background: #F8F8F8;
  padding-bottom: 100px; }
  body.top .recruit .inner {
    max-width: 1252px; }
  body.top .recruit__image {
    height: 528px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit__image {
        height: 295px; } }
    body.top .recruit__image video, body.top .recruit__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .recruit__text {
    background: #fff;
    margin-top: -128px;
    position: relative;
    padding: 80px 106px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit__text {
        margin-top: -30px;
        padding: 50px 20px 100px; } }
    body.top .recruit__text .box {
      max-width: 892px;
      margin-left: auto;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.top .recruit__text .box {
          display: block; } }
      body.top .recruit__text .box .c-title02 {
        width: 41%; }
        @media only screen and (max-width: 767px) {
          body.top .recruit__text .box .c-title02 {
            width: 100%;
            margin-bottom: 22px; } }
      body.top .recruit__text .box .text {
        width: 59%; }
        @media only screen and (max-width: 767px) {
          body.top .recruit__text .box .text {
            width: 100%; } }
        body.top .recruit__text .box .text .c-title03 {
          margin-bottom: 22px; }
          @media only screen and (max-width: 767px) {
            body.top .recruit__text .box .text .c-title03 {
              margin-bottom: 16px;
              line-height: 1.45454545; } }
        body.top .recruit__text .box .text .c-text01 {
          max-width: 443px;
          letter-spacing: 0.002em;
          margin-bottom: 52px; }
          @media only screen and (max-width: 767px) {
            body.top .recruit__text .box .text .c-text01 {
              max-width: 100%;
              letter-spacing: 0.1em; } }

body.top .company .inner {
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    body.top .company .inner {
      flex-direction: column; } }

body.top .company__text {
  width: 50%;
  padding: 40px 0px; }
  @media only screen and (max-width: 767px) {
    body.top .company__text {
      width: 100%;
      order: 2;
      padding: 50px 20px 100px; } }
  body.top .company__text .box {
    max-width: 583px;
    margin-left: auto;
    padding-left: 110px;
    padding-right: 110px; }
    @media only screen and (max-width: 767px) {
      body.top .company__text .box {
        max-width: 100%;
        padding: 0; } }
  body.top .company__text address {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.5625;
    font-weight: 500;
    color: #5F5F5F;
    margin: 50px 0 16px; }
    @media only screen and (max-width: 767px) {
      body.top .company__text address {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.002em;
        line-height: 1.57142857;
        margin: 20px 0 12px; } }
  body.top .company__text .tel {
    display: inline-block;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 45px; }
    @media only screen and (max-width: 767px) {
      body.top .company__text .tel {
        font-size: 26px;
        font-size: 2.6rem;
        margin-bottom: 60px; } }
  @media only screen and (max-width: 767px) {
    body.top .company__text .c-btn {
      margin: 0 auto; } }

body.top .company__image {
  width: 50%;
  height: 43.9238653vw;
  min-height: 600px; }
  @media only screen and (max-width: 767px) {
    body.top .company__image {
      width: 100%;
      height: 80vw;
      min-height: 0; } }
  body.top .company__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }
