@charset "UTF-8";
/*要素のフォントサイズやマージン・パディングをリセットしています*/
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, button, input, select, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-align: left; }

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1.0; }

/*文字サイズの自動調整を無効化しています*/
body {
  line-height: 1.0;
  -webkit-text-size-adjust: none; }

/*新規追加要素のデフォルトはすべてインライン要素になっているので、
section要素などをブロック要素へ変更しています*/
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block; }

/*ホバー、アクティブ時のアウトラインを消しています*/
a:hover,
a:active {
  outline: 0; }

/*ol、ulのマーカー（行頭記号）を表示しないようにしています*/
ol, ul {
  list-style: none; }

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none; }

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

/*スタイリングを再指定しています*/
abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

/*pre,code等のフォントを指定しています*/
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/*pre-formatted textの読みやすさを改善しています*/
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を
親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/*ins要素のデフォルトをセットし、
色を変える場合はここで変更できるようにしています*/
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/*mark要素のデフォルトをセットし、
色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、
目立たせる際に使用するようです*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through; }

/*IEではデフォルトで点線を下線表示する設定ではないので、
下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show; }

/*テーブルの中身を天地中央にします*/
th, td {
  vertical-align: middle; }

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

/*フォームの入力項目をいい感じに配置します*/
button, input, select, textarea {
  vertical-align: baseline;
  *vertical-align: middle;
  font-family: sans-serif; }

button, input {
  line-height: normal;
  *overflow: visible; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input::placeholder {
  color: #ccc; }

input::-moz-placeholder {
  color: #ccc; }

input::-webkit-input-placeholder {
  color: #ccc; }

/*フォームの入力値が正常だった場合のスタイルです*/
:valid {
  background-color: green; }

/*フォームの入力値が異常だった場合のスタイルです*/
:invalid {
  background-color: pink; }

/*フォームの入力値が範囲内だった場合のスタイルです*/
:in-range {
  background-color: lightgreen; }

/*フォームの入力値が範囲外だった場合のスタイルです*/
:out-of-range {
  background-color: red; }

/*フォームへの入力が必須の場合のスタイルです*/
:required {
  border-style: solid; }

/*フォームへの入力が必須でない場合のスタイルです*/
:optional {
  border-style: dashed; }

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle; }

/*テキストエリアのスクロールバーを削除し、上寄せにしています*/
textarea {
  overflow: auto;
  vertical-align: top; }

/*画像を縦に並べたときに隙間が空かないようにしています*/
img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  border: 0; }

/* mixin諸々
------------------------------------------------- */
/* transform 変形
------------------------------------------------- */
/* transition 時間的変化
------------------------------------------------- */
/* animation アニメーション
------------------------------------------------- */
/* 汎用パーツ 書き出しあり
------------------------------------------------- */
.invisible {
  visibility: hidden; }

.displayNone {
  display: none; }

/* 汎用パーツ 書き出しなし
------------------------------------------------- */
#why ul li, .information .informationThumb, .lens .sectionBody .shopWrap, .lens .sectionBody .shopWrap .shopEyemirror, #globalfooter #dlBox {
  zoom: 1; }
  #why ul li:before, .information .informationThumb:before, .lens .sectionBody .shopWrap:before, .lens .sectionBody .shopWrap .shopEyemirror:before, #globalfooter #dlBox:before, #why ul li:after, .information .informationThumb:after, .lens .sectionBody .shopWrap:after, .lens .sectionBody .shopWrap .shopEyemirror:after, #globalfooter #dlBox:after {
    content: "\0020";
    display: table; }
  #why ul li:after, .information .informationThumb:after, .lens .sectionBody .shopWrap:after, .lens .sectionBody .shopWrap .shopEyemirror:after, #globalfooter #dlBox:after {
    clear: both; }

