@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: "Noto Sans JP", sans-serif;
  background: #FAFAFA; }

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

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

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

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

textarea {
  resize: vertical; }

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

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

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

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

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

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

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

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

.footer {
  border-top: 1px solid #000; }
  .footer__top {
    padding: 80px 83px; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 40px 18px; } }
    .footer__top .company__logo {
      display: block;
      width: 265px;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .footer__top .company__logo {
          width: 163px;
          margin-bottom: 30px; } }
    .footer__top .company__name {
      display: block;
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      font-family: "Inter", sans-serif;
      margin-bottom: 8px; }
      @media only screen and (max-width: 767px) {
        .footer__top .company__name {
          font-size: 14px;
          font-size: 1.4rem;
          margin-bottom: 6px; } }
    .footer__top .company__address {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.4; }
      @media only screen and (max-width: 767px) {
        .footer__top .company__address {
          line-height: 1.75; } }
  .footer__bottom {
    background: #000;
    color: #fff;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px; } }
    .footer__bottom .copyright {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .footer__bottom .copyright {
          order: 2;
          margin: 5px 0 0;
          text-align: left;
          font-size: 10px;
          font-size: 1rem; } }
    .footer__bottom .link-list {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .footer__bottom .link-list {
          order: 1;
          justify-content: space-between;
          width: 100%; } }
      .footer__bottom .link-list li {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        line-height: 2;
        margin-left: 40px; }
        @media only screen and (max-width: 767px) {
          .footer__bottom .link-list li {
            font-size: 10px;
            font-size: 1rem;
            margin: 0; } }
        .footer__bottom .link-list li a {
          transition: opacity .3s; }
          .footer__bottom .link-list li a:hover {
            opacity: 0.6; }
          .footer__bottom .link-list li a:after {
            content: "";
            width: 12px;
            height: 12px;
            display: inline-block;
            background: url(../images/common/icon_link.svg) center center/cover no-repeat;
            margin-left: 7px;
            position: relative;
            top: 1px; }
            @media only screen and (max-width: 767px) {
              .footer__bottom .link-list li a:after {
                width: 8px;
                height: 8px;
                margin-left: 3px; } }

.header {
  width: 100%;
  height: 72px;
  border-bottom: 1px solid #000;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAFAFA;
  z-index: 1000; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 50px;
      padding-left: 18px; } }
  .header__logo {
    display: flex;
    align-items: center;
    width: 236px; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 150px; } }
    .header__logo i {
      display: block;
      width: 125px; }
      @media only screen and (max-width: 767px) {
        .header__logo i {
          width: 80px; } }
    .header__logo span {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.05em;
      font-weight: 600;
      font-family: "Inter", sans-serif;
      display: inline-block;
      margin-left: 25px; }
      @media only screen and (max-width: 767px) {
        .header__logo span {
          font-size: 13px;
          font-size: 1.3rem;
          margin-left: 11px; } }
  .header .gnav {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden; } }
    .header .gnav__list {
      margin-right: 40px;
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      .header .gnav__list li {
        margin-left: 33px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        font-family: "Arimo", sans-serif; }
        .header .gnav__list li a {
          transition: color .3s; }
          .header .gnav__list li a:hover {
            color: #888888; }
    .header .gnav__btn {
      display: flex; }
      .header .gnav__btn .btn {
        width: 200px;
        height: 71px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        border-left: 1px solid #000;
        transition: color .5s, background-color .5s, opacity .5s;
        position: relative; }
        .header .gnav__btn .btn span {
          position: relative; }
        .header .gnav__btn .btn.black {
          background: #000;
          color: #fff; }
          .header .gnav__btn .btn.black:before {
            content: "";
            width: 100%;
            height: 100%;
            display: block;
            background: #fff;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform .5s;
            transform: scaleX(0);
            transform-origin: right; }
          .header .gnav__btn .btn.black:hover {
            color: #000; }
            .header .gnav__btn .btn.black:hover:before {
              transform: scaleX(1);
              transform-origin: left; }
  .header .btn.sp {
    width: 157px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    background: #000;
    color: #fff;
    position: relative; }
    .header .btn.sp span {
      position: relative; }

.c-title02 {
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: 0.03em;
  line-height: 0.8;
  font-family: "Arimo", sans-serif; }
  @media only screen and (max-width: 767px) {
    .c-title02 {
      font-size: 31px;
      font-size: 3.1rem; } }

.c-head {
  padding: 35px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000; }
  @media only screen and (max-width: 767px) {
    .c-head {
      padding: 16px 0; } }

.c-text01 {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.09em;
  line-height: 1.75; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.08em; } }

/* 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.entry main {
  padding-top: 172px; }
  @media only screen and (max-width: 767px) {
    body.entry main {
      padding-top: 110px; } }

body.entry .whole {
  padding-bottom: 194px; }
  @media only screen and (max-width: 767px) {
    body.entry .whole {
      padding-bottom: 100px; } }
  body.entry .whole .head .inner {
    max-width: 1160px; }
  body.entry .whole .head__title {
    margin-bottom: 25px; }
    @media only screen and (max-width: 767px) {
      body.entry .whole .head__title {
        margin-bottom: 20px; } }
    body.entry .whole .head__title .en {
      display: block;
      font-size: 62px;
      font-size: 6.2rem;
      letter-spacing: 0.03em;
      line-height: 0.8;
      font-family: "Arimo", sans-serif;
      margin-bottom: 22px; }
      @media only screen and (max-width: 767px) {
        body.entry .whole .head__title .en {
          font-size: 31px;
          font-size: 3.1rem;
          margin-bottom: 8px; } }
    body.entry .whole .head__title .jp {
      display: block;
      font-size: 22px;
      font-size: 2.2rem;
      line-height: 1.5;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.entry .whole .head__title .jp {
          font-size: 18px;
          font-size: 1.8rem;
          line-height: 1.6; } }
  body.entry .whole .head .c-text01 {
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.entry .whole .head .c-text01 {
        margin-bottom: 34px; } }
  body.entry .whole .head .prev {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    width: max-content;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.entry .whole .head .prev {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 60px; } }
    body.entry .whole .head .prev:hover:after {
      transform: scaleX(1);
      transform-origin: left; }
    body.entry .whole .head .prev:after {
      content: "";
      width: 100%;
      height: 1px;
      display: block;
      background: #000;
      position: absolute;
      left: 0;
      bottom: -5px;
      transition: transform .3s;
      transform: scaleX(0);
      transform-origin: right; }
    body.entry .whole .head .prev i {
      display: inline-block;
      margin-left: 8px;
      position: relative;
      top: -2px; }
      @media only screen and (max-width: 767px) {
        body.entry .whole .head .prev i {
          margin-left: 4px;
          width: 20px; } }
      body.entry .whole .head .prev i img {
        display: block; }
  body.entry .whole .cont .inner {
    max-width: 980px; }
  body.entry .whole .formArea {
    background: #fff;
    padding: 56px 40px 80px; }
    @media only screen and (max-width: 767px) {
      body.entry .whole .formArea {
        padding: 20px 20px 60px; } }
    body.entry .whole .formArea table {
      width: 100%;
      max-width: 730px;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        body.entry .whole .formArea table {
          display: block; } }
      @media only screen and (max-width: 767px) {
        body.entry .whole .formArea table tbody {
          display: block; } }
      body.entry .whole .formArea table tr {
        border-bottom: 1px solid #F2F2F2; }
        @media only screen and (max-width: 767px) {
          body.entry .whole .formArea table tr {
            padding: 20px 0;
            display: block; } }
        body.entry .whole .formArea table tr th {
          width: 255px;
          padding: 24px 0;
          vertical-align: top;
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.05em;
          line-height: 1.5; }
          @media only screen and (max-width: 767px) {
            body.entry .whole .formArea table tr th {
              display: block;
              width: 100%;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 0.08em;
              line-height: 1.75;
              padding: 0;
              margin-bottom: 10px; } }
          body.entry .whole .formArea table tr th span {
            padding: 0px 7px 1px;
            display: inline-block;
            background: #000;
            color: #fff;
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            border-radius: 2px;
            margin-left: 4px;
            position: relative;
            top: -1px; }
            @media only screen and (max-width: 767px) {
              body.entry .whole .formArea table tr th span {
                font-size: 11px;
                font-size: 1.1rem;
                padding: 0px 4px 1px;
                line-height: 1.4;
                margin-left: 0; } }
        body.entry .whole .formArea table tr td {
          width: calc(100% - 255px);
          padding: 24px 0;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.entry .whole .formArea table tr td {
              display: block;
              width: 100%;
              padding: 0; } }
          body.entry .whole .formArea table tr td input[type="text"] {
            width: 100%;
            height: 40px;
            padding: 9px 12px;
            background: #F2F2F2;
            border: 1px solid #D9D9D9;
            border-radius: 2px;
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0.05em; }
            @media only screen and (max-width: 767px) {
              body.entry .whole .formArea table tr td input[type="text"] {
                padding: 8px 6px;
                font-size: 14px;
                font-size: 1.4rem;
                letter-spacing: 0.08em; } }
            body.entry .whole .formArea table tr td input[type="text"]::placeholder {
              color: #B3B3B3; }
          body.entry .whole .formArea table tr td textarea {
            width: 100%;
            height: 100px;
            padding: 9px 12px;
            background: #F2F2F2;
            border: 1px solid #D9D9D9;
            border-radius: 2px;
            resize: none;
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0.05em; }
            @media only screen and (max-width: 767px) {
              body.entry .whole .formArea table tr td textarea {
                padding: 8px 6px;
                font-size: 14px;
                font-size: 1.4rem;
                letter-spacing: 0.08em;
                line-height: 1.75;
                height: 163px; } }
            body.entry .whole .formArea table tr td textarea::placeholder {
              color: #B3B3B3; }
            body.entry .whole .formArea table tr td textarea.big {
              height: 174px; }
              @media only screen and (max-width: 767px) {
                body.entry .whole .formArea table tr td textarea.big {
                  height: 163px; } }
          body.entry .whole .formArea table tr td input[type="file"] {
            width: 100%;
            cursor: pointer; }
            @media only screen and (max-width: 767px) {
              body.entry .whole .formArea table tr td input[type="file"] {
                font-size: 12px;
                font-size: 1.2rem; } }
            body.entry .whole .formArea table tr td input[type="file"]::file-selector-button {
              width: 130px;
              height: 28px;
              padding: 2px;
              font-size: 15px;
              font-size: 1.5rem;
              letter-spacing: 0.05em;
              background: #F2F2F2;
              border: 1px solid #D9D9D9;
              border-radius: 2px;
              display: inline-block;
              margin-right: 12px;
              cursor: pointer; }
              @media only screen and (max-width: 767px) {
                body.entry .whole .formArea table tr td input[type="file"]::file-selector-button {
                  width: 96px;
                  height: 21px;
                  font-size: 12px;
                  font-size: 1.2rem;
                  letter-spacing: 0.08em;
                  padding: 1px 6px;
                  margin-right: 6px;
                  font-feature-settings: "palt"; } }
          body.entry .whole .formArea table tr td .tel-box {
            display: flex;
            align-items: center; }
            body.entry .whole .formArea table tr td .tel-box input[type="text"] {
              width: 80px; }
              @media only screen and (max-width: 767px) {
                body.entry .whole .formArea table tr td .tel-box input[type="text"] {
                  width: calc((100% - 28px) / 3); } }
            body.entry .whole .formArea table tr td .tel-box hr {
              border: none;
              width: 8px;
              height: 1px;
              display: block;
              background: #000;
              margin: 0 8px; }
              @media only screen and (max-width: 767px) {
                body.entry .whole .formArea table tr td .tel-box hr {
                  width: 4px;
                  margin: 0 5px; } }
          body.entry .whole .formArea table tr td .select-box {
            position: relative; }
            body.entry .whole .formArea table tr td .select-box select {
              width: 100%;
              height: 40px;
              padding: 9px 12px 10px;
              background: #F2F2F2;
              border: 1px solid #D9D9D9;
              border-radius: 2px;
              font-size: 15px;
              font-size: 1.5rem;
              letter-spacing: 0.05em; }
              @media only screen and (max-width: 767px) {
                body.entry .whole .formArea table tr td .select-box select {
                  padding: 8px 6px;
                  font-size: 14px;
                  font-size: 1.4rem;
                  letter-spacing: 0.08em; } }
            body.entry .whole .formArea table tr td .select-box svg {
              position: absolute;
              top: 50%;
              right: 17px;
              transform: translate(0%, -50%);
              pointer-events: none; }
              @media only screen and (max-width: 767px) {
                body.entry .whole .formArea table tr td .select-box svg {
                  width: 14px;
                  height: auto;
                  right: 6px; } }
    body.entry .whole .formArea .agree {
      margin: 40px 0 14px;
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 2.66666667;
      letter-spacing: 0.05em;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        body.entry .whole .formArea .agree {
          margin: 27px 0 20px;
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.6; } }
      body.entry .whole .formArea .agree a {
        text-decoration: underline; }
    body.entry .whole .formArea .btn-submit {
      width: 100%;
      max-width: 359px;
      height: 54px;
      border-radius: 4px;
      background: #000;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      border: 1px solid #000;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      transition: color .3s, background-color .3s;
      background: #000;
      overflow: hidden;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.entry .whole .formArea .btn-submit {
          height: 41px;
          font-size: 15px;
          font-size: 1.5rem;
          border-radius: 2px; } }
      body.entry .whole .formArea .btn-submit:before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform .5s;
        transform: scaleX(0);
        transform-origin: right; }
      body.entry .whole .formArea .btn-submit span {
        position: relative; }
      body.entry .whole .formArea .btn-submit:hover {
        color: #000; }
        body.entry .whole .formArea .btn-submit:hover:before {
          transform: scaleX(1);
          transform-origin: left; }

body.top .inner {
  max-width: 93.70424597vw;
  padding: 0 2.92825769vw; }
  @media only screen and (max-width: 767px) {
    body.top .inner {
      max-width: 100%;
      padding: 0 18px; } }

body.top .c-title02 {
  font-size: 4.39238653vw; }
  @media only screen and (max-width: 767px) {
    body.top .c-title02 {
      font-size: 31px;
      font-size: 3.1rem; } }

body.top .c-head {
  padding: 2.56222548vw 0; }
  @media only screen and (max-width: 767px) {
    body.top .c-head {
      padding: 16px 0; } }

body.top .c-text01 {
  font-size: 1.09809663vw; }
  @media only screen and (max-width: 767px) {
    body.top .c-text01 {
      font-size: 14px;
      font-size: 1.4rem; } }

body.top .main-visual {
  display: flex; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      display: block; } }
  body.top .main-visual__text {
    width: 50%;
    padding-top: 12.50732064vw;
    padding-left: 2.92825769vw;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__text {
        width: 100%;
        padding: 25px 18px 30px; } }
    body.top .main-visual__text__catch {
      font-family: "Arimo", sans-serif; }
      body.top .main-visual__text__catch strong {
        display: block;
        font-size: 9.20937042vw;
        letter-spacing: 0.02em;
        line-height: 0.75;
        margin-bottom: 1.48169839vw; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__text__catch strong {
            font-size: 19.156vw;
            margin-bottom: 2.996vw; } }
      body.top .main-visual__text__catch small {
        display: block;
        font-size: 4.78550512vw;
        letter-spacing: 0.03em;
        font-weight: 450;
        line-height: 0.8;
        margin-bottom: 1.19985359vw; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__text__catch small {
            font-size: 9.89733333vw;
            margin-bottom: 2.54666667vw; } }
      body.top .main-visual__text__catch span {
        display: block;
        font-size: 5.80600293vw;
        letter-spacing: 0.03em;
        font-weight: 450;
        line-height: 0.8;
        text-align: right;
        margin-right: 3.58711567vw; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__text__catch span {
            font-size: 12.07733333vw;
            margin-right: 1.18533333vw; } }
    body.top .main-visual__text__description {
      font-size: 1.02489019vw;
      letter-spacing: 0.06em;
      line-height: 1.5;
      font-family: "Arimo", sans-serif;
      margin-top: 3.66032211vw; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__text__description {
          font-size: 2.66666667vw;
          margin-top: 5.74533333vw; } }
      body.top .main-visual__text__description:before {
        content: "";
        width: 1.46412884vw;
        height: 0.14641288vw;
        display: block;
        background: #000;
        margin: 0 0 0.87847731vw; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__text__description:before {
            width: 2.66666667vw;
            height: 1px;
            margin: 0 0 2.26666667vw; } }
    body.top .main-visual__text__scroll {
      display: block;
      width: 2.92825769vw;
      position: absolute;
      left: 2.92825769vw;
      bottom: 1.9033675vw; }
      body.top .main-visual__text__scroll img {
        width: 100%; }
  body.top .main-visual__image {
    width: 50%;
    height: 51.02489019vw;
    pointer-events: none; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__image {
        width: 100%;
        height: 120vw; } }
    body.top .main-visual__image__slider {
      height: 51.02489019vw; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image__slider {
          height: 120vw; } }
      body.top .main-visual__image__slider .swiper .slide-media {
        position: relative;
        overflow: hidden;
        height: 51.02489019vw; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image__slider .swiper .slide-media {
            height: 120vw; } }
      body.top .main-visual__image__slider .swiper .swiper-slide {
        height: 51.02489019vw;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.top .main-visual__image__slider .swiper .swiper-slide {
            height: 120vw; } }
        body.top .main-visual__image__slider .swiper .swiper-slide img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
          object-fit: cover;
          transition: 0.6s; }
        body.top .main-visual__image__slider .swiper .swiper-slide[class*=-active] .slide-media img {
          transform: translateX(0vw); }
        body.top .main-visual__image__slider .swiper .swiper-slide[class*=-prev] .slide-media img {
          transform: translateX(100%); }
        body.top .main-visual__image__slider .swiper .swiper-slide[class*=-next] .slide-media img {
          transform: translateX(-100%); }

body.top .technology {
  background: #F88F2C;
  padding: 10.39531479vw 0;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .technology {
      padding: 80px 0; } }
  body.top .technology .inner {
    position: relative; }
  body.top .technology__text {
    width: 50vw;
    position: relative;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .technology__text {
        width: 100%; } }
    body.top .technology__text h2 {
      font-size: 4.39238653vw;
      line-height: 1.4;
      margin-bottom: 2.92825769vw; }
      @media only screen and (max-width: 767px) {
        body.top .technology__text h2 {
          font-size: 28px;
          font-size: 2.8rem;
          margin-bottom: 32px; } }
    body.top .technology__text p {
      font-size: 1.75695461vw;
      letter-spacing: 0.09em;
      line-height: 2.5;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.top .technology__text p {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2.5;
          letter-spacing: 0.09em; } }
  body.top .technology__image {
    width: 96.85212299vw;
    position: absolute;
    top: 50%;
    left: 46.85212299vw;
    transform: translate(0%, -50%); }
    @media only screen and (max-width: 767px) {
      body.top .technology__image {
        width: 475px;
        top: -50px;
        left: 142px;
        transform: translate(0%, 0%); } }
    body.top .technology__image img {
      width: 100%; }

body.top .top-message__cont {
  padding: 5.85651537vw 0 7.32064422vw; }
  @media only screen and (max-width: 767px) {
    body.top .top-message__cont {
      padding: 32px 0 64px; } }
  body.top .top-message__cont .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    @media only screen and (max-width: 767px) {
      body.top .top-message__cont .inner {
        display: block; } }

body.top .top-message__image {
  width: 43.25%;
  padding-top: 53.16666667%;
  position: relative;
  margin-top: 1.75695461vw; }
  @media only screen and (max-width: 767px) {
    body.top .top-message__image {
      width: calc(100% - 15px);
      padding-top: calc((100% - 15px) * 1.2292870906);
      margin-top: 0;
      margin-left: auto;
      margin-right: auto; } }
  body.top .top-message__image__bg {
    width: 42.19653179%;
    height: 72.769953%;
    display: block;
    background: #4D39FA;
    position: absolute;
    left: 8.28516378%;
    bottom: 0; }
  body.top .top-message__image__article {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .top-message__image__article img {
      width: 100%; }
  body.top .top-message__image__people {
    width: 81.50289017%;
    position: absolute;
    left: 14.45086705%;
    bottom: 0; }
    body.top .top-message__image__people img {
      width: 100%; }

body.top .top-message__text {
  width: 48.33333333%; }
  @media only screen and (max-width: 767px) {
    body.top .top-message__text {
      width: 100%;
      margin-top: 40px; } }
  body.top .top-message__text h2 {
    font-size: 4.09956076vw;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-bottom: 2.26939971vw; }
    @media only screen and (max-width: 767px) {
      body.top .top-message__text h2 {
        font-size: 28px;
        font-size: 2.8rem;
        margin-bottom: 20px; } }
  body.top .top-message__text p {
    font-size: 1.09809663vw;
    line-height: 2.275;
    text-align: justify;
    margin-bottom: 1.97657394vw; }
    @media only screen and (max-width: 767px) {
      body.top .top-message__text p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.75;
        letter-spacing: 0.08em;
        margin-bottom: 30px; } }
  body.top .top-message__text span {
    font-size: 1.31771596vw;
    line-height: 2.3; }
    @media only screen and (max-width: 767px) {
      body.top .top-message__text span {
        font-size: 14px;
        font-size: 1.4rem; } }

body.top .people {
  background: #F8C92F;
  position: relative;
  overflow: hidden; }
  body.top .people__article {
    width: 128.84333821vw;
    position: absolute;
    top: 74.5%;
    left: 51.8%;
    transform: translate(-50%, -50%); }
    @media only screen and (max-width: 767px) {
      body.top .people__article {
        width: 700px;
        transform: translate(-50%, 0%) rotate(-26deg);
        top: -10%;
        left: 52%; } }
    body.top .people__article img {
      width: 100%; }
  @media only screen and (max-width: 767px) {
    body.top .people__cont .inner {
      padding: 0 0 0 31px; } }
  body.top .people__slider {
    position: relative; }
    body.top .people__slider:before {
      content: "";
      width: 1px;
      height: 100%;
      display: block;
      background: #000;
      position: absolute;
      top: 0;
      left: 0; }
    body.top .people__slider:after {
      content: "";
      width: 1px;
      height: 100%;
      display: block;
      background: #000;
      position: absolute;
      top: 0;
      right: 0; }
      @media only screen and (max-width: 767px) {
        body.top .people__slider:after {
          content: none; } }
    body.top .people__slider .swiper-slide {
      display: block;
      padding: 2.92825769vw 1.75695461vw;
      border-left: 1px solid #000;
      display: flex;
      flex-direction: column;
      height: auto; }
      @media only screen and (max-width: 767px) {
        body.top .people__slider .swiper-slide {
          padding: 20px;
          width: calc(100% - 31px); } }
      body.top .people__slider .swiper-slide .image {
        border-bottom: 1px solid #000; }
        body.top .people__slider .swiper-slide .image img {
          height: 24.59736457vw;
          width: auto;
          display: block;
          margin: 0 auto; }
          @media only screen and (max-width: 767px) {
            body.top .people__slider .swiper-slide .image img {
              height: 300px; } }
      body.top .people__slider .swiper-slide .text {
        padding-top: 1.17130307vw;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          body.top .people__slider .swiper-slide .text {
            padding-top: 12px; } }
        body.top .people__slider .swiper-slide .text strong {
          display: block;
          font-size: 1.61054173vw;
          line-height: 1.5;
          margin-bottom: 0.58565154vw; }
          @media only screen and (max-width: 767px) {
            body.top .people__slider .swiper-slide .text strong {
              font-size: 18px;
              font-size: 1.8rem;
              line-height: 1.6;
              margin-bottom: 8px; } }
        body.top .people__slider .swiper-slide .text p {
          font-size: 1.09809663vw;
          line-height: 1.6;
          margin-bottom: 2.34260615vw; }
          @media only screen and (max-width: 767px) {
            body.top .people__slider .swiper-slide .text p {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.75;
              letter-spacing: 0.08em;
              margin-bottom: 10px; } }
        body.top .people__slider .swiper-slide .text span {
          display: flex;
          align-items: center;
          justify-content: flex-end;
          font-size: 1.09809663vw;
          line-height: 1.6;
          font-weight: 500;
          position: relative;
          width: max-content;
          margin-left: auto; }
          @media only screen and (max-width: 767px) {
            body.top .people__slider .swiper-slide .text span {
              font-size: 14px;
              font-size: 1.4rem;
              font-weight: 400; } }
        body.top .people__slider .swiper-slide .text a {
          display: flex;
          align-items: center;
          justify-content: flex-end;
          font-size: 1.09809663vw;
          line-height: 1.6;
          font-weight: 500;
          position: relative;
          width: max-content;
          margin-left: auto; }
          @media only screen and (max-width: 767px) {
            body.top .people__slider .swiper-slide .text a {
              font-size: 14px;
              font-size: 1.4rem;
              font-weight: 400; } }
          body.top .people__slider .swiper-slide .text a:hover:after {
            transform: scaleX(1);
            transform-origin: left; }
          body.top .people__slider .swiper-slide .text a:after {
            content: "";
            width: 100%;
            height: 1px;
            display: block;
            background: #000;
            position: absolute;
            left: 0;
            bottom: -0.36603221vw;
            transform: scaleX(0);
            transition: transform .3s;
            transform-origin: right; }
          body.top .people__slider .swiper-slide .text a i {
            display: inline-block;
            margin-left: 0.58565154vw;
            position: relative;
            top: -1px; }
            @media only screen and (max-width: 767px) {
              body.top .people__slider .swiper-slide .text a i {
                margin-left: 4px;
                width: 20px; } }
            body.top .people__slider .swiper-slide .text a i img {
              display: block; }

body.top .job-description__cont {
  padding: 4.6852123vw 0 8.78477306vw; }
  @media only screen and (max-width: 767px) {
    body.top .job-description__cont {
      padding: 32px 0 80px; } }
  @media only screen and (min-width: 768px) {
    body.top .job-description__cont .inner {
      max-width: 86.38360176vw; } }

body.top .job-description__box {
  background: #fff;
  padding: 2.63543192vw 7.32064422vw 4.6852123vw; }
  @media only screen and (max-width: 767px) {
    body.top .job-description__box {
      padding: 4px 18px 32px; } }
  @media only screen and (max-width: 767px) {
    body.top .job-description__box table {
      display: block; } }
  @media only screen and (max-width: 767px) {
    body.top .job-description__box table tbody {
      display: block; } }
  body.top .job-description__box table tbody tr {
    border-bottom: 1px solid #000; }
    @media only screen and (max-width: 767px) {
      body.top .job-description__box table tbody tr {
        display: block;
        padding: 16px 0; } }
    body.top .job-description__box table tbody tr th {
      line-height: 1.75;
      font-weight: 500;
      vertical-align: top;
      width: 18.08199122vw;
      font-size: 1.09809663vw;
      padding: 2.04978038vw 0; }
      @media only screen and (max-width: 767px) {
        body.top .job-description__box table tbody tr th {
          display: block;
          width: 100%;
          padding: 0;
          margin-bottom: 8px;
          font-size: 14px;
          font-size: 1.4rem; } }
    body.top .job-description__box table tbody tr td {
      line-height: 1.75;
      letter-spacing: 0.09em;
      font-feature-settings: "palt";
      width: calc(100% - 18.08199122vw);
      font-size: 1.09809663vw;
      padding: 2.04978038vw 0; }
      @media only screen and (max-width: 767px) {
        body.top .job-description__box table tbody tr td {
          display: block;
          width: 100%;
          padding: 0;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.08em; } }
      body.top .job-description__box table tbody tr td p {
        margin-bottom: 0.43923865vw; }
        @media only screen and (max-width: 767px) {
          body.top .job-description__box table tbody tr td p {
            margin-bottom: 6px; } }
      body.top .job-description__box table tbody tr td ul {
        margin-bottom: 1.17130307vw; }
        @media only screen and (max-width: 767px) {
          body.top .job-description__box table tbody tr td ul {
            margin-bottom: 12px; } }
        body.top .job-description__box table tbody tr td ul:last-of-type {
          margin-bottom: 0; }
        body.top .job-description__box table tbody tr td ul li {
          padding-left: 1em;
          position: relative;
          margin-bottom: 0.43923865vw; }
          @media only screen and (max-width: 767px) {
            body.top .job-description__box table tbody tr td ul li {
              margin-bottom: 6px; } }
          body.top .job-description__box table tbody tr td ul li:last-of-type {
            margin-bottom: 0; }
          body.top .job-description__box table tbody tr td ul li:before {
            content: "・";
            position: absolute;
            top: 0;
            left: 0; }
          body.top .job-description__box table tbody tr td ul li ul li {
            font-size: 1.09809663vw;
            line-height: 1.75;
            margin-bottom: 0; }
            @media only screen and (max-width: 767px) {
              body.top .job-description__box table tbody tr td ul li ul li {
                font-size: 14px;
                font-size: 1.4rem; } }

body.top .casual-chat {
  display: flex; }
  @media only screen and (max-width: 767px) {
    body.top .casual-chat {
      flex-direction: column; } }
  body.top .casual-chat__text {
    width: 50%;
    background: #3BDE39;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      body.top .casual-chat__text {
        width: 100%;
        order: 2; } }
    body.top .casual-chat__text__wrap {
      padding: 7.75988287vw 5.92972182vw 8.71156662vw 6.0761347vw;
      max-width: 50vw;
      margin-left: auto;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .casual-chat__text__wrap {
          max-width: 100%;
          padding: 50px 18px; } }
    body.top .casual-chat__text__article {
      position: absolute;
      width: 49.63396779vw;
      top: 2.85505124vw;
      right: 9.66325037vw; }
      @media only screen and (max-width: 767px) {
        body.top .casual-chat__text__article {
          width: 501px;
          top: 20px;
          right: -63px; } }
      body.top .casual-chat__text__article img {
        width: 100%; }
    body.top .casual-chat__text__subtitle {
      display: block;
      font-size: 2.34260615vw;
      letter-spacing: 0.03em;
      line-height: 0.8;
      font-family: "Arimo", sans-serif;
      margin-bottom: 2.63543192vw;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .casual-chat__text__subtitle {
          font-size: 20px;
          font-size: 2rem;
          margin-bottom: 19px; } }
    body.top .casual-chat__text__catch {
      display: block;
      font-size: 2.92825769vw;
      line-height: 1.5;
      margin-bottom: 1.02489019vw;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .casual-chat__text__catch {
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.4;
          letter-spacing: 0.08em;
          margin-bottom: 9px; } }
    body.top .casual-chat__text__description {
      font-size: 1.09809663vw;
      letter-spacing: 0.09em;
      line-height: 1.75;
      margin-bottom: 3.14787701vw;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .casual-chat__text__description {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.08em;
          margin-bottom: 32px; } }
    body.top .casual-chat__text .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 4.09956076vw;
      max-width: 25.47584187vw;
      border-radius: 0.43923865vw;
      background: #fff;
      font-size: 1.17130307vw;
      letter-spacing: 0.05em;
      font-weight: 500;
      position: relative;
      transition: color .3s, background-color .3s;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        body.top .casual-chat__text .btn {
          height: 50px;
          border-radius: 3px;
          max-width: 100%;
          font-size: 15px;
          font-size: 1.5rem; } }
      body.top .casual-chat__text .btn span {
        position: relative; }
      body.top .casual-chat__text .btn:before {
        content: "";
        width: 101%;
        height: 100%;
        display: block;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform .5s;
        transform: scaleX(0);
        transform-origin: right; }
      body.top .casual-chat__text .btn:hover {
        color: #fff; }
        body.top .casual-chat__text .btn:hover:before {
          transform: scaleX(1);
          transform-origin: left; }
  body.top .casual-chat__image {
    width: 50%;
    padding-top: 41.58125915%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .casual-chat__image {
        width: 100%;
        padding-top: 97.86666667%;
        order: 1; } }
    body.top .casual-chat__image img {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: center center; }
