@charset "UTF-8";
/* -------------------------------
 * google font
 * Lato
 * https://fonts.google.com/?query=lato&selection.family=Lato:700
 * -------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Lato:700);
.lato {
  font-family: 'Lato', sans-serif;
}

/*
 * Noto Sans Japanese (japanese) http://www.google.com/fonts/earlyaccess
 */
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/notosansjapanese/NotoSansJP-DemiLight.woff2) format("woff2"), url(../fonts/notosansjapanese/NotoSansJP-DemiLight.woff) format("woff"), url(../fonts/notosansjapanese/NotoSansJP-DemiLight.otf) format("opentype");
}
.notosans {
  font-family: "Noto Sans Japanese",  sans-serif;
  font-weight: normal;
}

/*
 * ふい字Ｐ licensed under the IPA Font License Agreement v1.0
 * http://hp.vector.co.jp/authors/VA039499/#hui（配布元のURL）
 */
@font-face{ 
	font-family: 'HuiFontP';
	src: url('../fonts/huifontp/HuiFontP109.eot');
	src: url('../fonts/huifontp/HuiFontP109.eot?#iefix') format('embedded-opentype'),
		url('../fonts/huifontp/HuiFontP109.woff') format('woff'),
		url('../fonts/huifontp/HuiFontP109.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* -------------------------------
	default
-------------------------------- */
body {
  word-wrap: break-word;
	word-break: break-all;
  letter-spacing: 0.025em;
}

ul {
  padding-left: 1.4em;
}
ol {
	padding-left: 2em;
}

@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 28px;
    font-size: calc(28px + 10 * (100vw - 320px) / 880);
  }

  h2, .h2 {
    font-size: 20px;
    font-size: calc(20px + 13 * (100vw - 320px) / 880);
  }

  h3, .h3 {
    font-size: 18px;
    font-size: calc(17px + 5 * (100vw - 320px) / 880);
  }

  h4, .h4 {
    font-size: 16px;
    font-size: calc(16px + 4 * (100vw - 320px) / 880);
  }

  h5, .h5 {
    font-size: 15px;
  }
}
/* -------------------------------
	common
-------------------------------- */
.row-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row-5 > [class^="col-"], .row-5 > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row-10 > [class^="col-"], .row-10 > [class*=" col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-inline {
  letter-spacing: -.40em;
}
.row-inline * {
  letter-spacing: 0.025em;
}
.row-inline > [class^="col-"], .row-inline > [class*=" col-"] {
  float: none;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 543px) {
  .row-5-15 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row-5-15 > [class^="col-"], .row-5-15 > [class*=" col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/* -------------------------------
	header
-------------------------------- */
#header {
  border-bottom: solid 1px #ccc;
  background-color: #fff;
}
#header .container {
  padding-top: 17px;
  padding-bottom: 17px;
}
#header h1 {
  text-align: center;
  margin: 0 0 15px;
  padding: 0 30px;
}
#header .head_navarea {
  text-align: center;
}
#header .head_navarea .head_nav {
  list-style: none;
  letter-spacing: -.4em;
  padding: 0;
  margin: 0;
}
#header .head_navarea .head_nav li {
  display: inline;
  letter-spacing: 0.025em;
}
#header .head_navarea .head_nav li:first-child {
  margin-right: 20px;
}
#header .head_navarea .head_nav li a {
  color: #111;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
}
#header .head_navarea .head_nav li a small {
  font-size: 10px;
}
#header .head_navarea .head_nav li a:hover, #header .head_navarea .head_nav li a:focus {
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  #header {
    border-bottom: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
		-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 999;
  }
  #header h1 {
    margin-bottom: 0;
  }
  #header .head_navarea {
    text-align: right;
  }

  /**/
  .fixed-top {
    margin-top: 138px;
  }
  .fixed-top #header {
    position: fixed;
    /*top: -138px;*/
		top: 0;
    left: 0;
    width: 100%;
    /*-webkit-transform: translate3d(0, 138px, 0);
    transform: translate3d(0, 138px, 0);*/
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .fixed-top #header .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/* -------------------------------
	サイドオープン時にメインコンテンツを覆う部分
