@charset "UTF-8";
/* CSS Document */
/* Fonts
------------------------------------------------------------*/
html {
  min-width: 1100px;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  position: relative;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  background-color: #f5f5f5;
}
body a {
  color: #03A9F4;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
body a:hover {
  text-decoration: underline;
}
body a img {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
body a img:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
body img {
  max-width: 100%;
  height: auto;
}
body .wrap {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body ::selection {
  background: rgba(3, 169, 244, 0.2);
  /* Safari */
}
body ::-moz-selection {
  background: rgba(3, 169, 244, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  background: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #f5f5f5), color-stop(0, #FFF));
  background: -webkit-linear-gradient(#FFF, #f5f5f5);
  background: -moz-linear-gradient(#FFF, #f5f5f5);
  background: -o-linear-gradient(#FFF, #f5f5f5);
  background: -ms-linear-gradient(#FFF, #f5f5f5);
  background: linear-gradient(#FFF, #f5f5f5);
  padding: 10px 0;
  z-index: 10;
  -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}
header #logo {
  line-height: 0;
  padding-left: 30px;
  float: left;
}
header nav {
  float: right;
  padding-right: 30px;
}
header nav p {
  text-align: right;
  font-size: 13px;
}
header nav ul {
  padding-top: 10px;
}
header nav li {
  float: left;
  margin-left: 20px;
}
header nav li a {
  color: #333333;
  background: no-repeat left center;
  padding: 3px 0 3px 20px;
}
header nav li.logout a {
  background-image: url(../img/icon-logout.png);
}
header nav li.admin a {
  background-image: url(../img/icon-admin.png);
}
header nav li.mypage a {
  background-image: url(../img/icon-mypage.png);
}
header nav li.howto a {
  background-image: url(../img/icon-howto.png);
}
header nav li.link a {
  background-image: url(../img/icon-link.png);
}

/* Side bar
------------------------------------------------------------*/
#side {
  background-color: #FFF;
  width: 280px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 9;
}
#side nav {
  padding-top: 71px;
}
#side nav ul {
  padding: 30px 0;
}
#side nav ul li a, #side nav ul li span {
  padding: 15px 0 15px 90px;
  display: block;
  background: no-repeat 55px center;
  font-size: 16px;
  color: #333333;
  position: relative;
}
#side nav ul li a:before, #side nav ul li span:before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  /*background: #ee7800;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #6a082c), color-stop(0, #ee7800));
  background: -webkit-linear-gradient(#ee7800, #6a082c);
  background: -moz-linear-gradient(#ee7800, #6a082c);
  background: -o-linear-gradient(#ee7800, #6a082c);
  background: -ms-linear-gradient(#ee7800, #6a082c);
  background: linear-gradient(#ee7800, #6a082c);*/
  background: #ffa84c;
  background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); 
  background: -webkit-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); 
  background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa84c', endColorstr='#ff7b0d',GradientType=0 );
  position: absolute;
  left: 0;
  top: 0;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#side nav ul li a:hover, #side nav ul li span:hover {
  color: #ee7800;
  text-decoration: none;
}
#side nav ul li a:hover:before, #side nav ul li span:hover:before {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
#side nav ul li span {
  color: #999999;
  position: relative;
}
#side nav ul li span:hover {
  color: #999999;
}
#side nav ul li span:hover .hidden {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  width: auto;
  height: auto;
  visibility: visible;
}
#side nav ul li span .hidden {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
  color: #333333;
  font-size: 13px;
  line-height: 1.2;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 8px;
  background-color: #FFF;
  border: 1px solid #cacfd4;
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
#side nav ul li span .hidden:after, #side nav ul li span .hidden:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#side nav ul li span .hidden:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #ffffff;
  border-width: 6px;
  margin-top: -6px;
}
#side nav ul li span .hidden:before {
  border-color: rgba(202, 207, 212, 0);
  border-right-color: #cacfd4;
  border-width: 7px;
  margin-top: -7px;
}
#side nav ul li.current a:before {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
#side nav ul li.notification a {
  background-image: url(../img/icon-notification.png);
}
#side nav ul li.video a, #side nav ul li.video span {
  background-image: url(../img/icon-video.png);
}
#side nav ul li.order a {
  background-image: url(../img/icon-order.png);
}
#side nav ul li.download a {
  background-image: url(../img/icon-sheet.png);
}
#side nav ul li.faq a {
  background-image: url(../img/icon-faq.png);
}
#side nav ul li.link a {
  background-image: url(../img/icon-link.png);
}
#side nav ul li.note a {
  background-image: url(../img/icon-note.png);
}
#side .btn a {
  font-size: 16px;
  -moz-border-radius: 25px 25px 25px 25px;
  -o-border-radius: 25px 25px 25px 25px;
  -webkit-border-radius: 25px 25px 25px 25px;
  border-radius: 25px 25px 25px 25px;
  width: 160px;
}
#side .btn a:before {
  content: "";
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(../img/icon-ancate.png) no-repeat;
  vertical-align: middle;
}
#side .banner {
  text-align: center;
  line-height: 0;
  margin-bottom: 30px;
}