/* 案件別mixin
------------------------------------------------- */
/* 案件別共通パーツ
------------------------------------------------- */
/* mixin諸々
------------------------------------------------- */
/* transform 変形
------------------------------------------------- */
/* transition 時間的変化
------------------------------------------------- */
/* animation アニメーション
------------------------------------------------- */
/* ページ基本設計
------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%; }

body {
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.2rem;
  font-size: 12px\9;
  color: #333;
  background: #fff; }

a,
a:link {
  color: #333;
  border-bottom: 1px dotted #999;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); }

a:visited,
a:hover,
a:active,
a:focus {
  color: #999; }



/* ヘッダ
------------------------------------------------- */
#header {
  width: 100%;
  height: 628px; }
  #header .header1
 {
    position: absolute;
    width: 100%;
    height: 628px;
    margin-top: 36px; }
  #header .header1 {
    z-index: 1;
    background: url(../img/back.png) repeat; }

/* シェアボタン背景　まどまぎ用に透過しています。
------------------------------------------------- */
#share {
  position:relative;
  margin-top: 5px;
  padding: 0 0 10px; }

  #share ul {
    margin-left: 40px;
    width: 900px; }

    #share ul li {
      display: inline-block;
      min-width: 50px;
      vertical-align: middle; }
      #share ul li:first-child {
        margin-right: 0px; }
      #share ul li iframe.twitter-share-button {
        width: 105px !important; }

@-moz-document url-prefix( ) {
  .fb_edge_widget_with_comment span,
  iframe.fb_ltr {
    height: 20px !important;
    width: 97px !important; } }
/* 汎用文字スタイル
------------------------------------------------- */
.red {
  color: red; }
  .red a {
    color: inherit;
    border-bottom-color: red; }
    .red a:hover {
      color: orange; }

.bold {
  font-weight: bold; }

.large {
  font-size: 1.8rem; }
.l-line {
  border-left: 10px double #000;
  padding-left: 10px;
}
/* メイン
------------------------------------------------- */
#main {
  margin: 50px auto 0;
  width: 850px; }

#fancybox-wrap, #fancybox-wrap *{
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    -safari-box-sizing: content-box !important;
    box-sizing: content-box !important;
}
/* お知らせ
------------------------------------------------- */
#notice {
  margin-bottom: 65px; }
  #notice h1 {
    margin-bottom: 30px;
    letter-spacing: .15em;
    font-size: 1.5rem;
    color: #333; }
  #notice p {
    line-height: 1.8;
    padding: 0 0 20px 40px; }
  #notice h2 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 40px;
    letter-spacing: .15em;
    font-size: 1.3rem;
    color: #333; }

/*
------------------------------------------------- */
#what {
  margin-bottom: 65px;
  margin-top: 200px;
  text-align: center; }
  #what h1 {
    margin-bottom: 30px;
    padding-left: 47px;
    letter-spacing: .15em;
    font-size: 1.5rem;
    color: #333; }
  #what p {
    line-height: 1.8;
    padding-left: 70px; }
#l1 {
  margin-bottom: 65px; }
  #what h1 {
    margin-bottom: 30px;
    padding-left: 47px;    
    letter-spacing: .15em;
    font-size: 1.5rem;
    color: #333; }
  #what p {
    line-height: 1.8;
    padding-left: 70px; }

/* 各モデル
------------------------------------------------- */

/* まどか
------------------------------------------------- */
.madoka {
  background-image: url(../img/madoka.jpg);
  position: relative;
  height: 665px;
  margin-bottom: 180px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-clip: padding-box; }
  
  .madoka p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .madoka .eyewearImg {
    display: block;

    top:633px;
    left:30px;
  }
  .madoka a {
  border-style: none; }
  .madoka img {
  border-style: none;
  border: solid 1px #666; }
  #madoka1 {
    position:relative;
    top: 0;
    left: 0; }
  #madoka2 {
    position:relative;
    top: 0;
    left: -2px; }
  #madoka3 {
    position:relative;
    top: 0;
    left: -4px; }
  #madoka4 {
    position:relative;
    top: 0;
    left: -6px; }
  #madoka5 {
    position:relative;
    top: 0px;
    left: -8px; }
  #madoka6 {
    position:relative;
    top: 1px;
    left: 0px; }
  #madoka7 {
    position:relative;
    top: 1px;
    left: -2px; }
  #madoka8 {
    position:relative;
    top: 1px;
    left: -4px; }
  #madoka9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #madoka10 {
    position:relative;
    top: 1px;
    left: -8px; }
