@charset "UTF-8";
/* *****************************
 *
 * Import file to Scss or Sass.
 *
 **************************** */
/*
Theme Name: テーマ名
Theme URI: サイトのURL http:～
Description: テーマの説明文
Author: テーマ作成者
Author URI: 作成者のサイトURL


コメント／利用許諾の記述 (あれば)
-------------------------------------------------------------- */
/*.relatedArea {
    @include boxSet;
}
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video, main, time {
  margin: 0;
  padding: 0;
  border: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal; }

time {
  display: inline; }

article, aside, figure, footer, header, hgroup, nav, section, main {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

del {
  text-decoration: line-through; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  width: 100%; }

td, th {
  font-weight: normal;
  vertical-align: top; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline; }

pre, code, kbd, samp {
  font-family: monospace,sans-serif; }

img, video, iframe {
  height: auto; }

/*
* HTML5未サポートブラウザーでインライン要素として表示する for IE6/7/8/9 & FF3
* 制限事項:IE6では'audio[controls]'へのスタイルは適用されません。
*/
audio[controls],
canvas,
video {
  display: inline-block;
  *display: inline;
  zoom: 1; }

/* =============================================================================
基本設定
========================================================================== */
/*
* 1. IE6/7において単位をemでbodyにfont-sizeを設定すると正しいサイズにならない問題を修正
*    参考:http://clagnut.com/blog/348/#c790
* 2. コンテンツの高さに関わらず全てのブラウザーでページをセンタリング（スクロールバーを常時表示する）
* 3. AndroidやiOSにおいてtap highlight colorが親要素を含んでしまう問題を修正（tap highlight colorを消す）
*    参考:www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
* 4. iOSにおいて画面の向きが変わった際のテキストサイズ調整を防ぐ
*    参考:www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
*/
html {
  -webkit-tap-highlight-color: transparent;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-y: scroll; }

/*
* 'textarea'やその他のフォーム要素でのfont-familyの矛盾を修正
*/
body,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/*
* Chromeにおいてoutlineの表示不具合を修正
*/
a:focus {
  outline: thin dotted; }

/*
* 全てのブラウザーにおいてフォーカス時、マウスホバー時の読みやすさを改善
* 参考: people.opera.com/patrickl/experiments/keyboard/test
*/
a:hover,
a:active {
  outline: 0; }

/*
* IE7/8/9,S5,Chromeにおいてabbr要素がスタイリングされない問題を修正
*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

/*
* S5,Chromeにおいてdfn要素がイタリック体にならない問題を修正
*/
dfn {
  font-style: italic; }

/*
* IE6/7/8/9においてmark要素がスタイリングされない問題を修正
*/
mark {
  background: #ff0;
  color: #000; }

/*
* IE6,S5,Chromeにおけるfont-familyの問題を修正
* en.wikipedia.org/wiki/User:Davidgothberg/Test59
*/
pre,
code,
kbd,
samp {
  font-family: monospace,monospace;
  font-family: 'courier new',monospace;
  font-size: 1em; }

/*
* 全てのブラウザーにおいてpre-formatted textの読みやすさを改善
*/
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well,actually) */
  word-wrap: break-word;
  /* IE */ }

/*
* 1. IE6/7においてquotesプロパティーがサポートされていない問題を修正
* 2. S4においてquotesプロパティーがサポートされていない問題を修正
*/
/* 1 */
q {
  quotes: none; }

/* 2 */
q:before,
q:after {
  content: '';
  content: none; }

/*
* 全てのブラウザーにおいてsubおよびsup要素がline-heightに影響する問題を防ぐ
* 参考:gist.github.com/413930
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/*
* 1. IE6/7/8/9において、a要素内側のborderを削除
* 2. IE7において画像の拡大縮小時の画質を改善
*    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
*/
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
  vertical-align: bottom; }

/*
* IE9においてoverflowの表示問題を修正
*/
svg:not(:root) {
  overflow: hidden; }

/*
* IE6/7/8/9, S5, O11におけるmarginの問題を修正
*/
figure {
  margin: 0; }

