@charset "UTF-8";
/* setting */
/*
	サイト全体で使うフォントの指定
*/
/* メイン・サブカラー */
/* リンク色 */
/*
	サイト全体で使うフォントの指定
*/
.ff-noto-r, body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ff-noto-m {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.ff-noto-b {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.ff-noto-eb {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.ff-en-r, .top-service-section__num, .hdg-section-title, .copy {
  font-family: "Jost", "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
}

.ff-en-m, .top-recruit__title-en, .top-scroll, .btn-hd {
  font-family: "Jost", "Noto Sans JP", serif;
  font-weight: 500;
  font-style: normal;
}

.ff-en-sb, .header-primal-hd .primal-nav__btn, .header-primal-hd .primal-nav ul li a, .footer-main {
  font-family: "Jost", "Noto Sans JP", serif;
  font-weight: 600;
  font-style: normal;
}

.ff-en-b {
  font-family: "Jost", "Noto Sans JP", serif;
  font-weight: 700;
  font-style: normal;
}

/*
	サイト全体で使うフォントの指定
*/
/* ページのwidth */
/* tool */
/*
	サイト全体で使うmixinの指定
*/
/* base */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*
	サイトの基本となるCSS
*/
/* 余白のリセット */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote,
form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* body */
body {
  text-align: left;
  line-height: 2;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  color: #000000;
}
body.noscroll {
  overflow: hidden;
  height: 100vh;
}

/* リンク色 */
a {
  color: #000000;
}

a:hover, a:active {
  text-decoration: none;
  color: #000000;
}

/* hover時の画像 */
a:hover img {
  -moz-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
  border: none;
}

/* 画像 */
img {
  vertical-align: bottom;
  max-width: 100%;
}

/* Clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */
/* layout */
/*
	サイト全体のレイアウトグリッドの指定
*/
/* ヘッダー */
.layout-header {
  width: 100%;
}

/* フッター */
.layout-footer {
  width: 100%;
}

.layout-footer-half {
  width: 460px;
  float: left;
}

/* ページ幅 */
.layout-container {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 699px) {
  .layout-container {
    width: 100%;
    padding: 0px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout-container-sm {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 699px) {
  .layout-container-sm {
    width: 100%;
    padding: 0px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/* メインカラム */
.layout-main-column {
  width: 710px;
  float: right;
}

/* サブカラム */
.layout-sub-column {
  width: 230px;
  float: left;
}

/* 汎用レイアウト */
.layout-section {
  margin-bottom: 80px;
}

.layout-half {
  width: 49%;
}

.layout-1-third {
  width: 32%;
}

.layout-2-third {
  width: 66%;
}

.layout-3-col {
  float: left;
  width: 32%;
  margin-right: 2%;
}
.layout-3-col:nth-child(3n) {
  margin-right: 0;
}
.layout-3-col:nth-child(3n+1) {
  clear: both;
}

.layout-4-col {
  float: left;
  width: 24%;
  margin-right: 1%;
}
.layout-4-col:nth-child(4n) {
  margin-right: 0;
}
.layout-4-col:nth-child(4n+1) {
  clear: both;
}

@media screen and (min-width: 699px) {
  .pc-row, .footer-main, .footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pc-row .col, .footer-main .col, .footer-wrap .col {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
    list-style: none;
  }
}

.row, .footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row .col, .footer-nav__list .col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
  list-style: none;
}

/*
	ヘッダーの指定
*/
/* ヘッダー外枠 */
/*
	フッターの指定
*/
/* フッター外枠 */
footer {
  background-color: #3b4043;
  color: #FFFFFF;
  padding: 40px 0px 28px;
  z-index: 1;
  position: relative;
}
footer .btn-recruit {
  width: 136px;
  height: 47px;
  background-color: #fff;
  color: #3B4043;
  text-decoration: none;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
  display: block;
}
footer .btn-recruit:hover {
  opacity: 0.7;
}
@media (max-width: 699px) {
  footer .btn-recruit {
    width: 100%;
  }
}

.footer-wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-main {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.94rem;
  gap: 70px;
  margin-right: -70px;
  letter-spacing: 0.75px;
}
@media (max-width: 699px) {
  .footer-main {
    margin-right: 0;
  }
}

.footer-nav__list {
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 60px;
}
.footer-nav__list a {
  color: #fff;
  text-decoration: none;
}
.footer-nav__list a:hover {
  opacity: 0.7;
}
@media (max-width: 699px) {
  .footer-nav__list {
    gap: 20px;
    margin-top: 30px;
  }
}

.copy {
  text-align: right;
  margin-right: -70px;
  font-size: 0.88rem;
  margin-top: 40px;
}
@media (max-width: 699px) {
  .copy {
    margin-right: 0;
  }
}

/* module */
/*
	サイト全体のナビゲーション設定
*/
/* グローバルナビの設定 */
/* ローカルナビの設定 */
.header-primal-hd {
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 50%;
  width: 1100px;
  height: 85px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  padding: 25px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-primal-hd.show {
  opacity: 1;
}
.header-primal-hd .site-description {
  text-indent: -9999px;
  width: 210px;
  height: 37px;
  background: url(../img/index/header/log--sitename.svg) top left/contain no-repeat;
}
.header-primal-hd .site-description a {
  display: block;
}
.header-primal-hd .primal-nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
.header-primal-hd .primal-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.header-primal-hd .primal-nav ul li a {
  font-size: 0.94rem;
  text-decoration: none;
  color: #3B4043;
}
.header-primal-hd .primal-nav ul li a span {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  display: block;
}
.header-primal-hd .primal-nav ul li a:hover span {
  -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg);
}
.header-primal-hd .primal-nav__btn {
  width: 136px;
  height: 47px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.94rem;
  text-decoration: none;
  color: #ffffff;
  background-color: #4A6275;
  position: relative;
  border: 1px solid #4A6275;
  padding: 10px 0px;
  text-align: center;
}
.header-primal-hd .primal-nav__btn span {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 1;
  position: relative;
  display: block;
}
.header-primal-hd .primal-nav__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 136px;
  height: 47px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%) scale(0, 0);
          transform: translate(-50%, -50%) scale(0, 0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 0;
  border: 1px solid #4A6275;
}
.header-primal-hd .primal-nav__btn:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}
.header-primal-hd .primal-nav__btn:hover span {
  color: #4A6275;
  -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg);
}
@media (max-width: 699px) {
  .header-primal-hd {
    display: none;
  }
}

/*
	サイト全体の見出しの設定
*/
.hdg-section-title {
  color: #4A6275;
  font-size: 2.5rem;
}
@media (max-width: 699px) {
  .hdg-section-title {
    font-size: 1.88rem;
  }
}

/*
	サイト全体のテーブルの設定
*/
/* テーブルの設定 */
.table-ptn--01 th {
  background: #EAE6D0;
  border: 1px solid #ABA073;
  padding: 5px 10px;
  color: #39330C;
}
.table-ptn--01 td {
  background: #fff;
  border: 1px solid #ABA073;
  padding: 5px 10px;
}

.table-ptn--02 th {
  background: #CCE4AE;
  border: 1px solid #ABA073;
  padding: 5px 10px;
  color: #39330C;
}
.table-ptn--02 td {
  background: #fff;
  border: 1px solid #ABA073;
  padding: 5px 10px;
}

.table-ptn--03 th {
  border-bottom: 1px dashed #ABA073;
  padding: 10px;
  font-weight: bold;
}
.table-ptn--03 td {
  border-bottom: 1px dashed #ABA073;
  padding: 10px;
}

/*
	サイト全体のリンク・ボタンの設定
*/
/* ボタンの設定 */
.btn-hd {
  width: 294px;
  height: 72px;
  background: #fff;
  border: 1px solid #B1B1B1;
  font-size: 0.94rem;
  color: #3B4043;
  padding: 20px 40px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  display: block;
}
.btn-hd span {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 1;
  position: relative;
  display: block;
}
.btn-hd::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 294px;
  height: 72px;
  background-color: #707070;
  -webkit-transform: translate(-50%, -50%) scale(0, 0);
          transform: translate(-50%, -50%) scale(0, 0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 0;
}
.btn-hd::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/index/service/ico--arrow.svg) top left/contain no-repeat;
  width: 12px;
  height: 12px;
  right: 15px;
  top: 30px;
  z-index: 1;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}
.btn-hd:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}
.btn-hd:hover::before {
  background-image: url(../img/index/service/ico--arrow-w.svg);
  -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg);
}
.btn-hd:hover span {
  color: #fff;
  -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg);
}