/* ほむら
------------------------------------------------- */
.homura {
  background-image: url(../img/homura.jpg);
  position: relative;
  height: 665px;
  margin-bottom: 180px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-clip: padding-box; }
  
  .homura p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .homura .eyewearImg {
    display: block;

    top:633px;
    left:30px;
  }
  .homura a {
  border-style: none; }
  .homura img {
  border-style: none;
  border: solid 1px #666; }
  #homura1 {
    position:relative;
    top: 0;
    left: 0; }
  #homura2 {
    position:relative;
    top: 0;
    left: -2px; }
  #homura3 {
    position:relative;
    top: 0;
    left: -4px; }
  #homura4 {
    position:relative;
    top: 0;
    left: -6px; }
  #homura5 {
    position:relative;
    top: 0px;
    left: -8px; }
  #homura6 {
    position:relative;
    top: 1px;
    left: 0px; }
  #homura7 {
    position:relative;
    top: 1px;
    left: -2px; }
  #homura8 {
    position:relative;
    top: 1px;
    left: -4px; }
  #homura9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #homura10 {
    position:relative;
    top: 1px;
    left: -8px; }

/* まみ
------------------------------------------------- */   
.mami {
  background-image: url(../img/mami.jpg);
  position: relative;
  height: 665px;
  margin-bottom: 180px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-clip: padding-box; }
  
  .mami p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .mami .eyewearImg {
    display: block;

    top:633px;
    left:30px;
  }
  .mami a {
  border-style: none; }
  .mami img {
  border-style: none;
  border: solid 1px #666; }
  #mami1 {
    position:relative;
    top: 0;
    left: 0; }
  #mami2 {
    position:relative;
    top: 0;
    left: -2px; }
  #mami3 {
    position:relative;
    top: 0;
    left: -4px; }
  #mami4 {
    position:relative;
    top: 0;
    left: -6px; }
  #mami5 {
    position:relative;
    top: 0px;
    left: -8px; }
  #mami6 {
    position:relative;
    top: 1px;
    left: 0px; }
  #mami7 {
    position:relative;
    top: 1px;
    left: -2px; }
  #mami8 {
    position:relative;
    top: 1px;
    left: -4px; }
  #mami9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #mami10 {
    position:relative;
    top: 1px;
    left: -8px; }

/* さやか
------------------------------------------------- */   
.sayaka {
  background-image: url(../img/sayaka.jpg);
  position: relative;
  height: 665px;
  margin-bottom: 180px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-clip: padding-box; }
  
  .sayaka p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .sayaka .eyewearImg {
    display: block;

    top:633px;
    left:30px;
  }
  .sayaka a {
  border-style: none; }
  .sayaka img {
  border-style: none;
  border: solid 1px #666; }
  #sayaka1 {
    position:relative;
    top: 0;
    left: 0; }
  #sayaka2 {
    position:relative;
    top: 0;
    left: -2px; }
  #sayaka3 {
    position:relative;
    top: 0;
    left: -4px; }
  #sayaka4 {
    position:relative;
    top: 0;
    left: -6px; }
  #sayaka5 {
    position:relative;
    top: 0px;
    left: -8px; }
  #sayaka6 {
    position:relative;
    top: 1px;
    left: 0px; }
  #sayaka7 {
    position:relative;
    top: 1px;
    left: -2px; }
  #sayaka8 {
    position:relative;
    top: 1px;
    left: -4px; }
  #sayaka9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #sayaka10 {
    position:relative;
    top: 1px;
    left: -8px; }

/* きょうこ
------------------------------------------------- */   
.kyoko {
  background-image: url(../img/kyoko.jpg);
  position: relative;
  height: 665px;
  margin-bottom: 220px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-clip: padding-box; }
  
  .kyoko p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .kyoko .eyewearImg {
    display: block;

    top:633px;
    left:30px;
  }
  .kyoko a {
  border-style: none; }
  .kyoko img {
  border-style: none;
  border: solid 1px #666; }
  #kyoko1 {
    position:relative;
    top: 0;
    left: 0; }
  #kyoko2 {
    position:relative;
    top: 0;
    left: -2px; }
  #kyoko3 {
    position:relative;
    top: 0;
    left: -4px; }
  #kyoko4 {
    position:relative;
    top: 0;
    left: -6px; }
  #kyoko5 {
    position:relative;
    top: 0px;
    left: -8px; }
  #kyoko6 {
    position:relative;
    top: 1px;
    left: 0px; }
  #kyoko7 {
    position:relative;
    top: 1px;
    left: -2px; }
  #kyoko8 {
    position:relative;
    top: 1px;
    left: -4px; }
  #kyoko9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #kyoko10 {
    position:relative;
    top: 1px;
    left: -8px; }    

