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

	01. Normalize

----------------------------------------------------------------- */
/* ----------------------------------------------------------------
	HTML5 display definitions
----------------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

/* ----------------------------------------------------------------
	Base
----------------------------------------------------------------- */
html {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  line-height: 1.55;
  font-size: 81.25%;
}

hr {
  display: none;
}

/* ----------------------------------------------------------------
	Links
----------------------------------------------------------------- */
a {
  color: #1b1b1b;
}

a:visited {
  color: #4d4949;
}

a:hover,
a:active {
  color: #d10000;
  text-decoration: none;
  outline: 0;
}

a:focus {
  color: #d10000;
  text-decoration: none;
  outline: 1px dotted;
}

/* ----------------------------------------------------------------
	Typography
----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 100%;
}

p {
  margin: 0 0 20px;
  padding: 0;
}

strong {
  font-weight: bold;
  color: #d10000;
}

b, em {
  font-style: normal;
  font-weight: bold;
}

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

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

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

small {
  font-size: 84.61538%;
}

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

sup {
  top: -0.25em;
}

sub {
  bottom: -0.25em;
}

blockquote {
  margin: 0;
  padding: 0;
}

pre, code, kbd, samp {
  margin: 0;
  padding: 0;
  font-family: monospace, serif;
}

iframe {
  max-width: 100%;
}
@media screen and (max-width: 320px) {
  iframe {
    width: 100% !important;
  }
}

applet, object, iframe, blockquote, abbr, acronym, address, mark,
pre, big, cite, code, del, dfn, ins, kbd, samp, q, s,
small, strike, sub, sup, tt, var, u, i {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

/* ----------------------------------------------------------------
	Lists
----------------------------------------------------------------- */
menu, ul, ol, dl {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
menu > :last-child, ul > :last-child, ol > :last-child, dl > :last-child {
  margin-bottom: 0 !important;
}
menu p, menu ul, menu ol, menu dl, menu table, ul p, ul ul, ul ol, ul dl, ul table, ol p, ol ul, ol ol, ol dl, ol table, dl p, dl ul, dl ol, dl dl, dl table {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 100%;
}

ol {
  margin-left: 2em;
  list-style-type: decimal;
}

dd {
  margin: 0;
}

/* ----------------------------------------------------------------
	Tables
----------------------------------------------------------------- */
table {
  margin: 0 0 20px;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  font-size: inherit;
}
table p, table ul, table ol, table dl, table table {
  margin-top: 0;
  margin-bottom: 5px;
}
table th,
table td {
  font-weight: normal;
}
table tbody th,
table tbody td {
  vertical-align: top;
}
table td > :last-child {
  margin-bottom: 0 !important;
}

/* ----------------------------------------------------------------
	Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
  line-height: 1;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

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

object,
embed {
  max-width: 100%;
}

/* ----------------------------------------------------------------
	Figures
----------------------------------------------------------------- */
figure {
  margin: 0;
}

/* ----------------------------------------------------------------
	Forms
----------------------------------------------------------------- */
form {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  margin: 0;
  font-size: 100%;
  font-family: Helvetica,Arial,sans-serif;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

input[type="checkbox"],
input[type="radio"],
select,
label {
  cursor: pointer;
}

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

input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

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

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

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

select {
  line-height: normal;
  vertical-align: middle;
}

textarea {
  overflow: auto;
  vertical-align: top;
  max-width: 100%;
}

@media screen and (max-width: 640px) {
  input[type="text"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  input[type="email"],
  select,
  textarea {
    font-size: 123.07692%;
  }
}

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

	02. Layout

----------------------------------------------------------------- */
/* ----------------------------------------------------------------
	base
----------------------------------------------------------------- */
body {
  color: #1b1b1b;
  background-color: #f0eeee;
}

#str-container {
  background-color: #f0eeee;
}

#str-contents {
  margin: -40px auto 50px;
  padding: 40px 0 10px;
  max-width: 1032px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 7px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 7px 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #ffffff;
}
@media screen and (max-width: 1072px) {
  #str-contents {
    margin: -40px 20px 50px;
  }
}
@media screen and (max-width: 767px) {
  #str-contents {
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

#str-main {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#str-side {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* .lyt-col-1
----------------------------------------------- */
.lyt-col-1 #str-main {
  padding: 0 3.48837%;
}
@media screen and (max-width: 767px) {
  .lyt-col-1 {
    padding: 0 20px;
  }
}

/* .lyt-col-2
----------------------------------------------- */
.lyt-col-2 #str-main {
  padding-right: 3.48837%;
  float: right;
  width: 74.4186%;
}
.lyt-col-2 #str-side {
  float: left;
  width: 22.09302%;
}
@media screen and (max-width: 800px) {
  .lyt-col-2 #str-main {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lyt-col-2 #str-main {
    margin-bottom: 40px;
    padding: 0 20px;
    float: none;
    width: auto;
  }
  .lyt-col-2 #str-side {
    float: none;
    width: auto;
  }
}

/* .lyt-col-3
----------------------------------------------- */
.lyt-col-3 #str-main {
  padding-left: 3.48837%;
  float: left;
  width: 75.5814%;
}
.lyt-col-3 #str-main .lyt-primary {
  float: right;
  width: 64.51613%;
}
.lyt-col-3 #str-main .lyt-secondary {
  float: left;
  width: 30.64516%;
}
.lyt-col-3 #str-side {
  padding-right: 3.48837%;
  float: right;
  width: 20.93023%;
}
@media screen and (max-width: 800px) {
  .lyt-col-3 #str-main {
    padding: 0 20px;
    width: auto;
    float: none;
  }
  .lyt-col-3 #str-side {
    padding: 0 20px;
    float: none;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .lyt-col-3 #str-main .lyt-primary {
    float: none;
    width: auto;
  }
  .lyt-col-3 #str-main .lyt-secondary {
    float: none;
    width: auto;
  }
}

/* #top
----------------------------------------------- */
#top {
  background-color: #f5f2f2;
}
#top #str-container {
  background-color: #f5f2f2;
}
#top #str-contents {
  margin: 0 auto;
  padding: 0;
  max-width: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}
#top #str-main {
  margin-top: -50px;
  padding: 80px 0 5px;
  background-color: #f0eded;
  position: relative;
}
#top #str-main:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
#top #str-main:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UxZGVkZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Y1ZjJmMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1dede), color-stop(100%, #f5f2f2));
  background-image: -moz-linear-gradient(#e1dede, #f5f2f2);
  background-image: -webkit-linear-gradient(#e1dede, #f5f2f2);
  background-image: linear-gradient(#e1dede, #f5f2f2);
}
#top #str-main > .lyt-inner-main {
  margin: 0 auto;
  max-width: 1032px;
}
@media screen and (max-width: 1072px) {
  #top #str-contents {
    margin: 0;
  }
  #top #str-main {
    padding: 80px 20px 5px;
  }
}
@media screen and (max-width: 640px) {
  #top #str-main {
    padding: 60px 20px 5px;
  }
}

/* ----------------------------------------------------------------
	header
----------------------------------------------------------------- */
#str-header .header-over {
  background-color: #fff;
  display: flex;
  justify-content: end;
  align-items: center;
}
#str-header .header-over .logo a {
  display: inline-block;
}
#str-header .header-under {
  background-color: #f0eeee;
  height: 60px;
  padding: 0 20px;
}
#str-header .header-under .lyt-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1032px;
  margin: 0 auto;
}
#str-header .header-under .logo a {
  display: inline-block;
}
#str-header .nav {
  display: flex;
  align-items: center;
}
#str-header .nav .nav-items {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
#str-header .nav .nav-items li:not(:first-child) {
  border-left: 1px solid #E2E2E2;
  padding-left: 10px;
}
#str-header .nav .nav-items .current {
  color: #E70012;
}
#str-header .nav .nav-items .current span {
  display: block;
  border-bottom: 1px solid #E70012;
}
#str-header .nav .nav-items a {
  text-decoration: none;
}

@media screen and (max-width: 640px) {
  #str-header .header-over {
    height: 30px;
  }
  #str-header .header-over .logo {
    width: 126px;
    height: 30px;
  }
  #str-header .header-under {
    height: auto;
    padding: 0 3.48837% 10px;
  }
  #str-header .header-under .logo {
    width: 183px;
    height: 48px;
  }
  #str-header .header-under .lyt-inner {
    flex-direction: column;
  }
  #str-header .nav {
    justify-content: end;
  }
}

/* ----------------------------------------------------------------
	global-search
----------------------------------------------------------------- */
#global-search {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
#global-search .lyt-inner {
  margin: 0 auto;
  padding: 22px 0 0;
  max-width: 1032px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#global-search .search-list {
  margin-bottom: 0;
  text-align: right;
}
#global-search .search-list li {
  margin-left: 15px;
  display: inline-block;
}
#global-search .search-list li.globalwebsite {
  position: relative;
  vertical-align: top;
}
#global-search .search-list li label {
  display: none;
}
#global-search .search-list li input[type="text"] {
  width: 150px;
  min-height: 0;
  vertical-align: top;
}
@media screen and (max-width: 1072px) {
  #global-search .lyt-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 800px) {
  #global-search {
    top: 35px;
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  #global-search {
    display: none;
    position: static;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U2ZTNlMyIvPjxzdG9wIG9mZnNldD0iOCUiIHN0b3AtY29sb3I9IiNmNWYyZjIiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWYyZjIiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e3e3), color-stop(8%, #f5f2f2), color-stop(100%, #f5f2f2));
    background-image: -moz-linear-gradient(#e6e3e3, #f5f2f2 8%, #f5f2f2);
    background-image: -webkit-linear-gradient(#e6e3e3, #f5f2f2 8%, #f5f2f2);
    background-image: linear-gradient(#e6e3e3, #f5f2f2 8%, #f5f2f2);
    background-color: #f5f2f2;
  }
  #global-search.calculating {
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    visibility: hidden;
  }
  #global-search.animating {
    display: block;
    overflow: hidden;
    -moz-transition: height 300ms ease-out;
    -o-transition: height 300ms ease-out;
    -webkit-transition: height 300ms ease-out;
    transition: height 300ms ease-out;
  }
  #global-search.open {
    display: block;
  }
  #global-search .lyt-inner {
    padding: 10px 0;
  }
  #global-search .search-list {
    text-align: center;
  }
  #global-search .search-list li {
    margin: 0 0 10px;
    display: block;
  }
  #global-search .search-list li.globalwebsite {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #global-search .search-list li.globalwebsite.m-left-20 {
    margin-left: 0 !important;
  }
  #global-search .search-list li.globalwebsite a {
    display: inline-block;
    background: #ffffff;
    border: 1px #d6d2d2 solid;
    border-radius: 3px;
    width: 100%;
    margin: 0 auto;
    padding: 4px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
  }
  #global-search .search-list li.globalwebsite a span {
    display: inline-block !important;
    font-size: 84.61538%;
    color: #4c4c4c;
    position: relative;
  }
  #global-search .search-list li.globalwebsite a span:after {
    content: "";
    display: inline;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    margin-left: 10px;
    background: url(/common/images/contents/com_arrow14.gif) no-repeat left center;
    background-size: 12px;
    width: 12px;
    height: 12px;
  }
  #global-search .search-list li.globalwebsite a img {
    display: none;
  }
  #global-search .search-list li.globalwebsite + .word {
    margin-left: 0 !important;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 0 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #global-search .search-list li.globalwebsite + .word form {
    overflow: auto;
  }
  #global-search .search-list li.globalwebsite + .word form input[type="text"] {
    float: left;
    margin-right: 2%;
    line-height: 24px;
  }
  #global-search .search-list li.globalwebsite + .word form input[type="image"] {
    float: left;
    margin-top: 2px;
  }
  #global-search .search-list li input[type="text"] {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 88%;
  }
}

/* 言語選択
----------------------------------------------- */
.language-changer-form {
  margin: 0;
}

.language-changer-select {
  padding: 0;
  width: 150px;
  min-height: 0;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  .language-changer-select {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 88%;
  }
}

.language-changer-submit {
  display: inline-block;
  vertical-align: baseline;
}
.language-changer-submit img {
  vertical-align: baseline !important;
}

.language-changer-list {
  margin: 0;
  display: none;
}

.script-unavailable .language-changer-form {
  display: none;
}
.script-unavailable .language-changer-list {
  display: block;
}

/* ----------------------------------------------------------------
	nav-global
----------------------------------------------------------------- */
#nav-global {
  border-top: 1px #f5f5f5 solid;
}
#nav-global .lyt-inner {
  margin: 0 auto;
  max-width: 1032px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#nav-global .nav {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNmMWVlZWUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZGRkZGQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #ffffff), color-stop(70%, #f1eeee), color-stop(100%, #dddddd));
  background-image: -moz-linear-gradient(#ffffff, #ffffff 25%, #f1eeee 70%, #dddddd);
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #f1eeee 70%, #dddddd);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #f1eeee 70%, #dddddd);
  background-color: #ffffff;
}
#nav-global .nav .lyt-inner {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNmMWVlZWUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZGRkZGQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #ffffff), color-stop(70%, #f1eeee), color-stop(100%, #dddddd));
  background-image: -moz-linear-gradient(#ffffff, #ffffff 25%, #f1eeee 70%, #dddddd);
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #f1eeee 70%, #dddddd);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #f1eeee 70%, #dddddd);
  background-color: #ffffff;
}
#nav-global .nav ul {
  margin: 0 12px;
  font-size: 100%;
  line-height: 1.45;
  letter-spacing: -0.4em;
}
#nav-global .nav ul li {
  display: inline-block;
  letter-spacing: normal;
}
#nav-global .nav ul li a {
  padding: 8px 24px;
  border-left: 1px transparent solid;
  color: #4c4c4c;
  display: block;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}
