@charset "utf-8";

/* ==========================================================================
Foundation [ reset / base ]
========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 13px;
  font: inherit;
  vertical-align: baseline;
}
table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: 13px;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body,
html {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  color: #333333;
  -ms-content-zooming: none;
  touch-action: manipulation;
}
ol, ul {
  list-style: none;
}
input, textarea {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
a {
  text-decoration: inherit;
  color: inherit;
}
a[href] {
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: inherit;
}
a[href]:hover, a[href]:active, a[href]:focus {
  /*text-decoration: underline;*/
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0px;
  left: 0;
  box-sizing: border-box;
  z-index: 11;
  width: 100%;
  height: 50px;
  background-color: #E35B00;
}
#header.active {
  height: 80px;
}
#header .grid {
  overflow: inherit;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.logo {
  float: left;
  position: absolute;
  z-index: 1;
  transition: 0s;
}
#header.active .logo {
  float: none;
  z-index: 10;
  position: absolute;
  left: 50%;
  margin-left: -100px;
  top: 20px;
  transition: 0s;
}
.search {
  display: none;
}
#header div.logo ,
#header h1 {
  margin-left: 20px;
  margin-top: 13px;
  width: 200px;
  transition: 0s;
}
.menuBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease,visibility .3s ease;
  background-color: #E35B00;
}
.menuBox.active {
  z-index: 3;
  margin-top: 50px;
  display: block;
  height: calc(100% - 150px);
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
  box-sizing: border-box;
}
.menuInfo {
  width: 100%;
}
#gNavi ul {
  border-top: 1px solid #fff;
  max-width: 940px;
  margin: 0 auto;
}
#gNavi ul li {
  width: 100%;
  border-bottom: 1px solid #fff;
}
#gNavi ul li a {
  width: 100%;
  display: block;
  /*font-weight: bold;*/
  font-size: 16px;
  color: #fff;
  padding: 12px 0;
  position: relative;
}
#gNavi ul li a:after {
  content: '';
  width: 14px;
  height: 14px;
  border: 0px;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  -ms-transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -12px;
  transition: .4s;
}
#gNavi ul li a.active:after {
  transform: translateY(6px) rotateZ(-135deg);
}
#gNavi ul li.nav_lang ul li a {
  padding-left: 30px;
  position: relative;
}
#gNavi ul li.nav_lang ul li a.is-active:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../image/common/icon_check.png);
  background-size: 100% 100%;
  width: 20px;
  height: 18.5px;
  top: 50%;
  left: 0;
  margin-top: -9.25px;
}
#gNavi ul li.nav_howto a:after {
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
  border-bottom: none;
  right: 7px;
  margin-top: -8px;
}
#gNavi ul li.nav_howto a.active:after {
  transform: rotate(45deg);
}
#gNavi ul li.nav_howto a:before {
  content: "";
  background-image: url(../image/common/icon_question.png);
  height: 24px;
  width: 24px;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
}
#gNavi ul li.nav_howto a {
  padding-left: 32px;
}
#gNavi ul .gnav_item_second {
  overflow: hidden;
  padding-left: 10px;
  display: none;
}
#gNavi ul .gnav_item_second > li {
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
#gNavi ul .gnav_item_second > li:last-of-type {
  border-bottom: none;
}
#gNavi ul .gnav_item_second > li a {
  font-size: 14px;
  padding-right: 15px;
}
#gNavi ul .gnav_item_second > li a:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  -ms-transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -4px;
  transition: .4s;
}
/*nav*/
#header .menu {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 11px;
  right: 15px;
  float: right;
  z-index: 5;
  transition: top .6s ease;
}
.menu span {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #fff;
  transition: transform .6s ease,background .6s ease;
}
.menu span:nth-child(1) {
  top: 10px;
  transition: .4s;
}
.menu span:nth-child(2) {
  top: 16px;
  transition: .4s;
}
.openMenu #gHeader .menu {
  position: fixed;
}
.menu.active span:nth-child(1) {
  top: 6px;
  transform: translateY(8px) rotateZ(-45deg);
}
.menu.active span:nth-child(2) {
  top: 22px;
  transform: translateY(-8px) rotateZ(45deg);
}
.nav_close {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #AF4700;
}
.nav_close.active {
  display: block;
}
.nav_close:hover {
  cursor: pointer;
}
.nav_close span {
  left: 50%;
  margin-left: -15px;
  margin-top: 22px;
  width: 30px;
  height: 2px;
  position: absolute;
  background: #fff;
  transition: transform .6s ease,background .6s ease;
}
.nav_close span:nth-child(1) {
  top: 10px;
  transition: .4s;
  top: 6px;
  transform: translateY(8px) rotateZ(-45deg);
}
.nav_close span:nth-child(2) {
  top: 16px;
  transition: .4s;
  top: 22px;
  transform: translateY(-8px) rotateZ(45deg);
}