/* container
------------------------------------------------------------*/
#container {
  padding: 71px 0 0 280px;
}
#container #contents {
  padding: 30px 45px;
  min-height: 800px;
}
#container #contents:after {
  clear: both;
  display: block;
  content: '';
}
#container #banner-area {
  padding: 30px 45px;
  background: #FFF url(../img/bg-banner.jpg);
  letter-spacing: -.4em;
  text-align: center;
}
#container #banner-area p {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  border: 1px solid #cacfd4;
  line-height: 0;
  margin: 0 20px;
}
#container .title1 {
  padding: 8px 20px 5px;
  font-size: 20px;
  border-bottom: 3px solid #f9daba;
  position: relative;
  line-height: 1.2;
}
#container .title1:after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: #ee7800;
}
#container .title2 {
  text-align: center;
  font-size: 26px;
  padding-bottom: 40px;
}
#container .title2 .title {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  border-bottom: 2px solid #ee7800;
}
#container .title2 .text {
  padding-top: 10px;
  font-size: 14px;
}
#container .title3 {
  font-size: 20px;
  padding-bottom: 10px;
}
#container .text-list {
  padding: 0 10px;
}
#container .text-list li {
  padding: 15px 10px;
  border-bottom: 1px solid #cacfd4;
  /* .iframe{
    clear: both;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 10px;
    iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important;
    }
  } */
}
#container .text-list li:after {
  clear: both;
  display: block;
  content: '';
}
#container .text-list li:last-child {
  border-bottom: none;
}
#container .text-list li .date {
  /*float: left; 動画タクソノミー非表示対応*/
  float:none;
  margin-right: 10px;
}
#container .text-list li .cat a {
  padding: 2px 10px;
  line-height: 1.1;
  background-color: #399820;
  -moz-border-radius: 6px 6px 6px 6px;
  -o-border-radius: 6px 6px 6px 6px;
  -webkit-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  color: #FFF;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container .text-list li .cat a:hover {
  text-decoration: none;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
#container .text-list li .cat.information a {
  background-color: #399820;
}
#container .text-list li .cat.movie a {
  background-color: #ff5722;
}
#container .text-list li .text {
  clear: both;
  font-size: 15px;
  padding-top: 10px;
}
#container .text-list li .text a {
  color: #333333;
}
#container .text-list li .video {
  padding-top: 20px;
  text-align: center;
}
#container .text-list li .title {
  text-align: center;
  padding-top: 10px;
  clear: both;
  font-size: 15px;
  padding-top: 10px;
}
#container .text-list li .title a {
  color: #333333;
}
#container .text-list li .video-title {
  font-size: 17px;
  padding-top: 10px;
}
#container .text-list li .video-title a {
  color: #333333;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  background: url(../img/icon-video.png) no-repeat left center;
  padding: 5px 0 5px 35px;
}

/* padding & margin */
.pd {
  padding: 25px;
}

.pt {
  padding-top: 25px;
}

.pb {
  padding-bottom: 25px;
}

.mg {
  margin: 25px;
}

.mt {
  margin-top: 25px;
}

.mb {
  margin-bottom: 25px;
}

.nomb {
  margin-bottom: 0 !important;
}

