@charset "utf-8";
/* ==========================================================================

  Base Stylesheet - http://git.io/base
  Author: Matthew Hartman - http://www.matthewhartman.com.au/
  Version: 1.5 - Last Updated: 21st June, 2013

========================================================================== */
/* General Resets */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html, button, input, select, textarea {
  font-family: sans-serif;
}

body, form, fieldset, legend, input, select, textarea, button {
  margin: 0;
}

html {
  font-size: 100%;
}

/* ==========================================================================
/* --  Micro Clearfix and Helpers
   ========================================================================== */
/* Micro Clearfix */
.clear:before, .clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  zoom: 1;
}

.section:before, .section:after {
  content: "";
  display: table;
}

.section:after {
  clear: both;
}

.section {
  zoom: 1;
}

.checkbox:before, .checkbox:after {
  content: "";
  display: table;
}

.checkbox:after {
  clear: both;
}

.checkbox {
  zoom: 1;
}

/* Helpers */
.left, .checkbox input[type=checkbox],
.checkbox input[type=radio] {
  float: left;
}

.right {
  float: right;
}

.block, .alert, .checkbox {
  display: block;
}

.inline-block, audio, canvas, video, .button {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.inline {
  display: inline;
}

.strong, b, strong, dt, legend, input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
textarea {
  font-weight: bold;
}

.italic, dfn, blockquote {
  font-style: italic;
}

.center-text {
  text-align: center;
}

.none, .no-desktop, audio:not([controls]),
[hidden] {
  display: none;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  left: -9999em;
}

.visuallyvisible {
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
  left: 0;
}

/* Alert */
.alert {
  background-color: #ffc;
  padding: 8px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* ==========================================================================
/* 1.0 - Document Setup (typography, links, paragraph, etc)
   ========================================================================== */
/* Body */
body {
  font-size: 14px;
  font-size: 0.875rem;
  color: #555;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Strong and Italic */
/* Links */
a {
  color: #000;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

/* Paragraph and Small */
/*p, pre { margin: 1em 0; }*/
p, pre {
  margin: 0;
}

small {
  font-size: 80%;
}

/* Abbreviations */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Audio */
audio:not([controls]) {
  height: 0;
}

/* Small, 
Sub and Sup */
small {
  font-size: 80%;
}

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

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

/* Definition */
/* Images */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

.image-left {
  margin-right: 20px;
}

.image-right {
  margin-left: 20px;
}

/* 1.1 Headings - h1, h2, h3, h4, h5, h6 & other (if any)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

h1, .h1 {
  font-size: 40px;
  font-size: 2.5rem;
  margin-bottom: .2em;
}

h2, .h2 {
  font-size: 40px;
  font-size: 2rem;
  margin-bottom: .33em;
}

h3, .h3 {
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: .5em;
}

h4, .h4 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: .5em;
}

h5, .h5 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: .5em;
}

h6, .h6 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: .5em;
}

/* Reset Heading */
.no-style-heading {
  font-size: 100%;
  margin: 0;
}

/* Horizontal Rule */
hr {
  border: 0;
  background: none;
  outline: 0;
  background-color: #ddd;
  margin: 2em 0;
  *margin: 1em 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 1px;
}

/* 1.2 Quotes and Code - block quotes, quotes, code, pre, etc
   ========================================================================== */
/* Block Quotes and Quotes */
blockquote {
  font-family: "Georgia", "Times" serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #777;
  margin: 1em 0;
}

cite {
  color: #222;
  font-style: normal;
}

q {
  quotes: none;
}

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

/* Mark */
mark {
  background: #ff0;
  color: #111;
}

/* Code */
code, kbd, pre, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

code {
  color: #111;
  padding: 2px 5px;
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/* 1.3 Lists
   ========================================================================== */
dl, menu, ol, ul {
  margin: 0;
  padding: 0;
}

ul ul, ol ol, ul ol, ol ul {
  margin: 0;
}

dd {
  margin: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

/* Remove Styling from List */
.no-style-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 1.4 Tables
   ========================================================================== */
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  *white-space: normal;
}

table th,
table td {
  padding: 8px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}

table thead th {
  vertical-align: bottom;
  font-weight: bold;
  background-color: #e1e1e1;
  color: #333;
}

table tfoot td {
  font-weight: bold;
}

table caption {
  padding: 0.5em;
  font-style: italic;
  background-color: #eee;
  border-bottom: 0;
  font-weight: bold;
}

/* 1.5 Forms, Labels and Inputs
   ========================================================================== */
fieldset {
  border: 0;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

label {
  cursor: pointer;
}

button, input, select, textarea {
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
textarea {
  padding: 5px 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  color: #777;
  border: 1px solid #ddd;
  border-top: 1px solid #999;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

.checkbox {
  margin: .2em 0;
}
.checkbox label {
  padding-left: 5px;
  overflow: hidden;
  display: table;
  *zoom: 1;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

/* Buttons */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

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

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

textarea {
  overflow: auto;
  vertical-align: top;
  resize: none;
}

/* Custom Buttons */
.button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 0;
  padding: 1em 3em;
  color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 1.2em;
}

.orange-button {
  background-color: #fee9cc;
}
.orange-button:hover {
  background-color: #ffe0b5;
  -webkit-tap-highlight-color: #fdeed8;
}
.orange-button:active {
  background-color: #fdeed8;
}

.button[disabled],
.button.disabled {
  color: #999;
  background-color: #f1f1f1;
}

.no-style-button {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #f30;
  text-decoration: underline;
  border: 0;
  background: transparent;
  height: auto;
  padding: 0;
  cursor: pointer;
  outline: 0;
}
.no-style-button:hover {
  text-decoration: none;
}

.no-style-button[disabled],
.no-style-button.disabled {
  text-decoration: none;
  color: #999;
}

/* ==========================================================================
/* 2.0 - Grid Layout (Responsive)
   ========================================================================== */
/* Sections & Content Blocks */
.section {
  position: relative;
}

/* Rows */
.row {
  margin: .5em 0;
}

.row-one {
  margin: 1em 0;
}

.row-two {
  margin: 2em 0;
}

.row-three {
  margin: 3em 0;
}

.center, .container, .container-full {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
}

.container-full {
  max-width: 980px;
}

/* Fluid Grid */
.col {
  margin-left: 2%;
  float: left;
}

.col:first-child {
  margin-left: 0;
}

/* Columns */
.one {
  width: 6.5%;
  *width: expression(Math.floor(0.065 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.two {
  width: 15%;
  *width: expression(Math.floor(0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.three, .quarter {
  width: 23.5%;
  *width: expression(Math.floor(0.235 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.four, .one-third {
  width: 32%;
  *width: expression(Math.floor(0.32 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.five {
  width: 40.5%;
  *width: expression(Math.floor(0.405 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.six, .half {
  width: 49.0%;
  *width: expression(Math.floor(0.49 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.seven {
  width: 57.5%;
  *width: expression(Math.floor(0.575 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.eight {
  width: 66%;
  *width: expression(Math.floor(0.66 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.nine {
  width: 74.5%;
  *width: expression(Math.floor(0.745 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.ten {
  width: 83%;
  *width: expression(Math.floor(0.83 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.eleven {
  width: 91.5%;
  *width: expression(Math.floor(0.915 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
}

.twelve {
  width: 100%;
}

/* ==========================================================================
/* -- Tablet Devices (Layout, Modifications, etc)
   ========================================================================== */
@media only screen and (min-width: 740px) and (max-width: 999px) {
  .container, .tablet-container {
    width: 720px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Tablet Grid
  * For stacking full width columns, please use the new class .tablet-full */
  .tablet-one {
    width: 6.5%;
  }

  .tablet-two {
    width: 15%;
  }

  .tablet-three {
    width: 23.5%;
  }

  .tablet-four {
    width: 32%;
  }

  .tablet-five {
    width: 40.5%;
  }

  .tablet-six {
    width: 49.0%;
  }

  .tablet-seven {
    width: 57.5%;
  }

  .tablet-eight {
    width: 66%;
  }

  .tablet-nine {
    width: 74.5%;
  }

  .tablet-ten {
    width: 83%;
  }

  .tablet-eleven {
    width: 91.5%;
  }

  .tablet-twelve {
    width: 100%;
  }

  .tablet-full {
    clear: both;
    float: none;
    width: 100%;
    margin: 10px 0 0 0;
    display: block;
  }

  .tablet-full:first-child {
    margin-top: 0;
  }

  .tablet-center {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .tablet-left {
    float: left;
  }

  .tablet-right {
    float: right;
  }

  .tablet-no-float {
    float: none;
  }

  .tablet-center:first-child {
    margin-left: auto;
  }

  .tablet-center-text {
    text-align: center;
  }

  .no-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }
}
/* End Tablet Media Query */
/* ==========================================================================
/* -- Mobile Devices (Layout, Modifications, etc)
   ========================================================================== */
@media only screen and (max-width: 739px) {
  /* Mobile Grid
  * For stacking full width columns, please use the new class .mobile-full */
  .mobile-one {
    width: 6.5%;
  }

  .mobile-two {
    width: 15%;
  }

  .mobile-three {
    width: 23.5%;
  }

  .mobile-four {
    width: 32%;
  }

  .mobile-five {
    width: 40.5%;
  }

  .mobile-six {
    width: 49.0%;
  }

  .mobile-seven {
    width: 57.5%;
  }

  .mobile-eight {
    width: 66%;
  }

  .mobile-nine {
    width: 74.5%;
  }

  .mobile-ten {
    width: 83%;
  }

  .mobile-eleven {
    width: 91.5%;
  }

  .mobile-twelve {
    width: 100%;
  }

  .mobile-full {
    clear: both;
    float: none;
    width: 100%;
    margin: 10px 0 0 0;
    display: block;
  }

  .mobile-full:first-child {
    margin-top: 0;
  }

  .mobile-center {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .mobile-center:first-child {
    margin-left: auto;
  }

  .mobile-center-text {
    text-align: center;
  }

  .mobile-left {
    float: left;
  }

  .mobile-right {
    float: right;
  }

  .mobile-no-float {
    float: none;
  }

  .container, .mobile-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Mobile Tables */
  table th,
  table td {
    padding: 4px;
  }

  .no-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}
/* End Mobile Media Query */
.mg_t5 {
  margin-top: 5px !important;
}

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

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

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

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

.mg_b0 {
  margin-bottom: 0px !important;
}

.mg_b5 {
  margin-bottom: 5px !important;
}

.mg_b10 {
  margin-bottom: 10px !important;
}

.mg_b15 {
  margin-bottom: 15px !important;
}

.mg_b20 {
  margin-bottom: 20px !important;
}

.mg_b30 {
  margin-bottom: 30px !important;
}

.mg_b35 {
  margin-bottom: 35px !important;
}

.mg_b50 {
  margin-bottom: 50px !important;
}

.mg_b80 {
  margin-bottom: 80px !important;
}

.mg_b100 {
  margin-bottom: 100px !important;
}

.mg_r0 {
  margin-right: 0 !important;
}

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

.mg_l0 {
  margin-left: 0 !important;
}

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

.pd_tb90{
  padding: 90px 0 !important;
}

.comment {
  margin-left: 1em;
  text-indent: -1em;
  color: #666;
}

#wrapper {
  background: url(../images/_shared/bg_hougan.gif) center 330px repeat;
}

.txtRed {
  color: red !important;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.txtL {
  text-align: left;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txtFin{
  font-size: 18px;
  font-weight: bold;
  color: #dd4b4b;
  padding-top: 15px;
}

.indent li {
  margin-left: 1em;
  text-indent: -1em;
}

.indent_alphabet li {
  margin-left: 1.2em;
  text-indent: -1.2em;
}

.clear {
  clear: both;
}

/*---------------------------------------------------------------------------------------
	clearfix
---------------------------------------------------------------------------------------*/
.clearfix {
  /* /zoom: 1; */
  zoom: 1;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

/* ==========================================================================

	common.scss

============================================================================= */
html, body {
  font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
  line-height: 1.8em;
}

button, input, input, textarea {
  font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
}

* html body {
  font-family: "ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}

* html input, * html textarea {
  font-family: "ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}

h1, h2, h3, h4 {
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
  line-height: 1.2em;
  letter-spacing: 0.08rem;
}

ul, ol {
  list-style: none;
}

/* フォントカラー */
/* フォントサイズ */
.txtSmall {
  font-size: 85%;
}

/* スプライト画像 */
.nav {
  font-size: 0.75rem;
}

.nav ul li {
  display: inline-block;
}

.button {
  background-color: #ed5757;
  /*&:link, &:visited {
  	background-color: #ed5757;
  }
  &:hover, &:active {
  	background-color: #ed5757;
  }*/
}

/* -------------------
	header
------------------- */
#header {
  padding-top: 20px;
  background: url(../images/cmn_header_bg2.png) no-repeat top center;
  background-color: #f4f3ee;
}

#header p.logo {
  float: left;
  margin-top: 30px;
  margin-bottom: 40px;
}

#header .sinsetsuNavi {
  float: right;
}

#header ul.homeNavi {
  overflow: hidden;
  *zoom: 1;
  float: right;
}
#header ul.homeNavi li {
  float: left;
  margin-left: 10px;
}

#header ul.subNavi {
  float: right;
  margin-bottom: 20px;
  text-align: right;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 85%;
  clear: both;
}
#header ul.subNavi li {
  display: inline;
  padding-left: 12px;
  letter-spacing: 0.05em;
}
#header ul.subNavi li a {
  color: #555;
  text-decoration: none;
}

#header .mobileMenu {
  display: none;
}

#header .gNaviBg {
  background-color: #005ca9;
}

#header .gNavi ul {
  padding-left: 0;
  overflow: hidden;
  *zoom: 1;
}

#header .gNavi li a {
  float: left;
  width: 155px;
  padding: 20px 5px 20px 35px;
  color: #fff;
  text-decoration: none;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.08rem;
  /*&:hover, &:active {
  	background-color: #627b29;
  }*/
}
#header .gNavi li a:link, #header .gNavi li a:visited {
  background-color: #005ca9;
}
#header .gNavi li a.current {
  background-color: #0d4472;
}

#header .gNavi li.end a {
  width: 165px;
}

#header .gNavi li a.navi01 {
  background-image: url('../images/navicon.png');
  background-position: 0 -475px;
  background-repeat: no-repeat;
}

#header .gNavi li a.navi02 {
  background-image: url('../images/navicon.png');
  background-position: 0 0;
  background-repeat: no-repeat;
}

#header .gNavi li a.navi03 {
  background-image: url('../images/navicon.png');
  background-position: 0 -285px;
  background-repeat: no-repeat;
}

#header .gNavi li a.navi04 {
  background-image: url('../images/navicon.png');
  background-position: 0 -380px;
  background-repeat: no-repeat;
}

#header .gNavi li a.navi05 {
  background-image: url('../images/navicon.png');
  background-position: 0 -95px;
  background-repeat: no-repeat;
}

#header .gNavi li a.navi06 {
  background-image: url('../images/navicon.png');
  background-position: 0 -190px;
  background-repeat: no-repeat;
}

#menu {
  display: none;
}

/* -------------------
	contents
------------------- */
.mainContainer {
  padding-top: 65px;
}

.containerBg {
  background: #fff url(../images/cmn_bg.png) repeat;
}

h1 {
  margin-bottom: 70px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 50px;
  line-height: 1em;
  color: #005ca9;
  letter-spacing: -0.03em;
}

h1.titAbout {
  padding-left: 50px;
  background: url(../images/about/about_titicon.png) 0 -5px no-repeat;
}

h1.titProgram {
  padding-left: 50px;
  background: url(../images/program/program_titicon.png) 0 0 no-repeat;
}

h1.titSpeaker {
  margin-bottom: 45px;
  padding-left: 50px;
  background: url(../images/speaker/speaker_titicon.png) 0 0 no-repeat;
}

h1.titAccess {
  padding-left: 50px;
  background: url(../images/access/access_titicon.png) 0 0 no-repeat;
}

h1.titTicket {
  margin-bottom: 65px;
  padding-left: 60px;
  padding-bottom: 5px;
  background: url(../images/ticket/ticket_titicon.png) 0 0 no-repeat;
}

h1.titContact {
  padding-left: 60px;
  background: url(../images/contact/contact_titicon.png) 0 4px no-repeat;
}

h1.titFaq {
  margin-bottom: 65px;
  padding-left: 60px;
  padding-bottom: 5px;
  background: url(../images/faq/faq_titicon.png) 0 0 no-repeat;
}

h1.titArchive {
  padding-left: 60px;
  background: url(../images/archive/archive_titicon.png) 0 10px no-repeat;
}

.pagetop {
  float: right;
  display: block;
  margin: 100px 0 15px;
  padding: 3px 0 5px 30px;
  background: url(../images/cmn_pagetop.png) 0 0 no-repeat;
  clear: both;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  line-height: 1rem;
}

.titMidashi,
.titMidashiBig {
  margin-bottom: 15px;
  font-size: 116%;
  font-weight: bold;
  color: #000;
}

.titMidashiBig {
  margin-bottom: 25px;
  font-size: 20px;
}

h2 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.imgLink {
  display: block;
}
.imgLink img {
  vertical-align: middle;
}

.btm-line{
  padding-top:80px;
  width: 100%;
  border-bottom: 2px dashed #a39f8d;
}

.btm-line-speaker{
  padding-bottom:80px;
  width: 100%;
  border-top: 2px dashed #a39f8d;
}



/* -------------------
	side navi
------------------- */
.twitter img, .bnrFB img, .bnrblog img {
  width: 100%;
}

table {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

table th,
table td {
  padding: 10px 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background-color: #fff;
}


/* -------------------
	footer
------------------- */
footer {
  height: 170px;
  background-color: #ccbfa1;
}

small {
  float: left;
  margin-top: 40px;
  display: block;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
  line-height: 0;
}

footer ul {
  margin-top: 30px;
  float: right;
}

footer li {
  float: left;
  margin-left: 30px;
}
footer li:first-child {
  margin-left: 0;
}


/* -------------------
	about page
------------------- */
#about .slider {
  height: auto;
}

#about #slider {
  position: relative;
}

#about #slider li {
  position: absolute;
}

#about .outline dl {
  margin-bottom: 20px;
  padding: 150px 10px 30px;
  background-color: #fff;
  background-position: center 39px;
  background-repeat: no-repeat;
  background-size: 90px 90px;
  min-height: 340px;
}

#about .outline dl.cal {
  background-image: url(../images/about/about_icon_cal.png);
  height: 410px;
}

#about .outline dl.map {
  background-image: url(../images/about/about_icon_map.png);
  height:410px;
}

#about .outline dl.ticket {
  background-image: url(../images/about/about_icon_ticket.png);
  background-size: 150px 90px;
}

#about .outline dt {
  margin-bottom: 20px;
  font-size: 22px;
  color: #005ca9;
}

#about .outline dd {
  margin: 0;
}

#about .outline dd.stit {
  margin-bottom: 10px;
  font-size: 116%;
  font-weight: bold;
}

#about .outline dd span.stit {
  margin-bottom: 10px;
  font-size: 116%;
  font-weight: bold;
}

#about .outline dd p:nth-child(2) {
  margin-top: 10px;
}

#about .outline dt {
  margin-bottom: 20px;
  font-size: 22px;
  color: #005ca9;
}

#about .logoBox {
  padding: 35px 30px 40px;
  background-color: #fff;
}

#about .logoBox dd {
  margin: 0;
}

#about .logoBox .logoCol1 dd {
  margin-left: 2%;
}

#about .uneiCol {
  min-height: 360px;
}

#about .borderB {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: solid #ccc 1px;
}

/* -------------------
	program page
------------------- */
#program th {
  width: 10%;
  text-align: right;
  font-weight: normal;
}

.prg {
  background-color: #fff;
  padding: 60px 30px 30px 30px;
  position: relative;
  border-radius: 1em;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  -o-border-radius: 1em;
  -ms-border-radius: 1em;
}

.pdb20{
  padding-bottom: 20px;
}

.stage1, .stage2, .stage3 {
  width: 30%;
}

.stage1 .titProgram, .stage2 .titProgram, .stage3 .titProgram {
  font-weight: bold;
}

.stage1 {
  background-color: #ffe7e8;
}
.stage1 .titProgram,
.stage1 dt {
  color: #cc0033;
}

.stage2 {
  background-color: #ffffdb;
}
.stage2 .titProgram,
.stage2 dt {
  color: #996600;
}

.stage3 {
  background-color: #e0f4ff;
}
.stage3 .titProgram,
.stage3 dt {
  color: #006699;
}

#program dd.sessionName {
  font-weight: bold;
}

#program table dt {
  font-size: 85%;
}

#program table dt {
  font-size: 85%;
}

#program table dd {
  margin: 0;
}

#program h2.titStage1,
#program h2.titStage2,
#program h2.titStage3 {
  margin-bottom: 50px;
  padding: 0 0 5px 35px;
  background: url(../images/program/program_titicon01.png) 0 0 no-repeat;
}

#program h2.titStage2 {
  background: url(../images/program/program_titicon02.png) 0 0 no-repeat;
}