#nav-global .nav ul li a:hover, #nav-global .nav ul li a:active, #nav-global .nav ul li a:focus {
  color: #d10000;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YyZjJmMiIvPjxzdG9wIG9mZnNldD0iMjUlIiBzdG9wLWNvbG9yPSIjZjJmMmYyIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNlYWVhZWEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2QzZDMiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(25%, #f2f2f2), color-stop(70%, #eaeaea), color-stop(100%, #d7d3d3));
  background-image: -moz-linear-gradient(#f2f2f2, #f2f2f2 25%, #eaeaea 70%, #d7d3d3);
  background-image: -webkit-linear-gradient(#f2f2f2, #f2f2f2 25%, #eaeaea 70%, #d7d3d3);
  background-image: linear-gradient(#f2f2f2, #f2f2f2 25%, #eaeaea 70%, #d7d3d3);
  background-color: #f5f2f2;
}
#nav-global .nav ul li.open a {
  border-color: #dad6d6;
  border-bottom: none;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NiYzZjNiIvPjxzdG9wIG9mZnNldD0iMSUiIHN0b3AtY29sb3I9IiNjYmM2YzYiLz48c3RvcCBvZmZzZXQ9IjIwLjUlIiBzdG9wLWNvbG9yPSIjZTFkZWRlIi8+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNlOWU3ZTciLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMGVkZWQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbc6c6), color-stop(1%, #cbc6c6), color-stop(20.5%, #e1dede), color-stop(40%, #e9e7e7), color-stop(100%, #f0eded));
  background-image: -moz-linear-gradient(#cbc6c6, #cbc6c6 1%, #e1dede, #e9e7e7 40%, #f0eded);
  background-image: -webkit-linear-gradient(#cbc6c6, #cbc6c6 1%, #e1dede, #e9e7e7 40%, #f0eded);
  background-image: linear-gradient(#cbc6c6, #cbc6c6 1%, #e1dede, #e9e7e7 40%, #f0eded);
  background-color: #f0eded;
}
#nav-global .nav ul li.active a {
  padding-bottom: 7px;
  border-color: #dad6d6;
  border-bottom: 1px #d8d4d4 solid;
  color: #d10000;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NiYzZjNiIvPjxzdG9wIG9mZnNldD0iMSUiIHN0b3AtY29sb3I9IiNjYmM2YzYiLz48c3RvcCBvZmZzZXQ9IjIwLjUlIiBzdG9wLWNvbG9yPSIjZTFkZWRlIi8+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNlOWU3ZTciLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMGVkZWQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbc6c6), color-stop(1%, #cbc6c6), color-stop(20.5%, #e1dede), color-stop(40%, #e9e7e7), color-stop(100%, #f0eded));
  background-image: -moz-linear-gradient(#cbc6c6, #cbc6c6 1%, #e1dede, #e9e7e7 40%, #f0eded);
  background-image: -webkit-linear-gradient(#cbc6c6, #cbc6c6 1%, #e1dede, #e9e7e7 40%, #f0eded);
  background-image: linear-gradient(#cbc6c6, #cbc6c6 1%, #e1dede, #e9e7e7 40%, #f0eded);
  background-color: #f0eded;
  position: relative;
}
#nav-global .nav ul li.active a:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
#nav-global .nav ul li.active a:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I5MDAwMCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjZTcwMDAwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZTcwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #b90000), color-stop(70%, #e70000), color-stop(100%, #e70000));
  background-image: -moz-linear-gradient(left, #b90000, #e70000 70%, #e70000);
  background-image: -webkit-linear-gradient(left, #b90000, #e70000 70%, #e70000);
  background-image: linear-gradient(to right, #b90000, #e70000 70%, #e70000);
  background-color: #e70000;
}
#nav-global .pulldown {
  display: none;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YwZWRlZCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0eded), color-stop(70%, #ffffff), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f0eded, #ffffff 70%, #ffffff);
  background-image: -webkit-linear-gradient(#f0eded, #ffffff 70%, #ffffff);
  background-image: linear-gradient(#f0eded, #ffffff 70%, #ffffff);
  background-color: #f0eded;
  font-size: 92.30769%;
}
#nav-global .pulldown > * {
  display: none;
}
#nav-global .pulldown.calculating {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  visibility: hidden;
}
#nav-global .pulldown.calculating > * {
  display: block;
}
#nav-global .pulldown.animating {
  display: block;
  overflow: hidden;
  -moz-transition: height 300ms ease-out;
  -o-transition: height 300ms ease-out;
  -webkit-transition: height 300ms ease-out;
  transition: height 300ms ease-out;
}
#nav-global .pulldown.animating > .open {
  display: block;
}
#nav-global .pulldown.open {
  display: block;
}
#nav-global .pulldown.open > .open {
  display: block;
}
#nav-global .pulldown .lyt-inner {
  padding: 30px 36px 10px;
}
#nav-global .pulldown .col-2 .col-span-3 {
  width: 72.1875%;
}
#nav-global .pulldown .col-2 .col-span-1 {
  margin-left: 3.75%;
  width: 24.0625%;
}
#nav-global .pulldown .category-top {
  margin-bottom: 0;
  padding-bottom: 5px;
  border-bottom: 2px #c2bebe solid;
  font-weight: bold;
}
#nav-global .pulldown .category-top a {
  display: block;
  text-decoration: none;
}
#nav-global .pulldown .pulldown-nav {
  font-size: 91.66667%;
}
#nav-global .pulldown .pulldown-nav li {
  padding: 10px 0;
  border-bottom: 1px #d6d2d2 solid;
}
#nav-global .pulldown .pulldown-nav li a {
  margin: -10px 0;
  padding: 10px 0;
  display: block;
  text-decoration: none;
}
#nav-global .pulldown .pulldown-nav-01 li {
  margin-bottom: 20px;
}
#nav-global .pulldown .pulldown-nav-01 li a {
  display: block;
  font-weight: bold;
  text-decoration: none;
}
#nav-global .pulldown .pulldown-nav-01 li a img {
  margin-top: 5px;
  display: block;
}
#nav-global .pulldown .close {
  margin-bottom: 0;
  text-align: right;
}
#nav-global .pulldown .close button {
  padding: 0 20px 0 0;
  font-size: 107.69231%;
  border: none;
  background: none;
  background-image: url(/common/images/contents/com_close.gif);
  background-repeat: no-repeat;
  background-position: 100% 0.25em;
}
#nav-global .pulldown .close button:active, #nav-global .pulldown .close button:hover, #nav-global .pulldown .close button:focus {
  color: #d10000;
}
#nav-global .nav-btn {
  display: none;
}
@media screen and (max-width: 1072px) {
  #nav-global .lyt-inner {
    margin: 0 20px;
  }
  #nav-global .pulldown .category p {
    margin: 0 20px;
  }
  #nav-global .pulldown .close p {
    margin: 0 20px;
  }
}
@media screen and (max-width: 800px) {
  #nav-global .nav .lyt-inner {
    margin: 0;
  }
  #nav-global .nav ul {
    text-align: center;
  }
  #nav-global .nav ul li a {
    padding: 8px 12px;
  }
  #nav-global .pulldown .lyt-inner {
    padding: 30px 20px 10px;
  }
}
@media screen and (min-width: 641px) {
  #nav-global .nav {
    height: auto !important;
  }
}
@media screen and (max-width: 640px) {
  #nav-global {
    border-top: none;
  }
  #nav-global .lyt-inner {
    margin: 0;
    padding-left: 10px;
  }
  #nav-global .nav {
    display: none;
  }
  #nav-global .nav.calculating {
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    visibility: hidden;
  }
  #nav-global .nav.animating {
    display: block;
    overflow: hidden;
    -moz-transition: height 300ms ease-out;
    -o-transition: height 300ms ease-out;
    -webkit-transition: height 300ms ease-out;
    transition: height 300ms ease-out;
  }
  #nav-global .nav.open {
    display: block;
  }
  #nav-global .nav .lyt-inner {
    padding: 0;
    background-image: none;
    background-color: #fafafa;
  }
  #nav-global .nav ul {
    margin: 0;
    background-image: none;
    background-color: #fafafa;
    text-align: left;
    font-size: 107.69231%;
  }
  #nav-global .nav ul li {
    display: block;
  }
  #nav-global .nav ul li a {
    padding: 10px 40px 10px 20px;
    border-left: none;
    border-top: 1px #e6e3e3 solid;
    position: relative;
  }
  #nav-global .nav ul li a:hover, #nav-global .nav ul li a:active, #nav-global .nav ul li a:focus {
    color: #1b1b1b;
    background-color: transparent;
    background-image: none;
  }
  #nav-global .nav ul li a:before {
    content: "";
    display: block;
    width: 8px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 20px;
  }
  #nav-global .nav ul li a:before {
    background-image: url(/common/images/contents/com_arrow09.gif);
    background-repeat: no-repeat;
    background-position: right center;
  }
  #nav-global .nav ul li.open a {
    border-color: #e6e3e3;
    background-color: transparent;
    background-image: none;
  }
  #nav-global .nav ul li.active a {
    padding-bottom: 8px;
    color: #1b1b1b;
    border-top: 1px #e6e3e3 solid;
    border-bottom: none;
    background-color: transparent;
    background-image: none;
    position: relative;
  }
  #nav-global .nav ul li.active a:before {
    content: "";
    display: block;
    width: 8px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 20px;
    left: auto;
  }
  #nav-global .nav ul li.active a:before {
    background-color: transparent;
    background-image: url(/common/images/contents/com_arrow09.gif);
    background-repeat: no-repeat;
    background-position: right center;
  }
  #nav-global .pulldown {
    display: none !important;
  }
  #nav-global .nav-btn {
    border-left: 1px #ecebeb solid;
    color: transparent;
    display: block;
    width: 48px;
    height: 47px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    cursor: pointer;
    background: url(/common/images/nav-global/sp_nav_btn01.gif), url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2UwZGNkYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background: url(/common/images/nav-global/sp_nav_btn01.gif), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fafafa), color-stop(100%, #e0dcdc));
    background: url(/common/images/nav-global/sp_nav_btn01.gif), -moz-linear-gradient(#fafafa, #e0dcdc);
    background: url(/common/images/nav-global/sp_nav_btn01.gif), -webkit-linear-gradient(#fafafa, #e0dcdc);
    background: url(/common/images/nav-global/sp_nav_btn01.gif), linear-gradient(#fafafa, #e0dcdc);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #e0dcdc;
  }
  #nav-global .nav-btn span {
    display: block;
    width: 100%;
    height: 100%;
  }
  #nav-global .nav-btn.open {
    height: 48px;
    background: url(/common/images/nav-global/sp_nav_btn02.gif), url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UwZGNkYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background: url(/common/images/nav-global/sp_nav_btn02.gif), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0dcdc), color-stop(100%, #fafafa));
    background: url(/common/images/nav-global/sp_nav_btn02.gif), -moz-linear-gradient(#e0dcdc, #fafafa);
    background: url(/common/images/nav-global/sp_nav_btn02.gif), -webkit-linear-gradient(#e0dcdc, #fafafa);
    background: url(/common/images/nav-global/sp_nav_btn02.gif), linear-gradient(#e0dcdc, #fafafa);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #e0dcdc;
  }
}

/* nav-global JavaScript off
----------------------------------------------- */
.script-unavailable #nav-global .nav-btn {
  display: none;
}
.script-unavailable #nav-global .nav {
  display: block;
}

/* ----------------------------------------------------------------
	nav-local
----------------------------------------------------------------- */
#nav-local {
  margin: 1px 0 40px 1px;
  padding: 24px 0 0;
  border-width: 1px 1px 0 0;
  border-color: #e8e5e5;
  border-style: solid;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #ffffff;
  position: relative;
  position: relative;
}
#nav-local:before {
  content: "";
  display: block;
  width: 100%;
  height: 22px;
  overflow: hidden;
  position: absolute;
  top: -24px;
  left: 0;
}
#nav-local:after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  overflow: hidden;
  position: absolute;
  bottom: -15px;
  left: 0;
}
#nav-local:before {
  background-image: url(/common/images/str-side/nav_bg01.gif);
  background-repeat: no-repeat;
  background-position: 0 100%;
}
#nav-local:after {
  background-image: url(/common/images/str-side/nav_bg02.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
#nav-local h2 {
  margin: 0 10px 40px 35px;
  color: #d10000;
  font-size: 123.07692%;
}
#nav-local h2 a {
  color: #d10000;
  display: block;
  text-decoration: none;
}
#nav-local ul {
  /* first level */
  margin: 0;
}
#nav-local ul li {
  padding-left: 24px;
}
#nav-local ul li:first-child a {
  border-top: none;
}
#nav-local ul li:first-child ul li a {
  border-top: 1px #e0dedf solid;
}
#nav-local ul li a {
  padding: 10px;
  border-top: 1px #ebebeb solid;
  color: #4d4949;
  text-decoration: none;
  display: block;
}
#nav-local ul li a:hover, #nav-local ul li a:active, #nav-local ul li a:focus {
  color: #d10000;
}
#nav-local ul li.active {
  position: relative;
}
#nav-local ul li.active:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 24px;
}
#nav-local ul li.active:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4MDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I5MDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e80000), color-stop(100%, #b90000));
  background-image: -moz-linear-gradient(left, #e80000, #b90000);
  background-image: -webkit-linear-gradient(left, #e80000, #b90000);
  background-image: linear-gradient(to right, #e80000, #b90000);
  background-color: #b90000;
  z-index: 1;
}
#nav-local ul li.active > a {
  color: #1b1b1b;
}
#nav-local ul li.active > a:hover, #nav-local ul li.active > a:active, #nav-local ul li.active > a:focus {
  color: #d10000;
}
#nav-local ul li.active > em {
  display: block;
}
#nav-local ul li.active > em a {
  color: #d10000;
}
#nav-local ul li ul {
  /* Second level */
  margin: 0;
  font-size: 92.30769%;
}
#nav-local ul li ul li {
  padding-left: 0;
  position: static;
}
#nav-local ul li ul li:before {
  display: none;
}
#nav-local ul li ul li:first-child a {
  border-top: 1px #e0dedf solid;
}
#nav-local ul li ul li a {
  padding-left: 30px;
  border-color: #e0dedf;
  position: relative;
}
#nav-local ul li ul li a:before {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  overflow: hidden;
  position: absolute;
  top: 1.35em;
  left: 10px;
}
#nav-local ul li ul li a:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2MyYmViZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjZDhkNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #c2bebd), color-stop(100%, #dcd8d7));
  background-image: -moz-linear-gradient(left, #c2bebd, #dcd8d7);
  background-image: -webkit-linear-gradient(left, #c2bebd, #dcd8d7);
  background-image: linear-gradient(to right, #c2bebd, #dcd8d7);
  background-color: #dcd8d7;
}
#nav-local ul li ul li.active:before {
  display: none;
}
#nav-local ul li ul li.active em a:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I5MDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2QxMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #b90000), color-stop(100%, #d10000));
  background-image: -moz-linear-gradient(left, #b90000, #d10000);
  background-image: -webkit-linear-gradient(left, #b90000, #d10000);
  background-image: linear-gradient(to right, #b90000, #d10000);
  background-color: #b90000;
}
#nav-local ul li ul li ul {
  /* Third level */
  font-size: 91.66667%;
}
#nav-local ul li ul li ul li a {
  padding: 10px 10px 10px 30px;
}
#nav-local ul li ul li ul li a:before {
  height: 1px;
  top: 1.55em;
  left: 10px;
}
#nav-local .nav-category {
  display: none;
}
#nav-local .nav-category.active {
  display: block;
}
#nav-local .nav-category.active ul li ul {
  display: none;
}
#nav-local .nav-category.active ul li.active > ul {
  display: block;
}
@media screen and (max-width: 800px) {
  #nav-local {
    margin: 0 0 30px;
  }
  #nav-local h2 {
    margin-left: 20px;
  }
  #nav-local ul {
    /* first level */
    font-size: 92.30769%;
  }
  #nav-local ul li {
    padding-left: 10px;
  }
  #nav-local ul li.active:before {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  #nav-local {
    padding: 0 0 10px;
    border-width: 1px 0;
    border-color: #ecebeb;
    border-style: solid;
    border-radius: 0;
    background-color: #f5f2f2;
  }
  #nav-local:before, #nav-local:after {
    display: none;
  }
  #nav-local h2 {
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px #ecebeb solid;
  }
  #nav-local ul {
    /* first level */
    border-bottom: 1px #ecebeb solid;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 100%;
  }
  #nav-local ul li {
    padding-left: 0;
  }
  #nav-local ul li a {
    padding: 10px 35px 10px 20px !important;
    position: relative;
  }
  #nav-local ul li a:hover, #nav-local ul li a:active, #nav-local ul li a:focus {
    color: #4d4949;
  }
  #nav-local ul li a:before {
    content: "";
    display: block;
    width: 7px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 20px;
  }
  #nav-local ul li a:before {
    background-image: url(/common/images/contents/com_arrow03.gif);
    background-repeat: no-repeat;
    background-position: right center;
  }
  #nav-local ul li.active:before {
    display: none;
  }
  #nav-local ul li.active > em a {
    color: #4d4949;
  }
  #nav-local ul li ul {
    /* Second level */
    border-bottom: none;
    font-weight: normal;
  }
  #nav-local ul li ul li a:before {
    top: 0;
    left: auto;
    width: 7px;
    height: 100%;
    background: none;
    background-image: url(/common/images/contents/com_arrow03.gif);
    background-repeat: no-repeat;
    background-position: right center;
  }
  #nav-local ul li ul li:first-child a {
    border-top: 1px #ecebeb solid;
  }
  #nav-local ul li ul li.active em {
    font-weight: normal;
  }
  #nav-local ul li ul li.active em a:before {
    background: none;
    background-image: url(/common/images/contents/com_arrow03.gif);
    background-repeat: no-repeat;
    background-position: right center;
  }
  #nav-local ul li ul li ul {
    /* Third level */
  }
  #nav-local ul li ul li ul li a:before {
    top: 0;
    left: auto;
    width: 7px;
    height: 100%;
    background: none;
    background-image: url(/common/images/contents/com_arrow03.gif);
    background-repeat: no-repeat;
    background-position: right center;
  }
}

/* nav-local JavaScript off
----------------------------------------------- */
.script-unavailable #nav-local .nav-category {
  display: block;
}

/* .nav-news
----------------------------------------------- */
#nav-local.nav-news {
  padding: 24px 10px 24px 36px;
}
#nav-local.nav-news h2 {
  margin: 0 -10px 10px 0;
  padding-right: 10px;
  color: #1b1b1b;
  font-size: 107.69231%;
}
#nav-local.nav-news .news-search {
  margin-bottom: 40px;
  display: table;
  width: 100%;
}
#nav-local.nav-news .news-search input[type="text"] {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#nav-local.nav-news .news-search > span {
  display: table-cell;
  vertical-align: top;
}
#nav-local.nav-news .news-search > span:first-child {
  padding-right: 5px;
}
#nav-local.nav-news .link-list-01 {
  font-weight: bold;
}
#nav-local.nav-news .link-list-01 > li {
  padding-left: 0;
}
#nav-local.nav-news .link-list-01 > li > a {
  padding: 0 0 0 20px;
  border: none;
}
#nav-local.nav-news .link-list-01 > li .link-list {
  margin: 5px 0 0 0.6em;
  font-weight: normal;
}
#nav-local.nav-news .link-list-01 > li .link-list > li {
  margin-bottom: 5px;
  padding-left: 0;
}
#nav-local.nav-news .link-list-01 > li .link-list > li > a {
  padding: 0 0 0 12px;
  border: none;
  position: relative;
}
#nav-local.nav-news .link-list-01 > li .link-list > li > a:before {
  content: "";
  display: block;
  width: 6px;
  height: 7px;
  overflow: hidden;
  position: absolute;
  top: 0.4em;
  left: 0;
}
#nav-local.nav-news .link-list-01 > li .link-list > li > a:before {
  background-image: url(/common/images/contents/com_arrow03.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: transparent;
}
#nav-local.nav-news .link-list-01 > li .link-list > li ul {
  margin-left: 1.5em;
}
#nav-local.nav-news .link-list-01 > li .link-list > li:first-child > a {
  border-top: none;
}
@media screen and (max-width: 800px) {
  #nav-local.nav-news {
    padding: 24px 10px 24px 20px;
  }
}
@media screen and (max-width: 767px) {
  #nav-local.nav-news {
    padding: 0 0 10px;
    border-top: none;
  }
  #nav-local.nav-news h2 {
    margin: 0;
    border-top: 1px #ecebeb solid;
    color: #d10000;
    font-size: 123.07692%;
  }
  #nav-local.nav-news h2:before {
    display: none;
  }
  #nav-local.nav-news .news-search {
    margin: 0;
    padding: 15px 20px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  #nav-local.nav-news .link-list-01 > li {
    margin: 0;
  }
  #nav-local.nav-news .link-list-01 > li a {
    border-top: 1px #ecebeb solid;
  }
  #nav-local.nav-news .link-list-01 > li a:before {
    left: auto;
  }
  #nav-local.nav-news .link-list-01 > li:first-child > a {
    border-top: none;
  }
  #nav-local.nav-news .link-list-01 > li .link-list {
    margin: 0;
    border-bottom: none;
    font-size: 84.61538%;
  }
  #nav-local.nav-news .link-list-01 > li .link-list li {
    margin: 0;
  }
  #nav-local.nav-news .link-list-01 > li .link-list li a:before {
    height: 100%;
    top: 0;
    left: auto;
    background-position: 0 50%;
  }
  #nav-local.nav-news .link-list-01 > li .link-list li:first-child > a {
    border-top: 1px #ecebeb solid;
  }
}