/* .submenu */
.submenu {
  height: 40px;
  background-color: #FCE7DE;
  width: 100%;
  position: fixed;
  top: 50px;
  z-index: 10;
}
.submenu_inner {
  max-width: 980px;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}
.submenu_back {
  float: left;
  padding: 10px 20px 10px 40px;
  color: #E35B00!important;
  font-size: 15px;
  position: relative;
}
.submenu_back:before {
  content: "";
  display: block;
  background-image: url(../image/common/icon_arrowL_1.png);
  width: 10.5px;
  height: 19px;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -10px;
}
.submenu_num {
  float: right;
  padding: 10px 55px 10px 20px;
  color: #E35B00!important;
  font-size: 15px;
  position: relative;
}
.submenu_num:before {
  content: "";
  display: block;
  background-image: url(../image/common/icon_num_search.png);
  width: 29px;
  height: 22px;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
}

/* Main
---------------------------------------------------------------*/
#main {
  overflow: hidden;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  /*padding-top: 50px;*/
  box-sizing: border-box;
  min-height: calc(100vh - 160px);
}
.main_contents {
  padding: 20px 20px 40px;
  margin: 0 auto;
}
#container {
	margin: 0 auto;
	text-align: left;
	min-height: calc(100vh - 160px);
	overflow: hidden;
}
/* footer
---------------------------------------------------------------*/
#footer {
  background-color: #AF4700;
  color: #fff;
  position: relative;
  height: 70px;
  z-index:2;
}
.totop {
  background-color: #E35B00;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  color: #fff!important;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 32px;
}
.totop:before {
  content: '';
  background-image: url(../image/common/icon_arrowU_1.png);
  width: 19px;
  height: 11px;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px;
  margin-left: -9.5px;
}
.copyright {
  margin-bottom: 0;
  font-size: 12px;
  color: #fff;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 90px);
  word-wrap: break-word;
}
/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
/* 展示テーマ一覧 */
.themes {
  background-color: #FCE7DE;
}
.themes_inner {
  padding: 30px 20px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  box-sizing: border-box;
}
.themes_inner:before {
  content: "";
  background-image: url(../image/common/tenji_img.png);
  width: 50px;
  height: 80px;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  top: -30px;
  right: 10px;
}
.themes_ttl {
  color: #E35B00;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.themes_list {
  overflow: hidden;
}
.themes_item {
  width: 100%;
  margin-bottom: 10px;
}
.themes_item a {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.themes_item a:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../image/common/icon_arrowR_2.png);
  width: 10px;
  height: 16px;
  background-size: 100% 100%;
  top: 50%;
  right: 5px;
  margin-top: -5px;
}
.themes_item_img {
  width: 120px!important;
  overflow: hidden;
  position: relative;
  min-height: 100px;
}
.themes_item_img img {
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.themes_item_txt {
  width: calc( 100% - 120px );
  padding: 10px 20px 10px 10px;
}

/* 番号入力 */
.search_area {
  padding: 20px 20px;
  position: relative;
}
.search_ttl {
  text-align: center;
  font-size: 14px;
  margin-bottom: 5px;
}
.num {
  background-color: #FAEDDB;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 34px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
  letter-spacing: .5em;
}
.search_btn {
  background-color: #E35B00;
  color: #fff;
  font-size: 22px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  letter-spacing: .1em;
  border-radius: 25px;
  width: 100%;
  border-style: none;
}
.num_select {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #F18D00;
  width: 100%;
  box-sizing: border-box;
  padding: 1% 0 0;
  z-index: 1;
  height: calc( 100% - 320px);
}
.num_select_inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.num_1,
.num_2,
.num_3,
.num_4,
.num_5,
.num_6,
.num_7,
.num_8,
.num_9,
.num_0 {
  background-color: #fff;
  width: 32%;
  display: inline-block;
  border-radius: 5px;
  color:#333;
  font-size: 34px;
  text-align: center;
  height: 72px;
  line-height: 72px;
  margin-left: 1%;
  margin-bottom: 5px;
}
.num_0 {
  margin-left: 34%;
}
.num_1:hover,
.num_2:hover,
.num_3:hover,
.num_4:hover,
.num_5:hover,
.num_6:hover,
.num_7:hover,
.num_8:hover,
.num_9:hover,
.num_0:hover,
.num_del:hover {
  cursor: pointer;
}
.num_del {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #fff;
  position: absolute;
  bottom: 11px;
  right: 17.1%;
  margin-right: -30px;
  background-image: url(../image/common/icon_delete.png);
  background-size: 22px 22px;
  background-position: center center;
  background-repeat: no-repeat;
}
.error {
  position: absolute;
  top: 10px;
  left: 20px;
  padding: 5px;
  min-width: 240px;
  box-sizing: border-box;
  font-size: 13px;
  color: #DD0000;
  background-color: #FFE1EA;
  border-radius: 5px;
  display: none;
}
.error span {
  position: relative;
}
.error span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 15px solid transparent;
  border-top: 10px solid #FFE1EA;
}
@media screen and (max-height: 600px) and (orientation: portrait) {
  .num_1,
  .num_2,
  .num_3,
  .num_4,
  .num_5,
  .num_6,
  .num_7,
  .num_8,
  .num_9,
  .num_0 {
    height: 10vh;
    line-height: 10vh;
    font-size: 30px;
  }
  .num_del {
    width: 8vh;
    height: 8vh;
    border-radius: 4vh;
    bottom: 2vh;
    right: 17.1%;
    margin-right: -4vh;
    background-size: 3vh 3vh;
  }
}
@media screen and (max-height: 470px) and (orientation: portrait) {
  .num_1,
  .num_2,
  .num_3,
  .num_4,
  .num_5,
  .num_6,
  .num_7,
  .num_8,
  .num_9,
  .num_0 {
    height: 8vh;
    line-height: 8vh;
    font-size: 26px;
  }
  .num_del {
    width: 8vh;
    height: 8vh;
    border-radius: 4vh;
    bottom: 1vh;
    right: 17.1%;
    margin-right: -4vh;
    background-size: 3vh 3vh;
  }
}
@media screen and (orientation: landscape) {
  .search_area {
    max-width: 100%;
    margin: 0;
    margin-left: 5%;
    width: 40%;
    box-sizing: border-box;
  }
  .num_select {
    position: fixed;
    bottom: 0;
    left: auto;
    right: 0;
    background-color: #F18D00;
    width: 50%;
    box-sizing: border-box;
    padding: .5% 0 0;
    z-index: 1;
    height: calc( 100% - 90px);
  }
  .num_select_inner {
    height: 100%;
  }
  .num_1,
  .num_2,
  .num_3,
  .num_4,
  .num_5,
  .num_6,
  .num_7,
  .num_8,
  .num_9,
  .num_0 {
    height: 23%;
    font-size: 7vh;
    margin-bottom: 1%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    float: left;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 100%;
  }
  .num_del {
    width: 13vh;
    height: 13vh;
    border-radius: 6.5vh;
    bottom: 4%;
    right: 8.5vw;
    margin-right: -6.5vh;
    background-size: 5vh 5vh;
  }
}