#program h2.titStage3 {
  margin-bottom: 46px;
  padding: 3px 0 6px 35px;
  background: url(../images/program/program_titicon03.png) 0 0 no-repeat;
}

.circle1, .circle2, .circle3 {
  width: 130px;
  height: 130px;
  padding-top: 25px;
  -webkit-border-radius: 65px;
  -moz-border-radius: 65px;
  -ms-border-radius: 65px;
  -o-border-radius: 65px;
  border-radius: 65px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: center;
}

.circle1 dt, .circle2 dt, .circle3 dt {
  font-size: 93%;
}

.circle1 dd, .circle2 dd, .circle3 dd {
  font-size: 60px;
  color: #fff;
  margin: 10px 0 0;
}

.circle1 {
  background-color: #cc0033;
}
.circle1 dt {
  color: #e68099;
}

.circle2 {
  background-color: #996600;
}
.circle2 dt {
  color: #d6a980;
}

.circle3 {
  background-color: #006699;
}
.circle3 dt {
  color: #80b3cc;
}

.midashiTime {
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 116%;
  color: #888;
}

.programInfo h3.sessionTit {
  font-size: 25px;
  font-weight: bold;
}
.programInfo h3.sessionTit span {
  font-size: 110%;
}
.programInfo h3.sessionTit .txtSmall {
  font-size: 85%;
}