/* btn */
.btn, .submit, .form-submit {
  text-align: center;
}
.btn a, .btn input, .submit a, .submit input, .form-submit a, .form-submit input {
  cursor: pointer;
  outline: none;
  padding: 12px 20px;
  min-width: 120px;
  text-align: center;
  font-size: 14px;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-weight: bold;
  line-height: 1.2;
  border: none;
  /*
  background-color: #ee7800;
  background: #ee7800;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #6a082c), color-stop(0, #ee7800));
  background: -webkit-linear-gradient(#ee7800, #6a082c);
  background: -moz-linear-gradient(#ee7800, #6a082c);
  background: -o-linear-gradient(#ee7800, #6a082c);
  background: -ms-linear-gradient(#ee7800, #6a082c);
  background: linear-gradient(#ee7800, #6a082c);*/
  background: #ffa84c;
  background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); 
  background: -webkit-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); 
  background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa84c', endColorstr='#ff7b0d',GradientType=0 );
  color: #FFF;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -moz-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  position: relative;
}
.btn a.margin, .btn input.margin, .submit a.margin, .submit input.margin, .form-submit a.margin, .form-submit input.margin {
  margin: 0 10px;
}
.btn a:hover, .btn input:hover, .submit a:hover, .submit input:hover, .form-submit a:hover, .form-submit input:hover {
  text-decoration: none;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
.btn a:active, .btn input:active, .submit a:active, .submit input:active, .form-submit a:active, .form-submit input:active {
  top: 2px;
}
.btn a.gray, .btn input.gray, .submit a.gray, .submit input.gray, .form-submit a.gray, .form-submit input.gray {
  background-color: #dddddd;
}
.btn a.gray:hover, .btn input.gray:hover, .submit a.gray:hover, .submit input.gray:hover, .form-submit a.gray:hover, .form-submit input.gray:hover {
  background-color: #c4c4c4;
}
.btn.white a, .submit.white a, .form-submit.white a {
  background-color: #FFF;
  color: #37474f;
}
.btn.white a:hover, .submit.white a:hover, .form-submit.white a:hover {
  background-color: #607d8b;
  color: #FFF;
}

button {
  cursor: pointer;
  outline: none;
  padding: 12px 20px;
  min-width: 120px;
  text-align: center;
  font-size: 14px;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-weight: bold;
  line-height: 1.2;
  border: none;
  background-color: #37474f;
  color: #FFF;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -moz-border-radius: 6px 6px 6px 6px;
  -o-border-radius: 6px 6px 6px 6px;
  -webkit-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  position: relative;
}
button.margin {
  margin: 0 10px;
}
button:hover {
  text-decoration: none;
  background-color: #607d8b;
}
button:active {
  top: 2px;
}
button.gray {
  background-color: #dddddd;
}
button.gray:hover {
  background-color: #c4c4c4;
}

/* btn */
/* form */
select, .customSelect {
  -webkit-appearance: none;
  height: 40px;
  line-height: 40px;
  min-width: 285px;
  width: auto;
  padding: 0 0 0 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #cacfd4;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  background-position: right center;
  background: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #FAFAFA), color-stop(0, #FFF));
  background: -webkit-linear-gradient(#FFF, #FAFAFA);
  background: -moz-linear-gradient(#FFF, #FAFAFA);
  background: -o-linear-gradient(#FFF, #FAFAFA);
  background: -ms-linear-gradient(#FFF, #FAFAFA);
  background: linear-gradient(#FFF, #FAFAFA);
  cursor: pointer;
  font-size: 14px;
  position: relative;
}
select.hasCustomSelect, .customSelect.hasCustomSelect {
  z-index: 2;
}
select:after, .customSelect:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #ee7800 transparent transparent transparent;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -3px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
select.customSelectHover, .customSelect.customSelectHover {
  color: #ee7800;
  -moz-box-shadow: 0 0 6px 0 #EEE;
  -ms-box-shadow: 0 0 6px 0 #EEE;
  -o-box-shadow: 0 0 6px 0 #EEE;
  -webkit-box-shadow: 0 0 6px 0 #EEE;
  box-shadow: 0 0 6px 0 #EEE;
}
select.customSelectHover:after, .customSelect.customSelectHover:after {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
select.small, .customSelect.small {
  min-width: 100px;
  height: 34px;
  line-height: 34px;
}
select option, .customSelect option {
  padding: 8px;
  border: none;
}

.check-box {
  text-align: left;
}
.check-box p {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  margin: 0 10px 0 0;
}
.check-box p label {
  cursor: pointer;
}
.check-box p label .icheckbox_flat-red {
  margin-right: 0.5em;
}

.radio-box {
  text-align: left;
}
.radio-box p {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  margin: 0 10px 0 0;
}
.radio-box p label {
  cursor: pointer;
}
.radio-box p label:hover .iradio_flat-blue {
  -moz-box-shadow: 0 0 6px 0 #EEE;
  -ms-box-shadow: 0 0 6px 0 #EEE;
  -o-box-shadow: 0 0 6px 0 #EEE;
  -webkit-box-shadow: 0 0 6px 0 #EEE;
  box-shadow: 0 0 6px 0 #EEE;
}
.radio-box p label .iradio_flat-blue {
  margin-right: 0.5em;
  -webkit-transition: box-shadow 0.3s;
  -moz-transition: box-shadow 0.3s;
  -ms-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  -moz-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"] {
  min-width: 240px;
  padding-left: 5px;
  max-width: 100%;
  -moz-border-radius: 2px 2px 2px 2px;
  -o-border-radius: 2px 2px 2px 2px;
  -webkit-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
  -webkit-appearance: none;
  border: 1px solid #cacfd4;
  background: #FFF;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #FFF), color-stop(100%, #FAFAFA));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* W3C */
  height: 38px;
  font-size: 14px;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="date"]:focus {
  background: #FFF;
  border-color: #ee7800;
  -moz-box-shadow: 0 0 6px 0 #EEE;
  -ms-box-shadow: 0 0 6px 0 #EEE;
  -o-box-shadow: 0 0 6px 0 #EEE;
  -webkit-box-shadow: 0 0 6px 0 #EEE;
  box-shadow: 0 0 6px 0 #EEE;
}
input[type="text"]:hover, input[type="password"]:hover, input[type="email"]:hover, input[type="tel"]:hover, input[type="number"]:hover, input[type="date"]:hover {
  -moz-box-shadow: 0 0 6px 0 #EEE;
  -ms-box-shadow: 0 0 6px 0 #EEE;
  -o-box-shadow: 0 0 6px 0 #EEE;
  -webkit-box-shadow: 0 0 6px 0 #EEE;
  box-shadow: 0 0 6px 0 #EEE;
}
input[type="text"].small, input[type="password"].small, input[type="email"].small, input[type="tel"].small, input[type="number"].small, input[type="date"].small {
  width: 100px;
  min-width: 100px;
}
input[type="text"].wpcf7c-conf, input[type="password"].wpcf7c-conf, input[type="email"].wpcf7c-conf, input[type="tel"].wpcf7c-conf, input[type="number"].wpcf7c-conf, input[type="date"].wpcf7c-conf {
  background: #FFF;
  border: none;
}

input[type="number"] {
  min-width: 0;
  max-width: 60px;
  text-align: center;
}

input.time-input {
  max-width: 100px;
  min-width: 0;
  text-align: center;
}

textarea {
  width: 500px;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  -webkit-appearance: none;
  border: 1px solid #cacfd4;
  background-color: #FFF;
  background: #FFF;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #FFF), color-stop(100%, #FAFAFA));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #FFF 0%, #FAFAFA 100%);
  /* W3C */
  height: 130px;
  font-size: 14px;
  outline: none;
  resize: vertical;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: auto;
}
textarea:focus {
  border-color: #ee7800;
  background: #FFF;
  -moz-box-shadow: 0 0 6px 0 #EEE;
  -ms-box-shadow: 0 0 6px 0 #EEE;
  -o-box-shadow: 0 0 6px 0 #EEE;
  -webkit-box-shadow: 0 0 6px 0 #EEE;
  box-shadow: 0 0 6px 0 #EEE;
}
textarea:hover {
  -moz-box-shadow: 0 0 6px 0 #EEE;
  -ms-box-shadow: 0 0 6px 0 #EEE;
  -o-box-shadow: 0 0 6px 0 #EEE;
  -webkit-box-shadow: 0 0 6px 0 #EEE;
  box-shadow: 0 0 6px 0 #EEE;
}
textarea.wpcf7c-conf {
  background: #FFF;
  border: none;
}

/* form */
/* table */
.tbl table {
  width: 100%;
}
.tbl table thead th {
  padding: 15px;
  font-weight: bold;
  text-align: center;
  background-color: #607D8B;
  color: #FFF;
}
.tbl table tbody th, .tbl table tbody td {
  padding: 15px 12px;
  border: 1px solid #cacfd4;
}
.tbl table tbody th {
  background-color: #f5f5f5;
}

table.blank th, table.blank td {
  padding: 10px;
}
table.blank th {
  font-weight: bold;
  vertical-align: top;
}

/* table */
/* rayout */
.list1 li {
  padding-left: 20px;
  position: relative;
  padding-bottom: 10px;
}
.list1 li:last-child {
  padding-bottom: 0;
}
.list1 li:before {
  content: "\0030fb";
  color: #37474f;
  position: absolute;
  left: 0;
  top: 0;
}
.list1 li a {
  color: #333333;
}
.list1 li.current a {
  font-weight: bold;
  color: #37474f;
}
.list1 li.current a:before {
  color: #37474f;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.w100 {
  width: 100%;
}

.w600 {
  width: 600px;
}

.red {
  color: #ee7800;
}

strong {
  font-weight: bold;
}

a.pdf:after {
  content: "";
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 9px;
  height: 13px;
  background: url(../img/icon-pdf.svg);
  vertical-align: middle;
  margin-left: 10px;
}

/* rayout */
/* footer
------------------------------------------------------------*/
footer {
  background-color: #ee7800;
  padding: 20px 30px;
  color: #FFF;
  z-index: 10;
  position: relative;
}
footer:after {
  clear: both;
  display: block;
  content: '';
}
footer #pagetop {
  position: absolute;
  width: 140px;
  right: 30px;
  top: -18px;
  line-height: 36px;
  text-align: center;
}
footer #pagetop a {
  background-color: #ee7800;
  color: #FFF;
  display: block;
  -moz-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  font-weight: bold;
}
footer #pagetop a:before {
  content: "";
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../img/icon-pagetop.png) no-repeat;
}
footer a {
  color: #FFF;
}
footer nav {
  float: left;
}
footer nav ul li {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  margin-right: 20px;
}
footer nav ul li a {
  text-decoration: underline;
}
footer address {
  float: right;
  font-size: 13px;
}

/* container top
------------------------------------------------------------*/
#container.top #links {
  background: #ee7800;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #6a082c), color-stop(0, #ee7800));
  background: -webkit-linear-gradient(#ee7800, #6a082c);
  background: -moz-linear-gradient(#ee7800, #6a082c);
  background: -o-linear-gradient(#ee7800, #6a082c);
  background: -ms-linear-gradient(#ee7800, #6a082c);
  background: linear-gradient(#ee7800, #6a082c);
}
#container.top #links ul {
  padding: 40px 15px;
  letter-spacing: -.4em;
  text-align: center;
}
#container.top #links ul li {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  letter-spacing: normal;
  min-width: 280px;
  width: 30%;
  margin: 0 1.5%;
  text-align: center;
}
#container.top #links ul li > a {
  display: block;
  background: #FFF url(../img/icon-order-big.png) no-repeat center 30px;
  height: 97px;
  padding: 105px 20px 20px;
  color: #333333;
  border: 3px solid #cacfd4;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container.top #links ul li > a:hover {
  text-decoration: none;
  border-color: #fdd9de;
}
#container.top #links ul li > a .title {
  font-size: 30px;
  padding-bottom: 10px;
}
#container.top #links ul li.order a {
  background-image: url(../img/icon-order-big.png);
}
#container.top #links ul li.download a {
  background-image: url(../img/icon-sheet-big.png);
}
#container.top #links ul li.ancate a {
  background-image: url(../img/icon-ancate-big.png);
}
#container.top #contents:after {
  clear: both;
  display: block;
  content: '';
}
#container.top #news {
  background: #FFF;
  width: 48%;
  float: left;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.top #video, #container.top #blog {
  background: #FFF;
  width: 48%;
  float: right;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.top #instagram {
  background: #FFF;
  width: 48%;
  float: right;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.top #instagram .gallery{
    padding:20px;
}
#container.top #banner {
  clear: both;
  padding-top: 40px;
  text-align: center;
}