/* 改変前　マクロスモデル用ソース
------------------------------------------------- */   
.vf25 {
  background-image: url(../img/vf-25f_bg.jpg);
  position: relative;
  height: 665px;
  margin-bottom: 30px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-clip: padding-box; }
  
  .vf25 h1 {
    position: absolute;
    height: 73px;
    background-image: url(../img/model_h1.png);
    background-repeat: no-repeat; }
  .vf25 p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .vf25 .eyewearImg {
    display: block;

    top:504px;
    left:62px;
  }
  .vf25 a {
  border-style: none; }
  .vf25 img {
  border-style: none; }
  #vt1 {
    position:relative;
    top: 0;
    left: 0; }
  #vt2 {
    position:relative;
    top: 0;
    left: -2px; }
  #vt3 {
    position:relative;
    top: 0;
    left: -4px; }
  #vt4 {
    position:relative;
    top: 0;
    left: -6px; }
  #vt5 {
    position:relative;
    top: 0px;
    left: -8px; }
  #vt6 {
    position:relative;
    top: 1px;
    left: 0px; }
  #vt7 {
    position:relative;
    top: 1px;
    left: -2px; }
  #vt8 {
    position:relative;
    top: 1px;
    left: -4px; }
  #vt9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #vt9 {
    position:relative;
    top: 1px;
    left: -6px; }
  #vt10 {
    position:relative;
    top: 1px;
    left: -8px; }
.model {
  position: relative;
  height: 565px;
  margin-bottom: 30px;
  border: 1px solid #999;
  background-repeat: no-repeat;
  background-position: 0 0;
  border-radius: 10px;
  background-clip: padding-box; }
  .model h1 {
    position: absolute;
    height: 73px;
    background-image: url(../img/model_h1.png);
    background-repeat: no-repeat; }
  .model p {
    position: absolute;
    line-height: 1.4;
    font-size: 1.1rem;}
  .model .eyewear {
    width: 350px;
    height: 73px;
    background-image: url(../img/model_txt.png);
    background-repeat: no-repeat;
  }
  .model .eyewearImg {
    display: block;
    width: 331px;
  }
  .model .price {
    width: 225px;
    height: 74px;
    background-image: url(../img/model_price.png);
    background-repeat: no-repeat;
  }
  .model .frontImg {
    height: 110px; }
  .model .templeImg {
    height: 148px; }
  .model .eyewearImg {
    height: 384px; }
  .model a {
  border-style: none; }
  .model img {
  border-style: none; }

.modelSheryl {
  background-image: url(../img/sheryl_bg.jpg); }
  .modelSheryl h1 {
    top: 485px;
    left: 195px;
    width: 316px;
    background-position: 0 0; }
  .modelSheryl .eyewearImg {
    top: 99px;
    right: 39px;
    width:331px; }
  .modelSheryl .eyewear {
    top: 20px;
    right: 39px; }
  .modelSheryl .price {
    top: 485px;
    right:39px; }

