@charset "UTF-8";
/* -------------------------------------------------------------------------

		reset.sass
		
		要素のデフォルトスタイル、フォントサイズのリセット
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		style reset
		
------------------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, 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;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

small {
  font-size: smaller;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

/* -------------------------------------------------------------------------

		font styles
		
------------------------------------------------------------------------- */
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 13px/1.231 arial,sans-serif;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none;
}

/* -------------------------------------------------------------------------

		vars.sass

		scssファイル内で使う変数を定義

------------------------------------------------------------------------- */
/* font size
------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* text color
------------------------------------------------- */
/* -------------------------------------------------------------------------

		util.sass

		案件に依存せず汎用的に使うClassを定義

------------------------------------------------------------------------- */
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after, .grid_system_12:after, body.top .top_content .inner .top_main_column .lineup:after, .grid_system_2:after, body.lineup_page main .lineup_box ul .grid_system_12:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

/*for IE 5.5-7*/
.clear_fix, .grid_system_12, body.top .top_content .inner .top_main_column .lineup, .grid_system_2, body.lineup_page main .lineup_box ul .grid_system_12 {
  zoom: 1;
}

.clear_both {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0;
}

.clear {
  clear: both;
}

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline;
}

.float_l {
  float: left;
  display: inline;
}

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

@media screen and (max-width: 480px) {
  .mb0 {
    margin-bottom: 0% !important;
  }

  .mt0 {
    margin-top: 0% !important;
  }

  .mr0 {
    margin-right: 0% !important;
  }

  .ml0 {
    margin-left: 0% !important;
  }
}
.mb5 {
  margin-bottom: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

@media screen and (max-width: 480px) {
  .mb5 {
    margin-bottom: 0.05% !important;
  }

  .mt5 {
    margin-top: 0.05% !important;
  }

  .mr5 {
    margin-right: 0.05% !important;
  }

  .ml5 {
    margin-left: 0.05% !important;
  }
}
.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

@media screen and (max-width: 480px) {
  .mb10 {
    margin-bottom: 0.2% !important;
  }

  .mt10 {
    margin-top: 0.2% !important;
  }

  .mr10 {
    margin-right: 0.2% !important;
  }

  .ml10 {
    margin-left: 0.2% !important;
  }
}
.mb15 {
  margin-bottom: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

@media screen and (max-width: 480px) {
  .mb15 {
    margin-bottom: 0.45% !important;
  }

  .mt15 {
    margin-top: 0.45% !important;
  }

  .mr15 {
    margin-right: 0.45% !important;
  }

  .ml15 {
    margin-left: 0.45% !important;
  }
}
.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

@media screen and (max-width: 480px) {
  .mb20 {
    margin-bottom: 0.8% !important;
  }

  .mt20 {
    margin-top: 0.8% !important;
  }

  .mr20 {
    margin-right: 0.8% !important;
  }

  .ml20 {
    margin-left: 0.8% !important;
  }
}
.mb25 {
  margin-bottom: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

@media screen and (max-width: 480px) {
  .mb25 {
    margin-bottom: 1.25% !important;
  }

  .mt25 {
    margin-top: 1.25% !important;
  }

  .mr25 {
    margin-right: 1.25% !important;
  }

  .ml25 {
    margin-left: 1.25% !important;
  }
}
.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

@media screen and (max-width: 480px) {
  .mb30 {
    margin-bottom: 1.8% !important;
  }

  .mt30 {
    margin-top: 1.8% !important;
  }

  .mr30 {
    margin-right: 1.8% !important;
  }

  .ml30 {
    margin-left: 1.8% !important;
  }
}
.mb35 {
  margin-bottom: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

@media screen and (max-width: 480px) {
  .mb35 {
    margin-bottom: 2.45% !important;
  }

  .mt35 {
    margin-top: 2.45% !important;
  }

  .mr35 {
    margin-right: 2.45% !important;
  }

  .ml35 {
    margin-left: 2.45% !important;
  }
}
.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

@media screen and (max-width: 480px) {
  .mb40 {
    margin-bottom: 3.2% !important;
  }

  .mt40 {
    margin-top: 3.2% !important;
  }

  .mr40 {
    margin-right: 3.2% !important;
  }

  .ml40 {
    margin-left: 3.2% !important;
  }
}
.mb45 {
  margin-bottom: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

@media screen and (max-width: 480px) {
  .mb45 {
    margin-bottom: 4.05% !important;
  }

  .mt45 {
    margin-top: 4.05% !important;
  }

  .mr45 {
    margin-right: 4.05% !important;
  }

  .ml45 {
    margin-left: 4.05% !important;
  }
}
.mb50 {
  margin-bottom: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

@media screen and (max-width: 480px) {
  .mb50 {
    margin-bottom: 5% !important;
  }

  .mt50 {
    margin-top: 5% !important;
  }

  .mr50 {
    margin-right: 5% !important;
  }

  .ml50 {
    margin-left: 5% !important;
  }
}
.mb55 {
  margin-bottom: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

@media screen and (max-width: 480px) {
  .mb55 {
    margin-bottom: 6.05% !important;
  }

  .mt55 {
    margin-top: 6.05% !important;
  }

  .mr55 {
    margin-right: 6.05% !important;
  }

  .ml55 {
    margin-left: 6.05% !important;
  }
}
.mb60 {
  margin-bottom: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

@media screen and (max-width: 480px) {
  .mb60 {
    margin-bottom: 7.2% !important;
  }

  .mt60 {
    margin-top: 7.2% !important;
  }

  .mr60 {
    margin-right: 7.2% !important;
  }

  .ml60 {
    margin-left: 7.2% !important;
  }
}
.mb65 {
  margin-bottom: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

@media screen and (max-width: 480px) {
  .mb65 {
    margin-bottom: 8.45% !important;
  }

  .mt65 {
    margin-top: 8.45% !important;
  }

  .mr65 {
    margin-right: 8.45% !important;
  }

  .ml65 {
    margin-left: 8.45% !important;
  }
}
.mb70 {
  margin-bottom: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

@media screen and (max-width: 480px) {
  .mb70 {
    margin-bottom: 9.8% !important;
  }

  .mt70 {
    margin-top: 9.8% !important;
  }

  .mr70 {
    margin-right: 9.8% !important;
  }

  .ml70 {
    margin-left: 9.8% !important;
  }
}
.mb75 {
  margin-bottom: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

@media screen and (max-width: 480px) {
  .mb75 {
    margin-bottom: 11.25% !important;
  }

  .mt75 {
    margin-top: 11.25% !important;
  }

  .mr75 {
    margin-right: 11.25% !important;
  }

  .ml75 {
    margin-left: 11.25% !important;
  }
}
.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

@media screen and (max-width: 480px) {
  .mb80 {
    margin-bottom: 12.8% !important;
  }

  .mt80 {
    margin-top: 12.8% !important;
  }

  .mr80 {
    margin-right: 12.8% !important;
  }

  .ml80 {
    margin-left: 12.8% !important;
  }
}
.mb85 {
  margin-bottom: 85px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

@media screen and (max-width: 480px) {
  .mb85 {
    margin-bottom: 14.45% !important;
  }

  .mt85 {
    margin-top: 14.45% !important;
  }

  .mr85 {
    margin-right: 14.45% !important;
  }

  .ml85 {
    margin-left: 14.45% !important;
  }
}
.mb90 {
  margin-bottom: 90px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

@media screen and (max-width: 480px) {
  .mb90 {
    margin-bottom: 16.2% !important;
  }

  .mt90 {
    margin-top: 16.2% !important;
  }

  .mr90 {
    margin-right: 16.2% !important;
  }

  .ml90 {
    margin-left: 16.2% !important;
  }
}
.mb95 {
  margin-bottom: 95px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

@media screen and (max-width: 480px) {
  .mb95 {
    margin-bottom: 18.05% !important;
  }

  .mt95 {
    margin-top: 18.05% !important;
  }

  .mr95 {
    margin-right: 18.05% !important;
  }

  .ml95 {
    margin-left: 18.05% !important;
  }
}
.mb100 {
  margin-bottom: 100px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

@media screen and (max-width: 480px) {
  .mb100 {
    margin-bottom: 20% !important;
  }

  .mt100 {
    margin-top: 20% !important;
  }

  .mr100 {
    margin-right: 20% !important;
  }

  .ml100 {
    margin-left: 20% !important;
  }
}
.mb105 {
  margin-bottom: 105px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mr105 {
  margin-right: 105px !important;
}

.ml105 {
  margin-left: 105px !important;
}

@media screen and (max-width: 480px) {
  .mb105 {
    margin-bottom: 22.05% !important;
  }

  .mt105 {
    margin-top: 22.05% !important;
  }

  .mr105 {
    margin-right: 22.05% !important;
  }

  .ml105 {
    margin-left: 22.05% !important;
  }
}
.mb110 {
  margin-bottom: 110px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mr110 {
  margin-right: 110px !important;
}

.ml110 {
  margin-left: 110px !important;
}

@media screen and (max-width: 480px) {
  .mb110 {
    margin-bottom: 24.2% !important;
  }

  .mt110 {
    margin-top: 24.2% !important;
  }

  .mr110 {
    margin-right: 24.2% !important;
  }

  .ml110 {
    margin-left: 24.2% !important;
  }
}
.mb115 {
  margin-bottom: 115px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mr115 {
  margin-right: 115px !important;
}

.ml115 {
  margin-left: 115px !important;
}

@media screen and (max-width: 480px) {
  .mb115 {
    margin-bottom: 26.45% !important;
  }

  .mt115 {
    margin-top: 26.45% !important;
  }

  .mr115 {
    margin-right: 26.45% !important;
  }

  .ml115 {
    margin-left: 26.45% !important;
  }
}
.mb120 {
  margin-bottom: 120px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mr120 {
  margin-right: 120px !important;
}

.ml120 {
  margin-left: 120px !important;
}

@media screen and (max-width: 480px) {
  .mb120 {
    margin-bottom: 28.8% !important;
  }

  .mt120 {
    margin-top: 28.8% !important;
  }

  .mr120 {
    margin-right: 28.8% !important;
  }

  .ml120 {
    margin-left: 28.8% !important;
  }
}
.mb125 {
  margin-bottom: 125px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.mr125 {
  margin-right: 125px !important;
}

.ml125 {
  margin-left: 125px !important;
}

@media screen and (max-width: 480px) {
  .mb125 {
    margin-bottom: 31.25% !important;
  }

  .mt125 {
    margin-top: 31.25% !important;
  }

  .mr125 {
    margin-right: 31.25% !important;
  }

  .ml125 {
    margin-left: 31.25% !important;
  }
}
.mb130 {
  margin-bottom: 130px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mr130 {
  margin-right: 130px !important;
}

.ml130 {
  margin-left: 130px !important;
}

@media screen and (max-width: 480px) {
  .mb130 {
    margin-bottom: 33.8% !important;
  }

  .mt130 {
    margin-top: 33.8% !important;
  }

  .mr130 {
    margin-right: 33.8% !important;
  }

  .ml130 {
    margin-left: 33.8% !important;
  }
}
.mb135 {
  margin-bottom: 135px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.mr135 {
  margin-right: 135px !important;
}

.ml135 {
  margin-left: 135px !important;
}

@media screen and (max-width: 480px) {
  .mb135 {
    margin-bottom: 36.45% !important;
  }

  .mt135 {
    margin-top: 36.45% !important;
  }

  .mr135 {
    margin-right: 36.45% !important;
  }

  .ml135 {
    margin-left: 36.45% !important;
  }
}
.mb140 {
  margin-bottom: 140px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mr140 {
  margin-right: 140px !important;
}

.ml140 {
  margin-left: 140px !important;
}

@media screen and (max-width: 480px) {
  .mb140 {
    margin-bottom: 39.2% !important;
  }

  .mt140 {
    margin-top: 39.2% !important;
  }

  .mr140 {
    margin-right: 39.2% !important;
  }

  .ml140 {
    margin-left: 39.2% !important;
  }
}
.mb145 {
  margin-bottom: 145px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.mr145 {
  margin-right: 145px !important;
}

.ml145 {
  margin-left: 145px !important;
}

@media screen and (max-width: 480px) {
  .mb145 {
    margin-bottom: 42.05% !important;
  }

  .mt145 {
    margin-top: 42.05% !important;
  }

  .mr145 {
    margin-right: 42.05% !important;
  }

  .ml145 {
    margin-left: 42.05% !important;
  }
}
.mb150 {
  margin-bottom: 150px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mr150 {
  margin-right: 150px !important;
}

.ml150 {
  margin-left: 150px !important;
}

@media screen and (max-width: 480px) {
  .mb150 {
    margin-bottom: 45% !important;
  }

  .mt150 {
    margin-top: 45% !important;
  }

  .mr150 {
    margin-right: 45% !important;
  }

  .ml150 {
    margin-left: 45% !important;
  }
}
.mb155 {
  margin-bottom: 155px !important;
}

.mt155 {
  margin-top: 155px !important;
}

.mr155 {
  margin-right: 155px !important;
}

.ml155 {
  margin-left: 155px !important;
}

@media screen and (max-width: 480px) {
  .mb155 {
    margin-bottom: 48.05% !important;
  }

  .mt155 {
    margin-top: 48.05% !important;
  }

  .mr155 {
    margin-right: 48.05% !important;
  }

  .ml155 {
    margin-left: 48.05% !important;
  }
}
.mb160 {
  margin-bottom: 160px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mr160 {
  margin-right: 160px !important;
}

.ml160 {
  margin-left: 160px !important;
}

@media screen and (max-width: 480px) {
  .mb160 {
    margin-bottom: 51.2% !important;
  }

  .mt160 {
    margin-top: 51.2% !important;
  }

  .mr160 {
    margin-right: 51.2% !important;
  }

  .ml160 {
    margin-left: 51.2% !important;
  }
}
.pb0 {
  padding-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

@media screen and (max-width: 480px) {
  .pb0 {
    padding-bottom: 0% !important;
  }

  .pt0 {
    padding-top: 0% !important;
  }

  .pr0 {
    padding-right: 0% !important;
  }

  .pl0 {
    padding-left: 0% !important;
  }
}
.pb5 {
  padding-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

@media screen and (max-width: 480px) {
  .pb5 {
    padding-bottom: 0.05% !important;
  }

  .pt5 {
    padding-top: 0.05% !important;
  }

  .pr5 {
    padding-right: 0.05% !important;
  }

  .pl5 {
    padding-left: 0.05% !important;
  }
}
.pb10 {
  padding-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

@media screen and (max-width: 480px) {
  .pb10 {
    padding-bottom: 0.1% !important;
  }

  .pt10 {
    padding-top: 0.1% !important;
  }

  .pr10 {
    padding-right: 0.1% !important;
  }

  .pl10 {
    padding-left: 0.1% !important;
  }
}
.pb15 {
  padding-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

@media screen and (max-width: 480px) {
  .pb15 {
    padding-bottom: 0.15% !important;
  }

  .pt15 {
    padding-top: 0.15% !important;
  }

  .pr15 {
    padding-right: 0.15% !important;
  }

  .pl15 {
    padding-left: 0.15% !important;
  }
}
.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

@media screen and (max-width: 480px) {
  .pb20 {
    padding-bottom: 0.2% !important;
  }

  .pt20 {
    padding-top: 0.2% !important;
  }

  .pr20 {
    padding-right: 0.2% !important;
  }

  .pl20 {
    padding-left: 0.2% !important;
  }
}
.pb25 {
  padding-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

@media screen and (max-width: 480px) {
  .pb25 {
    padding-bottom: 0.25% !important;
  }

  .pt25 {
    padding-top: 0.25% !important;
  }

  .pr25 {
    padding-right: 0.25% !important;
  }

  .pl25 {
    padding-left: 0.25% !important;
  }
}
.pb30 {
  padding-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

@media screen and (max-width: 480px) {
  .pb30 {
    padding-bottom: 0.3% !important;
  }

  .pt30 {
    padding-top: 0.3% !important;
  }

  .pr30 {
    padding-right: 0.3% !important;
  }

  .pl30 {
    padding-left: 0.3% !important;
  }
}
.pb35 {
  padding-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

@media screen and (max-width: 480px) {
  .pb35 {
    padding-bottom: 0.35% !important;
  }

  .pt35 {
    padding-top: 0.35% !important;
  }

  .pr35 {
    padding-right: 0.35% !important;
  }

  .pl35 {
    padding-left: 0.35% !important;
  }
}
.pb40 {
  padding-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

@media screen and (max-width: 480px) {
  .pb40 {
    padding-bottom: 0.4% !important;
  }

  .pt40 {
    padding-top: 0.4% !important;
  }

  .pr40 {
    padding-right: 0.4% !important;
  }

  .pl40 {
    padding-left: 0.4% !important;
  }
}
.pb45 {
  padding-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

@media screen and (max-width: 480px) {
  .pb45 {
    padding-bottom: 0.45% !important;
  }

  .pt45 {
    padding-top: 0.45% !important;
  }

  .pr45 {
    padding-right: 0.45% !important;
  }

  .pl45 {
    padding-left: 0.45% !important;
  }
}
.pb50 {
  padding-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

@media screen and (max-width: 480px) {
  .pb50 {
    padding-bottom: 0.5% !important;
  }

  .pt50 {
    padding-top: 0.5% !important;
  }

  .pr50 {
    padding-right: 0.5% !important;
  }

  .pl50 {
    padding-left: 0.5% !important;
  }
}
.pb55 {
  padding-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

@media screen and (max-width: 480px) {
  .pb55 {
    padding-bottom: 0.55% !important;
  }

  .pt55 {
    padding-top: 0.55% !important;
  }

  .pr55 {
    padding-right: 0.55% !important;
  }

  .pl55 {
    padding-left: 0.55% !important;
  }
}
.pb60 {
  padding-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

@media screen and (max-width: 480px) {
  .pb60 {
    padding-bottom: 0.6% !important;
  }

  .pt60 {
    padding-top: 0.6% !important;
  }

  .pr60 {
    padding-right: 0.6% !important;
  }

  .pl60 {
    padding-left: 0.6% !important;
  }
}
.pb65 {
  padding-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

@media screen and (max-width: 480px) {
  .pb65 {
    padding-bottom: 0.65% !important;
  }

  .pt65 {
    padding-top: 0.65% !important;
  }

  .pr65 {
    padding-right: 0.65% !important;
  }

  .pl65 {
    padding-left: 0.65% !important;
  }
}
.pb70 {
  padding-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

@media screen and (max-width: 480px) {
  .pb70 {
    padding-bottom: 0.7% !important;
  }

  .pt70 {
    padding-top: 0.7% !important;
  }

  .pr70 {
    padding-right: 0.7% !important;
  }

  .pl70 {
    padding-left: 0.7% !important;
  }
}
.pb75 {
  padding-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

@media screen and (max-width: 480px) {
  .pb75 {
    padding-bottom: 0.75% !important;
  }

  .pt75 {
    padding-top: 0.75% !important;
  }

  .pr75 {
    padding-right: 0.75% !important;
  }

  .pl75 {
    padding-left: 0.75% !important;
  }
}
.pb80 {
  padding-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

@media screen and (max-width: 480px) {
  .pb80 {
    padding-bottom: 0.8% !important;
  }

  .pt80 {
    padding-top: 0.8% !important;
  }

  .pr80 {
    padding-right: 0.8% !important;
  }

  .pl80 {
    padding-left: 0.8% !important;
  }
}
.pb85 {
  padding-bottom: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

@media screen and (max-width: 480px) {
  .pb85 {
    padding-bottom: 0.85% !important;
  }

  .pt85 {
    padding-top: 0.85% !important;
  }

  .pr85 {
    padding-right: 0.85% !important;
  }

  .pl85 {
    padding-left: 0.85% !important;
  }
}
.pb90 {
  padding-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

@media screen and (max-width: 480px) {
  .pb90 {
    padding-bottom: 0.9% !important;
  }

  .pt90 {
    padding-top: 0.9% !important;
  }

  .pr90 {
    padding-right: 0.9% !important;
  }

  .pl90 {
    padding-left: 0.9% !important;
  }
}
.pb95 {
  padding-bottom: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

@media screen and (max-width: 480px) {
  .pb95 {
    padding-bottom: 0.95% !important;
  }

  .pt95 {
    padding-top: 0.95% !important;
  }

  .pr95 {
    padding-right: 0.95% !important;
  }

  .pl95 {
    padding-left: 0.95% !important;
  }
}
.pb100 {
  padding-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

@media screen and (max-width: 480px) {
  .pb100 {
    padding-bottom: 1% !important;
  }

  .pt100 {
    padding-top: 1% !important;
  }

  .pr100 {
    padding-right: 1% !important;
  }

  .pl100 {
    padding-left: 1% !important;
  }
}
.pb105 {
  padding-bottom: 105px !important;
}

.pt105 {
  padding-top: 105px !important;
}

.pr105 {
  padding-right: 105px !important;
}

.pl105 {
  padding-left: 105px !important;
}

@media screen and (max-width: 480px) {
  .pb105 {
    padding-bottom: 1.05% !important;
  }

  .pt105 {
    padding-top: 1.05% !important;
  }

  .pr105 {
    padding-right: 1.05% !important;
  }

  .pl105 {
    padding-left: 1.05% !important;
  }
}
.pb110 {
  padding-bottom: 110px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pr110 {
  padding-right: 110px !important;
}

.pl110 {
  padding-left: 110px !important;
}

@media screen and (max-width: 480px) {
  .pb110 {
    padding-bottom: 1.1% !important;
  }

  .pt110 {
    padding-top: 1.1% !important;
  }

  .pr110 {
    padding-right: 1.1% !important;
  }

  .pl110 {
    padding-left: 1.1% !important;
  }
}
.pb115 {
  padding-bottom: 115px !important;
}

.pt115 {
  padding-top: 115px !important;
}

.pr115 {
  padding-right: 115px !important;
}

.pl115 {
  padding-left: 115px !important;
}

@media screen and (max-width: 480px) {
  .pb115 {
    padding-bottom: 1.15% !important;
  }

  .pt115 {
    padding-top: 1.15% !important;
  }

  .pr115 {
    padding-right: 1.15% !important;
  }

  .pl115 {
    padding-left: 1.15% !important;
  }
}
.pb120 {
  padding-bottom: 120px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pr120 {
  padding-right: 120px !important;
}

.pl120 {
  padding-left: 120px !important;
}

@media screen and (max-width: 480px) {
  .pb120 {
    padding-bottom: 1.2% !important;
  }

  .pt120 {
    padding-top: 1.2% !important;
  }

  .pr120 {
    padding-right: 1.2% !important;
  }

  .pl120 {
    padding-left: 1.2% !important;
  }
}
.pb125 {
  padding-bottom: 125px !important;
}

.pt125 {
  padding-top: 125px !important;
}

.pr125 {
  padding-right: 125px !important;
}

.pl125 {
  padding-left: 125px !important;
}

@media screen and (max-width: 480px) {
  .pb125 {
    padding-bottom: 1.25% !important;
  }

  .pt125 {
    padding-top: 1.25% !important;
  }

  .pr125 {
    padding-right: 1.25% !important;
  }

  .pl125 {
    padding-left: 1.25% !important;
  }
}
.pb130 {
  padding-bottom: 130px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pr130 {
  padding-right: 130px !important;
}

.pl130 {
  padding-left: 130px !important;
}

@media screen and (max-width: 480px) {
  .pb130 {
    padding-bottom: 1.3% !important;
  }

  .pt130 {
    padding-top: 1.3% !important;
  }

  .pr130 {
    padding-right: 1.3% !important;
  }

  .pl130 {
    padding-left: 1.3% !important;
  }
}
.pb135 {
  padding-bottom: 135px !important;
}

.pt135 {
  padding-top: 135px !important;
}

.pr135 {
  padding-right: 135px !important;
}

.pl135 {
  padding-left: 135px !important;
}

@media screen and (max-width: 480px) {
  .pb135 {
    padding-bottom: 1.35% !important;
  }

  .pt135 {
    padding-top: 1.35% !important;
  }

  .pr135 {
    padding-right: 1.35% !important;
  }

  .pl135 {
    padding-left: 1.35% !important;
  }
}
.pb140 {
  padding-bottom: 140px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pr140 {
  padding-right: 140px !important;
}

.pl140 {
  padding-left: 140px !important;
}

@media screen and (max-width: 480px) {
  .pb140 {
    padding-bottom: 1.4% !important;
  }

  .pt140 {
    padding-top: 1.4% !important;
  }

  .pr140 {
    padding-right: 1.4% !important;
  }

  .pl140 {
    padding-left: 1.4% !important;
  }
}
.pb145 {
  padding-bottom: 145px !important;
}

.pt145 {
  padding-top: 145px !important;
}

.pr145 {
  padding-right: 145px !important;
}

.pl145 {
  padding-left: 145px !important;
}

@media screen and (max-width: 480px) {
  .pb145 {
    padding-bottom: 1.45% !important;
  }

  .pt145 {
    padding-top: 1.45% !important;
  }

  .pr145 {
    padding-right: 1.45% !important;
  }

  .pl145 {
    padding-left: 1.45% !important;
  }
}
.pb150 {
  padding-bottom: 150px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pr150 {
  padding-right: 150px !important;
}

.pl150 {
  padding-left: 150px !important;
}

@media screen and (max-width: 480px) {
  .pb150 {
    padding-bottom: 1.5% !important;
  }

  .pt150 {
    padding-top: 1.5% !important;
  }

  .pr150 {
    padding-right: 1.5% !important;
  }

  .pl150 {
    padding-left: 1.5% !important;
  }
}
.pb155 {
  padding-bottom: 155px !important;
}

.pt155 {
  padding-top: 155px !important;
}

.pr155 {
  padding-right: 155px !important;
}

.pl155 {
  padding-left: 155px !important;
}

@media screen and (max-width: 480px) {
  .pb155 {
    padding-bottom: 1.55% !important;
  }

  .pt155 {
    padding-top: 1.55% !important;
  }

  .pr155 {
    padding-right: 1.55% !important;
  }

  .pl155 {
    padding-left: 1.55% !important;
  }
}
.pb160 {
  padding-bottom: 160px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.pr160 {
  padding-right: 160px !important;
}

.pl160 {
  padding-left: 160px !important;
}

@media screen and (max-width: 480px) {
  .pb160 {
    padding-bottom: 1.6% !important;
  }

  .pt160 {
    padding-top: 1.6% !important;
  }

  .pr160 {
    padding-right: 1.6% !important;
  }

  .pl160 {
    padding-left: 1.6% !important;
  }
}
/* align
------------------------------------------------- */
.align_l {
  text-align: left !important;
}

.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}

/* font
------------------------------------------------- */
.smaller {
  font-size: smaller !important;
}

.larger {
  font-size: larger !important;
}

.bold {
  font-weight: bold !important;
}

/* fluid image
------------------------------------------------- */
.fluid_img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* IE8 */
}

/* display
------------------------------------------------- */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}
.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}
.just_layout .just_item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  line-height: normal;
}

* html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

*:first-child + html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 1.2em;
  list-style: disc;
}

.list_square {
  margin-left: 1.2em;
  list-style: square;
}

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal;
}

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero;
}

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk li {
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.list_asterisk li:before {
  content: "※ ";
}

/* ---- ・ ---- */
.list_dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_dot li:before {
  content: "・";
}

/* ---- 1. ---- */
.list_decimal_01 li {
  counter-increment: decimal_01;
  margin-left: 1.4em;
  text-indent: -1.4em;
}
.list_decimal_01 li:before {
  content: counter(decimal_01) ". ";
}

/* ---- (1) ---- */
.list_decimal_02 li {
  counter-increment: decimal_02;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.list_decimal_02 li:before {
  content: "(" counter(decimal_02) ") ";
}

/* ---- [1] ---- */
.list_decimal_03 li {
  counter-increment: decimal_03;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.list_decimal_03 li:before {
  content: "[" counter(decimal_03) "] ";
}

/* ---- 丸数字 ---- */
.list_decimal_04 li {
  counter-increment: decimal_04;
  margin-left: 1.7em;
  text-indent: -1.7em;
}
.list_decimal_04 li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_upper_alpha_01 li:before {
  content: counter(upper_alpha_01,upper-alpha) ") ";
}

/* 注釈 (IE8以上)
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.notes:before {
  content: "※ ";
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 2em;
  text-indent: -2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
------------------------------------------------- */
/* グリッドレイアウト用mixin (IE8以上)
usage:
■12分割で間隔が20pxのグリッドのクラスを作る場合
・SASS
@include grid_system(12, 20px);
・HTML
<div class="grid_system_12">  ← このdivへの幅指定はNG
	<div class="grid_6"></div> ┐
	<div class="grid_3"></div> ├ 子要素は合計が12になるようにクラス名を付ける
	<div class="grid_3"></div> ┘
</div>
------------------------------------------------- */
/* -------------------------------------------------------------------------

		module.sass

		見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義

------------------------------------------------------------------------- */
.grid_system_12, body.top .top_content .inner .top_main_column .lineup {
  margin-left: -3%;
  width: auto !important;
}
.grid_system_12 > .grid_1, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_1, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_1, body.top .top_content .inner .top_main_column .lineup > .grid_1, .grid_system_12 > .grid_2, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_2, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_2, body.top .top_content .inner .top_main_column .lineup > .grid_2, .grid_system_12 > .grid_3, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_3, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_3, body.top .top_content .inner .top_main_column .lineup > .grid_3, .grid_system_12 > .grid_4, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_4, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_4, body.top .top_content .inner .top_main_column .lineup > .grid_4, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > section, body.top .top_content .inner .top_main_column .lineup > section, .grid_system_12 > .grid_5, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_5, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_5, body.top .top_content .inner .top_main_column .lineup > .grid_5, .grid_system_12 > .grid_6, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_6, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_6, body.top .top_content .inner .top_main_column .lineup > .grid_6, .grid_system_12 > .grid_7, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_7, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_7, body.top .top_content .inner .top_main_column .lineup > .grid_7, .grid_system_12 > .grid_8, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_8, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_8, body.top .top_content .inner .top_main_column .lineup > .grid_8, .grid_system_12 > .grid_9, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_9, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_9, body.top .top_content .inner .top_main_column .lineup > .grid_9, .grid_system_12 > .grid_10, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_10, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_10, body.top .top_content .inner .top_main_column .lineup > .grid_10, .grid_system_12 > .grid_11, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_11, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_11, body.top .top_content .inner .top_main_column .lineup > .grid_11, .grid_system_12 > .grid_12, body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_12, .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_12, body.top .top_content .inner .top_main_column .lineup > .grid_12, .grid_system_12 .grid_system_2 > .grid_1, body.top .top_content .inner .top_main_column .lineup .grid_system_2 > .grid_1, .grid_system_12 .grid_system_2 > .grid_2, body.top .top_content .inner .top_main_column .lineup .grid_system_2 > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_1, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_1, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_1, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_2, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_2, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_2, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_3, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_3, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_3, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_4, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_4, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_4, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > section, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > section, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > section, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_5, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_5, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_5, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_6, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_6, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_6, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_7, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_7, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_7, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_8, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_8, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_8, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_9, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_9, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_9, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_10, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_10, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_10, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_11, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_11, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_11, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_12, body.top .top_content .inner .top_main_column .lineup body.lineup_page main .lineup_box ul .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_12, .grid_system_12 body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_12, .grid_system_12 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12 {
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
}
.grid_system_12 > .grid_1, body.top .top_content .inner .top_main_column .lineup > .grid_1 {
  width: 8.33333%;
}
.grid_system_12 > .grid_2, body.top .top_content .inner .top_main_column .lineup > .grid_2 {
  width: 16.66667%;
}
.grid_system_12 > .grid_3, body.top .top_content .inner .top_main_column .lineup > .grid_3 {
  width: 25%;
}
.grid_system_12 > .grid_4, body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column .lineup > section {
  width: 33.33333%;
}
.grid_system_12 > .grid_5, body.top .top_content .inner .top_main_column .lineup > .grid_5 {
  width: 41.66667%;
}
.grid_system_12 > .grid_6, body.top .top_content .inner .top_main_column .lineup > .grid_6 {
  width: 50%;
}
.grid_system_12 > .grid_7, body.top .top_content .inner .top_main_column .lineup > .grid_7 {
  width: 58.33333%;
}
.grid_system_12 > .grid_8, body.top .top_content .inner .top_main_column .lineup > .grid_8 {
  width: 66.66667%;
}
.grid_system_12 > .grid_9, body.top .top_content .inner .top_main_column .lineup > .grid_9 {
  width: 75%;
}
.grid_system_12 > .grid_10, body.top .top_content .inner .top_main_column .lineup > .grid_10 {
  width: 83.33333%;
}
.grid_system_12 > .grid_11, body.top .top_content .inner .top_main_column .lineup > .grid_11 {
  width: 91.66667%;
}
.grid_system_12 > .grid_12, body.top .top_content .inner .top_main_column .lineup > .grid_12 {
  width: 100%;
}

.grid_system_2 {
  margin-left: -3%;
  width: auto !important;
}
.grid_system_2 .grid_system_12 > .grid_1, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_1, .grid_system_2 .grid_system_12 > .grid_2, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_2, .grid_system_2 .grid_system_12 > .grid_3, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_3, .grid_system_2 .grid_system_12 > .grid_4, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_4, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > section, .grid_system_2 .grid_system_12 > .grid_5, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_5, .grid_system_2 .grid_system_12 > .grid_6, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_6, .grid_system_2 .grid_system_12 > .grid_7, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_7, .grid_system_2 .grid_system_12 > .grid_8, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_8, .grid_system_2 .grid_system_12 > .grid_9, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_9, .grid_system_2 .grid_system_12 > .grid_10, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_10, .grid_system_2 .grid_system_12 > .grid_11, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_11, .grid_system_2 .grid_system_12 > .grid_12, .grid_system_2 body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column .grid_system_2 .lineup > .grid_12, .grid_system_2 > .grid_1, .grid_system_2 > .grid_2, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_1, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_2, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_3, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_4, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_5, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_6, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_7, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_8, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_9, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_10, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_11, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11, .grid_system_2 body.lineup_page main .lineup_box ul .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul .grid_system_2 .grid_system_12 > .grid_12, .grid_system_2 body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12 {
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
}
.grid_system_2 > .grid_1 {
  width: 50%;
}
.grid_system_2 > .grid_2 {
  width: 100%;
}

/**
 * web font
 */
@font-face {
  font-family: 'svg';
  src: url("fonts/svg.eot?594fi");
  src: url("fonts/svg.eot?#iefix594fi") format("embedded-opentype"), url("fonts/svg.woff?594fi") format("woff"), url("fonts/svg.ttf?594fi") format("truetype"), url("fonts/svg.svg?594fi#svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="svg-"]:before, [class*=" svg-"]:before, .svg, .page_top a:before {
  font-family: 'svg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering=========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.svg-text20:before {
  content: "\e601";
}

.svg-arrow_double_upper:before, .page_top a:before {
  content: "\e600";
}

.page_content h1 {
  margin-bottom: 20px;
  font-size: 197%;
}
.page_content h2 {
  margin-bottom: 20px;
  font-size: 138.5%;
  border-left: 3px solid #1B1C80;
  padding-left: 10px;
}
.page_content h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #0295e2;
}
.page_content p, .page_content li, .page_content dt, .page_content dd {
  line-height: 1.7;
}
.page_content ul, .page_content ol {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page_content hr {
  margin-bottom: 30px;
  border-color: #e5e5e5;
}
.page_content * + hr {
  margin-top: 30px;
}
.page_content .panels .panel_item {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.page_content .panels + .panels {
  margin-top: 20px;
}

/* text link
------------------------------------------------- */
a {
  color: #35c1fe;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* MOBILE
------------------------------------------------- */
@media screen and (min-width: 481px) {
  .element_mb, .site_header > .inner .mobile_nav {
    display: none;
  }
}

/* SECTIONING
------------------------------------------------- */
.contents_article {
  margin-top: 50px;
}
.contents_article:first-child {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .contents_article {
    margin-top: 40px !important;
  }
}
.contents_article .hx {
  line-height: 1;
}
.contents_article .hx:after {
  display: block;
  content: "";
  height: 1px;
  background: #a9aaaa;
  margin: -.6em 0 0 0;
}
.contents_article .hx .base {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  background: #fff;
  padding: 0 20px 0 10px;
}
.contents_article .hx i {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  vertical-align: top;
}
.contents_article .hx i:before, .contents_article .hx i:after {
  display: block;
  content: "";
  width: 3px;
  height: 7px;
}
.contents_article .hx i:before {
  background: #1b1c80;
}
.contents_article .hx i:after {
  background: #8e8e8f;
}

.concept_box:before, .concept_box .inner:before, .concept_box:after, .concept_box .inner:after {
  display: block;
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
}

.concept_box {
  text-align: center;
  position: relative;
}
.concept_box:before, .concept_box:after {
  left: 0;
  top: 0;
}
.concept_box:before {
  border-top: 1px solid #1b1c80;
  border-left: 1px solid #1b1c80;
  top: -5px;
}
.concept_box:after {
  border-top: 1px solid #a9aaaa;
  border-left: 1px solid #a9aaaa;
  left: -5px;
}
.concept_box .inner {
  /*padding: 120px 20px;*/
  padding: 50px 20px;
}
.concept_box .inner:before, .concept_box .inner:after {
  right: 0;
  bottom: 0;
}
.concept_box .inner:before {
  border-bottom: 1px solid #1b1c80;
  border-right: 1px solid #1b1c80;
  bottom: -5px;
}
.concept_box .inner:after {
  border-bottom: 1px solid #a9aaaa;
  border-right: 1px solid #a9aaaa;
  right: -5px;
}
.concept_box .hx {
  margin-bottom: 66px;
}
@media screen and (max-width: 480px) {
  .concept_box .pc {
    display: none;
  }
}
.concept_box .sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .concept_box .sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .concept_box {
    overflow: hidden;
  }
  .concept_box:before {
    top: 0;
    left: 5px;
  }
  .concept_box:after {
    top: 5px;
    left: 0;
  }
  .concept_box .inner {
    padding: 13% 7%;
  }
  .concept_box .inner:before {
    bottom: 0;
    right: 5px;
  }
  .concept_box .inner:after {
    bottom: 5px;
    right: 0;
  }
  .concept_box .hx {
    margin-bottom: 10%;
  }
}

.concept_box_2 .copy {
  letter-spacing: .1;
  line-height: 2.4;
}
@media screen and (max-width: 480px) {
  .concept_box_2 .copy {
    text-align: left;
    line-height: 1.6;
    margin: 0 0 50px 0;
  }
}

.method_box {
  position: relative;
}
@media screen and (max-width: 480px) {
  .method_box {
    margin-bottom: 30px;
  }
}
.method_box .inner {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.method_box .inner:before {
  display: block;
  content: "";
  background: url(../img/common/pattern_slant_lgray.gif) repeat left top #f7f7f7;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
}
.method_box .title {
  background: #1b1c80;
  line-height: 1;
  padding: 33px 0;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 3;
}
.method_box .title img {
  vertical-align: middle;
}
.method_box .content {
  background: white;
  border-bottom: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  padding: 30px 40px;
  text-align: left;
  position: relative;
  z-index: 3;
}

/* MIXIN
------------------------------------------------- */
@-moz-keyframes concept_link {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 4px;
  }
}
@-webkit-keyframes concept_link {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 4px;
  }
}
@keyframes concept_link {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 4px;
  }
}
/* -------------------------------------------------------------------------

		layout.sass

		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義

------------------------------------------------------------------------- */
/* body
------------------------------------------------- */
body {
  font-family: 'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',arial,'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #555;
}

@media screen and (max-width: 480px) {
  * {
    max-width: 100%;
  }

  img {
    height: auto;
  }

  .grid_system_12, body.top .top_content .inner .top_main_column .lineup {
    display: blok;
  }
  .grid_system_12 [class*=grid_], body.top .top_content .inner .top_main_column .lineup [class*=grid_] {
    display: block;
    width: auto;
  }
}
.site_header > .inner, .site_footer > .inner {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
}
.site_header > .inner:before, .site_footer > .inner:before, .site_header > .inner:after, .site_footer > .inner:after {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  content: "";
  height: 5px;
  width: 50%;
  position: absolute;
  top: -5px;
}
.site_header > .inner:before, .site_footer > .inner:before {
  left: 0;
  background: #1b1c80;
}
.site_header > .inner:after, .site_footer > .inner:after {
  background: #8e8e8f;
  right: 0;
}

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #fff9d7;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

/* header
------------------------------------------------- */
.site_header {
  text-align: center;
}
.site_header > .inner {
  background: url(../img/common/pattern_slant_lgray.gif);
  width: 960px;
  margin: 0 auto;
  padding: 21px 0 18px;
  border-top: 5px solid #1b1c80;
}
@media screen and (max-width: 480px) {
  .site_header > .inner {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .site_header > .inner {
    text-align: left;
    position: relative;
  }
}
.site_header > .inner .site_id {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: auto;
}
@media screen and (max-width: 480px) {
  .site_header > .inner .site_id img {
    padding-left: 20px;
    width: 164px;
  }
}
.site_header > .inner .mobile_nav {
  background: #1b1c80;
  color: white;
  width: 38px;
  height: 35px;
  line-height: 54px;
  text-align: center;
  position: absolute;
  right: 20px;
  top: 20px;
}
.site_header > .inner .mobile_nav .copy {
  -moz-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  -webkit-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
  letter-spacing: .08em;
  font-size: 10px;
  display: block;
  text-align: center;
}
.site_header > .inner .mobile_nav i {
  display: block;
  transition: all 700ms ease-in-out;
  position: absolute;
  background: white;
  width: 20px;
  height: 2px;
  left: 9px;
}
.site_header > .inner .mobile_nav i:nth-child(2) {
  top: 7px;
}
.site_header > .inner .mobile_nav i:nth-child(3) {
  top: 12px;
}
.site_header > .inner .mobile_nav i:nth-child(4) {
  top: 17px;
}
.site_header > .inner .mobile_nav.active i {
  /**
   * アイコンが×になったときfirefoxで表示が切れる
   * ダミーでアニメーションをループさせることで解決するが、
   * スマートフォンなので不要かもしれません
   */
}
@-moz-keyframes cross_l {
  from {
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  to {
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes cross_l {
  from {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes cross_l {
  from {
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  to {
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-moz-keyframes cross_r {
  from {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes cross_r {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes cross_r {
  from {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.site_header > .inner .mobile_nav.active i:nth-child(3) {
  opacity: 0;
}
.site_header > .inner .mobile_nav.active i:nth-child(2) {
  -moz-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
  -moz-animation: cross_r 1s linear infinite;
  -webkit-animation: cross_r 1s linear infinite;
  animation: cross_r 1s linear infinite;
  top: 12px;
}
.site_header > .inner .mobile_nav.active i:nth-child(4) {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  -moz-animation: cross_l 1s linear infinite;
  -webkit-animation: cross_l 1s linear infinite;
  animation: cross_l 1s linear infinite;
  top: 12px;
}

html.ie8 .mobile_nav {
  display: none;
}

/* gloal navi
------------------------------------------------- */
.global_nav {
  height: 70px;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 480px) {
  .global_nav {
    display: none;
  }
}
.global_nav ul {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
.global_nav ul li {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding-top: 20px;
}
.global_nav ul li a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 0 30px;
}
.global_nav ul li a img {
  vertical-align: middle;
}
.global_nav ul li.active a, .global_nav ul li a:hover {
  background-color: #1b1c80;
  text-decoration: none;
}
.global_nav ul .active .gnav_1 {
  background: url(../img/common/gnav_1_on.png) no-repeat center center #1b1c80;
  height: 30px;
  width: 29px;
}
.global_nav ul .active .gnav_2 {
  background: url(../img/common/gnav_2_on.png) no-repeat center center #1b1c80;
  height: 30px;
  width: 130px;
}
.global_nav ul .active .gnav_3 {
  background: url(../img/common/gnav_3_on.png) no-repeat center center #1b1c80;
  height: 30px;
  width: 52px;
}
.global_nav ul .active .gnav_4 {
  background: url(../img/common/gnav_4_on.png) no-repeat center center #1b1c80;
  height: 30px;
  width: 102px;
}
.global_nav ul .active img {
  display: none;
}

/* container
------------------------------------------------- */
.column_container > .inner {
  width: 960px;
  margin: 0 auto;
}

/* breadcrumbs
------------------------------------------------- */
.breadcrumbs {
  padding: 5px 0;
}
.breadcrumbs li {
  font-size: 85%;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
.breadcrumbs li:before {
  content: ">";
  padding-right: 5px;
}
.breadcrumbs li:first-child:before {
  content: "";
  padding-right: 0;
}

/* sub column
------------------------------------------------- */
.sub_column {
  width: 280px;
  float: right;
}
.sub_column .category_title {
  padding: 50px;
  text-align: center;
  font-size: 153.9%;
  color: #999;
  border-bottom: 1px solid #a9aaaa;
}
.sub_column .local_nav {
  margin-bottom: 30px;
}
.sub_column .local_nav li {
  border-bottom: 1px solid #a9aaaa;
}
.sub_column .local_nav li a {
  padding: 10px;
  display: block;
  color: #333;
}
.sub_column .local_nav li a:hover {
  text-decoration: none;
  background-color: #eee;
}
.sub_column .side_banner li {
  margin: 10px 0;
  height: 60px;
  background-color: #999;
}

/* main column
------------------------------------------------- */
.page_content {
  width: 960px;
  margin: 100px auto 50px;
}
@media screen and (max-width: 480px) {
  .page_content {
    width: auto;
    margin-top: 10%;
    margin-bottom: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* footer
------------------------------------------------- */
.site_footer .fnav li a, .site_footer > .inner nav dd a {
  color: #555555;
  padding: 0 10px 0 5px;
  border-right: 1px solid #555555;
  font-size: 85%;
  line-height: 1;
}
.site_footer .fnav li:last-child a, .site_footer > .inner nav dd:last-child a {
  border-right: none;
}

.site_footer .fnav {
  background: url(../img/common/pattern_slant_lgray.gif) repeat left top;
  text-align: center;
}
.site_footer .fnav li {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  line-height: 30px;
}
@media screen and (max-width: 480px) {
  .site_footer .fnav {
    overflow: hidden;
    *zoom: 1;
  }
  .site_footer .fnav li {
    float: left;
    width: 50%;
    text-align: left;
    white-space: nowrap;
  }
  .site_footer .fnav li a {
    display: block;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    padding: 15px 0 15px 15px;
  }
  .site_footer .fnav li:nth-child(even) a {
    border-right: none;
  }
}
.site_footer > .inner {
  width: 960px;
  margin: 0 auto;
  padding: 20px 0 40px;
  border-bottom: 5px solid #1b1c80;
}
@media screen and (max-width: 480px) {
  .site_footer > .inner {
    width: 100%;
    padding: 30px 0 20px;
  }
}
.site_footer > .inner:before, .site_footer > .inner:after {
  top: auto;
  bottom: -5px;
}
.site_footer > .inner nav {
  float: left;
}
@media screen and (max-width: 480px) {
  .site_footer > .inner nav {
    float: none;
    text-align: center;
  }
}
.site_footer > .inner nav dt, .site_footer > .inner nav dd {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  vertical-align: bottom;
}
.site_footer > .inner nav dt {
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .site_footer > .inner nav dt {
    display: block;
    margin: 0 0 20px;
    text-align: center;
  }
}
.site_footer > .inner nav dd a {
  padding: 0 7px 0 3px;
}
@media screen and (max-width: 480px) {
  .site_footer > .inner nav dd a {
    font-size: 77%;
  }
}
.site_footer > .inner .copyright {
  float: right;
  text-align: right;
  font-family: Arial, sans-serif;
  font-size: 77%;
  padding-top: 35px;
  color: #777;
}
@media screen and (max-width: 480px) {
  .site_footer > .inner .copyright {
    float: none;
    text-align: center;
    font-size: 9px;
    padding-top: 20px;
  }
}

.page_top {
  width: 960px;
  margin: 0 auto -30px;
  text-align: right;
}
.page_top a {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 81px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background-color: #1b1c80;
  font-size: 77%;
}
.page_top a:before {
  font-size: 123.1%;
  vertical-align: middle;
  margin: 0 3px 0 -3px;
}
.page_top a:hover {
  background-color: #666666;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .page_top {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .page_top a {
    display: block;
    width: auto;
    height: auto;
    padding: 5px 0;
    line-height: 1.5;
  }
  .page_top a:before {
    display: block;
    margin: 0;
  }
}

/* -------------------------------------------------------------------------

		contents.sass

		各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* top page
------------------------------------------------- */
body.top .top_content .top_main_image, body.pages .main_image {
  text-align: center;
}
body.top .top_content .top_main_image img, body.pages .main_image img {
  vertical-align: bottom;
}

body.top #page {
  overflow: hidden;
  background-color: #ffffff;
}
body.top .top_content {
  margin-bottom: 45px;
}
body.top .top_content .top_main_image {
  position: relative;
  left: 50%;
  margin: 0 0 0 -600px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .top_main_image {
    left: 0;
    margin: 0;
  }
}
body.top .top_content .top_main_image .bx-wrapper .bx-viewport {
  background: none;
  border: none;
  box-shadow: none;
  left: 0;
  position: relative;
  width: 1200px !important;
}
body.top .top_content .inner {
  overflow: hidden;
  *zoom: 1;
  width: 960px;
  margin: 60px auto 0;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner {
    margin-top: 0;
    width: 100%;
  }
}
body.top .top_content .inner .top_main_column {
  width: 634px;
  float: right;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .lineup {
    margin: 0;
  }
}
body.top .top_content .inner .top_main_column .lineup > section {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .lineup > section {
    background: url(../img/common/pattern_dot_gray.gif) repeat-x bottom left;
    display: block;
    width: 100%;
    padding: 20px 0;
    margin-top: 0;
  }
  body.top .top_content .inner .top_main_column .lineup > section:first-child {
    margin-top: 10px;
  }
}
body.top .top_content .inner .top_main_column .lineup > section a {
  display: block;
  color: black;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .lineup > section a {
    overflow: hidden;
    *zoom: 1;
    position: relative;
    width: auto;
  }
  
  body.top .top_content .inner .top_main_column .lineup > section .nolink {
    overflow: hidden;
    *zoom: 1;
    position: relative;
    width: auto;
  }
  
  body.top .top_content .inner .top_main_column .lineup > section a:after {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    font-family: 'svg';
    content: "\e600";
    color: #9a9a9b;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -.5em;
  }
}
body.top .top_content .inner .top_main_column .lineup > section * {
  width: 160px;
  margin: 0 auto;
}

body.top .top_content .inner .top_main_column .lineup > section .title {
  color: #555555;
  font-weight: normal;
  font-size: 93%;
  margin-top: 10px;
  line-height:1.5;
}

body.top .top_content .inner .top_main_column .lineup > section .title2 {
  color: #555555;
  font-weight: normal;
  font-size: 93%;
  /*margin-top: 10px;*/
  line-height:1.5;
}

body.top .top_content .inner .top_main_column .lineup > section address {
  color: #777777;
  margin-top: 10px;
  font-size: 77%;
  font-style: normal;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .lineup > section .image {
    display: inline;
    float: left;
    width: 70px;
    margin-left: 20px;
  }
  body.top .top_content .inner .top_main_column .lineup > section .image img {
    width: 100%;
  }
  body.top .top_content .inner .top_main_column .lineup > section .title, body.top .top_content .inner .top_main_column .lineup > section address {
    margin-left: 105px;
    margin-right: 20px;
    width: auto;
  }
  
.title2 {
    margin-left: 105px !important;
    margin-right: 20px !important;
    width: auto !important;
  }
  
  
}



.bnr_area01 {
    text-align: center;
    margin-top: 40px;
    margin-left: -10px;
	
}

.bnr_area01 img {
	width: 100%;
	max-width: 940px;
  }


.bnr_area02 {
	width: 940px;
    margin: 0 auto;
    margin-top: 40px;
    /*margin-left: -10px;*/
	
}

.bnr_area02 ul {
	max-width: 940px;
	
}

.bnr_area02 ul li {
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
}

.bnr_area02 ul li.last {
	margin-right: 0px;
}

@media screen and (max-width: 480px) {
.bnr_area01 {
	text-align: center;
	margin-bottom: 20px;
    margin-left: 0px;
  }
	
.bnr_area01 img {
	width: 100%;
  }
	
.bnr_area02 {
	margin-bottom: 20px;
}
	
.bnr_area02 ul li {
	float: none;
	margin-right: 0px;
}
	
	
}



body.top .top_content .inner .top_main_column .news {
  margin-left: -326px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .news {
    margin-left: 0;
  }
}
body.top .top_content .inner .top_main_column .news .hx {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .news .hx {
    margin-bottom: 15px;
  }
}
body.top .top_content .inner .top_main_column .news article {
  font-size: 100%;
  padding: 15px 13px 17px;
  background: url(../img/common/pattern_dot_gray.gif) repeat-x bottom left;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .news article {
    padding: 20px 15px;
  }
}
body.top .top_content .inner .top_main_column .news article * {
  display: table-cell;
  vertical-align: middle;
}
body.top .top_content .inner .top_main_column .news article i {
  padding: 0 19px 0 0;
  text-align: center;
}
body.top .top_content .inner .top_main_column .news article i img {
  border: 1px solid #a9aaaa;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .news article i {
    display: none;
  }
}
body.top .top_content .inner .top_main_column .news article time {
  color: #1b1c80;
  padding: 0 16px 0 0;
  width: 130px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_main_column .news article time {
    display: block;
    width: auto;
    margin-bottom: 5px;
  }
}
body.top .top_content .inner .top_main_column .news article time .middle_dot {
  display: inline;
  padding: 0 7px 0 0;
}
body.top .top_content .inner .top_main_column .news article p {
  color: #555555;
}
body.top .top_content .inner .top_main_column .news article a {
  color: #555555;
  text-decoration: underline;
}
body.top .top_content .inner .top_main_column .news article a:hover {
  text-decoration: none;
}
body.top .top_content .inner .top_sub_column {
  width: 280px;
  background: #f7f7f7;
  float: left;
  margin-top: 59px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_sub_column {
    float: none;
    margin-top: 0;
    width: 100%;
    background: #1b1c80;
    text-align: center;
    padding-bottom: 15px;
  }
}
body.top .top_content .inner .top_sub_column .hx {
  background: #1b1c80;
  text-align: center;
  padding: 26px 0 21px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_sub_column .hx {
    padding: 20px 0 15px;
  }
}
body.top .top_content .inner .top_sub_column .lead {
  height: 148px;
  margin: 0 auto;
  padding: 69px 0 30px;
  text-align: center;
  width: 206px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_sub_column .lead {
    height: 7px;
    padding: 0 0 20px;
    width: 206px;
  }
}
body.top .top_content .inner .top_sub_column .copylist {
  margin: 28px 20px 55px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_sub_column .copylist {
    display: none;
  }
}
body.top .top_content .inner .top_sub_column .copylist li {
  padding: 8px 0 7px;
  text-align: center;
}
body.top .top_content .inner .top_sub_column .link a {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../img/common/pattern_slant_gray.gif) repeat 0 0;
  display: block;
  height: 38px;
  line-height: 40px;
  text-align: center;
}
body.top .top_content .inner .top_sub_column .link a img {
  width: 88px;
}
@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_sub_column .link a {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    background: none;
    height: 18px;
    line-height: 18px;
    text-align: center;
  }
  body.top .top_content .inner .top_sub_column .link a img {
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 8px;
    padding: 4px 10px;
    width: 66px;
  }
}
@media screen and (min-width: 481px) {
  body.top .top_content .inner .top_sub_column .link a:hover {
    background: #bbbbbb;
  }
}
body.top .top_content .inner .top_banner li {
  margin: 10px;
  height: 60px;
  background-color: #999999;
}

body.concept {
  text-align: center;
}
body.concept #page {
  background-color: #ffffff;
  overflow: hidden;
}
body.concept #page .lefond_link {
  background: url("../img/common/pattern_slant_lgray.gif") repeat scroll left top #f7f7f7;
  margin: 100px 0 0 0;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  body.concept #page .lefond_link {
    margin: 35px 0 0 0;
  }
}
body.concept #page .lefond_link > div {
  background-color: #ffffff;
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  body.concept #page .lefond_link > div {
    padding: 35px 0;
  }
}
body.concept #page .lefond_link .lefond_link_inner {
  margin: 0 auto;
  width: 484px;
}
@media screen and (max-width: 480px) {
  body.concept #page .lefond_link .lefond_link_inner {
    text-align: center;
  }
}
body.concept #page .lefond_link .lefond_link_inner > img {
  display: block;
  float: left;
  margin: 0 55px 0 0;
  width: 162px;
}
@media screen and (max-width: 480px) {
  body.concept #page .lefond_link .lefond_link_inner > img {
    float: none;
    margin: 0 auto 15px;
  }
}
body.concept #page .lefond_link .lefond_link_inner .right {
  display: block;
  float: left;
  padding: 5px 0;
  width: 266px;
}
@media screen and (max-width: 480px) {
  body.concept #page .lefond_link .lefond_link_inner .right {
    float: none;
    margin: 0 auto;
    width: 80%;
  }
}
body.concept #page .lefond_link .lefond_link_inner .right .copy {
  margin: 0 0 15px 0;
  width: 266px;
}
@media screen and (max-width: 480px) {
  body.concept #page .lefond_link .lefond_link_inner .right .copy {
    margin: 0 0 10px 0;
  }
}
body.concept #page .lefond_link .lefond_link_inner .right a {
  background-color: #31784d;
  display: block;
  padding: 6px 0 3px;
  text-align: center;
  width: 266px;
}
body.concept #page .lefond_link .lefond_link_inner .right a:hover {
  opacity: .7;
}
body.concept #page .lefond_link .lefond_link_inner .right a img {
  width: 140px;
}

body.lineup_page #page {
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  body.lineup_page #page .site_header {
    margin: 0 0 30px;
  }
}
body.lineup_page .global_nav {
  border-bottom: 1px solid #eeeeee;
  margin: 0 0 50px 0;
}
body.lineup_page main .lineup_box {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  body.lineup_page main .lineup_box {
    margin: 0 auto;
    width: 280px;
  }
}
body.lineup_page main .lineup_box ul .grid_system_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup {
  margin-left: -37px;
  width: auto !important;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > section, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12, body.lineup_page main .lineup_box ul .grid_system_12 .grid_system_2 > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_2 > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_2 > .grid_1, body.lineup_page main .lineup_box ul .grid_system_12 .grid_system_2 > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_2 > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_2 > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > section, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > section, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > section, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11, body.lineup_page main .lineup_box ul .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup .grid_system_12 > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul .grid_system_12 body.top .top_content .inner .top_main_column .lineup > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .grid_system_12 .lineup > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .grid_system_12 .lineup > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12 {
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 37px;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_1, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_1, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_1 {
  width: 8.33333%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_2, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_2, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_2 {
  width: 16.66667%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_3, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_3, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_3 {
  width: 25%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_4, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_4, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > section, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > section {
  width: 33.33333%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_5, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_5, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_5 {
  width: 41.66667%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_6, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_6, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_6 {
  width: 50%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_7, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_7, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_7 {
  width: 58.33333%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_8, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_8, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_8 {
  width: 66.66667%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_9, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_9, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_9 {
  width: 75%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_10, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_10, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_10 {
  width: 83.33333%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_11, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_11, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_11 {
  width: 91.66667%;
}
body.lineup_page main .lineup_box ul .grid_system_12 > .grid_12, body.lineup_page main .lineup_box ul body.top .top_content .inner .top_main_column .lineup > .grid_12, body.top .top_content .inner .top_main_column body.lineup_page main .lineup_box ul .lineup > .grid_12 {
  width: 100%;
}
@media screen and (max-width: 480px) {
  body.lineup_page main .lineup_box ul {
    margin: 0;
  }
}
body.lineup_page main .lineup_box ul li {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 480px) {
  body.lineup_page main .lineup_box ul li {
    padding: 0;
  }
}
body.lineup_page main .lineup_box ul li > img {
  display: block;
  height: 168px;
  margin: 0 auto 20px;
  width: 230px;
}
@media screen and (max-width: 480px) {
  body.lineup_page main .lineup_box ul li > img {
    height: auto;
    width: 75%;
  }
}
body.lineup_page main .lineup_box ul li h2 {
  color: #1b1c80;
  font-size: 108%;
  font-weight: normal;
  margin: 0 0 20px 0;
}
body.lineup_page main .lineup_box ul li table {
  background: url(../img/common/pattern_dot_gray.gif) repeat-x top left;
  width: 100%;
}
body.lineup_page main .lineup_box ul li table tr {
  background: url(../img/common/pattern_dot_gray.gif) repeat-x bottom left;
}
body.lineup_page main .lineup_box ul li table tr th {
  font-family: arial,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  font-size: 77%;
  padding: 7px 0;
  text-align: left;
  vertical-align: middle;
  width: 28%;
}
body.lineup_page main .lineup_box ul li table tr td {
  font-size: 93%;
  line-height: 1.6;
  border-spacing: 7px 0;
  padding: 7px 0;
  vertical-align: middle;
}
body.lineup_page main .lineup_box ul li table tr td span {
  color: #e14986;
}
body.lineup_page main .lineup_box ul li .link {
  margin: 20px 0 0 0;
}
body.lineup_page main .lineup_box ul li .link a {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../img/common/pattern_slant_cgray.gif) repeat 0 0;
  display: block;
  text-align: center;
  line-height: 45px;
}

body.lineup_page main .lineup_box ul li .yotei {
  margin: 20px 0 0 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../img/common/pattern_slant_cgray.gif) repeat 0 0;
  display: block;
  text-align: center;
  line-height: 45px;
}
body.lineup_page main .lineup_box ul li .yotei a {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../img/common/pattern_slant_cgray.gif) repeat 0 0;
  display: block;
  text-align: center;
  line-height: 45px;
}

.new_top {
	background-image: url(../img/common/new.png);
	background-repeat: no-repeat;
	background-position: left top;
	/*padding-top: 20px;*/
	padding-left: 40px !important;
}

.new {
	background-image: url(../img/common/new.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 40px;
}

@media screen and (min-width: 481px) {
  body.lineup_page main .lineup_box ul li .link a:hover {
    background: #bbbbbb;
  }
}
body.lineup_page main .lineup_box ul li.last_cols {
  margin: 0;
}

body.news_page #page {
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  body.news_page #page .site_header {
    margin: 0 0 30px;
  }
}
body.news_page .global_nav {
  border-bottom: 1px solid #eeeeee;
  margin: 0 0 35px 0;
}
body.news_page main .news_box {
  width: 760px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 480px) {
  body.news_page main .news_box {
    min-width: 280px;
  }
}
body.news_page main .news_box article {
  font-size: 100%;
  padding: 15px 13px 17px;
  background: url(../img/common/pattern_dot_gray.gif) repeat-x bottom left;
}
@media screen and (max-width: 480px) {
  body.news_page main .news_box article {
    padding: 20px 15px;
  }
}
body.news_page main .news_box article * {
  display: table-cell;
  vertical-align: middle;
}
body.news_page main .news_box article i {
  padding: 0 19px 0 0;
  text-align: center;
}
body.news_page main .news_box article i img {
  border: 1px solid #a9aaaa;
}
@media screen and (max-width: 480px) {
  body.news_page main .news_box article i {
    display: none;
  }
}
body.news_page main .news_box article time {
  color: #1b1c80;
  padding: 0 16px 0 0;
  width: 130px;
}
@media screen and (max-width: 480px) {
  body.news_page main .news_box article time {
    display: block;
    width: auto;
    margin-bottom: 5px;
  }
}
body.news_page main .news_box article time .middle_dot {
  display: inline;
  padding: 0 7px 0 0;
}
body.news_page main .news_box article a {
  color: #555555;
  text-decoration: underline;
}
body.news_page main .news_box article a:hover {
  text-decoration: none;
}
body.news_page main .pager {
  margin: 0 0 50px 0;
}
body.news_page main .pager ul {
  text-align: center;
}
body.news_page main .pager ul li {
  display: inline-block;
  margin: 0 10px 0 -4px;
}
body.news_page main .pager ul li a {
  border: 1px solid #d4d4d4;
  color: #555555;
  display: block;
  font-size: 85%;
  padding: 11px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  body.news_page main .pager ul li a {
    padding: 6px 10px;
  }
}
body.news_page main .pager ul li a:hover {
  background: #1b1c80;
  border: 1px solid #1b1c80;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
body.news_page main .pager ul li.next a span.svg-arrow_double_upper:before {
  display: inline-block;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
body.news_page main .pager ul li.back {
  margin: 0 0 0 -4px;
}
body.news_page main .pager ul li.back a span.svg-arrow_double_upper:before {
  display: inline-block;
  left: 5px;
  position: relative;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

body.environment_page #page {
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  body.environment_page #page .site_header {
    margin: 0 0 30px;
  }
}
body.environment_page .global_nav {
  border-bottom: 1px solid #eeeeee;
  margin: 0 0 50px 0;
}
body.environment_page main .page_content {
  margin: 0 auto 50px;
}
body.environment_page main .environment_box {
  display: block;
  margin: 0 auto;
  width: 760px;
}
body.environment_page main .environment_box h2 {
  margin: 0 0 15px 0;
}
body.environment_page main .environment_box table {
  background: url(../img/common/pattern_dot_gray.gif) repeat-x top left;
  margin: 30px 0 15px;
  width: 100%;
}
body.environment_page main .environment_box table tr {
  background: url(../img/common/pattern_dot_gray.gif) repeat-x bottom left;
}
body.environment_page main .environment_box table tr th, body.environment_page main .environment_box table tr td {
  padding: 15px 0;
}
body.environment_page main .environment_box table tr th {
  text-align: center;
  vertical-align: middle;
  width: 20%;
}
@media screen and (max-width: 480px) {
  body.environment_page main .environment_box table tr th {
    text-align: left;
    width: 35%;
  }
}
body.environment_page main .environment_box table tr td {
  line-height: 2;
  width: 80%;
}
@media screen and (max-width: 480px) {
  body.environment_page main .environment_box table tr td {
    width: 65%;
  }
}
body.environment_page main .environment_box .smaller {
  margin: 0 0 0 0;
}

/* -------------------------------------------------------------------------

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }

  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}

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

/* 2023.04.05 */
a {
  color: #666;
}

body.top .top_content .inner .contents_article .hx:after {
  display: none;
}

body.top .top_content .inner .contents_article.news .hx:after {
  display: block;
  margin: -1em 0 0 0;
}

.contents_article .hx .base {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  background: #fff;
}

body.top .top_content .inner .top_main_column .news .hx .base {
  padding: 0 100px 0 10px;
}


body.concept #page .lefond_link {
  margin: 10px 0 0;
}

.concept_box {
  text-align: center;
  position: relative;
}

.concept_box:before,
.concept_box:after,
.concept_box .inner:before,
.concept_box .inner:after {
  display: none;
}

.concept_box .inner {
  padding: 50px 20px;
}

.concept_box .hx {
  margin-bottom: 66px;
}

.concept_box .hx img {
  max-width: 414px;
  max-height: 161px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .contents_article .hx .base {
    padding: 0 20px 0 10px;
  }

  body.top .top_content .inner .top_main_column .news .hx .base {
    padding: 0 20px 0 10px;
  }

  .concept_box:before,
  .concept_box:after {
    display: none;
  }

  .concept_box .inner {
    padding: 13% 2%;
  }

  .concept_box .inner:before,
  .concept_box .inner:after {
    display: none;
  }

  .concept_box .hx {
    width: 90%;
    margin: 0 auto 10%;
  }
}

.method_box .inner:before {
  display: none;
}

.method_box .title {
  background: #005834;
  padding: 20px 0;
}

.method_box .title img {
  height: 18px;
}

.method_box .content {
  border: none;
  padding: 0;
}

.method_box .content p {
  font-size: 14px;
  line-height: 2.2;
  color: #000;
}

.bnr_area02 img {
  width: 100%;
}

.bnr_area02 ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.bnr_area02 ul li {
  float: none;
  flex-basis: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
  margin: 0 0 10px 0;
}

@media screen and (max-width: 480px) {
  .method_box .title {
    padding: 15px 0;
  }
  .method_box .content {
    height: auto !important;
  }
  .bnr_area02 ul li {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0px;
  }
}

body.top .top_content .inner .top_main_column .news article time {
  color: #005834;
}

@media screen and (max-width: 480px) {
  body.top .top_content .inner .top_sub_column {
    background: #005834;
  }
}

body.top .top_content .inner .top_sub_column .hx {
  background: #005834;
}

@media screen and (max-width: 480px) {
  
  body.top .top_content .inner .top_sub_column .link a {
    height: auto;
    line-height: auto;
  }
  
  body.top .top_content .inner .top_sub_column .lead {
    height: 12px;
    width: 305px;
  }

  body.top .top_content .inner .top_sub_column .lead img {
    vertical-align: top;
  }

  body.top .top_content .inner .top_sub_column .link a img {
    display: block;
    height: 10px;
    padding: 8px 10px;
    width: 76px;
  }
}

body.concept #page .lefond_link .lefond_link_inner .right a {
  background-color: #005834;
  padding: 6px 0;
}

body.lineup_page main .lineup_box ul li h2 {
  color: #005834;
}

body.news_page main .news_box article time {
  color: #005834;
}

/* 2023.03.23 */
.concept main img {
  max-width: 100%;
  vertical-align: bottom;
}

p.note {
  line-height: 1.5 !important;
  margin-top: 5px;
}

.note.right {
  text-align: right;
}

.page_content p.txt_lead {
  color: #000;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 2.2;
  text-align: left;
}

.flex {
  display: flex;
  /* flex-flow: row wrap; */
  justify-content: space-between;
}

.flex.tt001 {
  align-items: center;
  justify-content: flex-start;
}

.flex .half {
  width: 50%;
}

.flex.gutter10 {
  gap: 10px 10px;
}

.flex.gutter20 {
  gap: 20px;
}

.flex.gutter40 {
  gap: 40px;
}

.flex.gutter50 {
  gap: 50px;
}

.flex.gutter80 {
  gap: 80px;
}

.concept_box_2 .hx img {
  max-width: 362px;
  width: 100%;
}

figure {
  position: relative;
}

.cap {
  position: absolute;
  bottom: 5px;
  right: 8px;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: right;
}

.cap.white {
  color: #fff;
}

.cap.out {
  position: static;
  margin-top: 5px;
}

.cap.left {
  text-align: left;
}

@media screen and (max-width: 480px) {
  .flex {
    display: block;
  }

  .flex .half {
    width: 100%;
  }

  .flex.gutter10>* {
    margin-top: 10px;
  }

  .flex.gutter20>* {
    margin-top: 20px;
    margin-top: 20px;
  }

  .flex.gutter40>*,
  .flex.gutter50>* {
    margin-top: 30px;
  }
}


.ttl_01 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 100px;
  text-align: center;
}

.ttl_02 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 40px;
  text-align: center;
}

.sec_01 {
  width: 820px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.sec_02 {
  width: 870px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.sec_03 {
  width: 920px;
  padding: 0 20px;
  margin: 0 auto;
  /*margin-top: 50px;*/
  margin-bottom: 40px;
}

.sec_03 .sec_l {
  width: 440px;
  float: left;
  margin-right: 40px;
  margin-bottom: 10px;
}

.sec_03 .sec_r {
  width: 440px;
  float: left;
  margin-bottom: 10px;
}

.sec_l {
  width: 310px;
  float: left;
  margin-right: 40px;
  margin-bottom: 10px;
}

.sec_r {
  float: left;
  margin-bottom: 10px;
}

.txt_01 {
  font-size: 100%;
  line-height: 2.4 !important;
  margin-bottom: 40px;
}

.txt_02 {
  color: #426095;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.btn_01 a {
  display: inline-block;
  background-color: #1b1c80;
  color: #FFFFFF;
  width: 570px;
  font-size: 16px;
  padding: 15px 0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pt01 {
  display: inline-block;
  background-color: #e3e3e3;
  border: #000000 solid 1px;
  color: #000;
  width: 387px;
  font-size: 24px;
  padding: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.tit01 {
  display: inline-block;
  background-color: #005632;
  color: #FFFFFF;
  width: 96%;
  font-size: 26px;
  padding: 50px 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  margin-top: 10px;
}

.cap001 {
  font-size: 75%;
  letter-spacing: -0.05em;
}

.cap002 {
  font-size: 85%;
  /*letter-spacing: -0.05em;*/
}

.cap003 {
  font-size: 75%;
  letter-spacing: -0.05em;
  text-align: right;
}

.txt_link01 {
  font-size: 100%;
  color: #555;
  line-height: 1.7;
}

.txt_link01 a {
  color: #555;
  text-decoration: underline;
}

.txt_link01 a:hover {
  color: #555;
  text-decoration: none;
}

.txt_link02 {
  font-size: 112.5%;
  color: #1b1c80;
  line-height: 1.7;
}

.txt_link02 a {
  color: #005632;
  text-decoration: underline;
}

.txt_link02 a:hover {
  color: #005632;
  text-decoration: none;
}

.pt01_txt_r {
  color: #ab0c0c;
  font-size: 30px;
}

ul.schk {
  text-align: center;
}

ul.schk li {
  display: inline-block;
  width: 243px;
  /*margin-right: 16px;*/
}

ul.schk li img {
  width: 230px !important;
  margin-bottom: 5px !important;
}

ul.schk li a {
  width: 244px !important;
  color: #555;

}

ul.schk li.last {
  margin-right: 0px;
}

.line001 {
  margin-top: 100px;
}

.tt01 {
  margin-top: 100px;
  margin-bottom: 20px;
}

.tt01 img {
  height: 125px;
}

.box01 {
  margin-bottom: 30px;
}

.left01 {
  float: left;
  margin-bottom: 10px;
  text-align: right;
  width: 583px;
}

.right01 {
  float: right;
  margin-bottom: 10px;
  text-align: right;
  width: 337px;
}

.txt01 {
  font-size: 13px;
  margin-bottom: 22px;
  text-align: left;
  letter-spacing: .08em;
  line-height: 1.8;
  text-align: justify;
}

.txt01_2 {
  margin-bottom: 86px;
  text-align: left;
  line-height: 1.5 !important;
}

.left02 {
  float: left;
  margin-bottom: 10px;
  text-align: right;
  width: 540px;
}

.right02 {
  float: right;
  margin-bottom: 10px;
  text-align: right;
  width: 400px;
}

.left03 {
  float: left;
  margin-bottom: 10px;
  margin-right: 20px;
  text-align: right;
  width: 327px;
}

.left03_2 {
  float: left;
  margin-bottom: 10px;
  text-align: right;
  width: 303px;
}

.right03 {
  float: right;
  margin-bottom: 10px;
  text-align: left;
  width: 280px;
}

.tt1001_l {
  float: none;
  margin-bottom: 0;
  margin-right: 40px;
  width: auto;
  height: 22px;
  text-align: left;
}

.tt1001_l img {
  height: 22px;
  vertical-align: bottom;
}

.tt1001_r {
  float: none;
  margin-bottom: 0;
  text-align: left;
  width: calc(100% - 145px);
}

.txt02 {
  margin-top: 0;
  font-size: 18px;
  color: #005834;
  margin-bottom: 0;
  text-align: left;
}

.left04 {
  float: left;
  margin-bottom: 10px;
  margin-right: 30px;
  text-align: right;
  width: 406px;
}

.left04_2 {
  float: left;
  margin-bottom: 10px;
  text-align: right;
  width: 276px;
}

.right04 {
  float: right;
  margin-bottom: 10px;
  text-align: left;
  width: 218px;
}

.txt03 {
  color: #435f95;
  text-align: left;
}

.txt04 {
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.5 !important;
}

.txt05 {
  font-size: 18px;
  color: #005834;
  line-height: 1.8;
  margin-top: 0;
}

ul.box02 {}

ul.box02 li {
  float: left;
  width: 230px;
  margin-right: 13px;
  margin-bottom: 10px;
  text-align: left;
}

ul.box02 li.last {
  margin-right: 0px;
}

.box03 {
  margin-bottom: 100px;
}

.left05 {
  float: left;
  margin-bottom: 10px;
  text-align: center;
  width: 480px;
}

.right05 {
  float: right;
  margin-bottom: 10px;
  text-align: left;
  width: 480px;
}

.left06 {
  float: left;
  margin-bottom: 10px;
  margin-right: 12px;
  text-align: right;
  width: 230px;
}

.left06_2 {
  float: left;
  margin-bottom: 10px;
  margin-right: 27px;
  text-align: right;
  width: 230px;
}

.right06 {
  float: right;
  margin-bottom: 10px;
  text-align: left;
  width: 440px;
}

@media screen and (max-width: 480px) {
  .txt_01 {
    font-size: 100%;
    line-height: 1.6 !important;
    text-align: left;
  }

  .sec_03 {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .sec_03 .sec_l {
    width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .sec_03 .sec_r {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }


  .tit01 {
    width: 86%;
    font-size: 22px;
    padding: 20px 20px;
    margin-bottom: 20px;
  }

  .line001 {
    margin-top: 0px;
  }

  .line001 img {
    height: 5px;
  }

  .tt01 {
    margin-top: 40px;
  }

  .left01 {
    width: 100%;
  }

  .right01 {
    width: 100%;
  }

  .txt01 {
    margin-bottom: 20px;
  }

  .txt01_2 {
    margin-bottom: 20px;
  }

  .left02 {
    width: 100%;
  }

  .right02 {
    width: 100%;
  }

  .left03 {
    width: 100%;
    margin-right: 0px;
  }

  .left03_2 {
    width: 100%;
  }

  .left03_2 img {
    width: 100%;
  }

  .right03 {
    width: 100%;
  }

  .tt1001_l {
    width: 100%;
    margin-right: 0px;
    margin-top: 30px;
  }

  .tt1001_r {
    width: 100%;
    margin-top: 15px;
  }

  .left04 {
    width: 100%;
    margin-right: 0px;
  }

  .left04_2 {
    width: 100%;
  }

  .left04_2 img {
    width: 100%;
  }

  .right04 {
    width: 100%;
  }

  ul.box02 li {
    width: 100%;
    margin-right: 0px;
  }

  ul.box02 li img {
    width: 100%;
  }

  .left05 {
    width: 100%;
  }

  .right05 {
    width: 100%;
  }

  .left06 {
    width: 100%;
    margin-right: 0px;
  }

  .left06 img {
    width: 100%;
  }

  .left06_2 {
    width: 100%;
    margin-right: 0px;
  }

  .left06_2 img {
    width: 100%;
  }

  .right06 {
    width: 100%;
  }

  .box03 {
    margin-bottom: 50px;
  }
}

/* 2025.3 追加 */
.lineup_box h1{
  color: #005834;
  font-size: 18px;
  border-left: 5px solid #9a9a9a;
  padding-left: 10px;
  margin-top:20px;
  margin-bottom: 40px;
}