/* ----------------------------------------------------------------
	#str-side
----------------------------------------------------------------- */
#str-side {
  margin-bottom: 20px;
}
#str-side .aside {
  padding: 0 0 0 24px;
}
@media screen and (max-width: 800px) {
  #str-side .aside {
    padding: 0 10px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #str-side .aside {
    padding: 0 20px;
  }
}

/* ----------------------------------------------------------------
	footer
----------------------------------------------------------------- */
#str-footer {
  margin-top: 40px;
  color: #ffffff;
  font-size: 84.61538%;
}
#str-footer .footer-top {
  background-color: #4f4b4b;
}
#str-footer .footer-top .lyt-inner {
  margin: 0 auto;
  padding: 10px 0;
  max-width: 1032px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.3)), color-stop(80%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
}
#str-footer .utility {
  margin: 0;
  float: left;
}
#str-footer .utility li {
  margin-right: 20px;
  padding-left: 10px;
  background-image: url(/common/images/contents/com_arrow01.gif);
  background-repeat: no-repeat;
  background-position: 0 0.45em;
  display: inline-block;
}
#str-footer .utility li a {
  color: #ffffff;
  text-decoration: none;
}
#str-footer .utility li a:hover, #str-footer .utility li a:active, #str-footer .utility li a:focus {
  text-decoration: underline;
}

#str-footer .footer-bottom {
  background-color: #ffffff;
}
#str-footer .footer-bottom .lyt-inner {
  margin: 0 auto;
  max-width: 1032px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
#str-footer .footer-bottom .logo a {
  display: inline-block;
}
#str-footer .footer-bottom #copyright {
  color: #1B1B1B;
  margin: 0;
  font-size: 0.5625rem;
}
@media screen and (max-width: 1072px) {
  #str-footer .footer-top .lyt-inner {
    margin: 0 20px;
  }
  #str-footer .footer-bottom .lyt-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 800px) {
  #str-footer {
    font-size: 92.30769%;
  }
  #str-footer .utility {
    float: none;
    width: auto;
  }
  #str-footer  #copyright {
    float: none;
    width: auto;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  #str-footer {
    margin: 0;
  }
  #str-footer .footer-top .lyt-inner {
    margin: 0 10px;
  }
  #str-footer .utility {
    margin-bottom: 0;
  }
  #str-footer .footer-bottom .lyt-inner {
    margin: 0 10px;
    flex-direction: column;
    gap: 9px;
  }
 #str-footer .footer-bottom .logo a img {
    width: auto;
    height: 14px;
  }
  #str-footer .footer-bottom #copyright {
    font-size: 0.5rem;
  }
}

/* ----------------------------------------------------------------
	topic-path
----------------------------------------------------------------- */
.topic-path {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4) inset;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4) inset;
  background-color: #4f4b4b;
}
.topic-path .lyt-inner {
  margin: 0 auto;
  padding: 8px 36px 48px;
  max-width: 1032px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.3)), color-stop(80%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
}
.topic-path .lyt-inner p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 84.61538%;
}
.topic-path .lyt-inner p a {
  color: #ffffff;
  text-decoration: none;
}
.topic-path .lyt-inner p a:hover, .topic-path .lyt-inner p a:active, .topic-path .lyt-inner p a:focus {
  text-decoration: underline;
}
@media screen and (max-width: 1072px) {
  .topic-path .lyt-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 800px) {
  .topic-path .lyt-inner {
    padding: 8px 20px 48px;
  }
}
@media screen and (max-width: 767px) {
  .topic-path .lyt-inner {
    margin: 0;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 640px) {
  .topic-path .lyt-inner {
    padding: 4px 20px;
  }
}

/* ----------------------------------------------------------------
	popup
----------------------------------------------------------------- */
.lyt-popup {
  background-color: #ffffff;
}
.lyt-popup #str-container {
  background-color: #ffffff;
}
.lyt-popup #str-header {
  -webkit-box-shadow: 0 2px 3px #cecdcd;
  box-shadow: 0 2px 3px #cecdcd;
}
.lyt-popup #str-header .lyt-inner {
  margin: 0 20px;
  width: auto;
  max-width: none;
}
.lyt-popup #str-header .group-company {
  margin-bottom: -3px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NlY2RjZCIvPjxzdG9wIG9mZnNldD0iOCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cecdcd), color-stop(8%, #e8e8e8), color-stop(100%, #e8e8e8));
  background-image: -moz-linear-gradient(#cecdcd, #e8e8e8 8%, #e8e8e8);
  background-image: -webkit-linear-gradient(#cecdcd, #e8e8e8 8%, #e8e8e8);
  background-image: linear-gradient(#cecdcd, #e8e8e8 8%, #e8e8e8);
}
.lyt-popup #str-footer .lyt-inner {
  margin: 0 20px;
  width: auto;
  max-width: none;
}
.lyt-popup #str-contents {
  margin: 3px auto 0;
  max-width: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.lyt-popup #str-contents #str-main {
  margin: 0 20px;
  padding: 0;
  width: auto;
  max-width: none;
}
.lyt-popup #str-contents .close {
  margin: 40px 0 0;
  text-align: center;
}
.lyt-popup #str-contents .close button {
  padding: 0 20px 0 0;
  font-size: 107.69231%;
  border: none;
  background: none;
  background-image: url(/common/images/contents/com_close.gif);
  background-repeat: no-repeat;
  background-position: 100% 0.25em;
}
.lyt-popup #str-contents .close button:active, .lyt-popup #str-contents .close button:hover, .lyt-popup #str-contents .close button:focus {
  color: #d10000;
}
@media screen and (max-width: 800px) {
  .lyt-popup #str-header .lyt-inner {
    height: 65px;
  }
  .lyt-popup #str-header .group-company .lyt-inner {
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .lyt-popup #str-header .lyt-inner {
    padding: 13px 0 9px;
    height: auto;
  }
  .lyt-popup .close {
    display: none;
  }
}

/* ----------------------------------------------------------------
	Hybrid
----------------------------------------------------------------- */
.lyt-hybrid {
  background-color: #ffffff;
}
.lyt-hybrid #str-container {
  min-width: 1072px;
  background-color: #ffffff;
}
.lyt-hybrid #str-contents {
  margin: 3px auto 0;
  padding: 40px 20px 10px;
  width: auto;
  max-width: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.lyt-hybrid #str-contents #str-main {
  margin: 0 auto;
  padding: 0;
  width: 1032px;
}
.lyt-hybrid #str-header {
  padding: 0;
  -webkit-box-shadow: 0 2px 3px #cecdcd;
  box-shadow: 0 2px 3px #cecdcd;
}
.lyt-hybrid #str-header .lyt-inner {
  margin: 0 auto;
  width: 1032px;
}
.lyt-hybrid #str-header .group-company {
  margin-bottom: -3px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NlY2RjZCIvPjxzdG9wIG9mZnNldD0iOCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cecdcd), color-stop(8%, #e8e8e8), color-stop(100%, #e8e8e8));
  background-image: -moz-linear-gradient(#cecdcd, #e8e8e8 8%, #e8e8e8);
  background-image: -webkit-linear-gradient(#cecdcd, #e8e8e8 8%, #e8e8e8);
  background-image: linear-gradient(#cecdcd, #e8e8e8 8%, #e8e8e8);
}
.lyt-hybrid #str-footer {
  padding: 0;
}
.lyt-hybrid #str-footer .lyt-inner {
  margin: 0 auto;
  width: 1032px;
}
@media screen and (max-width: 800px) {
  .lyt-hybrid #str-header .lyt-inner {
    height: 65px;
  }
  .lyt-hybrid #str-header .group-company .lyt-inner {
    padding: 10px 0;
    height: auto;
  }
  .lyt-hybrid #str-footer #copyright {
    text-align: right;
  }
}
@media screen and (max-width: 640px) {
  .lyt-hybrid #str-header .lyt-inner {
    padding: 22px 0 21px;
  }
  .lyt-hybrid #str-header #logo {
    position: absolute;
    top: 22px;
    left: 0;
    z-index: 2;
    max-width: none;
  }
  .lyt-hybrid #str-header #logo img.promise {
    display: inline-block;
    position: relative;
    top: 4px;
    left: 8px;
  }
  .lyt-hybrid #str-footer {
    margin-top: 40px;
  }
}

/* ----------------------------------------------------------------
	clearfix
----------------------------------------------------------------- */
#str-contents:after, .lyt-col-3 #str-main:after, #str-footer .lyt-inner:after, .col-2:after, .col-3:after, .col-4:after, .comp-plugin p:after {
  content: "";
  display: block;
  clear: both;
}

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

	03. Modules