-------------------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}
.overlay::after {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255, 255, 255, 0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* -------------------------------
	ｇNavi
-------------------------------- */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  color: #fff;
  background: #0763ac;
  opacity: 0;
  -moz-transform: translate3d(260px, 0, 0);
  -ms-transform: translate3d(260px, 0, 0);
  -webkit-transform: translate3d(260px, 0, 0);
  transform: translate3d(260px, 0, 0);
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 990;
}
.side-menu .logo {
  text-align: center;
  padding: 15px 30px;
  margin: 0 auto 15px;
  background-color: #065798;
}
.side-menu .logo > img {
  width: 138px;
}
.side-menu a {
  color: #fff;
  font-weight: normal;
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu .nav_list {
  padding: 0 15px;
}
.side-menu .nav_list li {
  border-bottom: dotted 1px #96CEFA;
}
.side-menu .nav_list li a {
  font-family: 'Lato', sans-serif;
  padding: 5px;
  display: block;
}
.side-menu .nav_list li.active a, .side-menu .nav_list li a:hover, .side-menu .nav_list li a:focus {
  text-decoration: none;
  background-color: #108FF5;
}
.side-menu .nav_list ul li {
  border-bottom: none;
}
.side-menu .nav_list ul li a {
  font-size: 13px;
  padding-left: 2em;
  position: relative;
}
.side-menu .nav_list ul li a:before {
  content: "\f0da";
  color: #fff;
  font-family: 'FontAwesome';
  position: absolute;
  left: 1em;
}
.side-menu .head_nav {
  list-style: none;
  letter-spacing: -.4em;
  text-align: center;
  padding: 0;
  margin: 30px 0;
}
.side-menu .head_nav li {
  display: inline;
  letter-spacing: 0.025em;
}
.side-menu .head_nav li:first-child {
  margin-right: 20px;
}
.side-menu .head_nav li a {
  font-weight: normal;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
}
.side-menu .head_nav li a small {
  font-size: 10px;
}

/* サイドメニューオープン */
.side-open .side-menu {
  opacity: 1;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* 全体を覆う部分を表示する */
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}
.side-open .overlay::after {
  visibility: visible;
  color: rgba(255, 255, 255, 0.8);
}

/* 開閉用ボタンの位置 */
.side-menu-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999;
}

/* -------------------------------
 PC版
-------------------------------- */
@media (min-width: 768px) {
  .side-menu {
    overflow-y: inherit;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    position: relative;
    z-index: 999;
  }
  .side-menu, .side-open .side-menu {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .side-menu-btn {
    display: none;
  }

  .overlay {
    display: none;
  }

  #gNavi {
    background: #0763ac;
  }
  #gNavi .side-menu {
    width: 100%;
    max-width: 1140px;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  #gNavi .side-menu .nav_list {
    text-align: center;
    letter-spacing: -.4em;
    padding: 0;
  }
  #gNavi .side-menu .nav_list > li {
    letter-spacing: 0.025em;
    display: inline-block;
    border: none;
    position: relative;
  }
  #gNavi .side-menu .nav_list > li > a {
    font-size: 14px;
    padding: 12px 30px 13px;
    display: inline-block;
  }
  #gNavi .side-menu .nav_list ul {
    opacity: 0;
    display: none;
    margin: 0;
    position: absolute;
    min-width: 100%;
    z-index: 9999;
  }
  #gNavi .side-menu .nav_list ul li {
    border-top: solid 1px #fff;
  }
  #gNavi .side-menu .nav_list ul li a {
    font-size: 12px;
    white-space: nowrap;
    text-align: left;
    padding: 10px 20px 10px 25px;
    display: block;
    background-color: #0763ac;
  }
  #gNavi .side-menu .nav_list ul li a:before {
    padding-left: 0px;
  }
  #gNavi .side-menu .nav_list ul li.active a, #gNavi .side-menu .nav_list ul li a:hover, #gNavi .side-menu .nav_list ul li a:focus {
    text-decoration: none;
    background-color: #108FF5;
  }
  #gNavi .side-menu .nav_list .submenu ul {
    opacity: 0;
    display: block;
    top: 80%;
    visibility: hidden;
    transition: .3s;
  }
  #gNavi .side-menu .nav_list .submenu:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}
/* -------------------------------
 ボタンデザイン
-------------------------------- */
#panel-btn {
  display: block;
  position: relative;
  width: 43px;
  height: 43px;
  margin: 0;
  border-left: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  background: #fff;
  overflow: hidden;
}
#panel-btn:hover {
  background: #fff;
}
#panel-btn .panel-txt {
  color: #333;
  font-size: 10px;
  -moz-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  -webkit-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: -2px;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -5px 0 0 -9px;
  background: #333;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: #333;
  transition: .3s;
}
#panel-btn-icon:before {
  margin-top: -6px;
}
#panel-btn-icon:after {
  margin-top: 4px;
}

