@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; } }

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

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
  height: 100%; }

body {
  overflow: hidden; }

@media only screen and (max-width: 767px) {
  main {
    height: 100%;
    position: relative;
    overflow: hidden; } }

* {
  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[type="text"],
input[type="email"],
input[type="number"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none; }

button,
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  button::-webkit-search-decoration,
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  button::focus,
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

.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; }

body.black .article h2,
body.black .article h3,
body.black .article h4,
body.black .article p {
  color: #fff; }

body.black .article__close {
  color: #fff; }
  body.black .article__close:before {
    background: #fff; }

.article {
  width: 700px;
  position: fixed;
  z-index: 10;
  height: 100%;
  right: -700px;
  top: 0;
  overflow: scroll;
  max-width: 960px;
  -webkit-transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  min-width: 700px; }
  @media only screen and (max-width: 767px) {
    .article {
      width: 100%;
      right: -100%;
      max-width: 100%;
      min-width: 0; } }
  .article.show {
    right: 0; }
  .article__inner {
    padding: 120px 100px;
    padding-right: 0; }
    @media only screen and (min-width: 768px) {
      .article__inner {
        padding-right: 90px; } }
    @media only screen and (max-width: 767px) {
      .article__inner {
        padding: 50px 30px;
        overflow: hidden; } }
    .article__inner h2 {
      font-size: 30px;
      font-size: 3rem;
      font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
      position: relative;
      line-height: 1.75;
      margin-top: 55px;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
      @media only screen and (max-width: 767px) {
        .article__inner h2 {
          font-size: 24px;
          font-size: 2.4rem;
          margin-top: 50px; } }
    .article__inner h3 {
      font-size: 20px;
      font-size: 2rem;
      font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
      position: relative;
      line-height: 1.75;
      margin-top: 40px;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
      @media only screen and (max-width: 767px) {
        .article__inner h3 {
          font-size: 18px;
          font-size: 1.8rem;
          margin-top: 30px; } }
      .article__inner h3 b {
        font-weight: bold;
        font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif; }
    .article__inner p {
      font-size: 14px;
      font-size: 1.4rem;
      position: relative;
      line-height: 2.142857143;
      margin-top: 10px;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
      @media only screen and (max-width: 767px) {
        .article__inner p {
          font-size: 14px;
          font-size: 1.4rem; } }
      .article__inner p span {
        display: block;
        margin-bottom: 12px;
        margin-top: -3px; }
    .article__inner h4 {
      font-size: 20px;
      font-size: 2rem;
      font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
      position: relative;
      line-height: 1.75;
      margin-top: 60px;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
      @media only screen and (max-width: 767px) {
        .article__inner h4 {
          font-size: 18px;
          font-size: 1.8rem;
          margin-top: 50px; } }
  .article__close {
    display: inline-block;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
    position: relative;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s; }
    .article__close:before {
      content: "";
      width: 100%;
      height: 1px;
      background: #000;
      position: absolute;
      left: 0;
      bottom: 1px;
      -webkit-transition: left 0.3s, width 0.3s, background-color 0.4s;
      -moz-transition: left 0.3s, width 0.3s, background-color 0.4s;
      -o-transition: left 0.3s, width 0.3s, background-color 0.4s;
      transition: left 0.3s, width 0.3s, background-color 0.4s; }
    @media only screen and (min-width: 768px) {
      .article__close:hover:before {
        width: 0;
        left: 100%; } }

body.black svg path {
  fill: #fff; }

body.black .aside__message {
  color: #fff; }

body.black .aside__sayhi {
  color: #fff; }
  body.black .aside__sayhi a:before {
    background: #fff; }

body.black .aside__menu li a {
  color: #fff; }
  body.black .aside__menu li a:before {
    background: #fff; }

body.black .aside__copy {
  color: #fff; }

.aside {
  height: 100%;
  position: fixed;
  padding-left: 100px;
  width: 619px;
  z-index: 8; }
  @media only screen and (max-width: 767px) {
    .aside {
      position: static;
      width: 100%;
      padding-left: 30px;
      padding-right: 30px; } }
  .aside__brand {
    padding-top: 120px; }
    @media only screen and (max-width: 767px) {
      .aside__brand {
        padding-top: 80px; }
        .aside__brand svg {
          width: 120px; } }
    .aside__brand.active-logo svg {
      cursor: pointer; }
    .aside__brand svg path {
      -webkit-transition: fill 0.4s;
      -moz-transition: fill 0.4s;
      -o-transition: fill 0.4s;
      transition: fill 0.4s; }
  .aside__message {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.75;
    margin-top: 70px;
    font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
    box-sizing: initial;
    align-items: center;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .aside__message {
        margin-top: 50px;
        font-size: 16px;
        font-size: 1.6rem; } }
    .aside__message--jp {
      font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
      max-width: 440px;
      text-align: justify;
      font-weight: 600; }
  .aside__sayhi {
    margin-top: 70px; }
    .aside__sayhi--jp {
      font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
      font-weight: 600; }
    @media only screen and (max-width: 767px) {
      .aside__sayhi {
        margin-top: 30px; } }
    .aside__sayhi a {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.75;
      font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
      position: relative;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
      @media only screen and (max-width: 767px) {
        .aside__sayhi a {
          font-size: 16px;
          font-size: 1.6rem; } }
      .aside__sayhi a:before {
        content: "";
        width: 100%;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 1px;
        -webkit-transition: left 0.3s, width 0.3s, background-color 0.4s;
        -moz-transition: left 0.3s, width 0.3s, background-color 0.4s;
        -o-transition: left 0.3s, width 0.3s, background-color 0.4s;
        transition: left 0.3s, width 0.3s, background-color 0.4s; }
      @media only screen and (min-width: 768px) {
        .aside__sayhi a:hover:before {
          width: 0;
          left: 100%; } }
  .aside__copy {
    margin-top: 95px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.75;
    font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s; }
    @media only screen and (max-width: 767px) {
      .aside__copy {
        position: absolute;
        left: 30px;
        bottom: 30px;
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 0; } }
  .aside__menu {
    position: absolute;
    left: 100px;
    bottom: 30px;
    font-size: 0; }
    @media only screen and (max-width: 767px) {
      .aside__menu {
        position: static;
        margin-top: 40px; } }
    .aside__menu li {
      display: inline-block;
      vertical-align: middle;
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      -o-transition: -o-transform 0.3s;
      transition: transform 0.3s; }
      .aside__menu li:nth-child(1), .aside__menu li:nth-child(2) {
        margin-right: 20px; }
      .aside__menu li a {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75;
        font-family: "Lato", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", YuGothic, sans-serif;
        position: relative;
        -webkit-transition: color 0.4s;
        -moz-transition: color 0.4s;
        -o-transition: color 0.4s;
        transition: color 0.4s;
        font-weight: 600; }
        .aside__menu li a:before {
          content: "";
          width: 100%;
          height: 1px;
          background: #000;
          position: absolute;
          left: 0;
          bottom: 0;
          -webkit-transition: left 0.3s, width 0.3s, background-color 0.4s;
          -moz-transition: left 0.3s, width 0.3s, background-color 0.4s;
          -o-transition: left 0.3s, width 0.3s, background-color 0.4s;
          transition: left 0.3s, width 0.3s, background-color 0.4s; }
        @media only screen and (min-width: 768px) {
          .aside__menu li a:hover:before {
            width: 0;
            left: 100%; } }
        .aside__menu li a svg {
          display: inline-block; }
          @media only screen and (max-width: 767px) {
            .aside__menu li a svg {
              vertical-align: text-bottom; } }
          .aside__menu li a svg path {
            -webkit-transition: fill 0.4s;
            -moz-transition: fill 0.4s;
            -o-transition: fill 0.4s;
            transition: fill 0.4s; }

body {
  background: #F9F9FA;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s; }
  body.black {
    background: #000; }
    body.black article {
      background: #1A1A1A; }

article {
  background: #fff; }

body.black .contact-form label.select:before {
  border-color: #fff; }

body.black .contact-form label span {
  color: #fff; }

body.black .contact-form input,
body.black .contact-form textarea {
  color: #fff; }

body.black .contact-form select {
  color: #fff; }

.contact-form {
  width: 100%;
  position: relative; }
  .contact-form__inner {
    max-width: 400px;
    width: 100%; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none; }
  .contact-form textarea {
    resize: vertical; }
  .contact-form input[type='checkbox'],
  .contact-form input[type='radio'] {
    display: none; }
  .contact-form input[type='submit'],
  .contact-form input[type='button'],
  .contact-form button,
  .contact-form label,
  .contact-form select {
    cursor: pointer; }
  .contact-form select::-ms-expand {
    display: none; }
  .contact-form label {
    display: block;
    margin-top: 32px; }
    .contact-form label.select {
      border: 1px solid #ccc;
      border-radius: 8px;
      position: relative;
      margin-top: 24px; }
      .contact-form label.select:before {
        content: "";
        width: 10px;
        height: 10px;
        border-bottom: 1px solid #000;
        border-right: 1px solid #000;
        position: absolute;
        top: -6px;
        bottom: 0;
        right: 20px;
        margin: auto;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s; }
    .contact-form label span {
      display: block;
      font-size: 12px;
      font-size: 1.2rem;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s;
      color: #000; }
    .contact-form label input,
    .contact-form label textarea,
    .contact-form label select {
      font-size: 16px;
      font-size: 1.6rem;
      width: 100%;
      -webkit-transition: color 0.4s;
      -moz-transition: color 0.4s;
      -o-transition: color 0.4s;
      transition: color 0.4s; }
    .contact-form label input,
    .contact-form label textarea {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 12px 15px;
      margin-top: 10px;
      resize: none; }
    .contact-form label textarea {
      line-height: 1.5;
      height: 186px; }
    .contact-form label select {
      padding: 16px 15px; }
  .contact-form__btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    display: inline-block;
    background: #000;
    border-radius: 8px;
    border: 1px solid #000;
    color: #fff;
    margin-top: 28px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden; }
    @media only screen and (min-width: 768px) {
      .contact-form__btn:hover {
        background: #fff;
        color: #000; } }
    .contact-form__btn span {
      display: block;
      padding: 20px 32px;
      font-size: 16px;
      font-size: 1.6rem; }
  .contact-form__thanks {
    color: #fff;
    background: #1A1A1A;
    font-size: 16px;
    padding: 21px 0;
    display: block;
    position: absolute;
    right: -200px;
    text-align: center;
    width: 200px;
    border-radius: 10px 0 0 10px;
    -webkit-transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: background-color 0.4s, right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    bottom: 50px;
    z-index: 10;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      .contact-form__thanks {
        right: -230px; } }
    .contact-form__thanks.on {
      right: 0; }
      @media only screen and (max-width: 767px) {
        .contact-form__thanks.on {
          right: -30px; } }

.loading-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none; }

body.black .switch span {
  background: #fff; }

body.black .switch em {
  border-color: #fff; }

.switch {
  position: fixed;
  top: 0;
  right: 100px;
  z-index: 1000; }
  @media only screen and (max-width: 767px) {
    .switch {
      right: 50px; } }
  .switch span {
    height: 71px;
    width: 2px;
    background: #1A1A1A;
    display: block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .switch em {
    width: 8px;
    height: 14px;
    background: #fff;
    border-radius: 1px;
    border: 1px solid #1A1A1A;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }

/**

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