/*
	サイト全体のリストの設定
*/
/* アイコン型リストの設定 */
.list-arrow {
  list-style: none;
}
.list-arrow li {
  background: url(../img/common/mark/ico--arrow-01.png) 2px 7px no-repeat;
  padding-left: 17px;
}

.list-circle {
  list-style: none;
}
.list-circle li {
  background: url(../img/common/mark/ico--circle-01.png) 4px 7px no-repeat;
  padding-left: 17px;
}

/* ボーダー型リストの設定 */
.list-border {
  list-style: none;
}
.list-border li {
  padding-left: 5px;
  border-bottom: 1px dashed #ABA073;
}

/* 番号型リストの設定 */
.list-numbering {
  list-style: decimal;
  padding-left: 25px;
}
.list-numbering li {
  display: list-item;
  margin-bottom: 10px;
}
.list-numbering li .list-numbering {
  list-style: lower-roman inside;
}
.list-numbering li .list-numbering li {
  text-indent: -1.2em;
}

/* 通常リストの設定 */
.list-nomal {
  padding-left: 20px;
}
.list-nomal li {
  margin-bottom: 5px;
}

/* リストマークなし */
.list-style-none {
  list-style: none;
}

/*
	サイト全体のリンク・ボタンの設定
*/
/* ブロックの設定 */
.box-sub--01 {
  border: 1px solid #ABA073;
  background: #fff;
  padding: 15px;
}