/* container next
------------------------------------------------------------*/
#container.next .wp-post ul {
  padding-left: 1.5em;
  padding-bottom: 25px;
}
#container.next .wp-post ul li {
  list-style-type: disc;
}
#container.next .wp-post ol {
  padding-left: 1.5em;
  padding-bottom: 25px;
}
#container.next .wp-post ol li {
  list-style-type: decimal;
}
#container.next .wp-post strong {
  font-weight: bold;
}
#container.next .wp-post em {
  font-style: italic;
}
#container.next .wp-post del {
  text-decoration: line-through;
  color: red;
}
#container.next .wp-post blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
#container.next .wp-post h5 {
  font-size: 1.1em;
  padding-bottom: 25px;
}
#container.next .wp-post h4 {
  font-size: 1.2em;
  padding-bottom: 25px;
}
#container.next .wp-post h3 {
  color: #333;
  background-color: inherit;
  font-size: 1.3em;
  padding: 0;
  padding-bottom: 25px;
}
#container.next .wp-post h2 {
  font-size: 1.4em;
  padding-bottom: 25px;
}
#container.next .wp-post h1 {
  font-size: 1.5em;
  padding-bottom: 25px;
}
#container.next .wp-post .aligncenter {
  text-align: center;
}
#container.next .wp-post .alignleft {
  text-align: left;
}
#container.next .wp-post .alignright {
  text-align: right;
}
#container.next .wp-post img.aligncenter {
  display: block;
  margin: 0px auto;
}
#container.next .wp-post img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
#container.next .wp-post p {
  padding-bottom: 25px;
}
#container.next #breadcrumb {
  /*background: #ee7800;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #6a082c), color-stop(0, #ee7800));
  background: -webkit-linear-gradient(#ee7800, #6a082c);
  background: -moz-linear-gradient(#ee7800, #6a082c);
  background: -o-linear-gradient(#ee7800, #6a082c);
  background: -ms-linear-gradient(#ee7800, #6a082c);
  background: linear-gradient(#ee7800, #6a082c);*/
  background: #ffa84c;
  background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); 
  background: -webkit-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); 
  background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa84c', endColorstr='#ff7b0d',GradientType=0 );
}
#container.next #breadcrumb ul {
  padding: 5px 45px;
}
#container.next #breadcrumb ul:after {
  clear: both;
  display: block;
  content: '';
}
#container.next #breadcrumb ul li {
  float: left;
  color: #FFF;
  margin-right: 10px;
  font-size: 13px;
}
#container.next #breadcrumb ul li:before {
  content: "";
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  width: 7px;
  height: 12px;
  background: url(../img/arrow-bread.png) no-repeat;
  margin-right: 7px;
}
#container.next #breadcrumb ul li.home {
  padding-top: 2px;
}
#container.next #breadcrumb ul li.home:before {
  display: none;
}
#container.next #breadcrumb ul li a {
  color: #FFF;
}
#container.next .head-title {
  text-align: center;
  font-size: 34px;
  line-height: 1.1;
  font-weight: normal;
  padding-bottom: 30px;
}
#container.next .contents-box {
  padding: 30px;
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.next .contents-box table {
  min-width: 700px;
  margin: 0 auto;
  margin-bottom: 30px;
}
#container.next .contents-box table th, #container.next .contents-box table td {
  padding: 15px;
  border: 1px solid #cacfd4;
}
#container.next .contents-box table th {
  background-color: #e6e6e6;
  color: #333;
  font-weight: bold;
}
#container.next .contents-box table th small {
  color: #999999;
}
#container.next .contents-box table td {
  padding: 15px;
}
#container.next .contents-box table td input {
  width: 100%;
}
#container.next .contents-box table td input.w200 {
  width: 200px;
  min-width: 0;
}
#container.next .contents-box table td table {
  width: 100%;
}
#container.next .contents-box table td table th, #container.next .contents-box table td table td {
  padding: 5px 10px;
  border: none;
  background-color: transparent;
}
#container.next .contents-box table td table th {
  width: 70px;
}
#container.next .contents-box .message {
  text-align: center;
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
#container.next #c-side {
  float: left;
  width: 200px;
  margin-right: -240px;
  z-index: 2;
  position: relative;
}
#container.next #c-side .title1 {
  font-size: 18px;
  padding-left: 10px;
}
#container.next #c-side .title1:after {
  width: 80px;
}
#container.next #c-side .title1.small {
  font-size: 15px;
}
#container.next #c-side .side-box {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.next #c-side .side-box .link {
  padding: 0 10px 10px;
  text-align: right;
}
#container.next #c-side .side-box .link a {
  color: #ee7800;
}
#container.next #c-main {
  float: right;
  width: 100%;
}
#container.next #c-main .c-content {
  margin-left: 240px;
}

