@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", "Hiragino Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }

* {
  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: 1060px;
  padding: 0 30px;
  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; }

.footer {
  background: #666; }
  .footer p {
    text-align: center;
    color: #ddd;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    padding: 24px 0; }

.header__brand {
  position: fixed;
  z-index: 2;
  left: 50px;
  top: 60px; }
  @media only screen and (max-width: 767px) {
    .header__brand {
      left: 24px;
      top: 30px; } }
  .header__brand a img {
    width: 90px;
    height: auto; }
    @media only screen and (max-width: 767px) {
      .header__brand a img {
        width: 50px; } }

.header__nav {
  position: fixed;
  z-index: 2;
  right: 60px;
  top: 50px; }
  @media only screen and (max-width: 767px) {
    .header__nav {
      display: none; } }
  .header__nav ul li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px; }
    .header__nav ul li a {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.03em;
      font-family: "Open Sans", sans-serif; }

.business {
  padding: 160px 0;
  background: #2ea8e1;
  background: linear-gradient(129deg, rgba(46, 168, 225, 0.2) 0%, rgba(172, 206, 29, 0.2) 100%); }
  @media only screen and (max-width: 767px) {
    .business {
      padding: 80px 0; } }
  .business__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .business__row > div:nth-child(1) {
      width: 52%; }
      @media only screen and (max-width: 767px) {
        .business__row > div:nth-child(1) {
          width: 100%; } }
    .business__row > div:nth-child(2) {
      width: 42%; }
      @media only screen and (max-width: 767px) {
        .business__row > div:nth-child(2) {
          width: 100%; } }
    .business__row > div img {
      border-radius: 30px; }
      @media only screen and (max-width: 767px) {
        .business__row > div img {
          display: block;
          margin-top: 24px; } }
    .business__row > div p {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 2.4;
      margin-top: 40px;
      letter-spacing: 0.02em; }
      @media only screen and (max-width: 767px) {
        .business__row > div p {
          font-size: 15px;
          font-size: 1.5rem;
          margin-top: 32px;
          line-height: 2; } }

.company {
  background: #f5f5f5;
  padding: 120px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .company {
      padding: 80px 0; } }
  .company h2 span {
    z-index: 0; }
  .company__table {
    margin-top: 80px; }
    @media only screen and (max-width: 767px) {
      .company__table {
        margin-top: 32px; } }
    .company__table table {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .company__table table {
          display: block;
          width: 100%; } }
      @media only screen and (max-width: 767px) {
        .company__table table tr,
        .company__table table tbody {
          display: block;
          width: 100%; } }
      .company__table table td,
      .company__table table th {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 18px 0;
        line-height: 1.6;
        letter-spacing: 0.1em;
        border-bottom: 1px solid #ccc;
        vertical-align: top; }
        @media only screen and (max-width: 767px) {
          .company__table table td,
          .company__table table th {
            font-size: 14px;
            font-size: 1.4rem;
            display: block;
            width: 100%; } }
      .company__table table td:nth-child(1) {
        width: 180px;
        font-weight: bold; }
        @media only screen and (max-width: 767px) {
          .company__table table td:nth-child(1) {
            display: block;
            width: 100%;
            border-bottom: none;
            padding-bottom: 6px; } }
      @media only screen and (max-width: 767px) {
        .company__table table td:nth-child(2) {
          padding-top: 6px; } }
  .company iframe {
    display: block;
    width: 100%;
    margin-top: 60px;
    height: 320px; }

.contact {
  background: #f5f5f5;
  padding: 100px 0 0; }
  @media only screen and (max-width: 767px) {
    .contact {
      padding-top: 80px; } }
  .contact p {
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 24px; }
    @media only screen and (max-width: 767px) {
      .contact p {
        font-size: 14px;
        font-size: 1.4rem; } }
  .contact form {
    padding-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      .contact form {
        padding-bottom: 60px; } }
  .contact .contact-page__inner {
    max-width: 754px;
    margin: auto;
    padding-top: 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .contact .contact-page__inner {
        padding-top: 40px; } }
    .contact .contact-page__inner:nth-child(2) {
      padding-top: 40px; }
      @media only screen and (max-width: 767px) {
        .contact .contact-page__inner:nth-child(2) {
          padding-top: 0px; } }
      .contact .contact-page__inner:nth-child(2) div {
        text-align: right; }
      .contact .contact-page__inner:nth-child(2) button span {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0.07em;
        color: #2ea8e1; }
        @media only screen and (max-width: 767px) {
          .contact .contact-page__inner:nth-child(2) button span {
            font-size: 16px;
            font-size: 1.6rem; } }
      .contact .contact-page__inner:nth-child(2) button span,
      .contact .contact-page__inner:nth-child(2) button svg {
        display: inline-block;
        vertical-align: middle; }
      .contact .contact-page__inner:nth-child(2) button svg {
        margin-left: 10px; }
    .contact .contact-page__inner > div {
      width: 43.8926174%; }
      @media only screen and (max-width: 767px) {
        .contact .contact-page__inner > div {
          width: 100%;
          padding: 0 0px; }
          .contact .contact-page__inner > div:nth-child(2), .contact .contact-page__inner > div:nth-child(3) {
            margin-top: 32px; } }
      .contact .contact-page__inner > div:nth-child(3) {
        width: 100%;
        margin-top: 64px; }
        @media only screen and (max-width: 767px) {
          .contact .contact-page__inner > div:nth-child(3) {
            margin-top: 32px; } }
      .contact .contact-page__inner > div textarea {
        height: 392px;
        padding: 12px 16px;
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.07em;
        line-height: 1.6;
        border: 1px solid;
        width: 100%;
        resize: none; }
      .contact .contact-page__inner > div .select {
        position: relative;
        border: 1px solid #fff;
        margin-bottom: 24px; }
        .contact .contact-page__inner > div .select select {
          display: block;
          width: 100%;
          text-align: center;
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.07em;
          padding: 12px;
          line-height: 1.7; }
          .contact .contact-page__inner > div .select select option {
            text-align: center; }
        .contact .contact-page__inner > div .select svg {
          position: absolute;
          right: 20px;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%); }
      .contact .contact-page__inner > div .input-text {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.07em;
        width: 100%; }
        .contact .contact-page__inner > div .input-text input {
          display: block;
          padding-bottom: 9px;
          border-bottom: 1px solid;
          margin-bottom: 40px;
          width: 100%; }
  .contact__back {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 200px; }
    .contact__back a {
      font-size: 16px;
      font-size: 1.6rem; }
      .contact__back a span {
        color: #2ea8e1;
        text-decoration: underline; }

.kv {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px; }
  @media only screen and (max-width: 767px) {
    .kv {
      padding-top: 290px;
      padding-bottom: 50px; } }
  .kv__box .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative; }
    .kv__box .inner > div h1 {
      font-size: 42px;
      font-size: 4.2rem;
      letter-spacing: 0.1em;
      line-height: 1.7;
      font-weight: bold;
      position: relative;
      z-index: 2; }
      @media only screen and (max-width: 767px) {
        .kv__box .inner > div h1 {
          font-size: 19px;
          font-size: 1.9rem; } }
      .kv__box .inner > div h1 a {
        display: block;
        width: 280px;
        background: #ACCE1D;
        color: #fff;
        text-align: center;
        border-radius: 50px;
        padding: 12px 0;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        margin-top: 42px;
        border: 2px solid #ACCE1D; }
        @media only screen and (min-width: 768px) {
          .kv__box .inner > div h1 a {
            -webkit-transition: background-color 0.3s, color 0.3s;
            -moz-transition: background-color 0.3s, color 0.3s;
            -o-transition: background-color 0.3s, color 0.3s;
            transition: background-color 0.3s, color 0.3s; }
            .kv__box .inner > div h1 a:hover {
              background: #fff;
              color: #ACCE1D; } }
        @media only screen and (max-width: 767px) {
          .kv__box .inner > div h1 a {
            margin-top: 24px;
            font-size: 14px;
            font-size: 1.4rem; } }
    .kv__box .inner > div > div {
      position: absolute;
      right: 0;
      top: -25%;
      width: 50%; }
      @media only screen and (max-width: 767px) {
        .kv__box .inner > div > div {
          right: 0;
          bottom: 180px;
          top: auto;
          width: 70%; } }
      .kv__box .inner > div > div div {
        padding-top: 75%;
        background-size: cover;
        background-position: center;
        border-radius: 30px; }
        @media only screen and (max-width: 767px) {
          .kv__box .inner > div > div div {
            padding-top: 90%;
            padding-top: 0;
            height: 180px;
            border-radius: 30px 0 0 30px; } }

.philosophy {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #2ea8e1;
  background: linear-gradient(129deg, rgba(46, 168, 225, 0.2) 0%, rgba(172, 206, 29, 0.2) 100%); }
  @media only screen and (max-width: 767px) {
    .philosophy {
      padding: 80px 0; } }
  .philosophy__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .philosophy__row {
        margin-top: 24px; } }
    .philosophy__row > div {
      width: 48%;
      margin-top: 60px; }
      @media only screen and (max-width: 767px) {
        .philosophy__row > div {
          width: 100%;
          margin-top: 32px; } }
      .philosophy__row > div p {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 2.25;
        letter-spacing: 0.2em; }
        @media only screen and (max-width: 767px) {
          .philosophy__row > div p {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 2;
            letter-spacing: 0.1em; } }
  .philosophy__president {
    text-align: right;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 24px;
    letter-spacing: 0.1em;
    opacity: 0.5; }
    @media only screen and (max-width: 767px) {
      .philosophy__president {
        font-size: 14px;
        font-size: 1.4rem; } }

.recruit {
  padding: 120px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .recruit {
      padding: 80px 0; } }
  .recruit .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .recruit .inner h3 {
      width: 200px; }
      @media only screen and (max-width: 767px) {
        .recruit .inner h3 {
          width: 100%; } }
  .recruit__table {
    width: calc(100% - 200px);
    padding-left: 80px;
    max-width: 780px; }
    @media only screen and (max-width: 767px) {
      .recruit__table {
        width: 100%;
        padding-left: 0; } }
    .recruit__table table {
      width: 100%;
      border-top: 1px solid #ccc;
      border-left: 1px solid #ccc; }
      @media only screen and (max-width: 767px) {
        .recruit__table table {
          width: 100%;
          display: block;
          margin-top: 40px; } }
      @media only screen and (max-width: 767px) {
        .recruit__table table tbody {
          width: 100%;
          display: block; } }
      @media only screen and (max-width: 767px) {
        .recruit__table table tbody tr {
          width: 100%;
          display: block; } }
      .recruit__table table tbody tr th,
      .recruit__table table tbody tr td {
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        padding: 12px;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.8;
        vertical-align: top; }
        @media only screen and (max-width: 767px) {
          .recruit__table table tbody tr th,
          .recruit__table table tbody tr td {
            width: 100%;
            display: block;
            padding: 9px 12px; } }
      .recruit__table table tbody tr th {
        background: #f5f5f5;
        width: 200px; }
        @media only screen and (max-width: 767px) {
          .recruit__table table tbody tr th {
            width: 100%;
            display: block; } }

h2 {
  position: relative; }
  h2 span {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -68px;
    z-index: -1;
    color: rgba(0, 0, 0, 0.1);
    font-family: "Open Sans", sans-serif;
    font-size: 92px;
    font-size: 9.2rem;
    letter-spacing: 0.07em;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      h2 span {
        font-size: 42px;
        font-size: 4.2rem;
        top: -20px !important;
        position: absolute !important; } }
  h2 strong {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 42px;
    font-size: 4.2rem;
    letter-spacing: 0.1em; }
    @media only screen and (min-width: 768px) {
      h2 strong {
        padding-top: 20px; } }
    @media only screen and (max-width: 767px) {
      h2 strong {
        font-size: 28px;
        font-size: 2.8rem; } }

h3 span {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
  display: block; }
  @media only screen and (max-width: 767px) {
    h3 span {
      font-size: 12px;
      font-size: 1.2rem; } }

h3 strong {
  display: block;
  font-weight: bold;
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: 0.1em; }
  @media only screen and (max-width: 767px) {
    h3 strong {
      font-size: 28px;
      font-size: 2.8rem; } }

/**

 */
body.top {
  height: 100%;
  width: 100%; }