/* Error Page */
.errortext{
	font-size: 20px;
	text-align: center;
}
/* ==========================================================================
Component [ grid / button / form / media... ]
========================================================================== */
body {
  padding-top: 90px;
  min-height: calc(100vh - 130px);
}

/* contWrap */
.contWrap {
  width: 100%;
  clear: both;
}

/* wrap */
.wrap {
  width: 100%;
  margin: 0 auto 50px;
  clear: both;
}
.wrap-center {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  box-sizing: border-box;
}
/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* column */
.col-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333333%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }

/* headline */
h1.h1 {
  text-align: center;
  font-size: 22px;
  color: #E35B00;
  position: relative;
  margin-bottom: 30px;
}
h1.h1:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #F18D00;
  bottom: -5px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
}
h2.h2 {
  margin-top: 40px;
  font-size: 18px;
  border-bottom: 2px solid #FCE7DE;
  padding-bottom: 2px;
  margin-bottom: 20px;
  position: relative;
}
h2.h2:after {
  content: "";
  display: block;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  position: absolute;
  background-color: #F18D00;
}
h3.h3 {
  margin-top: 40px;
  color: #E35B00;
  font-size: 18px;
  margin-bottom: 15px;
}
h4.h4 {
  color: #E35B00;
  font-size: 18px;
  margin-bottom: 15px;
}