#container.video #c-main .c-content {
  margin-left: 0px;
}

#container.next .pagenation {
  padding-top: 30px;
}
#container.next .pagenation .wp-pagenavi {
  text-align: right;
  letter-spacing: -.4em;
  line-height: 1;
  color: #ee7800;
}
#container.next .pagenation .wp-pagenavi span {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  letter-spacing: normal;
  padding: 7px 9px;
  border: 1px solid transparent;
  margin-left: 5px;
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
#container.next .pagenation .wp-pagenavi span.current {
  background-color: #ee7800;
  border-color: #ee7800;
  color: #FFF;
}
#container.next .pagenation .wp-pagenavi a {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  vertical-align: top;
  letter-spacing: normal;
  padding: 7px 9px;
  margin-left: 5px;
  border: 1px solid #ee7800;
  color: #ee7800;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FFF;
}
#container.next .pagenation .wp-pagenavi a:hover {
  text-decoration: none;
  background-color: #ee7800;
  color: #FFF;
}
#container.next .cat-list {
  padding: 15px 10px;
}
#container.next .cat-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
#container.next .cat-list li:last-child {
  margin-bottom: 0;
}
#container.next .cat-list li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  -moz-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  background-color: #399820;
}
#container.next .cat-list li.information:before {
  background-color: #399820;
}
#container.next .cat-list li.movie:before {
  background-color: #ff5722;
}
#container.next .cat-list li a {
  color: #333333;
}
#container.next #comments-box {
  padding-top: 20px;
}
#container.next #comments-box .comments-count {
  border-bottom: 1px solid #ee7800;
  margin-bottom: 10px;
}
#container.next #comments-box .comments-list li {
  padding: 15px;
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  margin-bottom: 10px;
}
#container.next #comments-box .comments-list li .comment-author {
  float: left;
}
#container.next #comments-box .comments-list li .comment-author .avatar {
  display: none;
}
#container.next #comments-box .comments-list li .comment-meta {
  float: right;
  padding-bottom: 5px;
}
#container.next #comments-box .comments-list li .comment-body > p {
  padding-top: 10px;
  clear: both;
}
#container.next #comments-box .comments-list li .reply {
  padding-top: 10px;
  text-align: right;
}
#container.next #comments-box .comment-respond {
  padding: 15px;
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.next #comments-box .comment-respond .comment-reply-title {
  border-bottom: 1px solid #cacfd4;
  margin-bottom: 10px;
}
#container.next #comments-box .comment-respond form .comment-form-comment label {
  display: none;
}
#container.next #comments-box .comment-respond form .comment-form-comment textarea {
  width: 100%;
  margin-top: 10px;
}
#container.next #comments-box .comment-respond form .form-allowed-tags {
  display: none;
}
#container.next #comments-box .comment-respond form .form-submit {
  text-align: right;
  padding-top: 10px;
}
#container.next #news .text-list {
  padding: 0;
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
}
#container.next #news .text-list li {
  padding: 15px 20px;
}
#container.next #news .news-detail {
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  min-height: 400px;
  padding: 30px;
}
#container.next #news .news-detail .date {
  float: left;
  margin-right: 10px;
}
#container.next #news .news-detail .cat a {
  padding: 2px 10px;
  line-height: 1.1;
  background-color: #399820;
  -moz-border-radius: 6px 6px 6px 6px;
  -o-border-radius: 6px 6px 6px 6px;
  -webkit-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  color: #FFF;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container.next #news .news-detail .cat a:hover {
  text-decoration: none;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