.box-sub--02 {
  border: 4px solid #FFC693;
  padding: 7px;
}

/*
	サイト全体のWordPress記事の設定
*/
/* ブログ・お知らせの設定 */
.article-nav {
  position: relative;
  margin-bottom: 80px;
}
.article-nav .article-nav {
  width: 30%;
}
.article-nav .article-nav:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}
.article-nav .article-nav:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
}
.article-nav .article-nav:nth-child(3) {
  margin: 0 auto;
}

/* ページネーションの設定 */
.pagination {
  position: relative;
  padding: 20px 0;
  clear: both;
  text-align: center;
  line-height: 40px;
  font-size: 12px;
}
.pagination span, .pagination a {
  background-color: #fff;
  display: inline-block;
  width: 48px;
  margin: 2px 5px 2px 0;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.88rem;
  color: #4A6275;
}
.pagination a:hover {
  background-color: #4A6275;
  color: #fff;
}
.pagination .current {
  background-color: #fff;
  color: #4A6275;
}

/*
	サイト全体のアイテムの設定
*/
.top-main {
  position: relative;
  width: 100%;
  z-index: 0;
}
.top-main__inner {
  position: relative;
  background: url(../img/index/main/pic--infinity.svg) left calc(50vw - 650px) center/auto 476px no-repeat;
}
.top-main .layout-container {
  position: relative;
  height: 100vh;
}
.top-main__lede {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: 500px;
  padding: 15% 0px;
}
.top-main__lede-01 {
  display: block;
  -webkit-filter: drop-shadow(0 3px 20px rgba(214, 214, 214, 0.5));
          filter: drop-shadow(0 3px 20px rgba(214, 214, 214, 0.5));
}
.top-main__lede-02 {
  display: block;
  color: #fff;
  font-size: 1.75rem;
  letter-spacing: 2.8px;
}
.top-main__mov {
  background-attachment: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.top-main__mov video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
@media (max-width: 699px) {
  .top-main {
    margin-bottom: 0;
  }
  .top-main__inner {
    background-size: 416px auto;
    background-position: left top 176px;
  }
  .top-main__lede {
    top: 340px;
    left: 60px;
  }
  .top-main__lede-01 {
    margin-bottom: 24px;
  }
  .top-main__lede-02 {
    font-size: 0.88rem;
  }
}

.top-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  font-size: 1.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FCFBFA;
  text-decoration: none;
  z-index: 2;
}
.top-scroll span {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
}
.top-scroll:hover {
  color: #FCFBFA;
  opacity: 0.7;
}
.top-scroll::after {
  content: "";
  width: 1px;
  height: 72px;
  background-color: #FCFBFA;
  position: absolute;
  bottom: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 699px) {
  .top-scroll {
    font-size: 0.94rem;
    bottom: 55px;
  }
  .top-scroll::after {
    height: 55px;
    bottom: -65px;
  }
}