/* template */
.main_contents div.flexbox_collect table {
  font-size: 15px;
  margin-bottom: 15px;	
}
.main_contents div.flexbox_collect .itemName {
	vertical-align: middle;
}
.main_contents .u-link {
  color: #E35B00;
  text-decoration: underline;
}
.main_contents ol {
  counter-reset: section;
  margin-bottom: 15px;
  font-size: 15px;
}
.main_contents ol li {
  padding-left: 1.6em;
  text-indent: -1.6em;
  margin-bottom: 10px;
}
.main_contents ol li:before {
  counter-increment: section;
  content: counter(section)"．";
}
.main_contents ul:not(.slider) {
  margin-bottom: 15px;
  font-size: 15px;
}
.main_contents ul:not(.slider) li {
  padding-left: 1.6em;
  text-indent: -1.6em;
  margin-bottom: 10px;
}
.main_contents ul:not(.slider) li:before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #E35B00;
  margin-right: 18px;
  position: relative;
  top: -2px;
}
.main_contents img {
  margin-bottom: 15px;
}

/* slider */
.slider {
  width: calc( 100% + 40px );
  margin-left: -20px;
  margin-bottom: 20px;
}
.slider li {
  outline: none;
  padding: 5px;
  box-sizing: border-box;
}
.slider img {
  max-height: 300px;
  margin: 0 auto 0;
}
.slider .slick-prev {
  left: 10px;
}
.slider .slick-next {
  right: 10px;
}
.slider .slick-prev, .slider .slick-next {
  width: 20px;
  height: auto;
}

/* video */
.video {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: center;
}
.video video {
  width: 100%;
}

/* audio */
.audio {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: center;
}
.audio audio {
  width: 100%;
}

/* btn */
.btn {
  margin: 20px auto 0;
  border: none;
  overflow: visible;
  text-transform: none;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color, border-color;
  position: relative;
  font-weight: bold;
  width: 80%;
  height: 46px;
  line-height: 46px;
  border: 1px solid #001339;
  background: url(../image/top/btn-arw.png) no-repeat 90% 48%;
  background-size: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #001339;
}
.btn:hover {
  color: #fff;
  border-color: #001339;
  background: url(../image/top/btn-arw_ho.png) no-repeat 90% 48%;
  background-size: 20px;
  background-color: #001339;
  opacity: 1;
  transition: .3s;
}
.btn.type02 {
  background: none;
  padding-left: 10px;
  padding-right: 10px;
}
.btn.type02:hover {
  background-color: #001339;
}
p {
  margin-bottom: 12px;
}
/*lv*/
body.sub {
  padding-top: 50px;
}
.lv {
  width: 100%;
  height: 250px;
  background: url(../image/concept/lv_sp.png) no-repeat top center;
  background-size: cover;
  position: relative;
  text-align: center;
  display: table;
}
.lv h1 {
}
.lv h1 span {
}
/*breadcrumd*/
.breadcrumb {
  margin: 15px 15px 50px 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.breadcrumb ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.breadcrumb li {
  margin-bottom: 10px;
}
.breadcrumb li ,
.breadcrumb li a {
  color: #000000;
  line-height: 1;
  font-size: 12px;
}
.breadcrumb li img {
  width: 10px;
  margin: -2px 10px 0;
}

/* font - family
--------------------------------------------------------- */
.-gothic {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: none !important;
}
.u-sp {
  display: block !important;
}
.spBr {
  display: none;
}
/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n{
  font-weight: normal !important;
}
.u-fw-b{
  font-weight: bold !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}

/* アニメーション */
.sa {
  opacity: 0;
  transition: all 1s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-50px, 0);
}
.sa--rl {
  transform: translate(50px, 0);
}
.sa--up {
  transform: translate(0, 50px);
}
.sa--down {
  transform: translate(0, -50px);
}
.sa--scaleUp {
  transform: scale(.9);
}
.sa--scaleDown {
  transform: scale(1.5);
}
.sa--rotateL {
  transform: rotate(180deg);
}
.sa--rotateR {
  transform: rotate(-180deg);
}

#cboxContent #cboxLoadedContent {
  margin-bottom: 0;
}

/* videoアイコン */
.play_icon {
	width: 64px;
	height: 64px;
	background-image: url(../image/play.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

#main .video .video_thumbnail{
	position: relative;
	display:block;
}