#panel-btn .close {
  background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after {
  margin-top: 0;
}
#panel-btn .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#panel-btn .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #333;
  border-top: solid 1px #ccc;
  padding: 30px 0 0;
  background-color: #fff;
}
#footer h2 {
  color: #666;
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
}
#footer h2 img {
  margin-bottom: 10px;
}
#footer .copyright {
  color: #fff;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  background-color: #0763ac;
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: none;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
  }
}

/* -------------------------------
	main
-------------------------------- */
#wrap {
  overflow: hidden;
}

#main * + h2, #main * + h3, #main * + h4, #main * + h5 {
  margin-top: 1em;
}
#main h4 + h4 {
  margin-top: 0;
}

.main_ttl h1 {
  color: #111;
  font-family: 'Lato', sans-serif;
  line-height: 1;
  padding: 0 0 0 15px;
  margin: 1em 0 0.5em;
  max-width: 1140px;
	border-left: double 3px #222;
}
.main_ttl h1 .en {
	padding-right: 20px;
}
.main_ttl h1 .ja {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  font-weight: normal;
	display: inline-block;
}
.main_ttl h1 br { display: none; }

.hh_ttl_a {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  border-bottom: solid 1px #0763ac;
  padding-bottom: 0.1em;
}
.hh_ttl_a.orange {
  border-bottom: solid 1px #f57614;
}

.hh_ttl_b {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  letter-spacing: 0.075em;
	line-height: normal;
  text-align: center;
  padding: 0.1em 20px 0.2em;
  background-color: #DAE3FF;
}

.hh_ttl_c {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  border-left: solid 3px #0763ac;
  padding-left: 10px;
}
.hh_ttl_c.orange {
  border-left-color: #f57614;
}

.hh_ttl_d {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  text-align: center;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  position: relative;
}
.hh_ttl_d:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3em;
  height: 1px;
  margin-left: -1.5em;
  background-color: #000;
}

.hh_ttl_e {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  text-align: center;
  position: relative;
  z-index: 0;
}
.hh_ttl_e:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: #B3B3B3;
  z-index: -1;
}
.hh_ttl_e .in {
  min-width: 200px;
  display: inline-block;
  background-color: #fff;
}

.hh_ttl_f {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  text-align: center;
  position: relative;
}
.hh_ttl_f:before, .hh_ttl_f:after {
  content: "―";
}
.hh_ttl_f:before {
  padding-right: 1em;
}
.hh_ttl_f:after {
  padding-left: 1em;
}

/**/
.hh_ttl_g {
	color: #fff;
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
  text-align: center;
  padding: 0.2em 30px;
  background-color: #f57614;
  position: relative;
}
.hh_ttl_g:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-left: double 3px #C55A08;
  border-right: double 3px #C55A08;
}