.programInfo h3.companyLogo {
  margin-bottom: 25px;
}

#program strong.companyName {
  font-size: 116%;
  font-weight: bold;
  color: #000;
}

.programInfo .txt {
  margin-bottom: 30px;
}


#program ul.speakerList {
  padding-top: 20px;
  border-top: solid 1px #ccc;
  margin-left: 150px;
}


#program ul.speakerList li {
  margin-bottom: 20px;
}

#program ul.speakerList li:nth-child(4),
#program ul.speakerList li:nth-child(7){
  clear: both;
  float: left;
  margin-left: 0;
}


#program ul.speakerList dt {
  float: left;
  width: 70px;
  margin-right: 10px;
}

#program ul.speakerList dd {
  float: left;
  width: 220px;
  margin-left: 0px;
  margin-top: 10px;
  font-size: 116%;
  line-height: 1em;
  font-weight: bold;
  color: #000;
}

#program ul.speakerList dd span {
  font-size: 70%;
  font-weight: normal;
}

#program ul.speakerList dd a {
  display: block;
  width: 7.5em;
  margin-top: 10px;
  padding: 5px 7px 4px;
  color: #fff;
  font-size: 62%;
  line-height: 1em;
  font-weight: normal;
  text-decoration: none;
  background-color: #000;
}