#container.next #news .news-detail .cat.information a {
  background-color: #399820;
}
#container.next #news .news-detail .cat.movie a {
  background-color: #ff5722;
}
#container.next #news .news-detail .text {
  clear: both;
  font-size: 15px;
  padding-top: 10px;
}
#container.next #news .news-detail .text a {
  color: #333333;
}
#container.next .tabs {
  border-bottom: 3px solid #ee7800;
}
#container.next .tabs ul {
  text-align: center;
  letter-spacing: -.4em;
}
#container.next .tabs ul li {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  letter-spacing: normal;
  margin: 0 10px;
  width: 30%;
}
#container.next .tabs ul li a {
  background-color: #cccccc;
  color: #FFF;
  display: block;
  font-size: 20px;
  padding: 10px;
  -moz-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container.next .tabs ul li a:hover {
  color: #ee7800;
  text-decoration: none;
}
#container.next .tabs ul li.current a {
  background-color: #ee7800;
}
#container.next .tabs ul li.current a:hover {
  color: #FFF;
}
#container.next .tab-content {
  padding: 40px;
  background-color: #FFF;
  -moz-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}
#container.next .tab-content .tab {
  display: none;
}
#container.next .tab-content .tab.current {
  display: block;
}
#container.next .tab-content .wpcf7-response-output {
  text-align: center;
  -moz-border-radius: 8px 8px 8px 8px;
  -o-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  border-radius: 8px 8px 8px 8px;
  padding: 10px;
}
#container.next .form > table {
  min-width: 700px;
  margin: 0 auto;
}
#container.next .form > table th, #container.next .form > table td {
  padding: 15px;
  border: 1px solid #cacfd4;
}
#container.next .form > table th {
  background-color: #e6e6e6;
  color: #333;
  font-weight: bold;
}
#container.next .form > table th small {
  color: #999999;
}
#container.next .form > table td {
  padding: 15px;
}
#container.next .form > table td input {
  width: 100%;
}
#container.next .form > table td input.w200 {
  width: 200px;
  min-width: 0;
}
#container.next .form > table td table {
  width: 100%;
}
#container.next .form > table td table th, #container.next .form > table td table td {
  padding: 5px 10px;
  border: none;
  background-color: transparent;
}
#container.next .form > table td table th {
  width: 70px;
}
#container.next .form .btn {
  padding-top: 30px;
}
#container.next .form .btn input {
  width: 200px;
  margin: 0 15px;
}
#container.next .form .btn input.back {
  background: #dddddd;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #c4c4c4), color-stop(0, #dddddd));
  background: -webkit-linear-gradient(#dddddd, #c4c4c4);
  background: -moz-linear-gradient(#dddddd, #c4c4c4);
  background: -o-linear-gradient(#dddddd, #c4c4c4);
  background: -ms-linear-gradient(#dddddd, #c4c4c4);
  background: linear-gradient(#dddddd, #c4c4c4);
}
#container.next .form.welist {
  width: 1040px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#container.next .form.welist.tetyou {
  width: 640px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#container.next .form.welist.tetyou .total {
  padding-top: 10px;
}
#container.next .form.welist .title-area:after {
  clear: both;
  display: block;
  content: '';
}
#container.next .form.welist .title-area .title3 {
  float: left;
}
#container.next .form.welist .title-area .date {
  float: right;
}
#container.next .form.welist .title-area .date input {
  text-align: right;
  border: none;
  background: #FFF;
}
#container.next .form.welist > table thead th {
  text-align: center;
  padding: 3px 5px;
  line-height: 1.2;
}
#container.next .form.welist > table tbody th, #container.next .form.welist > table tbody td {
  padding: 0;
}
#container.next .form.welist > table tbody th {
  background-color: #fef1f3;
  padding: 0 5px;
  width: 40px;
  text-align: center;
}
#container.next .form.welist > table tbody td input {
  border: none;
  min-width: 20px;
  text-align: center;
  background: #FFF;
}
#container.next .form.welist .total {
  padding-top: 30px;
  font-size: 18px;
  text-align: center;
}
#container.next .form.welist .total table {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  min-width: 100px;
}
#container.next .form.welist .total table th, #container.next .form.welist .total table td {
  border: 1px solid #cacfd4;
  min-width: 80px;
  padding: 5px 15px;
  height: 50px;
  line-height: 1.2;
}
#container.next .form.welist .total table th strong, #container.next .form.welist .total table td strong {
  color: #ee7800;
}
#container.next .form.welist .total table th {
  background-color: #fdd9de;
  text-align: center;
}
#container.next .form.welist .total table td input {
  border: none;
  min-width: 20px;
  text-align: center;
  background: #FFF;
  font-size: 18px;
}
#container.next .form.welist .total table td input:hover, #container.next .form.welist .total table td input:focus {
  -moz-box-shadow: 0 0 0 0 #EEE;
  -ms-box-shadow: 0 0 0 0 #EEE;
  -o-box-shadow: 0 0 0 0 #EEE;
  -webkit-box-shadow: 0 0 0 0 #EEE;
  box-shadow: 0 0 0 0 #EEE;
}
#container.next .form.welist .total p {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin: 0 10px;
}
#container.next .form.welist .center {
  padding-top: 20px;
  text-align: center;
}
#container.next .form .info {
  width: 500px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  background: url(../img/bg-banner.jpg);
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  padding: 20px 0;
  border: 1px solid #cacfd4;
}
#container.next .form .info table {
  margin: 0 auto;
}
#container.next .form .info table th, #container.next .form .info table td {
  padding: 5px;
}
#container.next .form .text-block {
  margin-top: 30px;
  background-color: #fdd9de;
  text-align: center;
  width: 480px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  color: #ee7800;
}
#container.next .faq .links {
  padding-bottom: 30px;
  text-align: center;
}
#container.next .faq .links ul li {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  margin: 0 15px;
}
#container.next .faq .links ul li a {
  color: #333333;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 15px;
}
#container.next .faq .links ul li a:hover {
  text-decoration: none;
  color: #ee7800;
}
#container.next .faq .links ul li a:hover:after {
  top: 2px;
}
#container.next .faq .links ul li a:after {
  content: "";
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  width: 12px;
  height: 7px;
  background-size: 12px auto;
  background: url(../img/arrow-b.png) no-repeat;
  margin-left: 5px;
  position: relative;
  top: -1px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container.next .faq .faq-list {
  padding: 0;
  background-color: #FFF;
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  min-height: 400px;
}
#container.next .faq .faq-list dl dt, #container.next .faq .faq-list dl dd {
  position: relative;
  padding-left: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 15px;
}
#container.next .faq .faq-list dl span {
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 24px;
  font-weight: bold;
}
#container.next .faq .faq-list dl dt {
  border-top: 1px solid #cacfd4;
  font-weight: bold;
  padding-bottom: 15px;
}
#container.next .faq .faq-list dl dt:first-child {
  border-top: none;
  margin-top: 0;
}
#container.next .faq .faq-list dl dt span {
  color: #399820;
}
#container.next .faq .faq-list dl dd {
  padding-top: 10px;
}
#container.next .faq .faq-list dl dd span {
  color: #ee7800;
  top: 0;
}
#container.next .form-table {
  width: 800px;
  max-width: 100%;
}
#container.next .form-table thead th {
  background-color: transparent;
  border: none;
  font-size: 15px;
  padding: 10px;
  color:#ee7800;
}
#container.next .form-table tbody th {
  padding: 10px;
}
#container.next .form-table tbody td {
  padding: 10px;
}
#container.next .form-table tbody td label {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 14px;
}
#container.next .link-list li {
  padding-bottom: 40px;
}
#container.next .link-list li .title3 {
  padding-left: 0px;
  color:#ee7800
}
#container.next .link-list li table {
  width: 100%;
}
#container.next .link-list li table th {
  width: 150px;
}
#container.next .ayumi-box {
  -moz-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background-color: #FFF;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
