@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: ryo-gothic-plusn, "游ゴシック", 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[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; }

.contents {
  padding: 0 25px;
  border-top: 1px solid #919191;
  margin-top: 65px;
  padding-bottom: 120px; }
  .contents > h2 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.666666667;
    padding-top: 40px; }
  .contents > p {
    padding-top: 32px;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    line-height: 1.833333333; }
  .contents > blockquote {
    margin-top: 40px;
    padding: 32px;
    border-radius: 10px;
    border: 1px solid #919191; }
    .contents > blockquote span {
      display: inline-block;
      font-size: 14px;
      font-size: 1.4rem;
      border: 3px solid;
      border-radius: 3px;
      padding: 10px; }
    .contents > blockquote p {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1.666666667;
      margin-top: 40px; }

.mainvisual {
  padding-top: 64px; }
  .mainvisual h1 {
    text-align: center;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-top: 35px; }
  .mainvisual img {
    display: block;
    margin: auto; }
    .mainvisual img:nth-child(1) {
      height: 99px; }
    .mainvisual img:nth-child(2) {
      height: 99px;
      margin-top: 40px; }
    .mainvisual img:nth-child(4) {
      height: 102px;
      margin-top: 37px; }

#payjp_checkout_box {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10; }
  #payjp_checkout_box input[type="button"] {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    border-radius: 0 !important;
    background: #889FAC !important;
    padding: 30px 0 !important;
    border: none !important;
    font-weight: 900; }

/**

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