#program .instaArea h3 {
  margin-bottom: 50px;
}

#program .instaArea h4 {
  font-weight: 20px;
  color: #006699;
}

#program ul.workList1col li {
  margin-bottom: 20px;
}

#program ul.workList3col li {
  width: 220px;
  float: left;
  margin-right: 10px;
  margin-bottom: 20px;
  font-size: 85%;
}

#program .borderBtm {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #ccc;
}


/* -------------------
	speaker page
------------------- */
.spk {
  background-color: #fff;
  padding: 40px 30px 20px 30px;
  position: relative;
  border-radius: 1em;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  -o-border-radius: 1em;
  -ms-border-radius: 1em;
}

#speaker .speakerInfo {
  padding-top: 15px;
}

#speaker .speakerName {
  float: left;
  font-size: 24px;
  margin-left: 18px;
  margin-right: 15px;
  margin-bottom: 4px;
}

#speaker .yomiTxt {
  float: left;
  margin-top: 3px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 70%;
  letter-spacing: 0.2em;
  color: #999;
}

#speaker .companyTxt {
  clear: both;
  margin-left: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 4px solid #005ca9;
}

#speaker .profileTxt {
  margin-left: 18px;
  margin-bottom: 15px;
}

#speaker .logoImg {
  float: none;
  padding: 15px 20px;
  line-height: 1em;
}

#speaker .logoImg a {
  padding: 15px 20px 20px 0;
  background-color: #fff;
  line-height: 1em;
  height: auto;
  display: inline-block;
}

#speaker .button{
  margin-left: 20px;
  margin-bottom: 20px !important;
}

/* -------------------
	access page
------------------- */
#access h2 {
  font-size: 22px;
}

#access #mapCanvas {
  width: 940px;
  height: 400px;
  margin-bottom: 20px;
}

#access dl.address {
  margin-bottom: 50px;
}

#access dl.address dt {
  font-size: 131%;
  font-weight: bold;
  color: #000;
}

#access dd {
  margin-left: 0;
  color: #000;
}

#access .access2Col {
  min-height: 330px;
  padding: 25px 10px;
  background-color: #fff;
  text-align: center;
}

#access .access2Col dt {
  font-size: 22px;
  color: #005ca9;
  margin-bottom: 30px;
}

#access .access2Col dd span {
  padding: 10px 20px;
  background-color: #f1f1f1;
}

#access .access2Col dd.arrowBtm {
  margin-bottom: 20px;
  padding-bottom: 35px;
  background: url(../images/access/access_arrow01.png) center bottom no-repeat;
}

#access .transportation {
  padding-top: 16px;
  margin-bottom: 20px;
  font-size: 22px;
  color: #005ca9;
  border-top: 1px solid #aaa9a5;
}

#access #bus h3 {
  font-size: 138.5%;
}

/* -------------------
	ticket page
------------------- */
/*#ticket .kokuchi {
	padding: 60px 30px 40px;
	background-color: #fff;
	text-align: center;
}

#ticket .kokuchi dt {
	margin-bottom: 20px;
	font-size: 30px;
	color: $keyColor;
}*/

#ticket ul.tic{
  list-style: disc;
  padding-left: 1rem;
}

#ticket ul.tic li{
  margin-top: 0.7rem;
}

#ticket .ticketInfo_box {
  display: table;
  width: 90%;
  margin: 0 auto;
}

#ticket .ticketInfo_box dl{
  float: left;
  width: 45%;
}

#ticket .ticketInfo_box dl:first-child{
  margin-right: 4rem;
}

#ticket .ticketInfo_box dt{
  font-size: 1rem;
  line-height: 2;
  background-color: #c4c3c0;
  margin-bottom: 10px;
}

#ticket .ticketInfo_box dt.ad{
  color: #fff;
  background-color: #15afaa;
}

#ticket .ticketInfo_box dd{
  font-size: 1.1rem;
  padding-top: 0.8rem;
}

/*141016*/

#ticket .order .general,
#ticket .order .student {
  margin-bottom: 15px;
  padding: 50px 15px 20px;
  background-color: #fff;
}
#ticket .order .general dt,
#ticket .order .student dt {
  float: left;
  margin: 0 0 25px 30px;
  padding: 12px 0 15px 42px;
  font-size: 24px;
  color: #005ca9;
}
#ticket .order .general dd,
#ticket .order .student dd {
  float: left;
  margin: 0 0 25px 25px;
  padding: 7px 0 5px 28px;
  font-size: 40px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
  background-size: 2px 3px;
  background: url(../images/ticket/dotFes_dotline.png) left top repeat-y;
}
#ticket .order .general dd span,
#ticket .order .student dd span {
  font-size: 20px;
}