#container.next .ayumi-box table {
  width: 100%;
}
#container.next .ayumi-box table th, #container.next .ayumi-box table td {
  padding: 20px 15px;
  border-bottom: 1px solid #cacfd4;
}
#container.next .ayumi-box table th {
  width: 80px;
  color: #999999;
}
#container.next .ayumi-box table tr:last-child th, #container.next .ayumi-box table tr:last-child td {
  border-bottom: none;
}
#container.next .ayumi-box table tr:nth-child(even) {
  background-color: rgba(245, 245, 245, 0.5);
}
#container.next .ayumi-box table td a {
  color: #333333;
}

/* container login
------------------------------------------------------------*/
#container.login {
  padding: 100px 0;
  text-align: center;
  background: #f5f5f5;
}
#container.login #logo {
  padding-bottom: 40px;
  line-height: 0;
}
#container.login .login, #container.login .tml-lostpassword {
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  padding: 30px 15px;
  background: #FFF;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -moz-box-shadow: 0px 3px 2px 0 #EEE;
  -ms-box-shadow: 0px 3px 2px 0 #EEE;
  -o-box-shadow: 0px 3px 2px 0 #EEE;
  -webkit-box-shadow: 0px 3px 2px 0 #EEE;
  box-shadow: 0px 3px 2px 0 #EEE;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#container.login .login p, #container.login .tml-lostpassword p {
  padding-bottom: 20px;
}
#container.login .login p label, #container.login .tml-lostpassword p label {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
#container.login .login p.message, #container.login .tml-lostpassword p.message {
  padding-bottom: 5px;
}
#container.login .message {
  margin-bottom: 30px;
}
#container.login label {
  min-width: 130px;
  text-align: left;
}