.modelRanka {
  background-image: url(../img/ranka_bg.jpg); }
  .modelRanka h1 {
    top: 485px;
    right: 290px;
    width: 195px;
    background-position: -320px 0; }
  .modelRanka .eyewearImg {
    top: 99px;
    left: 39px;
    width:331px;
    background-position: -331px 0; }
  .modelRanka .eyewear {
    top: 20px;
    left: 39px;
    background-position: -350px 0; }
  .modelRanka .price {
    top: 485px;
    left:39px;
    background-position: -225px 0;}
  #st1 {
    position:relative;
    top: 0;
    left: 0; }
  #st2 {
    position:relative;
    top: 0;
    left: 0; }
  #st3 {
    position:relative;
    top: -62px;
    left: 166px; }
  #st4 {
    position:relative;
    top: -62px;
    left: 0; }
  #st5 {
    position:relative;
    top: -128px;
    left: 166px; }
  #st6 {
    position:relative;
    top: -128px;
    left: 0; }
  #st7 {
    position:relative;
    top: -239px;
    left: 166px; }
  #rt1 {
    position:relative;
    top: 0;
    left: 0; }
  #rt2 {
    position:relative;
    top: 0;
    left: 0; }
  #rt3 {
    position:relative;
    top: -62px;
    left: 166px; }
  #rt4 {
    position:relative;
    top: -62px;
    left: 0; }
  #rt5 {
    position:relative;
    top: -128px;
    left: 166px; }
  #rt6 {
    position:relative;
    top: -128px;
    left: 0; }
  #rt7 {
    position:relative;
    top: -239px;
    left: 166px; }

/* 購入方法
------------------------------------------------- */
#buy {
  margin-bottom: 65px; }
  #buy h1 {
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    color: #fff;
    background: #000;
    border: 1px solid #999;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-clip: padding-box; }
  #buy .sectionBody {
    padding: 30px 60px;
    border: 1px solid #999;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-clip: padding-box; }
    #buy .sectionBody h2 {
      padding: 10px 0;
      margin-bottom: 10px;
      font-size: 1.4rem;
      border-bottom: 1px solid #999; }
    #buy .sectionBody p {
      margin-bottom: 10px;
      text-align: left;
      line-height: 2.0; }
      #buy .sectionBody p + h2 {
        margin-top: 30px; }
    #buy .sectionBody ul {
      padding-left: 20px;
      list-style-type: none; }
      #buy .sectionBody ul + h2 {
        margin-top: 30px; }
    #buy .sectionBody li {
      margin-bottom: 5px; }
    #buy .sectionBody .button {
      padding: 20px 0 30px; }
      #buy .sectionBody .button a {
        display: block;
        width: 100%;
        height: 55px;
        line-height: 55px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 0.15em;
        background: #000;
        border: none;
        border-radius: 10px; }
        #buy .sectionBody .button a:hover {
          color: #999;
          background: #fff;
          border: 2px solid #999; }

/* 度付きメガネをご希望の方へ
------------------------------------------------- */
.lens {
  margin-bottom: 65px; }
  .lens h1 {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    color: #fff;
    background: #000;
    border: 1px solid #999;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-clip: padding-box; }
  .lens .sectionBody {
    padding: 30px 60px;
    border: 1px solid #999;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-clip: padding-box; }
    .lens .sectionBody h2 {
      padding: 10px 0;
      margin-bottom: 10px;
      font-size: 1.4rem;
      border-bottom: 1px solid #999; }
    .lens .sectionBody p {
      margin-bottom: 10px;
      text-align: left;
      line-height: 2.0; }
      .lens .sectionBody p + h2 {
        margin-top: 30px; }
.important {
  margin: 10px 20px 30px;
}
@media (max-width: 980px) {
  .important {
    margin: 20px 20px 35px;
  }
}

/* 【店舗タブ】動く方　タブ切り替え全体のスタイル
---------------------------------------------*/
.tabs {
  padding-bottom: 40px;
  background-color: #fff;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  width: 950px;
  margin: 10px auto 10px;}

/* 【店舗タブ】タブのスタイル
---------------------------------------------*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #000000;
  border-top: 1px solid #4c4c4c;
  border-left: 1px solid #4c4c4c;
  border-right: 1px solid #4c4c4c;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
  background-color: #efefef;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media (max-width: 980px) {
 .tab_item {
  height: 100px;
  font-size: 4rem;
  padding-top: 25px;
 }
}
.tab_item:hover {
  opacity: 0.75;
}
@media (max-width: 980px) {
    .tab_item:hover {
        opacity: 1.0;
    }
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  padding: 15px 15px 0;
  clear: both;
  overflow: hidden;
}

#b_content {
  padding-top: 0;
}
#c_content {
  padding-top: 0;
}

/*選択されているタブのコンテンツのみを表示*/
#a:checked ~ #a_content,
#b:checked ~ #b_content,
#c:checked ~ #c_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #000000;
  color: #fff;
}

/* 【店舗タブ】店舗表示
------------------------------------------------- */
.shopEyemirror h2 {
    font-size: 1.5rem;
}
@media (max-width: 980px) {
    .shopEyemirror h2 {
        font-size: 4.0rem;
    }
}
.shopEyemirror ul li {
    font-size: 1.2rem;
    line-height: 2.0rem;
}
@media (max-width: 980px) {
    .shopEyemirror ul li {
        font-size: 3.5rem;
        line-height: 5.0rem;
    }
}
.shopEyemirror ul {
    margin: 20px 0;
}
.shopEyemirror .map{
	max-width: 920px;
	height: auto;
}
@media (max-width: 980px) {
    .shopEyemirror .map{
        margin: 20px auto;
        width: 920px;
        height: auto;
    }
   .shopEyemirror .map p iframe {
        width: 920px;
    }
}
.shopEyemirror .map a{
	color:#00bbcc
}

/* 協力店舗
------------------------------------------------- */
#shopCooperate {
  margin-bottom: 65px; }
  #shopCooperate h1 {
    margin-bottom: 20px;
    letter-spacing: .15em;
    font-size: 1.5rem;
    color: #333; }
  #shopCooperate p {
    margin-bottom: 20px;
    padding-left: 40px; }
  #shopCooperate ul {
    margin-bottom: 15px;
    padding-left: 40px;
    line-height: 1.8; }
  #shopCooperate strong {
    color: red; }