#ticket .order .general dt {
  background: url(../images/ticket/ticket_icon_general.png) left top no-repeat;
  background-size: 32px 43px;
}

#ticket .order .student dt {
  background: url(../images/ticket/ticket_icon_student.png) left top no-repeat;
  background-size: 35px 43px;
}

#ticket ul.dotList {
  list-style: inherit;
  padding-left: 1.5em;
}

#ticket dd {
  margin-left: 0;
}

#ticket h3 {
  font-size: 138.5%;
}

#ticket .order .button {
  padding: 1.5em 1em;
}

#ticket .entryDate {
  margin-bottom: 15px;
  font-size: 116%;
  font-weight: bold;
  color: #000;
}

#ticket .tc_btnArea{
  display: table;
  padding-top: 15px;
  width: 100%;
  text-align: center;
}


/* クローズ画面 */
#ticket .closeTxt {
  margin-bottom: 15px;
  padding: 40px 15px 40px;
  background-color: #fff;
  text-align: center;
}

#ticket .closeTxt h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

#ticket .closeTxt .ticketReed {
  font-size: 138.5%;
  margin-bottom: 15px;
}

/* -------------------
	contact page
------------------- */
#contact h2 {
  margin-bottom: 60px;
}

#contact h3 {
  font-size: 22px;
}

#contact .telArea h3,
#contact .mailArea h3 {
  margin-bottom: 7px;
  padding-left: 25px;
  line-height: 1em;
  font-size: 24px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #005ca9;
}

#contact .telArea h3 {
  background: url(../images/contact/contact_icon_tel.png) 0 3px no-repeat;
}

#contact .mailArea h3 {
  padding-left: 27px;
  background: url(../images/contact/contact_icon_mail.png) 0 5px no-repeat;
}

#contact .telArea .telNum {
  margin-top: 20px;
  font-size: 46px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
}
#contact .telArea .telNum a {
  text-decoration: none;
}

#contact .mailArea .button {
  padding: 0.5em 2em 0.5em;
  font-size: 24px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
}

#contact .operating {
  margin-bottom: 100px;
}

#contact .operating strong {
  font-size: 116%;
  color: #000;
}

/* -------------------
	faq page
------------------- */
#faq h2 {
  margin-bottom: 60px;
}

#faq .faqList dt {
  margin-bottom: 5px;
  padding: 5px 0 12px 50px;
  font-size: 138.5%;
  font-weight: bold;
  color: #000;
  background: url(../images/faq/faq_icon_q.png) 0 0 no-repeat;
}

#faq .faqList dd {
  margin: 0 0 50px 0;
  padding: 5px 0 0 50px;
  background: url(../images/faq/faq_icon_a.png) 0 0 no-repeat;
}

/* -------------------
	archive page
------------------- */
#archive .archiveList li {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
#archive .archiveList li:nth-child(6n) {
  margin-right: 0;
}
#archive .archiveList li img {
  vertical-align: bottom;
}

/* ==========================================================================
/* -- Tablet Devices (Layout, Modifications, etc)
   ========================================================================== */
@media only screen and (min-width: 740px) and (max-width: 999px) {
  #header .gNavi li a {
    width: 115px;
  }

  #header .gNavi li.end a {
    width: 125px;
  }

  /* -------------------
  	side navi
  ------------------- */
  /* -------------------
  	about page
  ------------------- */
  #about #slider li img {
    width: 343px;
  }

  #about img.logoWD {
    width: 221.33333px;
  }

  #about img.logoCshool {
    width: 148px;
  }

  #about img.logoKyushu {
    width: 270px;
  }

  #about img.logoItckyoto {
    width: 206.66667px;
  }

  #about img.logoCmex {
    width: 120px;
  }

  #about .slidePic img {
    width: 363px;
  }

  /* -------------------
  	program page
  ------------------- */
  .circle1, .circle2, .circle3 {
    width: 100px;
    height: 100px;
    padding-top: 10px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
  }

  #program ul.speakerList {
    padding-top: 20px;
    border-top: solid 1px #ccc;
    margin-left: 110px;
  }

  #program ul.speakerList dd {
    width: 144px;
  }

  #program #s3aid .imgSizeFull {
    width: 100%;
  }

  #program #s3cshooltaki .imgSizeFull {
    width: 100%;
  }

  /* -------------------
  	speaker page
  ------------------- */
  #speaker .speakerFace img {
    width: 165px;
    height: 165px;
  }

  /* -------------------
  	ticket page
  ------------------- */
  #ticket .order .general,
  #ticket .order .student {
    margin-bottom: 15px;
    padding: 30px 15px 15px;
    text-align: center;
  }
  #ticket .order .general dt,
  #ticket .order .student dt {
    float: none;
    margin: 0;
    padding: 55px 0 0;
    font-size: 24px;
    color: #005ca9;
  }
  #ticket .order .general dd,
  #ticket .order .student dd {
    float: none;
    margin-left: 0;
    padding: 10px 0 0 0;
    font-size: 40px;
    font-family: "Myriad", Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #000;
    background: none;
  }
  #ticket .order .general dd span,
  #ticket .order .student dd span {
    font-size: 20px;
  }

  #ticket .order .general dt {
    width: 100%;
    background: url(../images/ticket/ticket_icon_general.png) center top no-repeat !important;
    background-size: 32px 43px !important;
  }

  #ticket .order .student dt {
    background: url(../images/ticket/ticket_icon_student.png) center top no-repeat !important;
    background-size: 35px 43px !important;
  }

  #ticket ul.dotList {
    list-style: inherit;
    padding-left: 1.5em;
  }

  #ticket .order .button {
    padding: 1.5em 0.5em;
  }


  /* -------------------
  	access page
  ------------------- */
  #access #mapCanvas {
    width: 700px;
    height: 400px;
  }

  /* -------------------
  	archive page
  ------------------- */
  #archive ul.archiveList {
    margin: 0 40px;
  }

  #archive .archiveList li {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #archive .archiveList li:nth-child(6n) {
    margin-right: 20px;
  }
  #archive .archiveList li:nth-child(4n) {
    margin-right: 0;
  }
}
/* End Tablet Media Query */
/* ==========================================================================
/* -- Mobile Devices (Layout, Modifications, etc)
   ========================================================================== */