/**/
.hh_ttl_g_b {
  font-family: 'Noto Sans Japanese';
  font-weight: normal;
	line-height: normal;
  padding: 0.1em 30px 0.2em;
  background-color: #E0E6FD;
  position: relative;
}
.hh_ttl_g_b:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-left: double 3px #137AF5;
  border-right: double 3px #137AF5;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-img {
  display: inline-block;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-img:hover {
  opacity: 0.8;
}
.btn-img-block {
  display: block;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-img-block:hover {
  opacity: 0.8;
}

/* -------------------------------
	list
-------------------------------- */
.list-slash {
  letter-spacing: -.4em;
  list-style: none;
  padding: 0;
}
.list-slash li {
  letter-spacing: 0.025em;
  display: inline-block;
}
.list-slash li:after {
  content: "／";
  display: inline-block;
  padding: 0 0.5em;
}
.list-slash li:last-child:after {
  content: "";
  padding: 0;
}

.list-icon {
  list-style: none;
  padding-left: 0;
}
.list-icon li {
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.list-icon li:before {
  content: "\f101";
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
}

.list-icon-fa-check li {
  padding-left: 1.2em;
}
.list-icon-fa-check li:before {
  content: "\f00c";
  color: #005297;
}

/* -------------------------------
	table
-------------------------------- */
.table-layout-f {
  table-layout: fixed;
}

@media (max-width: 543px) {
  .table-inline tr {
    display: inline-block;
    width: 100%;
  }
  .table-inline th, .table-inline td {
    display: block;
    width: 100% !important;
  }
}
/* -------------------------------
	photo
-------------------------------- */
.photo, .photo2, .photo3 {
  position: relative;
  height: 0;
  background-color: #fff;
  overflow: hidden;
}
.photo img, .photo2 img, .photo3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  min-width: 50px;
  width: auto;
  height: auto;
}

.photo {
  padding-bottom: 75%;
}

.photo2 {
  padding-bottom: 145%;
}
.photo2 img {
  max-width: 100%;
  height: 100%;
  min-width: 50px;
}

.photo3 {
  padding-bottom: 163.6%;
}

.photo_mag {
  z-index: 0;
}
.photo_mag a, .photo_mag a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.photo_mag a:before {
  content: "";
  z-index: 0;
  background-color: #000;
  opacity: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.photo_mag a:after {
  content: "\f00e";
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
}
.photo_mag a img {
  z-index: -1;
}
.photo_mag a:hover:before {
  opacity: 0.3;
}

a.photo {
	display: block;
}
a.photo:hover, a.photo:focus {
	opacity: 0.8;
}

/* -------------------------------
	box
-------------------------------- */
.box-padding-a {
  padding-top: 25px;
  padding-bottom: 25px;
}

.box-color-a {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  background-color: #F0FAFF;
}

@media print, screen and (min-width: 768px) {
  .box-padding-a {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* -------------------------------
	caption
-------------------------------- */
.figure_caption {
  text-align: center;
  display: inline-block;
}
.figure_caption figcaption {
  margin-top: 5px;
}
.figure_caption figcaption p {
  font-size: 12px;
  line-height: normal;
  margin: 0;
}

/* -------------------------------
	ページング
-------------------------------- */
.paging {
  font-size: 14px;
  line-height: normal;
  letter-spacing: -.4em;
  text-align: center;
  margin: 0 -5px;
}
.paging span {
  letter-spacing: normal;
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
}
.paging span.current {
  margin: 0px 2px;
  color: #333;
  border: 1px solid #ccc;
}
.paging span.paging-text {
  margin: 0px 2px;
  color: #333;
  border: 1px solid #ccc;
  text-decoration: none;
}
.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
  text-decoration: none;
}
.paging span.current {
  color: #fff;
  background: #0763ac;
  border: 1px solid #0763ac;
  padding: 3px 8px;
  cursor: pointer;
}
.paging span.paging-text a:hover {
  background: #CCC;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* -------------------------------
	common
-------------------------------- */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.in-bk {
  display: inline-block;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto 15px;
}

@media print, screen and (min-width: 480px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* --▼width-- */
.min-ww-200 {
  min-width: 200px !important;
}

.ww9em {
  width: 9em;
}

.ww15em {
  width: 15em;
}

.ww300 {
  width: 300px;
}

/* --▼color-- */
.text-red {
  color: #ff0000 !important;
}

/* --▼font-- */
.fwn {
  font-weight: normal !important;
}

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

.fs10 {
  font-size: 10px !important;
}

.fs11 {
  font-size: 11px !important;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs16 {
  font-size: 16px !important;
}

.lh_xs {
  line-height: 1.1 !important;
}

.lh_sm {
  line-height: 1.4 !important;
}

.lh_md {
  line-height: 1.7 !important;
}

.lh_lg {
  line-height: 2 !important;
}

/* --▼text-- */
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.htmlarea {
  line-height: normal;
  overflow: hidden;
}
/* --▼margin-- */
/*bottom*/
.mb00 {
  margin-bottom: 0 !important;
}
.mb1 {
  margin-bottom: 1px !important;
}
.mb05 {
  margin-bottom: 5px !important;
}

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

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

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

.mb25 {
  margin-bottom: 25px !important;
}

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

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

.mb40 {
  margin-bottom: 40px !important;
}

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

@media print, screen and (min-width: 768px) {
  .margin-bottom {
    margin-bottom: 30px !important;
  }
}
/* -------------------------------
	PC/SP 切り替え
-------------------------------- */
.rwd {
  font-size: 11px;
  letter-spacing: normal;
  text-align: center;
  width: auto;
  margin: 0 auto;
  padding: 10px;
  background-color: #ccc;
}
.rwd a {
  color: #333;
  text-decoration: none;
  width: 9em;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #fff;
}
.rwd a.on {
  color: #fff;
  background-color: #999;
}

.rwd_pc_viwe {
  font-size: 42px;
  padding: 50px 0;
}