/* Q&A
------------------------------------------------- */
#qa {
  margin-bottom: 65px; }
  #qa h1 {
    margin-bottom: 20px;
    letter-spacing: .15em;
    font-size: 1.5rem;
    color: #333; }
  #qa p {
    margin-bottom: 20px;
    padding-left: 40px; }

/* フッター
------------------------------------------------- */
#globalfooter {
  background: #000;
  height: 120px;
  font-size: 1.2rem; }
  #globalfooter #dlBox {
    padding: 30px 20px 10px 20px;
    margin-bottom: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff; }
    #globalfooter #dlBox #dlLeft {
      width: 380px;
      float: left; }
    #globalfooter #dlBox #dlRight {
      width: 380px;
      float: right; }
  #globalfooter dl dt {
    clear: left;
    float: left;
    width: 120px;
    height: 40px; }
  #globalfooter dl dd {
    height: 40px; }
  #globalfooter ul {
    padding: 30px;
    text-align: center; }
    #globalfooter ul li {
      padding: 0 10px;
      display: inline-block;
      border-right: 1px solid #fff; }
      #globalfooter ul li:last-child {
        border-right: none; }
  #globalfooter .attention {
    padding-left: 20px;
    font-size: 1.1rem; }
  #globalfooter .copyright {
    text-align: center; }

/*# sourceMappingURL=index.css.map */

/* 追加ソース　201707
------------------------------------------------- */
.kv  {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  width: 100%;
  height: 563px;
  text-align: center; }

.line01 {
  background-repeat: repeat-x;
  height: 54px;
  background-image: url(../img/linetop01.png);
  width: auto;
  margin-top: -36px; }

.line02 {
  position: relative;
  top: -30px;
  text-align: center;
  background-image: url(../img/lineunder01.png);
  background-repeat: repeat-x;
  height: 145px;
  width: auto; }

.title {
  text-align: center;
  position: relative;
  top: -256px;
  width: 100%;
  height: 213px; }

.line03 {
  position: relative;
  top: 5px;
  text-align: center;
  background-image: url(../img/line_f.png);
  background-repeat: repeat-x;
  height: 145px;
  width: auto; }

/* 画像ダウンロード一手間増やし
------------------------------------------------- */

.kv-img-block{
position:relative;
width: 979px;
height: 556px;
}
.kv-block-nopic{
position:absolute;
display:block;
width:100%;
height:100%;
background: url(img/block_kv.png);
}

.th-img-block{
position:relative;
width: 250px;
height: 170px;
}
.th-block-nopic{
position:absolute;
display:block;
width:100%;
height:100%;
background: url(img/block_kv.png);
}