@media only screen and (max-width: 739px) {
  #header {
    height: auto;
  }

  #header p.logo {
    margin: 5px 0 20px;
  }

  #header p.logo img {
    width: 185px;
  }

  .imgSizeFull {
    width: 100%;
  }

  .mainContainer {
    padding-top: 30px;
  }

  .mobile-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1 {
    margin-bottom: 35px;
    font-size: 30px;
  }

  h1.titAbout {
    padding-left: 25px;
    background: url(../images/about/about_titicon.png) 0 5px no-repeat;
    background-size: 22px 22px;
  }

  h1.titProgram {
    padding-left: 25px;
    background: url(../images/program/program_titicon.png) 0 6px no-repeat;
    background-size: 20px 20px;
  }

  h1.titSpeaker {
    margin-bottom: 10px;
    padding-left: 25px;
    background: url(../images/speaker/speaker_titicon.png) 0 7px no-repeat;
    background-size: 20px 20px;
  }

  h1.titAccess {
    padding-left: 20px;
    background: url(../images/access/access_titicon.png) 0 5px no-repeat;
    background-size: 14px 22px;
  }

  h1.titTicket {
    padding-left: 30px;
    background: url(../images/ticket/ticket_titicon.png) 0 5px no-repeat;
    background-size: 25px 25px;
  }

  h1.titContact {
    padding-left: 30px;
    background: url(../images/contact/contact_titicon.png) 0 10px no-repeat;
    background-size: 23px 17px;
  }

  h1.titFaq {
    padding-left: 30px;
    background: url(../images/faq/faq_titicon.png) 0 7px no-repeat;
    background-size: 22px 23px;
  }

  h1.titArchive {
    padding-left: 30px;
    background: url(../images/archive/archive_titicon.png) 0 8px no-repeat;
    background-size: 21px 16px;
  }

  .gNavi li a,
  .gNavi li.end a {
    width: 50%;
  }

  .container,
  .mobile-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pagetop {
    margin: 30px 0 10px;
  }


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

.ms_bnr img,
.archiveArea img{
  width:100%;
  height:auto;
  }

  /* -------------------
  	gnavi
  ------------------- */
  #header .gNaviBg {
    display: none;
  }

  #header .mobileMenu,
  #closeMenu {
    display: block;
    float: right;
    padding: 8px 15px 7px 30px;
    font-family: "Myriad", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 100%;
    color: #000;
    line-height: 1em;
    text-decoration: none;
    background: #ffcc33 url(../images/cmn_heder_menuicon01.png) 14px 9px no-repeat;
    background-size: 11px 10px;
  }
  #header .mobileMenu:link, #header .mobileMenu:visited,
  #closeMenu:link,
  #closeMenu:visited {
    background-color: #ffcc33;
  }
  #header .mobileMenu:hover, #header .mobileMenu:active,
  #closeMenu:hover,
  #closeMenu:active {
    background-color: #ffe085;
  }

  #closeMenu {
    padding: 8px 15px 7px 28px;
    background: #ffcc33 url(../images/cmn_heder_menuicon02.png) 13px 9px no-repeat;
    background-size: 11px 10px;
  }

  #menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  #menu p {
    margin-bottom: 15px;
  }

  #menu p:after {
    content: "";
    display: block;
    clear: both;
  }

  #menu ul.mainNavi {
    width: 100%;
    margin-bottom: 7px;
    list-style: none;
    margin-bottom: 30px;
  }

  #menu ul.mainNavi li {
    margin-bottom: 1px;
  }

  #menu ul li:last-child {
    margin-bottom: 0;
  }

  #menu ul.mainNavi li a {
    display: block;
    width: 100%;
    padding: 15px 20px 15px 45px;
    font-family: "Myriad", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 108%;
    color: #fff;
    background-size: 20px 20px;
    background-position: 20px 18px;
    background-repeat: no-repeat;
    background-color: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
    border: none;
  }
  #menu ul.mainNavi li a:link, #menu ul.mainNavi li a:visited {
    background-color: #333;
  }
  #menu ul.mainNavi li a:hover, #menu ul.mainNavi li a:active {
    background-color: #005ca9;
  }
  #menu ul.mainNavi li a.current {
    background-color: #005ca9;
  }

  #menu ul li a.mNavi01 {
    background-image: url(../images/cmn_mobilenavi_icon01.png);
  }

  #menu ul li a.mNavi02 {
    background-image: url(../images/cmn_mobilenavi_icon02.png);
  }

  #menu ul li a.mNavi03 {
    background-image: url(../images/cmn_mobilenavi_icon03.png);
  }

  #menu ul li a.mNavi04 {
    background-image: url(../images/cmn_mobilenavi_icon04.png);
  }

  #menu ul li a.mNavi05 {
    background-image: url(../images/cmn_mobilenavi_icon05.png);
  }

  #menu ul li a.mNavi06 {
    background-image: url(../images/cmn_mobilenavi_icon06.png);
  }

  #menu .subNavi {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }

  #menu .subNavi li {
    display: inline;
    color: #fff;
  }

  #menu .subNavi li a {
    font-family: "Myriad", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 108%;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
  }

  #menu .homeBtn {
    width: 100%;
    padding: 10px 20px 3px;
    border: 1px #fff solid;
    text-align: center;
  }

  /* -------------------
  	side navi
  ------------------- */
  .twitter {
    display: none;
  }

  /* -------------------
  	footer
  ------------------- */
  small {
    float: none;
  }

  footer ul {
    float: none;
  }

  footer li {
    float: none;
    margin: 0;
  }

  /* -------------------
  	about page
  ------------------- */

  .titMidashiBig {
    margin-bottom: 15px;
    font-size: 116%;
  }

  #about #slider img {
    width: 100%;
  }

  #about #slider {
    height: 300px;
  }

  #about #slider li {
    height: 300px;
    overflow: hidden;
  }

  #about .outline dl {
    min-height: 100%;
    margin-bottom: 10px;
    padding: 130px 10px 25px;
    background-position: center 19px;
  }

  #about .outline dl.map,
  #about .outline dl.ticket {
    margin-top: 30px;
  }

  #about .outline dt {
    margin-bottom: 10px;
  }

  #about .outline dd.stit {
    margin-bottom: 0;
  }

  #about .uneiCol {
    min-height: 100%;
  }

  #about img.logoWD {
    width: 221.33333px;
  }

  #about img.logoCshool {
    width: 148px;
  }

  #about img.logoCshool {
    width: 160px;
  }

  #about img.logoKyushu {
    width: 220px;
  }

  #about img.logoItckyoto {
    width: 206.66667px;
  }

  #about img.logoCmex {
    width: 120px;
  }

  #about .logoBox {
    padding: 25px 20px 30px;
    background-color: #fff;
  }

  #about .logoBox .logoCol1 .txt {
    margin-top: 10px;
  }

  /* -------------------
  	program page
  ------------------- */

  #program .plate{
    background-color: #fff;
    padding:30px;
  }

  #program ul.speakerList dd {
    width: auto;
  }

  #program table tr {
    display: block;
    margin-bottom: 1.5em;
  }

  #program table,
  #program table th,
  #program table td {
    width: 100%;
    border: none;
  }

  #program table th {
    padding: 0;
    background: none;
    font-weight: bold;
  }

  #program table td {
    margin-bottom: 5px;
    display: list-item;
    list-style: none;
  }

  #program h2 {
    margin-bottom: 10px !important;
  }

  .programInfo .txt {
    margin-bottom: 15px;
  }

  #program ul.speakerList {
    padding-top: 15px;
    border-top: solid 1px #ccc;
    margin-left: 0;
  }

  #program .section.mg_b100 {
    margin-bottom: 50px !important;
  }

  #program ul.workList3col li {
    margin-bottom: 5px;
  }

  #program ul.workList3col li img,
  #program ul.workList3col li br {
    display: none;
  }

  /* -------------------
  	speaker page
  ------------------- */
  #speaker .speakerFace {
    text-align: center;
  }

  #speaker .speakerFace img {
    margin: 0 auto;
    width: 220px;
    height: 220px;
  }

  /* -------------------
  	access page
  ------------------- */
  #access #mapCanvas {
    width: 100%;
    height: 300px;
  }

  #access .access2Col {
    min-height: 100%;
  }

  /* -------------------
  	ticket page
  ------------------- */
  /*#ticket .kokuchi {
  	text-align: left;
  	padding: 20px;
  }
  
  #ticket .kokuchi dt {
  	margin-bottom: 15px;
  	line-height: 1.2em;
  }*/

  #ticket .ticketInfo_box dl{
  float: none;
  width: 100%;
}