/*
* 1. IE6/7/8/9において色が継承されない問題を修正
* 2. IE6/7において揃いがおかしい問題を修正
*/
legend {
  border: 0;
  /* 1 */
  *margin-left: -7px;
  /* 2 */ }

/*
* 1. 全てのブラウザーにおいてfont-sizeが継承されない問題を修正
* 2. IE6/7,F3/4,S5,Chromeにおけるmarginの差異を修正
* 3. 全てのブラウザーにおいて外観と一貫性を改善
'textarea'やその他のフォーム要素でのfont-familyの矛盾を修正
*/
button,
input,
select,
textarea {
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

/*
* 1. image-typeが'input'とその他についてユーザビリティと一貫性を改善
* 2. iOSにおいてクリック可能な'input'にスタイルが適用できない問題を修正
*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }

label {
  cursor: pointer; }

/*
* IE8/9においてbox-sizingプロパティがcontent-boxになっている点を修正
*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; }

/*
* 1. S5,Chromeにおいてappearanceプロパティがsearchfieldになっている点を修正
* 2. S5,Chromeにおいてbox-sizingプロパティがborder-box担っている点を修正 (将来的なことを踏まえて-mozも含める)
*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
  padding-right: 2px;
  /* Don't cut off the webkit search cancel button */
  width: 270px; }

/*
* S5,Chrome on OSXにおけるpaddingの表示問題を修正
*/
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
* FF3/4におけるpadding及びborderの表示問題を修正
* 参考:www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
* 1. IE6/7/8/9におけるデフォルト表示のスクロールバーを削除
* 2. 全てのブラウザーにおいて読みやすさと揃えを改善
*/
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/*
画像が伸縮するとブラウザ側で適度に良い感じに描画されて、場合によってはエッジがモワッとした感じにレンダリングされたりしますよね。普通の写真などの場合にはそれほど気にならないかもしれませんが、２値画像だと伸縮時のモワッと感が際立つわけですね。もっとパリっと表示させたいのです。
その場合は以下のスタイルを使用すれば解決出来ます。
※最新のSafari、Mobile Safari、 Firefox
*/
img.crisp-edges {
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: bicubic; }

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: #939393; }