.top-concept {
  padding: 315px 0px 257px;
  position: relative;
  text-align: center;
}
.top-concept p {
  font-size: 1.13rem;
  margin-bottom: 104px;
  font-weight: bold;
  line-height: 2.22;
  letter-spacing: 1.8px;
  color: #fcfbfa;
  z-index: 2;
  position: relative;
}
.top-concept::after {
  content: "";
  mix-blend-mode: multiply;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(90%, rgba(101, 101, 101, 0.75)), to(rgba(0, 0, 0, 0.9)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(101, 101, 101, 0.75) 90%, rgba(0, 0, 0, 0.9));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 699px) {
  .top-concept {
    padding-top: 85px;
    padding-bottom: 100px;
  }
  .top-concept p {
    font-size: 1rem;
    margin-bottom: 88px;
  }
  .top-concept img {
    display: block;
    width: 155px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-service {
  padding: 140px 0px;
  text-align: center;
  z-index: 1;
  background-color: #fff;
}
.top-service .hdg-section-title {
  margin-bottom: 126px;
  text-align: center;
}
.top-service__image {
  margin-bottom: 440px;
  display: block;
}
.top-service__note {
  text-align: center;
  font-size: 1.38rem;
  font-weight: bold;
  color: #C30000;
}
@media (max-width: 699px) {
  .top-service {
    padding: 70px 0px;
  }
  .top-service .hdg-section-title {
    margin-bottom: 47px;
  }
  .top-service__image {
    margin-bottom: 140px;
  }
}

.top-service-section {
  font-size: 0.94rem;
  z-index: 0;
}
.top-service-section .layout-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 156px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-service-section__detail {
  width: 633px;
  margin-left: -134px;
}
.top-service-section__overview {
  width: 450px;
  position: sticky;
  top: 30px;
  padding-top: 30px;
}
.top-service-section__num {
  color: #474645;
  font-size: 2.5rem;
  display: block;
}
.top-service-section__title {
  font-size: 1.38rem;
  margin-top: 28px;
  margin-bottom: 40px;
  line-height: 1.36;
  letter-spacing: 2.2px;
  font-weight: bold;
}
.top-service-section__title-sub {
  font-size: 1.13rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.top-service-section__list {
  list-style-position: inside;
}
.top-service-section__inner {
  margin-left: 134px;
  margin-bottom: 60px;
}
.top-service-section__inner .top-service-section__title-sub {
  margin-bottom: 20px;
}
.top-service-section .btn-hd {
  margin-top: 40px;
}
@media (max-width: 699px) {
  .top-service-section .layout-container {
    display: block;
  }
  .top-service-section__detail {
    width: 100%;
    margin-left: 0;
  }
  .top-service-section__overview {
    width: 100%;
    position: relative;
    top: auto;
    padding-top: 0;
    margin-bottom: 65px;
  }
  .top-service-section__inner {
    margin-left: 0;
  }
  .top-service-section__inner .top-service-section__title-sub {
    font-size: 1rem;
  }
  .top-service-section__num {
    font-size: 1.69rem;
    line-height: 1;
    margin-bottom: 10px;
  }
  .top-service-section__title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
  .top-service-section__title-sub {
    font-size: 0.75rem;
    margin-bottom: 50px;
  }
}

.top-service-bros {
  margin-bottom: 400px;
}
.top-service-bros .top-service-section__main-img {
  display: block;
  margin-bottom: 120px;
}
.top-service-bros .top-service-section__inner img {
  margin-left: -45px;
  margin-bottom: 75px;
  width: 514px;
}
@media (max-width: 699px) {
  .top-service-bros {
    margin-bottom: 120px;
  }
  .top-service-bros .top-service-section__main-img {
    margin: 0px -30px 70px;
    max-width: calc(100% + 60px);
  }
  .top-service-bros .top-service-section__inner img {
    margin-left: 0;
    width: 100%;
  }
}

.top-service-tcd .top-service-section__main-img {
  display: block;
}
.top-service-tcd .top-service-section__inner {
  margin-bottom: 120px;
}
.top-service-tcd .top-service-section__detail img {
  margin-bottom: 66px;
}
@media (max-width: 699px) {
  .top-service-tcd {
    margin-bottom: 120px;
  }
  .top-service-tcd .top-service-section__main-img {
    margin: 0px -30px 40px;
    max-width: calc(100% + 60px);
  }
  .top-service-tcd .top-service-section__inner {
    margin-bottom: 50px;
  }
  .top-service-tcd .top-service-section__inner img {
    margin-left: 0;
    width: 100%;
  }
  .top-service-tcd .top-service-section__detail img {
    margin-bottom: 30px;
  }
}

.bg-hdg-01 {
  background-color: #F7F8FA;
  z-index: 2;
  position: relative;
}

.top-overview {
  padding-top: 100px;
}
.top-overview .hdg-section-title {
  margin-bottom: 30px;
}
.top-overview__table {
  width: 100%;
  border-top: 1px solid #BFBFBF;
}
.top-overview__table tr {
  border-bottom: 1px solid #BFBFBF;
}
.top-overview__table th, .top-overview__table td {
  padding: 40px 0px;
}
.top-overview__table th {
  font-size: 1.13rem;
  font-weight: 600;
  width: 257px;
}
.top-overview__table td {
  font-size: 0.94rem;
}
.top-overview__image {
  margin: 120px 0px;
}
@media (max-width: 699px) {
  .top-overview {
    padding-top: 56px;
  }
  .top-overview__table th, .top-overview__table td {
    display: block;
  }
  .top-overview__table th {
    padding: 30px 0px 10px;
    font-size: 0.88rem;
  }
  .top-overview__table td {
    padding: 10px 0px 30px;
  }
  .top-overview__image {
    margin: 57px 0px;
  }
}

.top-recruit {
  background: url(../img/index/recruit/bgi--01.webp) top left calc(50vw - 550px - var(--scrollbar) / 2)/contain no-repeat;
  height: 560px;
  color: #fff;
  padding: 60px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-recruit__title-en {
  font-size: 6.06rem;
  text-align: center;
  line-height: 1;
}
.top-recruit__title {
  font-size: 1.38rem;
  font-weight: bold;
  line-height: 1.36;
  letter-spacing: 2.2px;
  text-align: center;
  margin-bottom: 78px;
}
.top-recruit__lede {
  text-align: center;
  font-size: 0.94rem;
}
.top-recruit .btn-hd {
  margin: 46px auto 0px;
}
.top-recruit .btn-hd::before {
  background-image: url(../img/index/recruit/ico--link.svg);
  width: 20px;
  height: 20px;
  top: 26px;
  right: 13px;
}
.top-recruit .btn-hd:hover::before {
  background-image: url(../img/index/recruit/ico--link-w.svg);
}
@media (max-width: 1233px) {
  .top-recruit {
    background-size: cover;
  }
}
@media (max-width: 699px) {
  .top-recruit {
    height: 506px;
  }
  .top-recruit__title-en {
    font-size: 4.19rem;
  }
  .top-recruit__title {
    font-size: 1.25rem;
  }
}

.top-contact {
  padding: 120px 0px;
}
@media (max-width: 699px) {
  .top-contact {
    padding: 34px 0px 70px;
  }
}

.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
}

.js-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: url(../img/index/main/log--01.svg) center center/150px auto no-repeat, #3b4043;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  margin: 200px auto 0px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
/*
	サイト全体のユーティリティ設定
*/
/* 文字サイズの設定 */
.u-font-size--small {
  font-size: 0.88rem;
}

.u-font-size--large {
  font-size: 1.13rem;
}

.u-font-size--x-large {
  font-size: 1.25rem;
}

.u-font-size--xx-large {
  font-size: 1.5rem;
}

/* 文字色、装飾の設定 */
.u-font-bold {
  font-weight: bold;
}

.u-color-red {
  color: red;
}

.u-color-white {
  color: white;
}

.u-color-main {
  color: #4A6275;
}

.u-color-sub {
  color: #707070;
}

/* マーカーの設定 */
.u-marker-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFF238));
  background: linear-gradient(transparent 60%, #FFF238 60%);
  padding: 0 2px;
  position: relative;
  behavior: url(PIE.htc);
}

.u-marker-pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #FFD4D3));
  background: linear-gradient(transparent 40%, #FFD4D3 40%);
  padding: 0 2px;
  position: relative;
}

/* 段落の設定 */
.u-txt {
  padding: 0 1px;
}

.u-paragraph {
  padding: 0 1px 0 1px;
  margin-bottom: 1em;
}

.u-txt-sub {
  font-size: 85% !important;
  color: #666;
}

.u-txt-attention {
  padding: 0 0 0 0.7em;
  text-indent: -0.7em;
  color: #C60;
}

/* 文字寄せの設定 */
.u-textalign-center {
  text-align: center;
}

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

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

/* floatの設定 */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clear {
  clear: both;
}

.u-overflow-hidden {
  overflow: hidden;
}

/* 画像の寄せ */
img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}