#ticket .ticketInfo_box dl:first-child{
  margin-bottom: 1.5rem;
}

#ticket .ticketInfo_box dt{
  font-size: 1rem;
  line-height: 2;
  background-color: #c4c3c0;
  margin-bottom: 10px;
}

#ticket .ticketInfo_box dt.ad{
  color: #fff;
  background-color: #15afaa;
}

#ticket .ticketInfo_box dd{
  font-size: 1.1rem;
  padding-top: 0.8rem;
}

  #ticket .student {
    margin-left: 0;
  }

  #ticket .general {
    margin-bottom: 30px;
  }

  #ticket .order .general,
  #ticket .order .student {
    margin-bottom: 15px;
    padding: 20px 15px 15px;
    text-align: center;
  }
  #ticket .order .general dt,
  #ticket .order .student dt {
    float: none;
    margin: 0;
    padding: 55px 0 0;
    font-size: 24px;
    color: #005ca9;
  }
  #ticket .order .general dd,
  #ticket .order .student dd {
    float: none;
    margin-left: 0;
    padding: 10px 0 0 0;
    font-size: 40px;
    font-family: "Myriad", Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #000;
    background: none;
  }
  #ticket .order .general dd span,
  #ticket .order .student dd span {
    font-size: 20px;
  }

  #ticket .order .general dt {
    width: 100%;
    background: url(../images/ticket/ticket_icon_general.png) center top no-repeat !important;
    background-size: 32px 43px !important;
  }

  #ticket .order .student dt {
    background: url(../images/ticket/ticket_icon_student.png) center top no-repeat !important;
    background-size: 35px 43px !important;
  }

  #ticket ul.dotList {
    list-style: inherit;
    padding-left: 1.5em;
  }

  #ticket dd {
    margin-left: 0;
  }

  #ticket h3 {
    font-size: 138.5%;
  }

  /* -------------------
  	contact page
  ------------------- */
  #contact .telNum {
    margin-bottom: 50px;
  }

  /* -------------------
  	faq page
  ------------------- */
  #faq .faqList dt {
    padding: 5px 0 10px 45px;
    font-size: 116%;
    font-weight: bold;
    color: #000;
    background: url(../images/faq/faq_icon_q.png) 0 0 no-repeat;
  }

  #faq .faqList dd {
    margin: 0 0 50px 0;
    padding: 5px 0 0 45px;
    background: url(../images/faq/faq_icon_a.png) 0 0 no-repeat;
  }

  /* -------------------
  	archive page
  ------------------- */
  #archive .archiveList li {
    float: left;
    margin-bottom: 10px;
  }
  #archive .archiveList li:nth-child(1n) {
    margin-right: 10px;
  }
  #archive .archiveList li img {
    width: 70px;
    height: 70px;
  }
}
/* End Mobile Media Query */
/* ==========================================================================

	top.scss

============================================================================= */
/* -------------------
	header
------------------- */
#top ul.sinsetsuNavi {
  margin-bottom: 85px;
}

#top #header {
  background: #f4f3ed url(../images/top/top_mainpic.png) no-repeat center top;
}

.header-top {
  height: 740px;
}

.nav {
  font-size: 0.75rem;
}

.nav ul li {
  display: inline-block;
}

#top h1 {
  margin-bottom: 25px;
}

#top h1 img {
  width: 460px;
}

.titleArea {
  position: relative;
  width: 470px;
  float: right;
  clear: both;
  margin-top: 20px;
  text-align: center;
}

.ms_bnr{
  margin-top:556px;
}



#top .date img,
#top .ticket_infoArea img{
  width: 460px;
}

.date {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 30px;
  color: #FFF;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.date span {
  font-size: 15px;
  padding: 0 2px;
  letter-spacing: 0.05em;
}

.cicketBtnArea, .archiveArea {
  margin-bottom: 15px;
  padding: 10px 10px 15px;
  background: rgba(255, 255, 255, 0.15);
}

.archiveArea {
  padding: 10px;
}

.cicketBtnArea .price {
  margin-bottom: 10px;
  color: #fff;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 100%;
  letter-spacing: 0.2em;
}
.cicketBtnArea .price strong {
  font-size: 115%;
}

.cicketBtnArea .button {
  font-size: 116%;
  font-weight: bold;
  color: #fff;
}

#top .snsBtn {
  margin: 0 auto 30px;
  width: 375px;
}

#top .snsBtn li {
  float: left;
  margin-right: 5px;
  overflow: hidden;
}

#top .snsBtn li.tweet {
  width: 107px !important;
}

#top .snsBtn li.hatena {
  width: 65px !important;
}

#top .snsBtn li.facebook_like {
  width: 112px !important;
}

#top .snsBtn li.google_plusone {
  width: 74px !important;
  margin-right: 0;
}

/* -------------------
	contents
------------------- */
#top .mainContainer {
  padding-top: 50px;
}

#top h2 {
  font-size: 40px;
  color: #005ca9;
  text-align: left;
}

#top h2.titSpeak,
#top h2.titInsta,
#top h2.titAbout {
  margin-bottom: 45px;
}

#top h2.titSpeak {
  margin-bottom: 20px;
  padding: 5px 0 10px 45px;
  background: url(../images/top/top_icon01.png) no-repeat 0 5px;
}

#top h2.titInsta {
  margin-bottom: 37px;
  padding: 8px 0 15px 45px;
  background: url(../images/top/top_icon02.png) no-repeat 0 2px;
}

#top h2.titAbout {
  margin-bottom: 42px;
  padding: 8px 0 10px 45px;
  background: url(../images/top/top_icon03.png) no-repeat 0 7px;
}

#top #speaker {
  text-align: center;
}

#top ul.speakerList {
  margin-bottom: 40px;
  padding-left: 0;
  list-style: none;
}

#top ul.speakerList li {
  float: left;
  line-height: 0;
  margin-top: 10px;
  margin-right: 15px;
}

#top ul.speakerList li:nth-child(3n){
  margin-right: 0px;
}


#top ul.speakerList li img {
  width: 303px;
}

#top ul.instaLogo {
  padding: 0;
  margin: 0;
}