/*retina*/
@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  header nav li.logout a {
    background-image: url(../img/icon-logout@2x.png);
    background-size: 15px auto;
  }
  header nav li.admin a {
    background-image: url(../img/icon-admin@2x.png);
    background-size: 18px auto;
  }
  header nav li.mypage a {
    background-image: url(../img/icon-mypage@2x.png);
    background-size: 14px auto;
  }
  header nav li.howto a {
    background-image: url(../img/icon-howto@2x.png);
    background-size: 17px auto;
  }
  header nav li.link a {
    background-image: url(../img/icon-link@2x.png);
    background-size: 16px auto;
  }

  #side nav ul li.notification a {
    background-image: url(../img/icon-notification@2x.png);
    background-size: 20px auto;
  }
  #side nav ul li.video a, #side nav ul li.video span {
    background-image: url(../img/icon-video@2x.png);
    background-size: 24px auto;
  }
  #side nav ul li.order a {
    background-image: url(../img/icon-order@2x.png);
    background-size: 24px auto;
  }
  #side nav ul li.download a {
    background-image: url(../img/icon-sheet.png);
    background-size: 23px auto;
  }
  #side nav ul li.faq a {
    background-image: url(../img/icon-faq.png);
    background-size: 23px auto;
  }
  #side nav ul li.link a {
    background-image: url(../img/icon-link@2x.png);
    background-size: 22px auto;
  }
  #side nav ul li.note a {
    background-image: url(../img/icon-note@2x.png);
    background-size: 18px auto;
  }
  #side .btn a:before {
    background-image: url(../img/icon-ancate@2x.png);
    background-size: 24px auto;
  }

  footer #pagetop a:before {
    background-size: 20px auto;
    background-image: url(../img/icon-pagetop@2x.png);
  }

  #container .text-list li .video-title a {
    background-image: url(../img/icon-video@2x.png);
    background-size: 24px auto;
  }

  #container.top #links ul li.order a {
    background-image: url(../img/icon-order-big@2x.png);
    background-size: 110px auto;
  }
  #container.top #links ul li.download a {
    background-image: url(../img/icon-sheet-big@2x.png);
    background-size: 60px auto;
  }
  #container.top #links ul li.ancate a {
    background-image: url(../img/icon-ancate-big@2x.png);
    background-size: 58px auto;
  }
}
@media screen and (max-width: 1300px) {
  #side {
    position: absolute;
  }
}
@media screen and (max-height: 450px) {
  #side {
    position: absolute;
  }
}
@media screen and (max-width: 1200px) {
  #container.next .tabs ul li {
    min-width: 25%;
    width: auto;
  }
  #container.next .tabs ul li a {
    font-size: 17px;
  }
  #container.next .tab-content {
    padding: 40px 20px;
  }
  #container.next .form > table {
    min-width: 600px;
  }
  #container.next .form > table th, #container.next .form > table td {
    padding: 12px;
  }
  #container.next .form > table td {
    padding: 12px;
  }
  #container.next .form.welist > table tbody th, #container.next .form.welist > table tbody td {
    padding: 0;
  }
  #container.next .form.welist > table tbody th {
    width: 30px;
  }
  #container.next .form.welist .total {
    font-size: 17px;
  }
  #container.next .form.welist .total table th, #container.next .form.welist .total table td {
    min-width: 60px;
  }
  #container.next .contents-box {
    padding: 30px 20px;
  }
  #container.next .contents-box table {
    min-width: 600px;
    width: 100%;
    table-layout: fixed;
  }
  #container.next .contents-box table th, #container.next .contents-box table td {
    padding: 12px;
  }
  #container.next .contents-box table th {
    width: 120px;
    padding: 12px 5px;
  }
  #container.next .contents-box table td {
    padding: 12px;
    word-wrap: break-word;
    text-overflow: ellipsis;
  }
  #container.next .contents-box table td a {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    max-width: 100%;
    text-overflow: ellipsis;
  }
}












/* ADD */
/* container login
------------------------------------------------------------*/
#container.login {
  padding: 100px 0;
  text-align: center;
  background: #f5f5f5;
}
#container.login #logo {
  padding-bottom: 40px;
  line-height: 0;
}
#container.login .tml, #container.login .tml-lostpassword {
  -moz-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  padding: 30px 15px;
  background: #FFF;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -moz-box-shadow: 0px 3px 2px 0 #EEE;
  -ms-box-shadow: 0px 3px 2px 0 #EEE;
  -o-box-shadow: 0px 3px 2px 0 #EEE;
  -webkit-box-shadow: 0px 3px 2px 0 #EEE;
  box-shadow: 0px 3px 2px 0 #EEE;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#container.login .tml-login p, #container.login .tml-lostpassword p {
  padding-bottom: 20px;
}
#container.login .tml-login .tml-field-wrap label, #container.login .tml-lostpassword p label {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
#container.login .tml-field-wrap {
  text-align: left;
  width: 300px;
  margin: 0 auto 10px;
}
#container.login .tml-login .tml-field-wrap.tml-rememberme-wrap {
  text-align: center;
}
#container.login .tml-field-wrap.tml-submit-wrap {
  text-align: center;
}
#container.login .tml-field-wrap.tml-reg_passmail-wrap {
  text-align: center;
}

#container.login .tml-field-wrap.tml-submit-wrap .tml-button{
  cursor: pointer;
  outline: none;
  padding: 12px 20px;
  min-width: 120px;
  text-align: center;
  font-size: 14px;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-weight: bold;
  line-height: 1.2;
  border: none;
  /*
  background-color: #ee7800;
  background: #ee7800;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #6a082c), color-stop(0, #ee7800));
  background: -webkit-linear-gradient(#ee7800, #6a082c);
  background: -moz-linear-gradient(#ee7800, #6a082c);
  background: -o-linear-gradient(#ee7800, #6a082c);
  background: -ms-linear-gradient(#ee7800, #6a082c);
  background: linear-gradient(#ee7800, #6a082c);*/
  background: #ffa84c;
  background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); 
  background: -webkit-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); 
  background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa84c', endColorstr='#ff7b0d',GradientType=0 );
  color: #FFF;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -moz-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  position: relative;
}
#container.login .tml-login p.message, #container.login .tml-lostpassword p.message {
  padding-bottom: 5px;
}
#container.login .message {
  margin-bottom: 30px;
}
#container.login label {
  min-width: 130px;
  text-align: left;
}