:-moz-placeholder {
  color: #939393; }

::-moz-placeholder {
  color: #939393;
  opacity: 1;
  /* Since FF19 lowers the opacity of the placeholder by default */ }

:-ms-input-placeholder {
  color: #939393; }

::-moz-selection {
  background: #fcd700;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #fcd700;
  color: #fff;
  text-shadow: none; }

ins {
  background-color: #fcd700;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #fcd700;
  color: #000;
  font-style: italic;
  font-weight: bold; }

strong {
  font-weight: normal; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

button, fieldset, form, input, label, legend, select, textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit; }

/*文字などを選択した時の色を変えることができる */
::-moz-selection {
  color: #333;
  background: #facade; }

::selection {
  color: #333;
  background-color: #facade; }

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none; }

/*
* Chromeにおいてoutlineの表示不具合を修正
*/
a:focus {
  outline: thin dotted; }

.u-pt15 {
  padding: 15px 0px 0px 0px; }

/* For modern browsers */
.cf:before,
.cf:after {
  content: "";
  display: table; }

.cf:after {
  clear: both; }

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1; }

.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

/* IE < 8 */
.mt35 {
  margin: 35px 0px 0px 0px; }

/* CSS Document */
header {
  width: 100%;
  height: 90px;
  background: #929c1d; }
  header .header {
    width: 1024px;
    margin: 0px auto; }
  header h1 {
    float: left; }
  header .box-header-01 {
    float: right;
    position: relative;
    margin: 15px 0px 0px 10px;
    width: 183px;
    height: 58px;
    background: #ffffff;
    text-align:center;
    border-radius: 5px;
    }
  header .box-header-01 a {
    color:#444444;
    display:block;
    padding:4px 0 0 0 ;
    line-height:160%
    }
    header .box-header-01 .u-contact {
      position: absolute;
      top: 50%;
      left: 20%;
      margin-top: -1.3em;
      text-align: center;
      font-size: 14px;
      line-height: 140%;
      font-weight: bold;
      color: #1f2500; }
  header .box-header-02 {
    float: right;
    margin: 15px 0px 0px 0px; }

.box-mainvisual-01 {
  width: 100%;
  height: 411px;
  background: url(../images/top/top-01.jpg) center no-repeat;
  border-bottom: 1px solid #4c470f;
  position: relative; }
  .box-mainvisual-01 h1 {
    position: absolute;
    top: 50%;
    margin-top: -88px; }
  .box-mainvisual-01 .box-mainvisual-02 {
    width: 1024px;
    margin: 0px auto; }

.box-mind-01 {
  width: 100%;
  height: 270px;
  background: #faf6ca; }
  .box-mind-01 .box-mind-02 {
    position: absolute;
    width: 100%;
    margin: 0px auto; }
  .box-mind-01 h1 {
    width: 762px;
    margin: 0px auto;
    margin-top: -40px;
    background: #faf6ca; }
  .box-mind-01 ol {
    display: table;
    text-align: center;
    width: 1024px;
    margin: 32px auto; }
  .box-mind-01 li {
    display: table-cell;
    vertical-align: middle; }

.box-conversion-01 {
  clear: both;
  width: 762px;
  margin: 60px auto; }
  .box-conversion-01 .lyt-conversion-01 {
    text-align: center;
    margin: 0px 0px 30px 0px; }
  .box-conversion-01 .box-conversion-02 {
    width: 762px;
    height: 246px;
    background: url(../images/top/top-07.gif) no-repeat center; }
    .box-conversion-01 .box-conversion-02 ul {
      width: 550px;
      margin: 0px auto;
      padding: 60px 0px; }
    .box-conversion-01 .box-conversion-02 li {
      float: left;
      margin-right: 30px; }

.box-rule-01 {
  clear: both;
  width: 100%;
  padding: 80px 0px 80px 0px;
  background: #faf6ca; }
  .box-rule-01 h1 {
    text-align: center; }
  .box-rule-01 .pt64 {
    padding-top: 64px; }
  .box-rule-01 .pb64 {
    padding-bottom: 64px; }
  .box-rule-01 .pb32 {
    padding-bottom: 32px; }
  .box-rule-01 .box-rule-02 {
    width: 1024px;
    margin: 0px auto;
    background: #ffffff; }
    .box-rule-01 .box-rule-02 h1 {
      text-align: center;
      margin: 0px 0px 0px 0px; }
    .box-rule-01 .box-rule-02 .box-rule-03 {
      width: 1024px;
      background: #f8f5e9;
      border-top: 10px solid #896c09; }
      .box-rule-01 .box-rule-02 .box-rule-03 h1 {
        text-align: center;
        padding: 64px 0px; }
    .box-rule-01 .box-rule-02 .box-rule-08 {
      width: 1024px;
      background: #fffae8;
      position: relative; }
      .box-rule-01 .box-rule-02 .box-rule-08 h1 {
        text-align: center;
        padding: 64px 0px;
        color: #896c09;
        font-size: 30px;
        font-weight: bold; }
      .box-rule-01 .box-rule-02 .box-rule-08 p {
        position: absolute;
        top: 0;
        left: 0;
        width: 156px;
        height: 56px;
        line-height: 56px;
        text-align: center;
        background: #a8b327;
        color: #ffffff;
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 0.2em; }
    .box-rule-01 .box-rule-02 .box-rule-04 {
      clear: both;
      background: #ffffff; }
      .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-01 {
        width: 517px;
        padding: 24px 0px 0px 0px;
        float: right; }
        .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-01 h1 {
          width: 90%;
          text-align: left;
          font-size: 16px;
          font-weight: bold;
          line-height: 26px;
          color: #2d1b01;
          margin: 0px auto 35px auto; }
        .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-01 li {
          margin: 0px 20px 0px 0px;
          float: left;
          background: #eee2b8;
          border-radius: 5px; }
        .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-01 p {
          width: 90%;
          margin: 0px auto; }
        .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-01 .table-cell {
          width: 173px;
          height: 70px;
          display: table-cell;
          vertical-align: middle;
          text-align: center;
          font-size: 16px;
          font-weight: bold;
          color: #2d1b01;
          line-height: 24px; }
      .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-02 {
        width: 490px;
        height: 343px;
        float: left;
        background: url(../images/top02/top-13.jpg) no-repeat bottom; }
      .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-08 {
        clear: both;
        width: 90%;
        margin: 0px auto;
        font-size: 16px;
        line-height: 26px; }
        .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-08 p {
          padding: 32px 0 0 0;
          margin: 0 0 24px; }
        .box-rule-01 .box-rule-02 .box-rule-04 .lyt-rule-08 p:last-child {
          padding: 0 0 64px 0;
          margin: 0; }
    .box-rule-01 .box-rule-02 .box-rule-05 {
      clear: both; }
      .box-rule-01 .box-rule-02 .box-rule-05 .lyt-rule-03 {
        width: 680px;
        height: 229px;
        float: left;
        background: url(../images/top/top-15.gif); }
        .box-rule-01 .box-rule-02 .box-rule-05 .lyt-rule-03 h1 {
          margin: 0px;
          padding: 20px 0px 0px 25px;
          text-align: left;
          font-size: 21px;
          font-weight: bold;
          line-height: 30px; }
        .box-rule-01 .box-rule-02 .box-rule-05 .lyt-rule-03 p {
          margin: 0px;
          padding: 10px 25px 25px 25px;
          font-size: 16px;
          line-height: 30px; }
    .box-rule-01 .box-rule-02 .box-rule-06 {
      width: 800px;
      margin: 48px auto;
      background: #ffffff; }
      .box-rule-01 .box-rule-02 .box-rule-06 h1 {
        clear: both;
        font-size: 26px;
        font-weight: bold;
        text-align: left;
        padding: 0px 0px 16px 0px;
        color: #000000; }
      .box-rule-01 .box-rule-02 .box-rule-06 .hstyle-rule-01 {
        padding: 32px 0 24px 0; }
      .box-rule-01 .box-rule-02 .box-rule-06 .hstyle-rule-02 {
        padding: 0 0 24px 0; }
      .box-rule-01 .box-rule-02 .box-rule-06 p {
        font-size: 16px;
        margin: 0 0px 24px 0px; }
      .box-rule-01 .box-rule-02 .box-rule-06 .img-rule-01 {
        text-align: center; }
      .box-rule-01 .box-rule-02 .box-rule-06 .img-rule-03 {
        text-align: center;
        padding: 24px 0 32px; }
      .box-rule-01 .box-rule-02 .box-rule-06 h2 {
        text-align: center;
        text-decoration: underline;
        font-size: 21px;
        line-height: 36px;
        padding: 16px 0 32px 0; }
      .box-rule-01 .box-rule-02 .box-rule-06 .doc-rule-02 {
        padding: 0 0 32px 0; }
      .box-rule-01 .box-rule-02 .box-rule-06 .box-rule-06-inner-01 {
        float: left;
        margin: 0 0 0 16px; }
      .box-rule-01 .box-rule-02 .box-rule-06 .box-rule-06-inner-02 {
        float: right;
        width: 400px; }
        .box-rule-01 .box-rule-02 .box-rule-06 .box-rule-06-inner-02 p {
          font-size: 16px;
          line-height: 26px;
          margin: 24px 0 0 0; }
        .box-rule-01 .box-rule-02 .box-rule-06 .box-rule-06-inner-02 .doc-rule-01 {
          font-size: 12px;
          margin: 6px 0 12px; }
        .box-rule-01 .box-rule-02 .box-rule-06 .box-rule-06-inner-02 h2 {
          font-size: 21px;
          line-height: 32px;
          text-align: left;
          text-decoration: none; }
    .box-rule-01 .box-rule-02 .box-rule-09 {
      width: 800px;
      height: 373px;
      margin: 64px auto;
      background: #ffffff;
      border: 1px solid #eeeeee;
      position: relative; }
      .box-rule-01 .box-rule-02 .box-rule-09 h1 {
        position: absolute;
        top: -22px;
        left: 80px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        background: #fff1c4;
        border-radius: 100px;
        width: 640px;
        z-index: 10000;
        font-size: 16px;
        font-weight: bold; }
    .box-rule-01 .box-rule-02 .box-rule-10 {
      width: 800px;
      margin: 64px auto 32px; }
    .box-rule-01 .box-rule-02 .mt64 {
      margin-top: 64px; }
    .box-rule-01 .box-rule-02 .pb32 {
      padding-bottom: 32px; }
    .box-rule-01 .box-rule-02 .box-rule-07 .lyt-rule-06 {
      float: right;
      width: 590px;
      padding: 30px 50px 30px 0px;
      box-sizing: border-box; }
      .box-rule-01 .box-rule-02 .box-rule-07 .lyt-rule-06 h1 {
        font-size: 30px;
        font-weight: bold;
        text-align: left;
        line-height: 42px;
        margin: 24px 0px 24px 0px;
        color: #2d1b01; }
      .box-rule-01 .box-rule-02 .box-rule-07 .lyt-rule-06 p {
        font-size: 16px;
        line-height: 26px; }
    .box-rule-01 .box-rule-02 .box-rule-07 .lyt-rule-07 {
      padding: 30px; }

.box-price-01 {
  clear: both;
  width: 100%;
  padding: 80px 0px 80px 0px;
  background: #faf6ca; }
  .box-price-01 h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #2d1b01;
    text-align: center; }
  .box-price-01 .box-price-02 {
    width: 1024px;
    margin: 70px auto;
    padding: 60px 0px;
    background: #ffffff; }
    .box-price-01 .box-price-02 h1 {
      text-align: center; }
    .box-price-01 .box-price-02 .box-price-table-01 {
      width: 910px;
      margin: 0px auto;
      padding: 0px 0px 50px 0px; }
      .box-price-01 .box-price-02 .box-price-table-01 h1 {
        text-align: left;
        margin: 0px 0px 30px 0px;
        font-size: 18px;
        font-weight: bold;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
      .box-price-01 .box-price-02 .box-price-table-01 table {
        color: #2d1b01; }
      .box-price-01 .box-price-02 .box-price-table-01 .lyt-price-01 {
        width: 660px;
        padding: 20px;
        box-sizing: border-box;
        border: 1px solid #666666;
        font-size: 18px;
        font-weight: bold;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
      .box-price-01 .box-price-02 .box-price-table-01 .lyt-price-02 {
        width: 250px;
        padding: 20px;
        box-sizing: border-box;
        border: 1px solid #666666;
        vertical-align: middle;
        text-align: center;
        font-size: 18px;
        font-weight: bold; }
      .box-price-01 .box-price-02 .box-price-table-01 .lyt-price-03 {
        width: 114px;
        padding: 20px;
        box-sizing: border-box;
        border-bottom: 1px solid #666666;
        border-right: 1px solid #666666;
        border-left: 1px solid #666666;
        vertical-align: middle;
        text-align: center;
        background: #eee6d9;
        font-size: 14px;
        font-weight: bold; }
      .box-price-01 .box-price-02 .box-price-table-01 .lyt-price-04 {
        width: 546px;
        padding: 20px;
        box-sizing: border-box;
        border-bottom: 1px solid #666666;
        border-right: 1px solid #666666;
        border-left: 1px solid #666666;
        vertical-align: middle;
        color: #2d1b01;
        font-size: 16px;
        font-weight: bold;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
      .box-price-01 .box-price-02 .box-price-table-01 .lyt-price-05 {
        width: 250px;
        padding: 20px;
        box-sizing: border-box;
        text-align: center;
        border-bottom: 1px solid #666666;
        border-right: 1px solid #666666;
        border-left: 1px solid #666666;
        vertical-align: middle;
        font-size: 18px;
        font-weight: bold; }
      .box-price-01 .box-price-02 .box-price-table-01 .u-price-01 {
        color: #6f0000; }
      .box-price-01 .box-price-02 .box-price-table-01 .u-price-02 {
        font-size: 14px;
        font-weight: bold; }
      .box-price-01 .box-price-02 .box-price-table-01 .u-price-03 {
        margin: 20px 0px 0px 0px;
        font-size: 18px;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        color: #833131; }
      .box-price-01 .box-price-02 .box-price-table-01 .u-price-04 {
        font-size: 16px;
        font-weight: bold; }

.box-profile-01 {
  width: 100%;
  padding: 80px 0px 80px 0px;
  background: #faf6ca; }
  .box-profile-01 h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #2d1b01;
    text-align: center; }
  .box-profile-01 .box-profile-02 {
    width: 1024px;
    margin: 70px auto;
    padding: 0px 0px 50px 0px;
    background: #ffffff; }
    .box-profile-01 .box-profile-02 h1 {
      text-align: center; }
  .box-profile-01 .box-profile-03 {
    height: 541px;
    padding: 0px 0px 30px 0px;
    background: url(../images/top/top-27.jpg) right bottom no-repeat; }
    .box-profile-01 .box-profile-03 .lyt-profile-01 {
      float: left;
      padding: 0px 0px 0px 45px; }
      .box-profile-01 .box-profile-03 .lyt-profile-01 h1 {
        text-align: left;
        margin: 80px 0px 30px 0px; }
      .box-profile-01 .box-profile-03 .lyt-profile-01 h2 {
        font-size: 30px;
        font-weight: bold;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        margin: 0px 0px 30px 0px; }
      .box-profile-01 .box-profile-03 .lyt-profile-01 p {
        width: 600px;
        font-size: 16px;
        line-height: 24px; }
  .box-profile-01 .box-profile-04 {
    width: 950px;
    margin: 0px auto;
    background: url(../images/top/top-15.gif); }
    .box-profile-01 .box-profile-04 h1 {
      padding: 15px 0px 0px 25px;
      text-align: left; }
    .box-profile-01 .box-profile-04 .box-profile-05 {
      width: 900px;
      margin: 0px auto 30px auto;
      padding: 25px;
      box-sizing: border-box;
      background: #faf7f1;
      font-size: 16px;
      line-height: 28px;
      color: #2d1b01; }
      .box-profile-01 .box-profile-04 .box-profile-05 .lyt-profile-02 {
        float: left; }
      .box-profile-01 .box-profile-04 .box-profile-05 .lyt-profile-03 {
        float: right;
        padding: 0px 30px 0px 0px; }

.box-about-01 {
  width: 100%;
  padding: 80px 0px 80px 0px;
  background: #faf6ca; }
  .box-about-01 h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #2d1b01;
    text-align: center; }
  .box-about-01 .box-about-02 {
    width: 1024px;
    margin: 70px auto;
    padding: 0px 0px 30px 0px;
    background: #ffffff; }
    .box-about-01 .box-about-02 .box-about-03 h1 {
      width: 940px;
      margin: 40px auto;
      text-align: left;
      color: #2d1b01;
      font-size: 30px;
      font-weight: bold;
      font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
    .box-about-01 .box-about-02 .box-about-04 {
      width: 940px;
      margin: 0px auto; }
      .box-about-01 .box-about-02 .box-about-04 .lyt-about-01 {
        width: 410px;
        float: left; }
        .box-about-01 .box-about-02 .box-about-04 .lyt-about-01 .u-about-01 {
          background: #520016;
          margin: 0px 0px 35px 0px;
          border-radius: 5px;
          padding: 20px;
          box-sizing: border-box;
          text-align: center;
          color: #ffffff;
          font-size: 18px;
          font-weight: bold;
          letter-spacing: 0.05em; }
        .box-about-01 .box-about-02 .box-about-04 .lyt-about-01 address {
          font-style: normal;
          font-size: 30px;
          font-weight: bold; }
        .box-about-01 .box-about-02 .box-about-04 .lyt-about-01 p {
          margin: 10px 0px 50px 0px;
          font-size: 18px;
          letter-spacing: 0.1em; }
        .box-about-01 .box-about-02 .box-about-04 .lyt-about-01 .u-about-02 {
          padding: 20px;
          box-sizing: border-box;
          border-radius: 5px;
          text-align: center;
          background: linear-gradient(to right bottom, #d6d6d6, #9d9d9d);
          letter-spacing: 0.1em; }
          .box-about-01 .box-about-02 .box-about-04 .lyt-about-01 .u-about-02 a {
            display: block;
            color: #000000;
            font-weight: bold; }
      .box-about-01 .box-about-02 .box-about-04 .lyt-about-02 {
        width: 470px;
        float: right;
        box-sizing: border-box;
        padding: 20px 20px 0px 30px;
        background: url(../images/top/top-30.gif); }
        .box-about-01 .box-about-02 .box-about-04 .lyt-about-02 dt {
          font-size: 18px;
          color: #2d1b01;
          line-height: 24px; }
        .box-about-01 .box-about-02 .box-about-04 .lyt-about-02 dd {
          margin: 0px 0px 25px 0px;
          line-height: 24px; }
    .box-about-01 .box-about-02 .box-about-05 {
      width: 1024px;
      margin: 50px 0px 0px 0px; }
      .box-about-01 .box-about-02 .box-about-05 h1 {
        font-size: 24px;
        font-weight: bold;
        padding: 0px 0px 30px 40px;
        text-align: left; }
      .box-about-01 .box-about-02 .box-about-05 iframe {
        height: 340px; }
      .box-about-01 .box-about-02 .box-about-05 dl {
        width: 940px;
        margin: 10px auto 0px auto;
        line-height: 30px; }
      .box-about-01 .box-about-02 .box-about-05 dt {
        clear: both;
        width: 150px;
        float: left;
        font-weight: bold; }
      .box-about-01 .box-about-02 .box-about-05 dd {
        float: left; }
      .box-about-01 .box-about-02 .box-about-05 p {
        width: 940px;
        margin: 40px auto 0px auto;
        padding: 0px 0px 0px 0px;
        line-height: 30px; }

footer {
  bottom: 0px;
  width: 100%;
  background: #766e18;
  position: relative; }
  footer p {
    position: absolute;
    text-align: center;
    font-size: 10px;
    color: #ffffff;
    left: 0;
    right: 0;
    top: 30px; }
  footer address {
    padding: 50px 0px 25px 0px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    color: #ffffff; }

.f16 {
  font-size: 16px; }

.f12 {
  font-size: 12px; }

#lp {
 /*
* jQuery FlexSlider v2.6.3
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 and later license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*
*/
  /* ====================================================================================================================
   * FONT-FACE
   * ====================================================================================================================*/
  /* ====================================================================================================================
   * RESETS
   * ====================================================================================================================*/
  /* ====================================================================================================================
   * BASE STYLES
   * ====================================================================================================================*/
  /* ====================================================================================================================
   * DEFAULT THEME
   * ====================================================================================================================*/ }
@font-face {
  #lp {
    font-family: 'flexslider-icon';
    src: url("fonts/flexslider-icon.eot");
    src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
    font-weight: normal;
    font-style: normal; } }
  #lp .flex-container a:hover,
  #lp .flex-slider a:hover {
    outline: none; }
  #lp .slides,
  #lp .slides > li,
  #lp .flex-control-nav,
  #lp .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none; }
  #lp .flex-pauseplay span {
    text-transform: capitalize; }
  #lp .flexslider {
    margin: 0;
    padding: 0; }
  #lp .flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden; }
  #lp .flexslider .slides img {
    width: 100%;
    display: block; }
  #lp .flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  #lp html[xmlns] .flexslider .slides {
    display: block; }
  #lp * html .flexslider .slides {
    height: 1%; }
  #lp .no-js .flexslider .slides > li:first-child {
    display: block; }
  #lp .flexslider {
    margin: 0 0 60px;
    background: #fff;
    border: 4px solid #fff;
    position: relative;
    zoom: 1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
    -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2); }
  #lp .flexslider .slides {
    zoom: 1; }
  #lp .flexslider .slides img {
    height: auto;
    -moz-user-select: none; }
  #lp .flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease; }
  #lp .loading .flex-viewport {
    max-height: 300px; }
  #lp .carousel li {
    margin-right: 5px; }
  #lp .flex-direction-nav {
    *height: 0; }
  #lp .flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 50px;
    height: 100px;
    margin: -211px 0 0;
    position: absolute;
    top: 0;
    z-index: 10;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  #lp .flex-direction-nav a:before {
    font-family: "flexslider-icon";
    font-size: 40px;
    display: inline-block;
    content: '';
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3); }
  #lp .flex-direction-nav a.flex-next:before {
    content: ''; }
  #lp .flex-direction-nav .flex-prev {
    left: 14px;
    font-size: 55px;
    font-weight: bold; }
  #lp .flex-direction-nav .flex-next {
    right: 14px;
    font-size: 55px;
    text-align: right; }
  #lp .flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px; }
  #lp .flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1; }
  #lp .flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px; }
  #lp .flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1; }
  #lp .flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1; }
  #lp .flex-pauseplay a {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000; }
  #lp .flex-pauseplay a:before {
    font-family: "flexslider-icon";
    font-size: 20px;
    display: inline-block;
    content: '\f004'; }
  #lp .flex-pauseplay a:hover {
    opacity: 1; }
  #lp .flex-pauseplay a.flex-play:before {
    content: '\f003'; }
  #lp .flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center;
    display: none; }
  #lp .flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline; }
  #lp .flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px; }
  #lp .flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, 0.7); }
  #lp .flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    cursor: default; }
  #lp .flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden; }
  #lp .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0; }
  #lp .flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .7;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease; }
  #lp .flex-control-thumbs img:hover {
    opacity: 1; }
  #lp .flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default; }
  #lp .flexslider-etc li {
    position: relative; }
  #lp .flex-caption {
    color: #000;
    font-size: 16px;
    width: 329px;
    position: absolute;
    top: 97px;
    left: 411px;
    line-height: 1.7;
    letter-spacing: 1.5px; }