#top ul.instaLogo li {
  width: 224px;
}

#top #slider {
  position: relative;
}

#top #slider li {
  position: absolute;
}

#top ul.instaLogo li,
#top ul.uneiLogo li,
#top ul.sponsorLogo li {
  display: table;
  text-align: center;
  background: #fff;
  margin-left: 0;
  margin-bottom: 10px;
  border: solid 2px;
}

#top ul.instaLogo li:nth-child(2n),
#top ul.uneiLogo li:nth-child(2n) {
  margin-left: 12px;
}

#top ul.sponsorLogo li {
  margin-left: 12px;
}
#top ul.sponsorLogo li:nth-child(1),
#top ul.sponsorLogo li:nth-child(4n+1) {
  margin-left: 0;
}

#top ul.instaLogo li p,
#top ul.uneiLogo li p,
#top ul.sponsorLogo li p {
  display: table-cell;
  vertical-align: middle;
  height: 70px;
  padding-top: 10px;
}

#top ul.uneiLogo li p {
  height: 95px;
}

#top ul.sponsorLogo li p {
  height: 65px;
}

.titMidashi {
  margin-bottom: 15px;
  font-size: 116%;
  font-weight: bold;
  color: #000;
}

#top h3 {
  margin-bottom: 25px;
  font-size: 138.5%;
  font-weight: bold;
  color: #000;
}

  .about_bg{
    background: url(../images/top/about_bg.png) 557px 667px no-repeat;
  }

/* -------------------
	side navi
------------------- */
.bnrblog img {
  width: 100%;
}

#sideArea .twitter {
  margin-bottom: 20px;
  padding: 20px 20px 15px;
  background-color: #fff;
}

#sideArea .twitter .twitterTit {
  margin: 0 0 10px -3px;
  padding-left: 33px;
  background: url(../images/top/top_side_icon_twitter.png) 0 1px no-repeat;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 131%;
  color: #000;
}

/* ==========================================================================
/* -- Tablet Devices (Layout, Modifications, etc)
   ========================================================================== */
@media only screen and (min-width: 740px) and (max-width: 999px) {
  #top ul.speakerList {
    width: 626px;
    margin: 0 auto 40px;
  }

  #top .gNavi li a {
    width: 115px;
  }

  #top .gNavi li.end a {
    width: 125px;
  }

  #top ul.sponsorLogo li {
    width: 226px;
    margin-left: 0;
  }

  #top ul.instaLogo li:nth-child(2n),
  #top ul.uneiLogo li:nth-child(2n) {
    margin-left: 0;
  }

  #top ul.speakerList li,
  #top ul.speakerList li:nth-child(3) {
    float: left;
    line-height: 0;
    margin-top: 20px;
    margin-right: 20px;
  }

  #top ul.speakerList li:nth-child(even){
    margin-right: 0px;
  }

  #top ul.sponsorLogo li:nth-child(2n) {
    margin-left: 9px;
  }

  /* -------------------
    about
  ------------------- */
  #about .outline dl.cal {
    background-image: url(../images/about/about_icon_cal.png);
    height: 435px;
  }

  #about .outline dl.map {
    background-image: url(../images/about/about_icon_map.png);
    height:435px;
  }


}
/* End Tablet Media Query */
/* ==========================================================================
/* -- Mobile Devices (Layout, Modifications, etc)
   ========================================================================== */
@media only screen and (max-width: 739px) {

  #top #header {
    background-image: none;
    height: auto;
    padding-bottom: 20px;
  }

  #top .header-top {
    height: auto;
  }

  #top .titleArea {
    width: 100%;
    float: none;
    margin-top: 55px;
    text-align: center;
  }

    #top .date,
    #top .ticket_infoArea {
    width: 100%;
    float: none;
    text-align: center;
  }

  #top h1 {
    margin-top: 50px;
    margin-bottom: 15px;
  }
  #top h1 img,
  #top .date img,
  #top .ticket_infoArea img {
    width: 100%;
  }

  #top .cicketBtnArea {
    margin-bottom: 20px;
  }

  #top .cicketBtnArea .price {
    letter-spacing: 0.05em;
    line-height: 1.2em;
  }

  #top .price span {
    display: block;
    line-height: 1.7em;
  }

  #top .snsBtn {
    width: auto;
    margin-bottom: 20px;
  }

  #top .snsBtn li {
    margin-bottom: 0;
  }

  #top .snsBtn li:nth-child(3) {
    clear: both;
  }

  .imgSizeFull {
    width: 100%;
  }

  #top h2 {
    font-size: 30px;
  }

  #top ul.instaLogo li {
    width: 100%;
  }

  #top ul.speakerList {
    width: 100%;
    margin: 0 auto 40px;
  }

  #top ul.speakerList li,
  #top ul.speakerList li:nth-child(3n) {
    margin-right: 0px;
  }

  #top ul.speakerList li img {
    width: 100%;
    height: auto;
  }

  #top ul.instaLogo li:nth-child(2n),
  #top ul.uneiLogo li:nth-child(2n) {
    margin-left: 0;
  }

  #top ul.sponsorLogo li {
    margin-left: 0%;
  }
  #top ul.sponsorLogo li:nth-child(2n) {
    margin-left: 5px;
  }

  #about .mg_b80{
    margin-bottom: 30px !important;
  }


  /* -------------------
  	side navi
  ------------------- */
  #top .twitter {
    display: none;
  }

  /* -------------------
    about
  ------------------- */
  #about .outline dl.cal {
    background-image: url(../images/about/about_icon_cal.png);
    height: auto;
  }

  #about .outline dl.map {
    background-image: url(../images/about/about_icon_map.png);
    height:auto;
  }

  #about #slider {
    height: 202px;
  }

  #about #slider li {
    height: 202px;
    overflow: hidden;
  }

  /* -------------------
    program
  ------------------- */
  .prg {
  background-color: #fff;
  padding: 30px 30px 30px 30px;
  position: relative;
  border-radius: 1em;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  -o-border-radius: 1em;
  -ms-border-radius: 1em;
  }
  /* -------------------
    speaker
  ------------------- */
  #speaker .speakerName {
  float: none;
  font-size: 24px;
  text-align: center;
  margin-left: 0px;
  margin-right: 15px;
  margin-bottom: 4px;
}

#speaker .yomiTxt {
  text-align: center;
  float: none;
  margin-top: 3px;
  font-family: "Myriad", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 70%;
  letter-spacing: 0.2em;
  color: #999;
}

#speaker .companyTxt {
  text-align: center;
  clear: both;
  margin-left: 0px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 4px solid #005ca9;
}

#speaker .profileTxt {
  margin-left: 0px;
  margin-bottom: 15px;
}

#speaker .logoImg{
  padding: 0;
}

#speaker .logoImg a {
  text-align: center;
  padding-left: 0px;
  background-color: #fff;
  line-height: 1em;
  height: auto;
  display: inline-block;
}

#speaker .button{
  margin: 0;
}

.txtFin{
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #dd4b4b;
  padding-top: 0px;
}

.pd_tb90{
  padding: 20px 0 !important;
}



}
/* End Mobile Media Query */