img.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 線の設定 */
.u-line-dashed {
  border: none;
  border-top: 1px dashed #ccc;
  height: 1px;
}

/* ポジションの設定 */
.u-position-relative {
  position: relative;
}

/* マージンボトムの設定 */
.u-margin-bottom--none {
  margin-bottom: 0px;
}

.u-margin-bottom--small {
  margin-bottom: 10px;
}

.u-margin-bottom {
  margin-bottom: 20px;
}

.u-margin-bottom--large {
  margin-bottom: 60px;
}

.u-margin-bottom--x-large {
  margin-bottom: 80px;
}

.u-margin-bottom--xx-large {
  margin-bottom: 120px;
}

.u-margin-bottom--max {
  margin-bottom: 160px;
}

/* レイアウトの設定 */
@media (min-width: 699px) {
  .u-over-parent {
    margin-left: calc(50% - 50vw - var(--scrollbar) / 2);
    margin-right: calc(50% - 50vw - var(--scrollbar) / 2);
  }
}

@media (min-width: 699px) {
  .u-padding-pagewidth {
    padding-left: calc(50vw - 550px);
    padding-right: calc(50vw - 550px);
  }
}

/* theme */
/*
	サイト全体で使う色の指定
*/
/*# sourceMappingURL=top.css.map */