.box-contact-01-in {
  border: 1px solid #eeeeee;
  width: 764px;
  margin: 0 auto;
  padding: 55px 60px 0; }
.box-about-01 .box-contact-03 {
  width: 1024px;
  margin: 54px auto;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 55px 0 50px; }
  .box-about-01 .box-contact-03 dl {
    margin: 0 0 32px; }
    .box-about-01 .box-contact-03 dl dt {
      float: left;
      padding: 13px 0 0;
      width: 324px;
      font-weight: bold;
      color: #666;
      font-size: 18px; }
      .box-about-01 .box-contact-03 dl dt span {
        color: #DA5185;
        font-size: 10px;
        font-weight: bold; }
    .box-about-01 .box-contact-03 dl dd {
      float: left;
      width: 438px; }
      .box-about-01 .box-contact-03 dl dd input {
        font-size: 16px;
        width: 100%;
        padding:0 3%;
        border: 1px solid #bfbfbf;
        height: 54px;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px; }
      .box-about-01 .box-contact-03 dl dd > p {
        font-size: 12px;
        color: #2D1B01;
        line-height: 180%;
        padding: 0 0 10px; }
  .box-about-01 .box-contact-03 h2 {
    color: #2D1B01;
    font-weight: bold;
    padding: 16px 0 10px; }
  .box-about-01 .box-contact-03 select {
    height: 45px;
    font-size: 18px; }
  .box-about-01 .box-contact-03 .yoyaku p {
    margin: 10px 0 0; }

.naiyokakunin {
  width: 320px;
  background-color: #CFA972;
  text-align: center;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 15px 0;
  margin: -31px auto 0; }
  .naiyokakunin button {
    background-color: transparent;
    border: 0;
    color: #FFF;
    font-size: 21px;
    font-weight: bold; }

.red, .required-e, .error {
  color: #F00 !important; }

.mb90 {
  margin-bottom:90px !important;
}
.doc-about-01 {
  text-align:center;
  line-height:190%;
  margin:32px 0 0 0;
}
.link-about-01 {
  width:320px;
  margin:0px auto;
}
.link-about-01 a {
  display:block;
  background:#520016;
  height:56px;
  line-height:56px;
  color:#ffffff;
  text-align:center;
  margin:32px 0 0 ;
  border-radius:4px;
}