----------------------------------------------------------------- */
/* ----------------------------------------------------------------
	headings
----------------------------------------------------------------- */
/* .hdg-l1
----------------------------------------------- */
.hdg-l1 {
  margin: -40px 0 25px;
  padding: 50px 20px 7px 36px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: #ffffff;
  height: 90px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 230.76923%;
  font-weight: normal;
  position: relative;
}
.hdg-l1:before {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hdg-l1:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q0ZDNkMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d4d3d3), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#d4d3d3, #ffffff);
  background-image: -webkit-linear-gradient(#d4d3d3, #ffffff);
  background-image: linear-gradient(#d4d3d3, #ffffff);
}
.hdg-l1 span {
  position: relative;
  z-index: 1;
}
.hdg-l1 img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1032px;
  height: 140px;
  max-width: none;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .hdg-l1 {
    margin-bottom: 30px;
    padding: 112px 20px 0;
    color: #1b1b1b;
    height: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    line-height: 1.45;
    text-shadow: none;
    font-size: 200%;
  }
  .hdg-l1:before {
    display: none;
  }
  .hdg-l1 img {
    width: 640px;
    height: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/* .hdg-l1-01
----------------------------------------------- */
.hdg-l1-01 {
  margin: 25px 0 30px;
  font-size: 230.76923%;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .hdg-l1-01 {
    margin: -10px 0 30px;
    line-height: 1.45;
    font-size: 200%;
  }
}

/* .hdg-l2
----------------------------------------------- */
.hdg-l2 {
  margin: 48px 0 20px;
  padding: 8px 0 6px 15px;
  color: #d10000;
  font-weight: bold;
  font-size: 138.46154%;
  position: relative;
}
.hdg-l2:before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.hdg-l2:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IyMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U0MDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #b20000), color-stop(100%, #e40000));
  background-image: -moz-linear-gradient(left, #b20000, #e40000);
  background-image: -webkit-linear-gradient(left, #b20000, #e40000);
  background-image: linear-gradient(to right, #b20000, #e40000);
  background-color: #e70000;
}
@media screen and (max-width: 640px) {
  .hdg-l2 {
    margin: 30px 0 20px;
  }
}

/* .hdg-lyt-l2
----------------------------------------------- */
.hdg-lyt-l2 {
  margin: 48px 0 20px;
  display: table;
  width: 100%;
}
.hdg-lyt-l2 > * {
  display: table-cell;
  vertical-align: middle;
}
.hdg-lyt-l2 .hdg-lyt-col {
  padding-left: 10px;
  width: 40%;
  white-space: nowrap;
  text-align: right;
}
.hdg-lyt-l2 .hdg-lyt-col input,
.hdg-lyt-l2 .hdg-lyt-col select {
  vertical-align: top;
}
.hdg-lyt-l2 .hdg-l2 {
  margin-top: 0;
  padding-left: 0;
}
.hdg-lyt-l2 .hdg-l2:before {
  display: none;
}
.hdg-lyt-l2 .hdg-l2 > span {
  padding: 8px 0 6px 15px;
  display: block;
  position: relative;
}
.hdg-lyt-l2 .hdg-l2 > span:before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.hdg-lyt-l2 .hdg-l2 > span:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IyMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U0MDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #b20000), color-stop(100%, #e40000));
  background-image: -moz-linear-gradient(left, #b20000, #e40000);
  background-image: -webkit-linear-gradient(left, #b20000, #e40000);
  background-image: linear-gradient(to right, #b20000, #e40000);
  background-color: #b20000;
}
@media screen and (max-width: 640px) {
  .hdg-lyt-l2 {
    margin-top: 30px;
  }
  .hdg-lyt-l2 .hdg-lyt-col {
    width: auto;
    text-align: right;
  }
}

/* .hdg-l2/.hdg-lyt-l2 top margin control
----------------------------------------------- */
.hdg-l1-01 + .hdg-l2,
.hdg-l1-01 + .hdg-lyt-l2 {
  margin-top: 0;
}

#str-main > :first-child[class*="hdg-l2"],
#str-main > :first-child[class*="hdg-lyt-l2"] {
  margin-top: 0;
}

[class*="col-2"] > .col > :first-child[class*="hdg-l2"],
[class*="col-2"] > .col > :first-child[class*="hdg-lyt-l2"],
[class*="col-3"] > .col > :first-child[class*="hdg-l2"],
[class*="col-3"] > .col > :first-child[class*="hdg-lyt-l2"],
[class*="col-4"] > .col > :first-child[class*="hdg-l2"],
[class*="col-4"] > .col > :first-child[class*="hdg-lyt-l2"] {
  margin-top: 28px;
}

#str-main > :first-child[class*="col-2"] > .col:nth-child(-n+2) > :first-child[class*="hdg-l2"],
#str-main > :first-child[class*="col-2"] > .col:nth-child(-n+2) > :first-child[class*="hdg-lyt-l2"],
#str-main > :first-child[class*="col-3"] > .col:nth-child(-n+3) > :first-child[class*="hdg-l2"],
#str-main > :first-child[class*="col-3"] > .col:nth-child(-n+3) > :first-child[class*="hdg-lyt-l2"],
#str-main > :first-child[class*="col-4"] > .col:nth-child(-n+4) > :first-child[class*="hdg-l2"],
#str-main > :first-child[class*="col-4"] > .col:nth-child(-n+4) > :first-child[class*="hdg-lyt-l2"] {
  margin-top: 0;
}

/* .hdg-l2-01
----------------------------------------------- */
.hdg-l2-01 {
  margin-bottom: 20px;
  padding-bottom: 6px;
  font-weight: bold;
  font-size: 123.07692%;
  position: relative;
}
.hdg-l2-01:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hdg-l2-01:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5YTRhNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #a9a4a4), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: -webkit-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: linear-gradient(to right, #a9a4a4, #ffffff);
  background-color: #a9a4a4;
}
.hdg-l2-01.branch:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QxMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZTFlMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #d10000), color-stop(100%, #ffe1e1));
  background-image: -moz-linear-gradient(left, #d10000, #ffe1e1);
  background-image: -webkit-linear-gradient(left, #d10000, #ffe1e1);
  background-image: linear-gradient(to right, #d10000, #ffe1e1);
  background-color: #d10000;
}

/* .hdg-lyt-l2-01
----------------------------------------------- */
.hdg-lyt-l2-01 {
  margin: 0 0 20px;
  padding-bottom: 6px;
  display: table;
  width: 100%;
  position: relative;
}
.hdg-lyt-l2-01:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hdg-lyt-l2-01:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5YTRhNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #a9a4a4), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: -webkit-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: linear-gradient(to right, #a9a4a4, #ffffff);
  background-color: #a9a4a4;
}
.hdg-lyt-l2-01 > * {
  display: table-cell;
  vertical-align: middle;
}
.hdg-lyt-l2-01 .hdg-lyt-col {
  padding-left: 10px;
  width: 40%;
  white-space: nowrap;
  text-align: right;
}
.hdg-lyt-l2-01 .hdg-lyt-col input,
.hdg-lyt-l2-01 .hdg-lyt-col select {
  vertical-align: top;
}
.hdg-lyt-l2-01 .hdg-l2-01 {
  padding: 0;
}
.hdg-lyt-l2-01 .hdg-l2-01:before {
  display: none;
}
.hdg-lyt-l2-01.branch:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QxMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZTFlMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #d10000), color-stop(100%, #ffe1e1));
  background-image: -moz-linear-gradient(left, #d10000, #ffe1e1);
  background-image: -webkit-linear-gradient(left, #d10000, #ffe1e1);
  background-image: linear-gradient(to right, #d10000, #ffe1e1);
  background-color: #d10000;
}
@media screen and (max-width: 640px) {
  .hdg-lyt-l2-01 .hdg-lyt-col {
    width: auto;
    text-align: right;
  }
}

/* .hdg-l3
----------------------------------------------- */
.hdg-l3 {
  margin: 30px 0 10px;
  padding: 8px 10px 8px 15px;
  border-width: 1px 0 0 1px;
  border-color: #d6d2d2;
  border-style: solid;
  border-radius: 3px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZjlmOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VhZWFlYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #faf9f9), color-stop(100%, #eaeaea));
  background-image: -moz-linear-gradient(left, #faf9f9, #eaeaea);
  background-image: -webkit-linear-gradient(left, #faf9f9, #eaeaea);
  background-image: linear-gradient(to right, #faf9f9, #eaeaea);
  background-color: #f5f2f2;
  font-weight: bold;
  font-size: 115.38462%;
}

/* .hdg-lyt-l3
----------------------------------------------- */
.hdg-lyt-l3 {
  margin: 30px 0 10px;
  display: table;
  border-width: 1px 0 0 1px;
  border-color: #d6d2d2;
  border-style: solid;
  width: 100%;
  border-radius: 3px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZjlmOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VhZWFlYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #faf9f9), color-stop(100%, #eaeaea));
  background-image: -moz-linear-gradient(left, #faf9f9, #eaeaea);
  background-image: -webkit-linear-gradient(left, #faf9f9, #eaeaea);
  background-image: linear-gradient(to right, #faf9f9, #eaeaea);
  background-color: #f5f2f2;
}
.hdg-lyt-l3 > * {
  padding: 8px 10px;
  display: table-cell;
  vertical-align: middle;
}
.hdg-lyt-l3 .hdg-lyt-col {
  padding-left: 10px;
  width: 40%;
  white-space: nowrap;
  text-align: right;
}
.hdg-lyt-l3 .hdg-lyt-col input,
.hdg-lyt-l3 .hdg-lyt-col select {
  vertical-align: top;
}
.hdg-lyt-l3 .hdg-l3 {
  margin: 0;
  padding-left: 15px;
  border: none;
  background: none;
}
@media screen and (max-width: 640px) {
  .hdg-lyt-l3 .hdg-lyt-col {
    width: auto;
    text-align: right;
  }
}

/* .hdg-l3 top margin control
----------------------------------------------- */
.hdg-l2 + .hdg-l3,
.hdg-lyt-l2 + .hdg-l3 {
  margin-top: 0;
}

#str-main > :first-child[class*="hdg-l3"] {
  margin-top: 0;
}

[class*="col-2"] > .col > :first-child[class*="hdg-l3"],
[class*="col-3"] > .col > :first-child[class*="hdg-l3"],
[class*="col-4"] > .col > :first-child[class*="hdg-l3"] {
  margin-top: 10px;
}

#str-main > :first-child[class*="col-2"] > .col:nth-child(-n+2) > :first-child[class*="hdg-l3"],
#str-main > :first-child[class*="col-3"] > .col:nth-child(-n+3) > :first-child[class*="hdg-l3"],
#str-main > :first-child[class*="col-4"] > .col:nth-child(-n+4) > :first-child[class*="hdg-l3"] {
  margin-top: 0;
}

/* .hdg-l4
----------------------------------------------- */
.hdg-l4 {
  margin-bottom: 10px;
  padding: 0 0 4px 0;
  font-size: 100%;
  font-weight: bold;
  position: relative;
}
.hdg-l4:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hdg-l4:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5YTRhNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #a9a4a4), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: -webkit-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: linear-gradient(to right, #a9a4a4, #ffffff);
  background-color: #a9a4a4;
}

/* .hdg-lyt-l4
----------------------------------------------- */
.hdg-lyt-l4 {
  margin-bottom: 10px;
  display: table;
  width: 100%;
  position: relative;
}
.hdg-lyt-l4:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hdg-lyt-l4:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5YTRhNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #a9a4a4), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: -webkit-linear-gradient(left, #a9a4a4, #ffffff);
  background-image: linear-gradient(to right, #a9a4a4, #ffffff);
  background-color: #a9a4a4;
}
.hdg-lyt-l4 > * {
  padding-bottom: 4px;
  display: table-cell;
  vertical-align: middle;
}
.hdg-lyt-l4 .hdg-lyt-col {
  padding-left: 10px;
  width: 40%;
  white-space: nowrap;
  text-align: right;
}
.hdg-lyt-l4 .hdg-lyt-col input,
.hdg-lyt-l4 .hdg-lyt-col select {
  vertical-align: top;
}
.hdg-lyt-l4 .hdg-l4 {
  margin: 0;
}
.hdg-lyt-l4 .hdg-l4:before {
  display: none;
}
@media screen and (max-width: 640px) {
  .hdg-lyt-l4 .hdg-lyt-col {
    width: auto;
    text-align: right;
  }
}

/* .hdg-l5
----------------------------------------------- */
.hdg-l5 {
  margin-bottom: 10px;
  font-size: 100%;
  font-weight: bold;
}

/* .hdg-l6
----------------------------------------------- */
.hdg-l6 {
  margin-bottom: 10px;
  font-size: 100%;
  font-weight: bold;
}

/* .hdg-lyt-subhead
----------------------------------------------- */
.hdg-lyt-subhead {
  margin: 25px 0 30px;
}
.hdg-lyt-subhead .hdg-l1-01 {
  margin: 5px 0;
}
.hdg-lyt-subhead .catch {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .hdg-lyt-subhead {
    margin: -10px 0 30px;
  }
}

/* .hdg-lyt-subhead-01
----------------------------------------------- */
.hdg-lyt-subhead-01 {
  margin: 25px 0 30px;
}
.hdg-lyt-subhead-01 .hdg-l1-01 {
  margin: 5px 0;
  font-weight: bold;
  font-size: 153.84615%;
}
.hdg-lyt-subhead-01 .catch {
  margin: 0;
  font-size: 100%;
}
@media screen and (max-width: 640px) {
  .hdg-lyt-subhead-01 {
    margin: -10px 0 30px;
  }
}

/* .hdg-icon
----------------------------------------------- */
.hdg-icon {
  margin-left: 20px;
  display: inline-block;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .hdg-icon {
    margin-left: 0;
    white-space: nowrap;
  }
}

.hdg-l1 .hdg-icon,
.hdg-l1-01 .hdg-icon {
  font-size: 43.33333%;
}
@media screen and (max-width: 640px) {
  .hdg-l1 .hdg-icon,
  .hdg-l1-01 .hdg-icon {
    font-size: 54.16667%;
  }
}

/* .hdg-lyt-subhead-01 > .hdg-icon
----------------------------------------------- */
.hdg-lyt-subhead-01 .hdg-l1-01 .hdg-icon {
  font-size: 72.22222%;
}

.hdg-l2 .hdg-icon {
  font-size: 72.22222%;
}

.hdg-l2-01 .hdg-icon {
  font-size: 81.25%;
}

.hdg-l3 .hdg-icon {
  font-size: 86.66667%;
}

/* ----------------------------------------------------------------
	paragraph
----------------------------------------------------------------- */
.catch {
  margin-bottom: 20px;
  font-size: 123.07692%;
}
@media screen and (max-width: 640px) {
  .catch {
    margin-bottom: 25px;
    line-height: 1.45;
    font-size: 107.69231%;
  }
}

/* ----------------------------------------------------------------
	list
----------------------------------------------------------------- */
/* .list-order
----------------------------------------------- */
.list-order > li {
  margin-bottom: 8px;
}

/* .list-bullet
----------------------------------------------- */
.list-bullet > li {
  margin-bottom: 8px;
  padding-left: 13px;
  position: relative;
}
.list-bullet > li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  overflow: hidden;
  position: absolute;
  top: 0.45em;
  left: 0;
}
.list-bullet > li:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2MzYmRiZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RiZDdkNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #c3bdbd), color-stop(100%, #dbd7d7));
  background-image: -moz-linear-gradient(left, #c3bdbd, #dbd7d7);
  background-image: -webkit-linear-gradient(left, #c3bdbd, #dbd7d7);
  background-image: linear-gradient(to right, #c3bdbd, #dbd7d7);
  background-color: #c3bdbd;
}
.list-bullet > li .list-bullet {
  margin-top: 8px;
}
.list-bullet > li .list-bullet > li:before {
  width: 3px;
  height: 3px;
  top: 0.5em;
  left: 5px;
}

/* .list-number
----------------------------------------------- */
.list-number > li {
  margin-bottom: 10px;
  display: table;
  width: 100%;
}
.list-number > li > .number,
.list-number > li > .item {
  display: table-cell;
  vertical-align: top;
}
.list-number > li > .number {
  padding-right: 10px;
  width: 1.5em;
  white-space: nowrap;
}
.list-number > li .list-number {
  margin-top: 10px;
}

/* .list-line
----------------------------------------------- */
.list-line, .list-line-01 {
  margin-bottom: 12px;
}
.list-line > li, .list-line-01 > li {
  margin-bottom: 8px;
  padding: 0 13px;
  display: inline-block;
  position: relative;
}
.list-line > li:before, .list-line-01 > li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  overflow: hidden;
  position: absolute;
  top: 0.45em;
  left: 0;
}
.list-line > li:before, .list-line-01 > li:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2MzYmRiZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RiZDdkNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #c3bdbd), color-stop(100%, #dbd7d7));
  background-image: -moz-linear-gradient(left, #c3bdbd, #dbd7d7);
  background-image: -webkit-linear-gradient(left, #c3bdbd, #dbd7d7);
  background-image: linear-gradient(to right, #c3bdbd, #dbd7d7);
  background-color: #c3bdbd;
}
.list-line > li:last-child, .list-line-01 > li:last-child {
  margin-bottom: 8px !important;
}
.tab-container .tabs .list-line > li, .tab-container .tabs .list-line-01 > li {
  display: inline-block;
}

/* .list-line-01
----------------------------------------------- */
.list-line-01 > li {
  border-left: 1px solid #cbc7c7;
}
.list-line-01 > li:before {
  display: none;
}
.list-line-01 > li:first-child {
  padding-left: 0;
  border: none;
}

/* .list-def
----------------------------------------------- */
.list-def dt {
  margin-bottom: 3px;
  font-weight: bold;
}
.list-def dt.branch {
  font-weight: normal;
}
.list-def dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px #ecebeb solid;
}
.list-def dd > :last-child {
  margin-bottom: 0;
}

/* .list-def-01
----------------------------------------------- */
.list-def-01 > dt {
  margin: 0 10px 10px 0;
  float: left;
  min-width: 7em;
  overflow: hidden;
  font-weight: bold;
}
.list-def-01 > dt.branch {
  font-weight: normal;
}
.list-def-01 > dd {
  margin-bottom: 10px;
  overflow: hidden;
}
.list-def-01 > dd > :last-child {
  margin-bottom: 0;
}
.list-def-01 > dd > p,
.list-def-01 > dd > ul,
.list-def-01 > dd > ol,
.list-def-01 > dd > dl,
.list-def-01 > dd > table {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .list-def-01 > dt {
    float: none;
    overflow: visible;
  }
  .list-def-01 > dd {
    margin-bottom: 15px;
    overflow: visible;
  }
}

/* ----------------------------------------------------------------
	link
----------------------------------------------------------------- */
/* .link
----------------------------------------------- */
.link {
  padding-left: 20px;
  display: inline-block;
  background-image: url(/common/images/contents/com_arrow07.gif);
  background-repeat: no-repeat;
  background-position: 0 0.25em;
  text-decoration: none;
}

/* .link-01
----------------------------------------------- */
.link-01 {
  padding-left: 12px;
  display: inline-block;
  background-image: url(/common/images/contents/com_arrow03.gif);
  background-repeat: no-repeat;
  background-position: 0 0.4em;
  text-decoration: none;
}

/* .link-list
----------------------------------------------- */
.link-list > li {
  margin-bottom: 10px;
}
.link-list > li > a {
  padding-left: 12px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.link-list > li > a:before {
  content: "";
  display: block;
  width: 6px;
  height: 7px;
  overflow: hidden;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.link-list > li > a:before {
  background-image: url(/common/images/contents/com_arrow03.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.link-list > li ul {
  margin-left: 1.5em;
}
.link-list.branch > li {
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px #ecebeb solid;
}
.link-list.branch > li:first-child {
  padding-top: 0;
}
@media screen and (min-width: 641px) {
  .link-list[class*="col-"] {
    margin-bottom: 10px;
  }
  .link-list[class*="col-"] > :last-child {
    margin-bottom: 10px !important;
  }
}

/* .link-list-01
----------------------------------------------- */
.link-list-01 > li {
  margin-bottom: 10px;
}
.link-list-01 > li > a {
  padding-left: 20px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.link-list-01 > li > a:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  overflow: hidden;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.link-list-01 > li > a:before {
  background-image: url(/common/images/contents/com_arrow07.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.link-list-01 > li ul {
  margin-left: 1.5em;
}
.link-list-01.branch > li > a {
  padding-left: 0;
  display: block;
}
.link-list-01.branch > li > a:before {
  display: none;
}
.link-list-01.branch > li b.link {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.link-list-01.branch ul {
  margin-left: 0;
}
.link-list-01.branch-01 > li {
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px #ecebeb solid;
}
.link-list-01.branch-01 > li:first-child {
  padding-top: 0;
}
.link-list-01.branch-01 > li > a {
  padding-left: 0;
  display: block;
}
.link-list-01.branch-01 > li > a > p,
.link-list-01.branch-01 > li > a > ul,
.link-list-01.branch-01 > li > a > ol,
.link-list-01.branch-01 > li > a > dl {
  margin-bottom: 0;
}
.link-list-01.branch-01 > li > a:before {
  display: none;
}
.link-list-01.branch-01 > li b.link {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.link-list-01.branch-01 ul {
  margin-left: 0;
}
@media screen and (min-width: 641px) {
  .link-list-01[class*="col-"] {
    margin-bottom: 10px;
  }
  .link-list-01[class*="col-"] > :last-child {
    margin-bottom: 10px !important;
  }
}

/* .link-list-line
----------------------------------------------- */
.link-list-line, .link-list-line-01 {
  margin-bottom: 10px;
}
.link-list-line > li, .link-list-line-01 > li {
  margin: 0 20px 10px 0;
  display: inline-block;
  max-width: 100%;
}
.link-list-line > li:last-child, .link-list-line-01 > li:last-child {
  margin-right: 0;
  margin-bottom: 10px !important;
}
.link-list-line > li a, .link-list-line-01 > li a {
  padding-left: 12px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.link-list-line > li a:before, .link-list-line-01 > li a:before {
  content: "";
  display: block;
  width: 6px;
  height: 7px;
  overflow: hidden;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.link-list-line > li a:before, .link-list-line-01 > li a:before {
  background-image: url(/common/images/contents/com_arrow03.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media screen and (max-width: 640px) {
  .link-list-line > li, .link-list-line-01 > li {
    margin-right: 15px;
  }
}

/* .link-list-line-01
----------------------------------------------- */
.link-list-line-01 > li a {
  padding-left: 20px;
  position: relative;
}
.link-list-line-01 > li a:before {
  content: "";
  display: block;
  width: 13px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.link-list-line-01 > li a:before {
  background-image: url(/common/images/contents/com_arrow07.gif);
  background-repeat: no-repeat;
  background-position: 0 0.25em;
}

/* .link-list-index
----------------------------------------------- */
.link-list-index > li {
  margin-bottom: 20px;
  border: 1px solid #ebeaea;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjJmMiIvPjxzdG9wIG9mZnNldD0iOTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f2f2), color-stop(90%, #ffffff), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f5f2f2, #ffffff 90%, #ffffff);
  background-image: -webkit-linear-gradient(#f5f2f2, #ffffff 90%, #ffffff);
  background-image: linear-gradient(#f5f2f2, #ffffff 90%, #ffffff);
  background-color: #ffffff;
}
.link-list-index > li > a {
  padding: 10px;
  display: block;
  text-decoration: none;
}
.link-list-index > li > a .reset-color {
  color: #1b1b1b;
}
.link-list-index > li > a > :last-child {
  margin-bottom: 0;
}
.link-list-index > li > a > :last-child.title {
  margin-bottom: -10px;
}
.link-list-index > li > a > :last-child.title:after {
  display: none;
}
.link-list-index > li .title {
  padding: 10px;
  border-bottom: 1px solid #ffffff;
  border-radius: 3px;
  display: block;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjVmM2YzIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(20%, #ffffff), color-stop(100%, #f5f3f3));
  background-image: -moz-linear-gradient(#ffffff, #ffffff 20%, #f5f3f3);
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 20%, #f5f3f3);
  background-image: linear-gradient(#ffffff, #ffffff 20%, #f5f3f3);
  background-color: #f5f3f3;
  font-size: 107.69231%;
  font-weight: bold;
  position: relative;
}
.link-list-index > li .title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.link-list-index > li .title:after {
  background-color: #e6e1e1;
}
.link-list-index > li > a .title {
  margin: -10px -10px 10px;
  padding-left: 30px;
  position: relative;
}
.link-list-index > li > a .title:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  overflow: hidden;
  position: absolute;
  top: 1em;
  left: 10px;
}
.link-list-index > li > a .title:before {
  background-image: url(/common/images/contents/com_arrow07.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.link-list-index > li .lyt-inner {
  padding: 10px;
}
.link-list-index > li .lyt-inner > :first-child {
  margin-top: 0;
}
.link-list-index > li .lyt-inner > :last-child {
  margin-bottom: 0;
}
.link-list-index > li p, .link-list-index > li ul, .link-list-index > li ol, .link-list-index > li dl, .link-list-index > li table {
  margin-top: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 641px) {
  .link-list-index[class*="col-"] {
    margin-bottom: 0;
  }
  .link-list-index[class*="col-"] > :last-child {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 640px) {
  .link-list-index > li > a .title {
    line-height: 1.35;
    height: auto !important;
  }
  .link-list-index > li > a .title:before {
    top: 0.85em;
  }
}
.link-list-index.branch > li {
  margin-bottom: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* .link-list-index-01
----------------------------------------------- */
.link-list-index-01 > li {
  margin-bottom: 25px;
  padding: 1px;
  border: 1px solid #ebeaea;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.link-list-index-01 > li > a {
  display: block;
  text-decoration: none;
  position: relative;
}
.link-list-index-01 > li > a:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  overflow: hidden;
  position: absolute;
  top: 1.45em;
  left: 10px;
}
.link-list-index-01 > li > a:before {
  background-image: url(/common/images/contents/com_arrow07.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.link-list-index-01 > li > a .reset-color {
  color: #1b1b1b;
}
.link-list-index-01 > li .title {
  padding: 15px 10px 10px 10px;
  display: block;
  position: relative;
  font-size: 107.69231%;
  font-weight: bold;
  position: relative;
}
.link-list-index-01 > li .title:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.link-list-index-01 > li .title:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdmMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #7f0000), color-stop(100%, #ff0000));
  background-image: -moz-linear-gradient(left, #7f0000, #ff0000);
  background-image: -webkit-linear-gradient(left, #7f0000, #ff0000);
  background-image: linear-gradient(to right, #7f0000, #ff0000);
  background-color: #d10000;
}
.link-list-index-01 > li a .title {
  padding-left: 30px;
}
.link-list-index-01 > li .sup {
  padding: 5px 10px;
  position: absolute;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 92.30769%;
}
.link-list-index-01 > li .sup > :first-child {
  margin-top: 0;
}
.link-list-index-01 > li .sup > :last-child {
  margin-bottom: 0;
}
.link-list-index-01 > li .thumb {
  width: 100%;
}
.link-list-index-01 > li .lyt-inner {
  padding: 0 10px 10px;
}
.link-list-index-01 > li .lyt-inner > :first-child {
  margin-top: 0;
}
.link-list-index-01 > li .lyt-inner > :last-child {
  margin-bottom: 0;
}
.link-list-index-01 > li .lyt-inner .link-list > li {
  margin-bottom: 5px;
}
.link-list-index-01 > li .lyt-inner.branch {
  padding-top: 10px;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.link-list-index-01 > li .lyt-inner.branch * {
  z-index: 1;
}
.link-list-index-01 > li .lyt-inner.branch > :nth-last-child(2) {
  margin-bottom: 0;
}
.link-list-index-01 > li .lyt-inner.branch .thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 641px) {
  .link-list-index-01[class*="col-"] {
    margin-bottom: 0;
  }
  .link-list-index-01[class*="col-"] > :last-child {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 640px) {
  .link-list-index-01 > li {
    margin-bottom: 15px;
  }
  .link-list-index-01 > li .title {
    height: auto !important;
  }
  .link-list-index-01 > li .sup {
    position: static;
  }
  .link-list-index-01 > li .thumb {
    display: none;
  }
}

/* ----------------------------------------------------------------
	nav
----------------------------------------------------------------- */
/* .nav-internal
----------------------------------------------- */
.nav-internal > li {
  margin: 0 20px 5px 0;
  display: inline-block;
}
.nav-internal > li a {
  padding-left: 15px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.nav-internal > li a:before {
  content: "";
  display: block;
  width: 7px;
  height: 6px;
  overflow: hidden;
  position: absolute;
  top: 0.55em;
  left: 0;
}
.nav-internal > li a:before {
  background-image: url(/common/images/contents/com_arrow04.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}

/* .tab-container
----------------------------------------------- */
.tab-container .tabs li {
  display: none;
}
.tab-container .tabs li li {
  display: block;
}
.tab-container .tabs li.active {
  display: block;
}
.tab-container .tabs.static li {
  display: block;
}
.tab-container.toggle-container .toggle-hook {
  display: none;
}
.tab-container.toggle-container .toggle-hook .hdg {
  font-size: 100%;
}
@media screen and (max-width: 640px) {
  .tab-container.toggle-container .tab-list {
    display: none;
  }
  .tab-container.toggle-container .tabs li {
    display: block;
  }
  .tab-container.toggle-container .tabs li .toggle-cont {
    display: none;
  }
  .tab-container.toggle-container .tabs li.active .toggle-cont {
    display: block;
  }
  .tab-container.toggle-container .toggle-hook {
    padding: 10px 40px 10px 10px;
    border-bottom: 1px solid #ffffff;
    display: block;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjBmMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjZGFkYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f0f0), color-stop(100%, #dcdada));
    background-image: -moz-linear-gradient(#f1f0f0, #dcdada);
    background-image: -webkit-linear-gradient(#f1f0f0, #dcdada);
    background-image: linear-gradient(#f1f0f0, #dcdada);
    background-color: #f1f0f0;
    position: relative;
  }
  .tab-container.toggle-container .toggle-hook:before {
    content: "";
    display: block;
    width: 30px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
  }
  .tab-container.toggle-container .toggle-hook:before {
    background-image: url(/common/images/contents/com_icon_plus01.gif);
    background-repeat: no-repeat;
    background-position: 0 center;
  }
  .tab-container.toggle-container .toggle-hook .hdg {
    font-weight: normal;
  }
  .tab-container.toggle-container .toggle-hook .hook {
    margin: 0;
    color: transparent;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .tab-container.toggle-container .tabs li.active .toggle-hook {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RjZGFkYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxZjBmMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdada), color-stop(100%, #f1f0f0));
    background-image: -moz-linear-gradient(#dcdada, #f1f0f0);
    background-image: -webkit-linear-gradient(#dcdada, #f1f0f0);
    background-image: linear-gradient(#dcdada, #f1f0f0);
  }
  .tab-container.toggle-container .tabs li.active .toggle-hook:before {
    background-image: url(/common/images/contents/com_icon_minus01.gif);
    background-repeat: no-repeat;
    background-position: 0 center;
  }
  .tab-container.toggle-container .tabs li.active .toggle-hook .hdg {
    font-weight: bold;
  }
}

/* .tab-container JavaScript off
----------------------------------------------- */
@media screen and (max-width: 640px) {
  .script-unavailable .tab-container .toggle-hook {
    padding: 10px;
  }
  .script-unavailable .tab-container .toggle-hook:before {
    display: none;
  }
  .script-unavailable .tab-container .toggle-cont {
    display: block !important;
  }
}

/* .tab
----------------------------------------------- */
@media screen and (min-width: 641px) {
  .tab {
    border-bottom: 1px solid #c2bebe;
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .tab li {
    padding-left: 1px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    display: table-cell;
    text-align: center;
  }
  .tab li a {
    margin-bottom: -1px;
    padding: 8px 5px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    color: #1b1b1b;
    display: block;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjBmMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjZGFkYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f0f0), color-stop(100%, #dcdada));
    background-image: -moz-linear-gradient(#f1f0f0, #dcdada);
    background-image: -webkit-linear-gradient(#f1f0f0, #dcdada);
    background-image: linear-gradient(#f1f0f0, #dcdada);
    background-color: #f1f0f0;
    text-decoration: none;
  }
  .tab li.active {
    border-bottom: none;
  }
  .tab li.active a {
    padding-bottom: 9px;
    border-width: 1px 1px 0 1px;
    border-color: #c2bebe;
    border-style: solid;
    background-image: none;
    background-color: #ffffff;
    font-weight: bold;
  }
  .tab li:first-child {
    padding-left: 0;
  }
  .tab.tab-bottom {
    border-top: 1px solid #c2bebe;
    border-bottom: none;
  }
  .tab.tab-bottom li {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
  }
  .tab.tab-bottom li a {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
  }
  .tab.tab-bottom li.active {
    border-top: none;
  }
  .tab.tab-bottom li.active a {
    margin-top: -1px;
    padding: 9px 5px 8px;
    border-width: 0 1px 1px 1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
  }
  .tab.tab-lyt-auto li {
    margin: 0;
    border: none;
  }
  .tab.tab-lyt-auto li a {
    padding: 8px;
  }
  .tab.tab-lyt-auto li.active a {
    margin-bottom: -1px;
  }
  .tab.tab-lyt-auto.tab-bottom li.active a {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .tab {
    margin-bottom: 10px;
  }
  .tab > li {
    margin: 0 20px 10px 0;
    display: inline-block;
  }
  .tab > li:last-child {
    margin-bottom: 10px !important;
  }
  .tab > li a {
    padding-left: 12px;
    display: inline-block;
    height: auto !important;
    text-decoration: none;
    position: relative;
  }
  .tab > li a:before {
    content: "";
    display: block;
    width: 6px;
    height: 7px;
    overflow: hidden;
    position: absolute;
    top: 0.4em;
    left: 0;
  }
  .tab > li a:before {
    background-image: url(/common/images/contents/com_arrow03.gif);
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .tab.tab-lyt-auto li {
    width: auto !important;
  }
}
/* .tab-01
----------------------------------------------- */
.tab-01 {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 92.30769%;
}
.tab-01 li {
  border-right: 1px solid #9e9b9b;
  display: table-cell;
  text-align: center;
}
.tab-01 li a {
  padding: 0 5px;
  color: #1b1b1b;
  display: block;
  text-decoration: none;
}
.tab-01 li a span {
  padding-left: 20px;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image: url(/common/images/contents/com_arrow11.gif);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
}
.tab-01 li.active a {
  color: #d10000;
  font-weight: bold;
}
.tab-01 li.active a span {
  background-image: url(/common/images/contents/com_arrow12.gif);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
}
.tab-01 li:first-child {
  border-left: 1px solid #9e9b9b;
}
.tab-01.tab-bottom li.active a span {
  background-image: url(/common/images/contents/com_arrow13.gif);
  background-repeat: no-repeat;
  background-position: 0 0.2em;
}
@media screen and (max-width: 800px) {
  .tab-01 {
    margin-bottom: 10px;
    padding-left: 1px;
    display: block;
    width: auto;
    letter-spacing: -0.4em;
    font-size: 100%;
  }
  .tab-01 li {
    margin: 0 0 10px -1px;
    border-width: 0 1px;
    border-style: solid;
    border-color: #9e9b9b;
    display: inline-block;
    letter-spacing: normal;
    text-align: left;
  }
  .tab-01 li a {
    padding: 0 15px;
  }
  .tab-01 li a span {
    vertical-align: middle;
    white-space: normal;
  }
  .tab-01 li:last-child {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 640px) {
  .tab-01 li {
    margin-right: 20px;
    border: none;
  }
  .tab-01 li:first-child {
    border-left: none;
  }
  .tab-01 li a {
    padding: 0;
  }
}

/* .tab-lyt-auto
----------------------------------------------- */
@media screen and (min-width: 641px) {
  .tab-lyt-auto {
    margin-top: -10px;
    display: block;
    table-layout: auto;
    letter-spacing: -0.4em;
  }
  .tab-lyt-auto li {
    margin: 10px 0 0 -1px;
    border-width: 0 1px;
    border-style: solid;
    border-color: #9e9b9b;
    display: inline-block;
    letter-spacing: normal;
    vertical-align: bottom;
  }
  .tab-lyt-auto li a {
    margin-bottom: 0;
  }
  .tab-lyt-auto li:last-child {
    margin-bottom: 0 !important;
  }
  .tab-lyt-auto.tab-bottom {
    margin-top: 0;
  }
  .tab-lyt-auto.tab-bottom li {
    margin: 0 0 10px;
    vertical-align: top;
  }
}
/* .pager
----------------------------------------------- */
.pager {
  text-align: center;
}
.pager > ul {
  padding: 0 30px;
  display: inline-block;
  position: relative;
}
.pager > ul .prev,
.pager > ul .next {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  text-align: left;
}
.pager > ul .prev a,
.pager > ul .next a {
  display: block;
  height: 100%;
}
.pager > ul .next {
  right: 0;
  left: auto;
  text-align: right;
}
.pager > ul .number ul {
  margin: 0;
  text-align: center;
}
.pager > ul .number ul li {
  margin: 0 2px 5px;
  padding: 7px 8px 5px;
  border: 1px solid #ecebeb;
  color: #d10000;
  display: inline-block;
  line-height: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RmZGJkYiIvPjxzdG9wIG9mZnNldD0iNDAlIiBzdG9wLWNvbG9yPSIjZThlOGU4Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWNlYmViIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdbdb), color-stop(40%, #e8e8e8), color-stop(100%, #ecebeb));
  background-image: -moz-linear-gradient(#dfdbdb, #e8e8e8 40%, #ecebeb);
  background-image: -webkit-linear-gradient(#dfdbdb, #e8e8e8 40%, #ecebeb);
  background-image: linear-gradient(#dfdbdb, #e8e8e8 40%, #ecebeb);
  background-color: #ecebeb;
}
.pager > ul .number ul li a {
  margin: -7px -8px -5px;
  padding: 7px 8px 5px;
  display: block;
  background-color: #ffffff;
  text-decoration: none;
}

/* .nav-progress
----------------------------------------------- */
/* .nav-top
----------------------------------------------- */
.nav-top {
  text-align: right;
}
.nav-top a {
  padding-left: 12px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.nav-top a:before {
  content: "";
  display: block;
  width: 7px;
  height: 6px;
  overflow: hidden;
  position: absolute;
  top: 0.55em;
  left: 0;
}
.nav-top a:before {
  background-image: url(/common/images/contents/com_arrow05.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media screen and (max-width: 640px) {
  .nav-top {
    margin-top: 0;
  }
}

/* .nav-prev
----------------------------------------------- */
.nav-prev a {
  padding-left: 12px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.nav-prev a:before {
  content: "";
  display: block;
  width: 6px;
  height: 7px;
  overflow: hidden;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.nav-prev a:before {
  background-image: url(/common/images/contents/com_arrow06.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}

/* ----------------------------------------------------------------
	button
----------------------------------------------------------------- */
/* .btn
----------------------------------------------- */
.btn, .btn-01 {
  padding: 8px 10px 10px;
  border: 1px solid #cbc7c7;
  border-radius: 3px;
  color: #1b1b1b;
  display: inline-block;
  min-width: 30%;
  max-width: 100%;
  -webkit-box-shadow: -1px -1px 1px #ffffff inset;
  box-shadow: -1px -1px 1px #ffffff inset;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZjhmOCIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjZmFmOGY4Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjY2VjYWNhIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #faf8f8), color-stop(10%, #faf8f8), color-stop(100%, #cecaca));
  background-image: -moz-linear-gradient(#faf8f8, #faf8f8 10%, #cecaca);
  background-image: -webkit-linear-gradient(#faf8f8, #faf8f8 10%, #cecaca);
  background-image: linear-gradient(#faf8f8, #faf8f8 10%, #cecaca);
  background-color: #cecaca;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.btn:visited, .btn-01:visited, .btn:hover, .btn-01:hover, .btn:active, .btn-01:active, .btn:focus, .btn-01:focus {
  color: #1b1b1b;
}
.btn span, .btn-01 span {
  padding-left: 12px;
  display: inline-block;
  background-image: url(/common/images/contents/com_arrow03.gif);
  background-repeat: no-repeat;
  background-position: 0 0.45em;
}
.btn.branch, .branch.btn-01 {
  color: #d10000;
}
.btn.branch:visited, .branch.btn-01:visited, .btn.branch:hover, .branch.btn-01:hover, .btn.branch:active, .branch.btn-01:active, .btn.branch:focus, .branch.btn-01:focus {
  color: #d10000;
}

/* .btn-01
----------------------------------------------- */
.btn-01 {
  border-color: #cc0000;
  color: #ffffff;
  -webkit-box-shadow: -1px -1px 1px #ffb3b3 inset;
  box-shadow: -1px -1px 1px #ffb3b3 inset;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YyOGM4YyIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjZjI4YzhjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjAxMTExIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f28c8c), color-stop(10%, #f28c8c), color-stop(100%, #b01111));
  background-image: -moz-linear-gradient(#f28c8c, #f28c8c 10%, #b01111);
  background-image: -webkit-linear-gradient(#f28c8c, #f28c8c 10%, #b01111);
  background-image: linear-gradient(#f28c8c, #f28c8c 10%, #b01111);
  background-color: #b01111;
}
.btn-01:visited, .btn-01:hover, .btn-01:active, .btn-01:focus {
  color: #ffffff;
}
.btn-01 span {
  background-image: url(/common/images/contents/com_arrow01.gif);
  background-repeat: no-repeat;
  background-position: 0 0.45em;
}

/* .btn-list
----------------------------------------------- */
.btn-list {
  margin-bottom: 10px;
  text-align: center;
}
.btn-list > li {
  margin: 0 5px 10px;
  display: inline-block !important;
  min-width: 30%;
  vertical-align: top;
}
.btn-list > li .btn, .btn-list > li .btn-01 {
  display: block;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .btn-list > li {
    min-width: 0;
  }
}

/* ----------------------------------------------------------------
	banner
----------------------------------------------------------------- */
/* .bnr-list
----------------------------------------------- */
/* ----------------------------------------------------------------
	table
----------------------------------------------------------------- */
/* .tbl
----------------------------------------------- */
.tbl {
  background-color: #ffffff;
}
.tbl th,
.tbl td {
  padding: 8px 10px;
  border-bottom: 1px solid #ecebeb;
  text-align: left;
}
.tbl thead th,
.tbl thead td {
  border-width: 1px 0;
  border-color: #d6d2d2;
  border-style: solid;
  background-color: #f7f5f5;
  text-align: center;
}
.tbl > tbody > tr:last-child th, .tbl > tbody > tr:last-child td {
  border-color: #d6d2d2;
}
@media screen and (max-width: 800px) {
  .tbl {
    font-size: 92.30769%;
  }
}
@media screen and (max-width: 640px) {
  .tbl {
    font-size: 69.23077%;
  }
  .tbl th,
  .tbl td {
    padding: 8px 2px;
  }
}

/* .tbl-01
----------------------------------------------- */
.tbl-01 {
  border-top: 1px solid #d6d2d2;
  background-color: #ffffff;
}
.tbl-01 th,
.tbl-01 td {
  padding: 8px 10px;
  border-bottom: 1px solid #ecebeb;
  text-align: left;
}
.tbl-01 thead th,
.tbl-01 thead td {
  border-width: 1px 0;
  border-color: #d6d2d2;
  border-style: solid;
  background-color: #f7f5f5;
  text-align: center;
}
.tbl-01 tbody th {
  border-right: 1px solid #ecebeb;
  background-color: #f7f5f5;
}
.tbl-01 tbody > tr:last-child th,
.tbl-01 tbody > tr:last-child td {
  border-bottom-color: #d6d2d2;
}
@media screen and (max-width: 800px) {
  .tbl-01 {
    font-size: 92.30769%;
  }
}
@media screen and (max-width: 640px) {
  .tbl-01 {
    font-size: 84.61538%;
  }
  .tbl-01 th,
  .tbl-01 td {
    padding: 8px 5px;
  }
}

/* .tbl-02
----------------------------------------------- */
.tbl-02 {
  background-color: #ffffff;
}
.tbl-02 th,
.tbl-02 td {
  padding: 8px 10px;
  border-bottom: 1px solid #ecebeb;
  text-align: left;
  font-weight: normal;
}
.tbl-02 th {
  padding-left: 0;
}
@media screen and (max-width: 800px) {
  .tbl-02 {
    font-size: 92.30769%;
  }
}
@media screen and (max-width: 640px) {
  .tbl-02 {
    font-size: 84.61538%;
  }
  .tbl-02 th,
  .tbl-02 td {
    padding: 8px 5px;
  }
}

/* ----------------------------------------------------------------
	image
----------------------------------------------------------------- */
 /* .image-left / .image-right
----------------------------------------------- */
.image-left {
  overflow: hidden;
}
.image-left > .image {
  margin-bottom: 20px;
  float: left;
  text-align: center;
  padding-right: 3.125%;
}
.image-left > .image .caption {
  margin-top: 6.66667px;
  display: block;
  font-size: 92.30769%;
}
.image-left > .col {
  overflow: hidden;
}
.image-left > .col > :first-child {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .image-left > .image {
    max-width: 35%;
  }
}
@media screen and (max-width: 640px) {
  .image-left {
    overflow: visible;
  }
  .image-left > .image {
    margin-bottom: 10px;
    padding: 0;
    max-width: none;
    width: auto !important;
    float: none;
    text-align: center;
  }
  .image-left.branch {
    display: table;
    width: 100%;
  }
  .image-left.branch > .image > .inner,
  .image-left.branch > .col > .inner {
    display: block;
  }
  .image-left.branch > .col {
    display: table-header-group;
  }
}

.image-right {
  overflow: hidden;
}
.image-right > .image {
  margin-bottom: 20px;
  float: right;
  text-align: center;
  padding-left: 3.125%;
}
.image-right > .image .caption {
  margin-top: 6.66667px;
  display: block;
  font-size: 92.30769%;
}
.image-right > .col {
  overflow: hidden;
}
.image-right > .col > :first-child {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .image-right > .image {
    max-width: 35%;
  }
}
@media screen and (max-width: 640px) {
  .image-right {
    overflow: visible;
  }
  .image-right > .image {
    margin-bottom: 10px;
    padding: 0;
    max-width: none;
    width: auto !important;
    float: none;
    text-align: center;
  }
  .image-right.branch {
    display: table;
    width: 100%;
  }
  .image-right.branch > .image > .inner,
  .image-right.branch > .col > .inner {
    display: block;
  }
  .image-right.branch > .col {
    display: table-header-group;
  }
}

 /* #str-side > .image-left / .image-right
----------------------------------------------- */
@media screen and (max-width: 800px) {
  #str-side .image-left {
    overflow: visible;
  }
  #str-side .image-left > .image {
    margin-bottom: 10px;
    padding: 0;
    max-width: none;
    width: auto !important;
    float: none;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  #str-side .image-right {
    overflow: visible;
  }
  #str-side .image-right > .image {
    margin-bottom: 10px;
    padding: 0;
    max-width: none;
    width: auto !important;
    float: none;
    text-align: center;
  }
}

 /* .lyt-image
----------------------------------------------- */
.lyt-image {
  text-align: center;
}
.lyt-image .caption {
  margin-top: 6.66667px;
  display: block;
  font-size: 92.30769%;
}
@media screen and (max-width: 640px) {
  .lyt-image > .col {
    text-align: center;
  }
}

 /* .image-list
----------------------------------------------- */
.image-list > li {
  margin: 0 3.66667px 6.66667px 0;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}

 /* .img-edge
----------------------------------------------- */
.img-edge {
  margin: 5px;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ----------------------------------------------------------------
	box
----------------------------------------------------------------- */
/* .box
----------------------------------------------- */
.box, .box-01, .box-02, .box-03 {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #e4e1e1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.box .box-hdg, .box-01 .box-hdg, .box-02 .box-hdg, .box-03 .box-hdg {
  margin: -15px -15px 20px -15px;
  border: 1px solid #ffffff;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  padding: 10px 15px 8px;
  border-bottom: 1px solid #ebe8e8;
  background-color: #f2efef;
  font-size: 107.69231%;
}
.box .box-inner, .box-01 .box-inner, .box-02 .box-inner, .box-03 .box-inner {
  margin: 0 -15px 15px;
  padding: 20px 15px 0;
  border-top: 1px solid #ecebeb;
  position: relative;
}
.box .box-inner:before, .box-01 .box-inner:before, .box-02 .box-inner:before, .box-03 .box-inner:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.box .box-inner:before, .box-01 .box-inner:before, .box-02 .box-inner:before, .box-03 .box-inner:before {
  background-color: #ffffff;
}
.box .box-inner > :last-child, .box-01 .box-inner > :last-child, .box-02 .box-inner > :last-child, .box-03 .box-inner > :last-child {
  margin-bottom: 0;
}
.box > :first-child[class*="box-inner"], .box-01 > :first-child[class*="box-inner"], .box-02 > :first-child[class*="box-inner"], .box-03 > :first-child[class*="box-inner"] {
  padding-top: 0;
  border-top: none;
}
.box > :last-child, .box-01 > :last-child, .box-02 > :last-child, .box-03 > :last-child {
  margin-bottom: 0 !important;
}

/* #str-side > .box
----------------------------------------------- */
#str-side .box, #str-side .box-01, #str-side .box-02, #str-side .box-03 {
  padding: 10px;
}
#str-side .box .box-hdg, #str-side .box-01 .box-hdg, #str-side .box-02 .box-hdg, #str-side .box-03 .box-hdg {
  margin: -10px -10px 10px;
  padding: 10px 10px 8px;
}
#str-side .box .box-inner, #str-side .box-01 .box-inner, #str-side .box-02 .box-inner, #str-side .box-03 .box-inner {
  margin: 0 -10px 10px;
  padding: 10px 10px 0;
}
@media screen and (max-width: 640px) {
  #str-side .box, #str-side .box-01, #str-side .box-02, #str-side .box-03 {
    padding: 15px;
  }
  #str-side .box .box-hdg, #str-side .box-01 .box-hdg, #str-side .box-02 .box-hdg, #str-side .box-03 .box-hdg {
    margin: -15px -15px 20px;
    padding: 10px 15px 8px;
  }
}

/* .box-01
----------------------------------------------- */
.box-01 {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f5f2f2;
}
.box-01 .box-hdg {
  margin: -15px 0 20px 0;
  padding: 10px 0 8px;
  border-width: 0 0 1px;
  border-color: #ffffff;
  border-style: solid;
  background-color: transparent;
  position: relative;
}
.box-01 .box-hdg:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.box-01 .box-hdg:before {
  background-color: #ecebeb;
}
.box-01 .box-inner {
  margin: 0 0 20px;
  padding: 20px 0 0;
}

/* .box-02
----------------------------------------------- */
.box-02 {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjNmMyIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZjVmM2YzIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNmZGZjZmMiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZGZjZmMiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f3f3), color-stop(30%, #f5f3f3), color-stop(70%, #fdfcfc), color-stop(100%, #fdfcfc));
  background-image: -moz-linear-gradient(#f5f3f3, #f5f3f3 30%, #fdfcfc 70%, #fdfcfc);
  background-image: -webkit-linear-gradient(#f5f3f3, #f5f3f3 30%, #fdfcfc 70%, #fdfcfc);
  background-image: linear-gradient(#f5f3f3, #f5f3f3 30%, #fdfcfc 70%, #fdfcfc);
  background-color: #fdfcfc;
  -webkit-box-shadow: 1px 1px 0 #ffffff inset, -1px -1px 0 #ffffff inset;
  box-shadow: 1px 1px 0 #ffffff inset, -1px -1px 0 #ffffff inset;
}
.box-02 .box-hdg {
  margin: -15px -15px 20px -15px;
  padding: 10px 15px 8px;
  border-width: 0 0 1px;
  border-color: #ffffff;
  border-style: solid;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iNjAlIiBzdG9wLWNvbG9yPSIjZjVmM2YzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjVmM2YzIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(60%, #f5f3f3), color-stop(100%, #f5f3f3));
  background-image: -moz-linear-gradient(#ffffff, #f5f3f3 60%, #f5f3f3);
  background-image: -webkit-linear-gradient(#ffffff, #f5f3f3 60%, #f5f3f3);
  background-image: linear-gradient(#ffffff, #f5f3f3 60%, #f5f3f3);
  position: relative;
}
.box-02 .box-hdg:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.box-02 .box-hdg:before {
  background-color: #ecebeb;
}
.box-02 .box-hdg.branch {
  padding: 1px;
  overflow: hidden;
}
.box-02 .box-inner {
  margin: 0 0 20px;
  padding: 20px 0 0;
}
@media screen and (max-width: 640px) {
  .box-02 .box-hdg.branch {
    text-align: center;
  }
}

/* #str-side > .box-02
----------------------------------------------- */
#str-side .box-02 .box-hdg {
  margin: -10px -10px 10px;
  padding: 10px 10px 8px;
}
#str-side .box-02 .box-hdg.branch {
  padding: 1px;
}
@media screen and (max-width: 640px) {
  #str-side .box-02 .box-hdg {
    margin: -15px -15px 20px;
    padding: 10px 15px 8px;
  }
}

/* .box-03
----------------------------------------------- */
.box-03 {
  border-width: 0 0 1px;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjJmMiIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZjVmMmYyIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f2f2), color-stop(20%, #f5f2f2), color-stop(50%, #ffffff), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f5f2f2, #f5f2f2 20%, #ffffff 50%, #ffffff);
  background-image: -webkit-linear-gradient(#f5f2f2, #f5f2f2 20%, #ffffff 50%, #ffffff);
  background-image: linear-gradient(#f5f2f2, #f5f2f2 20%, #ffffff 50%, #ffffff);
  background-color: #fdfdfd;
}
.box-03 .box-hdg {
  margin: -15px -15px 20px -15px;
  padding: 10px 15px 8px;
  border-width: 0 0 1px;
  border-color: #ffffff;
  border-style: solid;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RjZGFkYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxZjBmMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdada), color-stop(100%, #f1f0f0));
  background-image: -moz-linear-gradient(#dcdada, #f1f0f0);
  background-image: -webkit-linear-gradient(#dcdada, #f1f0f0);
  background-image: linear-gradient(#dcdada, #f1f0f0);
  background-color: #f1f0f0;
  position: relative;
}
.box-03 .box-hdg:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.box-03 .box-hdg:before {
  background-color: #ecebeb;
}
.box-03 .box-inner {
  margin: 0 0 20px;
  padding: 20px 0 0;
}

/* #str-side > .box-03
----------------------------------------------- */
#str-side .box-03 .box-hdg {
  margin: -10px -10px 10px;
  padding: 10px 10px 8px;
}
@media screen and (max-width: 640px) {
  #str-side .box-03 .box-hdg {
    margin: -15px -15px 20px;
    padding: 10px 15px 8px;
  }
}

/* ----------------------------------------------------------------
	notice
----------------------------------------------------------------- */
/* .notice-list
----------------------------------------------- */
.notice-list {
  color: #4d4949;
  font-size: 92.30769%;
}
.notice-list > li {
  margin-bottom: 5px;
  display: table;
  width: 100%;
}
.notice-list > li > .mark,
.notice-list > li > .note {
  display: table-cell;
  vertical-align: top;
}
.notice-list > li > .mark {
  padding-right: 10px;
  width: 1em;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
	layout
----------------------------------------------------------------- */
/* .col-2/.col-3/.col-4
----------------------------------------------- */
.col-2 > .col,
.col-2 > li {
  margin-left: 3.125%;
  float: left;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 48.4375%;
}
.col-2 > .col:first-child,
.col-2 > li:first-child {
  margin-left: 0;
}
.col-2 > .col:nth-child(2n+1),
.col-2 > li:nth-child(2n+1) {
  margin-left: 0;
}
.col-2 > .col.colspan2,
.col-2 > li.colspan2 {
  width: 100%;
}
.col-2 > .col.branch,
.col-2 > li.branch {
  height: auto !important;
  margin-left: 3.125% !important;
}
.col-2 > li {
  margin-right: 0;
  display: block;
}
.col-2 > li li {
  margin-left: 0;
  width: auto;
  float: none;
}
@media screen and (max-width: 640px) {
  .col-2 > .col,
  .col-2 > li {
    margin-left: 0 !important;
    float: none;
    width: auto !important;
    height: auto !important;
  }
  .col-2 > .col.branch,
  .col-2 > li.branch {
    margin-left: 0 !important;
  }
}

.col-3 > .col,
.col-3 > li {
  margin-left: 3.125%;
  float: left;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 31.25%;
}
.col-3 > .col:first-child,
.col-3 > li:first-child {
  margin-left: 0;
}
.col-3 > .col:nth-child(3n+1),
.col-3 > li:nth-child(3n+1) {
  margin-left: 0;
}
.col-3 > .col.colspan2,
.col-3 > li.colspan2 {
  width: 65.625%;
}
.col-3 > .col.branch,
.col-3 > li.branch {
  height: auto !important;
  margin-left: 3.125% !important;
}
.col-3 > li {
  margin-right: 0;
  display: block;
}
.col-3 > li li {
  margin-left: 0;
  width: auto;
  float: none;
}
@media screen and (max-width: 640px) {
  .col-3 > .col,
  .col-3 > li {
    margin-left: 0 !important;
    float: none;
    width: auto !important;
    height: auto !important;
  }
  .col-3 > .col.branch,
  .col-3 > li.branch {
    margin-left: 0 !important;
  }
}

.col-4 > .col,
.col-4 > li {
  margin-left: 3.125%;
  float: left;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 22.65625%;
}
.col-4 > .col:first-child,
.col-4 > li:first-child {
  margin-left: 0;
}
.col-4 > .col:nth-child(4n+1),
.col-4 > li:nth-child(4n+1) {
  margin-left: 0;
}
.col-4 > .col.colspan2,
.col-4 > li.colspan2 {
  width: 48.4375%;
}
.col-4 > .col.branch,
.col-4 > li.branch {
  height: auto !important;
  margin-left: 3.125% !important;
}
.col-4 > li {
  margin-right: 0;
  display: block;
}
.col-4 > li li {
  margin-left: 0;
  width: auto;
  float: none;
}
@media screen and (max-width: 640px) {
  .col-4 > .col,
  .col-4 > li {
    margin-left: 0 !important;
    float: none;
    width: auto !important;
    height: auto !important;
  }
  .col-4 > .col.branch,
  .col-4 > li.branch {
    margin-left: 0 !important;
  }
}

/* .lyt-indent
----------------------------------------------- */
.lyt-indent {
  padding-left: 16px;
}
@media screen and (max-width: 800px) {
  .lyt-indent {
    padding-left: 0;
  }
}

/* .lyt-cont-w
----------------------------------------------- */
.lyt-cont-w > .inner {
  display: inline-block;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .lyt-cont-w > .inner {
    display: block;
    width: auto !important;
  }
}

/* ----------------------------------------------------------------
	compornent
----------------------------------------------------------------- */
/* .comp-important
----------------------------------------------- */
.comp-important {
  overflow: hidden;
  font-size: 115.38462%;
}
.comp-important > .hdg {
  color: #d10000;
  float: left;
  white-space: nowrap;
}
.comp-important > .detail {
  padding-left: 2em;
  overflow: hidden;
}
.comp-important > .detail > :last-child {
  margin-bottom: 0;
}
.comp-important > .detail > .link-list-01 {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .comp-important {
    overflow: visible;
  }
  .comp-important > .hdg {
    margin-bottom: 10px;
    float: none;
  }
  .comp-important > .detail {
    padding-left: 0;
    overflow: visible;
  }
}

/* .comp-news
----------------------------------------------- */
.comp-news {
  width: 100%;
}
.comp-news th {
  padding: 10px 1em 10px 0;
  border-bottom: 1px solid #ecebeb;
  width: 10em;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}
.comp-news td {
  padding: 10px 0;
  border-bottom: 1px solid #ecebeb;
}
.comp-news td .item {
  margin-bottom: 5px;
  display: block;
  text-decoration: none;
}
.comp-news > tbody > tr:first-child th,
.comp-news > tbody > tr:first-child td {
  padding-top: 0;
}
@media screen and (max-width: 640px) {
  .comp-news {
    display: block;
    width: 100%;
  }
  .comp-news tbody {
    display: block;
  }
  .comp-news tbody tr {
    display: block;
    width: auto;
  }
  .comp-news tbody tr:after {
    content: "";
    display: block;
    clear: both;
  }
  .comp-news tbody th,
  .comp-news tbody td {
    display: block;
    float: left;
    clear: both;
    width: 100% !important;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .comp-news tbody th {
    margin-bottom: 3px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .comp-news tbody td {
    padding-top: 0;
  }
}

/* .social-icon
----------------------------------------------- */
.social-icon ul {
  text-align: right;
  position: relative;
  z-index: 1;
}
.social-icon ul li {
  margin-left: 3px;
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}
.social-icon ul li:last-child {
  margin-left: 3px !important;
}
.social-icon ul li iframe {
  max-width: none !important;
  width: 90px !important;
}
.social-icon ul li.facebook iframe {
  max-width: none !important;
  width: 80px !important;
}
.social-icon ul li.google-1 {
  margin-left: 0;
}
.social-icon ul li.google-1 > div {
  width: 70px !important;
}
.social-icon ul li.google-1 > div iframe {
  max-width: none !important;
  width: 70px !important;
}
@media screen and (max-width: 640px) {
  .social-icon {
    margin-bottom: 20px;
  }
}

/* .comp-toggle
----------------------------------------------- */
.comp-toggle {
  margin-bottom: 20px;
}
.comp-toggle .toggle-hook {
  padding: 10px 30px 10px 10px;
  border-bottom: 1px solid #e2e1e1;
  display: block;
  cursor: pointer;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjBmMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjZGFkYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f0f0), color-stop(100%, #dcdada));
  background-image: -moz-linear-gradient(#f1f0f0, #dcdada);
  background-image: -webkit-linear-gradient(#f1f0f0, #dcdada);
  background-image: linear-gradient(#f1f0f0, #dcdada);
  background-color: #f1f0f0;
  position: relative;
}
.comp-toggle .toggle-hook:before {
  content: "";
  display: block;
  width: 25px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.comp-toggle .toggle-hook:before {
  background-image: url(/common/images/contents/com_icon_plus01.gif);
  background-repeat: no-repeat;
  background-position: 0 center;
}
.comp-toggle .toggle-hook .hook {
  margin: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.comp-toggle .toggle-cont {
  padding: 10px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #f1f0f0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjJmMiIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f2f2), color-stop(50%, #ffffff), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f5f2f2, #ffffff 50%, #ffffff);
  background-image: -webkit-linear-gradient(#f5f2f2, #ffffff 50%, #ffffff);
  background-image: linear-gradient(#f5f2f2, #ffffff 50%, #ffffff);
  background-color: #fdfdfd;
  display: none;
}
.comp-toggle .toggle-cont > :last-child {
  margin-bottom: 0;
}
.comp-toggle.open .toggle-hook {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RjZGFkYSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxZjBmMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdada), color-stop(100%, #f1f0f0));
  background-image: -moz-linear-gradient(#dcdada, #f1f0f0);
  background-image: -webkit-linear-gradient(#dcdada, #f1f0f0);
  background-image: linear-gradient(#dcdada, #f1f0f0);
}
.comp-toggle.open .toggle-hook:before {
  background-image: url(/common/images/contents/com_icon_minus01.gif);
  background-repeat: no-repeat;
  background-position: 0 center;
}
.comp-toggle.open .toggle-cont {
  display: block;
}
@media screen and (max-width: 640px) {
  .comp-toggle .toggle-hook {
    padding-right: 40px;
  }
  .comp-toggle .toggle-hook:before {
    width: 30px;
  }
}

/* .comp-toggle JavaScript off
----------------------------------------------- */
.script-unavailable .comp-toggle .toggle-hook {
  padding: 10px;
}
.script-unavailable .comp-toggle .toggle-hook:before {
  display: none;
}
.script-unavailable .comp-toggle .toggle-cont {
  display: block;
}

/* .comp-faq-list
----------------------------------------------- */
.comp-faq-list {
  margin-bottom: 40px;
}
.comp-faq-list > li {
  padding: 10px 0;
  border-bottom: 1px solid #ecebeb;
}
.comp-faq-list > li > a {
  padding: 0 0 0 25px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.comp-faq-list > li > a:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  overflow: hidden;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.comp-faq-list > li > a:before {
  background-image: url(/common/images/contents/com_icon_q.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.comp-faq-list > li:first-child {
  padding-top: 0;
}

/* .comp-faq-box
----------------------------------------------- */
.comp-faq-box {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #e4e1e1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.comp-faq-box .question {
  margin: -20px -20px 20px -20px;
  padding: 10px 20px 8px 45px;
  border: 1px solid #ffffff;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom: 1px solid #ebe8e8;
  background-color: #f2efef;
  font-size: 107.69231%;
  position: relative;
}
.comp-faq-box .question:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  overflow: hidden;
  position: absolute;
  top: 0.8em;
  left: 20px;
}
.comp-faq-box .question:before {
  background-image: url(/common/images/contents/com_icon_q.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.comp-faq-box .answer {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}
.comp-faq-box .answer:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  overflow: hidden;
  position: absolute;
  top: 0.25em;
  left: 0;
}
.comp-faq-box .answer:before {
  background-image: url(/common/images/contents/com_icon_a.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.comp-faq-box .answer > :last-child {
  margin-bottom: 0;
}
.comp-faq-box .more {
  padding-top: 10px;
  border-top: 1px solid #ecebeb;
  text-align: right;
}
.comp-faq-box > :last-child {
  margin-bottom: 0 !important;
}
.comp-faq-box > :last-child.more {
  margin-bottom: -10px !important;
}

/* .comp-branch-info
----------------------------------------------- */
.comp-branch-info {
  margin-bottom: 30px;
  position: relative;
  height: 280px;
  background-color: #37414a;
}
.comp-branch-info .branch-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.comp-branch-info .branch-info {
  padding: 20px;
  position: relative;
  z-index: 1;
  width: 45%;
  height: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
}
.comp-branch-info .branch-info .branch-hdg {
  margin-bottom: 15px;
  font-size: 230.76923%;
  font-weight: normal;
}
.comp-branch-info .branch-info .branch-caption {
  font-size: 107.69231%;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .comp-branch-info {
    height: 210px;
    overflow: hidden;
  }
  .comp-branch-info .branch-info {
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  .comp-branch-info {
    margin-top: -10px;
    height: auto;
    background-color: transparent;
  }
  .comp-branch-info .branch-image {
    display: none;
  }
  .comp-branch-info .branch-info {
    padding: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
  }
  .comp-branch-info .branch-info .branch-hdg {
    font-size: 200%;
  }
  .comp-branch-info .branch-info > :last-child {
    margin-bottom: 0;
  }
}

/* .comp-plugin
----------------------------------------------- */
.comp-plugin a {
  text-decoration: none;
}
.comp-plugin .thumb {
  padding-right: 10px;
  float: left;
}
@media screen and (max-width: 767px) {
  .comp-plugin {
    text-align: center;
  }
  .comp-plugin .thumb {
    margin: 0 auto;
    padding: 0 0 10px;
    float: none;
    display: block;
  }
}

/* #str-side > .comp-plugin
----------------------------------------------- */
#str-side .comp-plugin {
  font-size: 92.30769%;
}
#str-side .comp-plugin .thumb {
  margin: 0 auto;
  padding: 0 0 10px;
  float: none;
  display: block;
}

/* #comp-googlemap
----------------------------------------------- */
#comp-googlemap {
  margin-bottom: 30px;
  border: 1px solid #1b1b1b;
  width: 100%;
  height: 450px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
#comp-googlemap img {
  max-width: none;
}
@media screen and (max-width: 800px) {
  #comp-googlemap {
    height: 350px;
  }
}
@media screen and (max-width: 640px) {
  #comp-googlemap {
    height: 250px;
  }
}

/* .comp-field-business
----------------------------------------------- */
.comp-field-business {
  margin: 0 0 20px;
  position: relative;
}
.comp-field-business .description {
  margin: 0;
  width: 26%;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}
.comp-field-business .lyt-inner {
  margin: 0 auto;
  position: relative;
  width: 696px;
}
.comp-field-business .field-list li {
  position: absolute;
}
.comp-field-business .field-list li a {
  display: block;
}
.comp-field-business .field-list li.field-1 {
  top: 0;
  left: 218px;
}
.comp-field-business .field-list li.field-2 {
  top: 50px;
  right: 0;
}
.comp-field-business .field-list li.field-3 {
  bottom: 75px;
  right: 96px;
}
.comp-field-business .field-list li.field-4 {
  bottom: 0;
  left: 114px;
}
.comp-field-business .field-list li.field-5 {
  top: 212px;
  left: 0;
}
.comp-field-business .bg-image {
  display: block;
}
.comp-field-business .field-detail {
  margin-top: -115.5px;
  margin-left: -155px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 155px;
}
.comp-field-business .field-detail .detail {
  padding-bottom: 10px;
  display: none;
  width: 300px;
  height: 155px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
.comp-field-business .field-detail .detail .lyt-inner {
  margin: 0;
  padding: 10px;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
  height: 155px;
  overflow: hidden;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjNmMyIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZjVmM2YzIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f3f3), color-stop(30%, #f5f3f3), color-stop(70%, #ffffff), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f5f3f3, #f5f3f3 30%, #ffffff 70%, #ffffff);
  background-image: -webkit-linear-gradient(#f5f3f3, #f5f3f3 30%, #ffffff 70%, #ffffff);
  background-image: linear-gradient(#f5f3f3, #f5f3f3 30%, #ffffff 70%, #ffffff);
  background-color: #f5f3f3;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 1px 1px 0 #ffffff inset, -1px -1px 0 #ffffff inset;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 1px 1px 0 #ffffff inset, -1px -1px 0 #ffffff inset;
  font-size: 92.30769%;
}
.comp-field-business .field-detail .detail .lyt-inner:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  position: absolute;
  top: 1px;
  left: 0;
}
.comp-field-business .field-detail .detail .lyt-inner:before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I5MDAwMCIvPjxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjZTcwMDAwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZTcwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #b90000), color-stop(70%, #e70000), color-stop(100%, #e70000));
  background-image: -moz-linear-gradient(left, #b90000, #e70000 70%, #e70000);
  background-image: -webkit-linear-gradient(left, #b90000, #e70000 70%, #e70000);
  background-image: linear-gradient(to right, #b90000, #e70000 70%, #e70000);
  background-color: #e70000;
}
.comp-field-business .field-detail .detail .lyt-inner .hdg {
  margin: 3px 0;
  font-size: 107.69231%;
}
.comp-field-business .field-detail .detail .lyt-inner .link {
  padding: 3px 5px 3px 25px;
  border: 1px solid #cfc9c9;
  border-radius: 3px;
  background: url(/common/images/contents/com_arrow07.gif), url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Y2ZjNmMyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: url(/common/images/contents/com_arrow07.gif), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f6f3f3));
  background: url(/common/images/contents/com_arrow07.gif), -moz-linear-gradient(#ffffff, #f6f3f3);
  background: url(/common/images/contents/com_arrow07.gif), -webkit-linear-gradient(#ffffff, #f6f3f3);
  background: url(/common/images/contents/com_arrow07.gif), linear-gradient(#ffffff, #f6f3f3);
  background-repeat: no-repeat;
  background-position: 5px 5px, 0 0;
  background-color: #f6f3f3;
}
.comp-field-business .field-detail .detail .lyt-inner p {
  margin-bottom: 8px;
}
.comp-field-business .field-detail .detail.active {
  display: block;
}
@media screen and (max-width: 640px) {
  .comp-field-business {
    margin: 0 0 20px;
  }
  .comp-field-business .description {
    display: none;
  }
  .comp-field-business .lyt-inner {
    margin: 0;
    width: auto;
  }
  .comp-field-business .field-list,
  .comp-field-business .bg-image {
    display: none;
  }
  .comp-field-business .field-detail {
    margin: 0;
    width: auto;
    height: auto;
    position: static;
  }
  .comp-field-business .field-detail .detail {
    display: block;
    width: auto;
    height: auto;
    position: static;
  }
  .comp-field-business .field-detail .detail .lyt-inner {
    padding: 10px 10px 0;
    width: auto;
    height: auto;
  }
  .comp-field-business .field-detail .detail .lyt-inner .hdg {
    margin-bottom: 10px;
    display: block;
  }
  .comp-field-business .field-detail .detail .lyt-inner .close {
    display: none;
  }
}

/* .comp-field-group
----------------------------------------------- */
.comp-field-group {
  margin: 40px 0;
}
.comp-field-group .lyt-inner {
  position: relative;
  width: 677px;
}
.comp-field-group .bg-image {
  max-width: none;
  position: relative;
  z-index: 0;
}
.comp-field-group .group-list {
  position: relative;
  z-index: 1;
}
.comp-field-group .group-list > li a {
  display: block;
  background-color: #ffffff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  z-index: 3;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.comp-field-group .group-list > li.america a {
  top: 40px;
  left: 90px;
  width: 200px;
  height: 280px;
}
.comp-field-group .group-list > li.europe a {
  top: 40px;
  left: 300px;
  width: 200px;
  height: 120px;
}
.comp-field-group .group-list > li.asia a {
  top: 40px;
  left: 500px;
  width: 200px;
  height: 250px;
}
.comp-field-group .group-list > li.japan a {
  top: 100px;
  left: 565px;
  width: 110px;
  height: 100px;
}
.comp-field-group .group-list > li.active .bg-image, .comp-field-group .group-list > li.enter .bg-image {
  display: block;
}
.comp-field-group .group-list > li.active .bg-image {
  z-index: 1;
}
.comp-field-group .group-list > li.enter .bg-image {
  z-index: 2;
}
.comp-field-group .group-list .bg-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .comp-field-group {
    margin: 0 0 20px;
  }
  .comp-field-group .lyt-inner {
    width: auto;
  }
  .comp-field-group .bg-image {
    display: none !important;
  }
  .comp-field-group .group-list li {
    margin-bottom: 10px;
  }
  .comp-field-group .group-list li a {
    padding-left: 12px;
    display: inline-block;
    width: auto !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    text-indent: 0;
    text-decoration: none;
    background-color: transparent;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    position: relative;
  }
  .comp-field-group .group-list li a:before {
    content: "";
    display: block;
    width: 6px;
    height: 7px;
    overflow: hidden;
    position: absolute;
    top: 0.4em;
    left: 0;
  }
  .comp-field-group .group-list li a:before {
    background-image: url(/common/images/contents/com_arrow03.gif);
    background-repeat: no-repeat;
    background-position: 0 0;
  }
}

/* .comp-banner
----------------------------------------------- */
.comp-banner {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e4e1e1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.comp-banner .sup {
  padding: 5px 10px;
  position: absolute;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.comp-banner .sup > :first-child {
  margin-top: 0;
}
.comp-banner .sup > :last-child {
  margin-bottom: 0;
}
.comp-banner .sup .link-list-line > li:last-child, .comp-banner .sup .link-list-line-01 > li:last-child {
  margin-bottom: inherit !important;
}
@media screen and (max-width: 640px) {
  .comp-banner {
    padding: 15px;
    overflow: visible;
  }
  .comp-banner .sup {
    padding: 0;
    position: static;
    background-color: transparent;
  }
  .comp-banner .image {
    display: none;
  }
}

/* .comp-topic-contents
----------------------------------------------- */
.comp-topic-contents {
  margin: 20px 0;
  padding: 1px;
  border: 1px solid #e4e1e1;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.comp-topic-contents > .hdg {
  padding-bottom: 1px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.comp-topic-contents > .hdg span {
  margin-top: -0.6em;
  color: #fff;
  position: absolute;
  display: block;
  top: 50%;
  left: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-size: 153.84615%;
}
.comp-topic-contents .caption {
  padding: 12px 20px 15px;
  border-top: 1px solid #fff;
  background-color: #f5f3f3;
  font-size: 107.69231%;
}
.comp-topic-contents .caption > :last-child {
  margin-bottom: 0;
}
.comp-topic-contents .nav-topic {
  margin-top: 10px;
  font-size: 107.69231%;
  font-weight: bold;
}
.comp-topic-contents .nav-topic li {
  margin: 0;
  padding: 0 12px;
  border-left: 1px solid #ccc;
  letter-spacing: normal;
  text-align: center;
}
.comp-topic-contents .nav-topic li:first-child {
  border-left: none;
}
.comp-topic-contents .nav-topic li a {
  padding: 10px 0 10px 20px;
  display: inline-block;
  text-decoration: none;
  text-align: left;
  position: relative;
}
.comp-topic-contents .nav-topic li a:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  overflow: hidden;
  position: absolute;
  top: 1em;
  left: 0;
}
.comp-topic-contents .nav-topic li a:before {
  background-image: url(/common/images/contents/com_arrow07.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.comp-topic-contents .nav-topic li a span {
  display: block;
  font-size: 78.57143%;
  font-weight: normal;
}
.comp-topic-contents .nav-topic.col-2 li {
  width: 50%;
}
.comp-topic-contents .nav-topic.col-3 li {
  width: 33%;
}
@media screen and (max-width: 640px) {
  .comp-topic-contents {
    padding-bottom: 10px;
    border-radius: 4px;
  }
  .comp-topic-contents .hdg {
    border-bottom: none;
    background-color: #f5f3f3;
  }
  .comp-topic-contents .hdg span {
    margin: 0;
    padding: 10px 20px 0;
    color: #1b1b1b;
    position: static;
    top: auto;
    font-size: 16px;
    text-shadow: none;
  }
  .comp-topic-contents .hdg img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .comp-topic-contents .caption {
    padding-top: 5px;
    border-top: none;
  }
  .comp-topic-contents .nav-topic {
    margin: 0 20px;
  }
  .comp-topic-contents .nav-topic li {
    margin-top: 10px !important;
    padding: 0;
    border: none;
    text-align: left;
  }
  .comp-topic-contents .nav-topic li a {
    padding: 0 0 0 20px;
  }
  .comp-topic-contents .nav-topic li a:before {
    top: 0.3em;
  }
}

/* .comp-carousel
----------------------------------------------- */
.comp-carousel {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) inset;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.3)), color-stop(80%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0));
  background-color: #4f4b4b;
}
.comp-carousel .lyt-inner {
  margin: 0 auto;
  padding-top: 24px;
  max-width: 1032px;
  position: relative;
  z-index: 1;
  position: relative;
  position: relative;
}
.comp-carousel .lyt-inner:before {
  content: "";
  display: block;
  width: 24px;
  height: 35px;
  overflow: hidden;
  position: absolute;
  bottom: 8px;
  left: -24px;
}
.comp-carousel .lyt-inner:after {
  content: "";
  display: block;
  width: 24px;
  height: 35px;
  overflow: hidden;
  position: absolute;
  right: -24px;
  bottom: 8px;
}
.comp-carousel .lyt-inner:before {
  background-image: url(/common/images/contents/comp-carousel_bg01.gif);
  background-repeat: no-repeat;
  background-position: 0 bottom;
}
.comp-carousel .lyt-inner:after {
  background-image: url(/common/images/contents/comp-carousel_bg02.gif);
  background-repeat: no-repeat;
  background-position: 0 bottom;
}
.comp-carousel .thumb {
  margin: 0;
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 2;
  line-height: 1;
}
.comp-carousel .thumb li {
  margin-left: 6px;
  display: inline-block;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.comp-carousel .thumb a {
  display: block;
}
.comp-carousel .image {
  padding-bottom: 10px;
  width: 100%;
}
.comp-carousel .image ul {
  margin: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
.comp-carousel .image li {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
}
.comp-carousel .image a {
  display: block;
}
.comp-carousel .image img {
  display: block;
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.comp-carousel .image .first {
  display: block;
  z-index: 1;
  visibility: hidden;
}
.comp-carousel .image .caption {
  display: none;
}
.comp-carousel.initialized .image .first {
  display: none;
  z-index: 0;
  visibility: visible;
}
.comp-carousel.initialized .image .active {
  display: block;
  z-index: 1;
}
.comp-carousel.initialized .image .hidding {
  display: block;
  z-index: 2;
}
.comp-carousel.initialized .image .showing {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 1072px) {
  .comp-carousel {
    padding: 0 24px;
  }
}
@media screen and (max-width: 640px) {
  .comp-carousel {
    margin-bottom: 20px;
    padding: 0;
  }
  .comp-carousel .lyt-inner {
    padding: 10px 0 0;
  }
  .comp-carousel .lyt-inner:before, .comp-carousel .lyt-inner:after {
    display: none;
  }
  .comp-carousel .thumb {
    margin-bottom: 2px;
    width: 100%;
    min-width: 320px;
    left: 0;
    right: auto;
    bottom: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
    text-align: center;
  }
  .comp-carousel .thumb li {
    margin: 0 5px;
  }
  .comp-carousel .image {
    padding-bottom: 0;
  }
  .comp-carousel .image ul {
    padding-bottom: 90px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #ffffff;
  }
  .comp-carousel .image a {
    position: relative;
    color: #1b1b1b;
    text-decoration: none;
  }
  .comp-carousel .image img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .comp-carousel .image .caption {
    padding: 3px 20px 2px;
    display: block;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.script-unavailable .comp-carousel .thumb {
  display: none;
}
.script-unavailable .comp-carousel .image li {
  display: none;
}
.script-unavailable .comp-carousel .image li.first {
  display: block;
  visibility: visible;
}

/* .comp-nav-contents
----------------------------------------------- */
.comp-nav-contents > .lyt-inner {
  margin: 0 auto;
  padding: 20px 20px 0;
  max-width: 1032px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.comp-nav-contents .hdg {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
  font-size: 92.30769%;
  position: relative;
}
.comp-nav-contents .hdg:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.comp-nav-contents .hdg:before {
  background-color: #d10000;
}
.comp-nav-contents .hdg a {
  text-decoration: none;
}
.comp-nav-contents .link-list {
  font-size: 84.61538%;
}
.comp-nav-contents .link-list li {
  margin-bottom: 7px;
}
.comp-nav-contents .link-list li a {
  padding-left: 0;
}
.comp-nav-contents .link-list li a:before {
  display: none;
}
.comp-nav-contents .link-list li .link-list {
  margin: 0;
  font-size: 100%;
}
.comp-nav-contents .link-list.branch {
  font-weight: bold;
}
.comp-nav-contents .link-list.branch li {
  padding-bottom: 0;
  border: none;
  overflow: hidden;
}
.comp-nav-contents .link-list.branch li span {
  float: left;
  width: 120px;
}
.comp-nav-contents .link-list.branch li .link-list {
  padding-left: 10px;
  overflow: hidden;
  font-weight: normal;
}
@media screen and (max-width: 1072px) {
  .comp-nav-contents {
    padding: 0 20px;
  }
}
@media screen and (max-width: 800px) {
  .comp-nav-contents {
    padding: 0;
  }
  .comp-nav-contents .link-list.branch li {
    overflow: visible;
  }
  .comp-nav-contents .link-list.branch li a {
    float: none;
    width: auto;
  }
  .comp-nav-contents .link-list.branch li .link-list {
    margin-top: 5px;
    padding-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .comp-nav-contents .hdg {
    margin-top: 0 !important;
  }
}

/* ----------------------------------------------------------------
  modal
----------------------------------------------------------------- */
.modal-movie:hover:after, .modal-movie:active:after, .modal-movie:focus:after {
  opacity: .5;
}
.modal-movie:hover img, .modal-movie:active img, .modal-movie:focus img {
  opacity: .5;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* ----------------------------------------------------------------
  icon
----------------------------------------------------------------- */
/* pdf
----------------------------------------------- */
a[target="_blank"] img,
a[href$=".pdf"] img,
a[href$=".xls"] img,
a[href$=".xlsx"] img {
  vertical-align: middle;
}

/* .icon-audio / .icon-movie
----------------------------------------------- */
.icon-audio img,
.icon-movie img {
  vertical-align: middle;
}

/* .icon-rss
----------------------------------------------- */
.icon-rss {
  text-decoration: none;
}
.icon-rss img {
  vertical-align: middle;
}

/* .icon-download
----------------------------------------------- */
.icon-download {
  text-decoration: none;
}
.icon-download img {
  padding-bottom: 2px;
  vertical-align: middle;
}

/* #str-side > .icon-download
----------------------------------------------- */
#str-side .icon-download {
  font-size: 84.61538%;
}
@media screen and (max-width: 767px) {
  #str-side .icon-download {
    font-size: 100%;
  }
}

/* .fileInfo
----------------------------------------------- */
.fileInfo img {
  padding: 0;
}

/* ----------------------------------------------------------------
	form
----------------------------------------------------------------- */
/* default
----------------------------------------------- */
input[type="text"],
textarea,
select {
  border: 1px solid #b3b1b1;
  min-height: 2em;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 3px #f5f2f2 inset;
  box-shadow: 0 2px 3px #f5f2f2 inset;
}

select {
  padding: 3px;
}

input[type="text"][disabled],
textarea[disabled] {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* .form-list
----------------------------------------------- */
.form-list {
  margin-bottom: 20px;
}
.form-list > li {
  margin-bottom: 10px;
}

/* .form-list-line
----------------------------------------------- */
.form-list-line {
  margin-bottom: 10px;
}
.form-list-line > li {
  margin: 0 20px 10px 0;
  display: inline-block;
}
.form-list-line > li:last-child {
  margin-bottom: 10px !important;
}

/* form CMS
----------------------------------------------- */
#srm_form_area .srm_container_label {
  margin: 25px 0 30px;
  font-size: 230.76923%;
  font-weight: normal;
}
#srm_form_area .srm_information {
  padding: 20px;
  border-radius: 4px;
  background-color: #f5f2f2;
}
#srm_form_area .srm_must_item {
  color: #d10000;
}
#srm_form_area .srm_notice {
  margin-top: 5px;
  color: #706969;
  display: block;
  font-size: 84.61538%;
}
#srm_form_area .srm_error_message_list {
  margin-left: 1.5em;
  color: #d10000;
}
#srm_form_area .srm_error_message_list li {
  margin-bottom: 5px;
  display: list-item;
  list-style-type: disc;
}
#srm_form_area .srm_input_table {
  border-top: 1px solid #ecebeb;
  background-color: #ffffff;
}
#srm_form_area .srm_input_table th,
#srm_form_area .srm_input_table td {
  padding: 8px 10px;
  border-bottom: 1px solid #ecebeb;
  text-align: left;
}
#srm_form_area .srm_input_table th > :first-child,
#srm_form_area .srm_input_table td > :first-child {
  margin-top: 0;
}
#srm_form_area .srm_input_table tbody th {
  width: 35%;
  background-color: #f7f5f5;
}
#srm_form_area .srm_input_table tbody td {
  vertical-align: middle;
}
#srm_form_area p + .srm_input_table,
#srm_form_area ul + .srm_input_table,
#srm_form_area ol + .srm_input_table,
#srm_form_area dl + .srm_input_table,
#srm_form_area div + .srm_input_table {
  margin-top: 0;
}
#srm_form_area input[type="checkbox"] {
  margin-top: 15px;
}
#srm_form_area label {
  padding-left: 10px;
}
#srm_form_area .srm_input_text {
  width: 65%;
}
#srm_form_area .srm_textarea {
  width: 90%;
  height: 160px;
}
#srm_form_area .srm_input_text_name {
  margin-right: 10px;
  width: 30%;
}
#srm_form_area .srm_input_text_zip {
  width: 20%;
}
#srm_form_area .srm_input_text_phone {
  width: 20%;
}
#srm_form_area .srm_action_button {
  margin: 40px auto;
  width: 50%;
  text-align: center;
}
#srm_form_area .srm_action_button input {
  margin: 0 2%;
  padding: 8px 10px 10px;
  border: 1px solid #cbc7c7;
  border-radius: 3px;
  display: inline-block;
  width: 40%;
  -webkit-box-shadow: -1px -1px 1px #ffffff inset;
  box-shadow: -1px -1px 1px #ffffff inset;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZjhmOCIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjZmFmOGY4Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjY2VjYWNhIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #faf8f8), color-stop(10%, #faf8f8), color-stop(100%, #cecaca));
  background-image: -moz-linear-gradient(#faf8f8, #faf8f8 10%, #cecaca);
  background-image: -webkit-linear-gradient(#faf8f8, #faf8f8 10%, #cecaca);
  background-image: linear-gradient(#faf8f8, #faf8f8 10%, #cecaca);
  background-color: #cecaca;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
#srm_form_area .srm_action_button input:hover, #srm_form_area .srm_action_button input:active, #srm_form_area .srm_action_button input:focus {
  color: #1b1b1b;
}
@media screen and (max-width: 640px) {
  #srm_form_area .srm_container_label {
    margin: -10px 0 30px;
    line-height: 1.45;
    font-size: 200%;
  }
  #srm_form_area .srm_input_table {
    display: block;
  }
  #srm_form_area .srm_input_table thead, #srm_form_area .srm_input_table tbody {
    display: block;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_input_table thead tr, #srm_form_area .srm_input_table thead th, #srm_form_area .srm_input_table thead td, #srm_form_area .srm_input_table tbody tr, #srm_form_area .srm_input_table tbody th, #srm_form_area .srm_input_table tbody td {
    display: block;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_input_table thead tr:after, #srm_form_area .srm_input_table tbody tr:after {
    content: "";
    display: block;
    clear: both;
  }
  #srm_form_area .srm_input_table thead th, #srm_form_area .srm_input_table thead td, #srm_form_area .srm_input_table tbody th, #srm_form_area .srm_input_table tbody td {
    float: left;
  }
  #srm_form_area .srm_input_table thead td, #srm_form_area .srm_input_table tbody td {
    padding: 10px 10px 20px;
  }
  #srm_form_area .srm_select {
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_input_text {
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_input_text_name {
    width: 45%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_input_text_zip {
    width: 28%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_input_text_phone {
    width: 28%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #srm_form_area .srm_action_button {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
	common
----------------------------------------------------------------- */
 /* Font Size Control
----------------------------------------------- */
.font-l {
  font-size: 153.84615%;
  font-weight: normal;
}

 /* Font Style Italic
----------------------------------------------- */
.italic {
  font-style: italic;
}

 /* Media Queries Display Cont
----------------------------------------------- */
.show-sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .show-sp {
    display: block !important;
  }
}

@media screen and (max-width: 640px) {
  .hide-sp {
    display: none !important;
  }
}

 /* Margin and Padding Control
----------------------------------------------- */
.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

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

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

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

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

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

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

.p-bottom-0 {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

.p-bottom-5 {
  padding-bottom: 5px !important;
}

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

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

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

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

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

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

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

.p-bottom-10 {
  padding-bottom: 10px !important;
}

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

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

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

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

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

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

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

.p-bottom-15 {
  padding-bottom: 15px !important;
}

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

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

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

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

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

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

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

.p-bottom-20 {
  padding-bottom: 20px !important;
}

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

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

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

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

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

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

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

.p-bottom-25 {
  padding-bottom: 25px !important;
}

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

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

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

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

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

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

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

.p-bottom-30 {
  padding-bottom: 30px !important;
}

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

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

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

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

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

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

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

.p-bottom-35 {
  padding-bottom: 35px !important;
}

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

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

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

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

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

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

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

.p-bottom-40 {
  padding-bottom: 40px !important;
}

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

 /* Width Control
----------------------------------------------- */
.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-100 {
  width: 100% !important;
}

 /* Line Control
----------------------------------------------- */
.line-top {
  border-top: 1px #ecebeb solid !important;
}

.line-reset-top {
  border-top: none !important;
}

.line-right {
  border-right: 1px #ecebeb solid !important;
}

.line-reset-right {
  border-right: none !important;
}

.line-bottom {
  border-bottom: 1px #ecebeb solid !important;
}

.line-reset-bottom {
  border-bottom: none !important;
}

.line-left {
  border-left: 1px #ecebeb solid !important;
}

.line-reset-left {
  border-left: none !important;
}

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

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

 /* Align Control
----------------------------------------------- */
.left,
table.left th,
table.left td,
thead.left > tr > *,
tbody.left > tr > *,
thead > tr > th.left,
thead > tr > td.left,
tbody > tr > th.left,
tbody > tr > td.left {
  text-align: left !important;
}

.center,
table.center th,
table.center td,
thead.center > tr > *,
tbody.center > tr > *,
thead > tr > th.center,
thead > tr > td.center,
tbody > tr > th.center,
tbody > tr > td.center {
  text-align: center !important;
}

.right,
table.right th,
table.right td,
thead.right > tr > *,
tbody.right > tr > *,
thead > tr > th.right,
thead > tr > td.right,
tbody > tr > th.right,
tbody > tr > td.right {
  text-align: right !important;
}

.middle,
table.middle th,
table.middle td,
thead.middle > tr > *,
tbody.middle > tr > *,
thead > tr > th.middle,
thead > tr > td.middle,
tbody > tr > th.middle,
tbody > tr > td.middle {
  vertical-align: middle !important;
}

.top,
table.top th,
table.top td,
thead.top > tr > *,
tbody.top > tr > *,
thead > tr > th.top,
thead > tr > td.top,
tbody > tr > th.top,
tbody > tr > td.top {
  vertical-align: top !important;
}

/* ----------------------------------------------------------------
	External Service Adjustment
----------------------------------------------------------------- */
 /* syncsearch
----------------------------------------------- */
@media screen and (max-width: 640px) {
  #SS_preview {
    display: none !important;
  }

  .SS_image {
    display: none !important;
  }

  .SS_url {
    display: none !important;
  }
}

.cookie_consent_form {
  width: 100%;
  position: fixed;
  bottom: 0;
  min-height: 4rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1em;
  filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#CC000000,EndColorStr=#CC000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#CC000000,EndColorStr=#CC000000)";
}
.cookie_consent_form:not(:target){
	filter: none;
	-ms-filter: none;
}
.cookie_consent_form > p {
  font-size: 15px;
  padding: 0 2em;
  margin-bottom: 0;
}
.cookie_consent_form  a {
  color: #ffffff;
}
.cookie_consent_form  a:hover, a:active {
  color: #ff5555;
  text-decoration:underline solid;
}


