@charset "UTF-8";
/*!***************************************************************
 *  reset
 ****************************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  border: none;
}

/*!***************************************************************
 *  ベーススタイル
 ****************************************************************/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

p:not(:last-child) {
  margin-bottom: 40px;
}

em {
  font-style: normal;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a.disabled {
  color: #ccc;
}

a.disabled:hover {
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

input, textarea {
  padding-left: 10px;
  padding-right: 10px;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

pre {
  margin-bottom: 20px;
}

code {
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 320px;
    font-size: 1.2rem;
  }
}

/*!***************************************************************
 *  見出し
 ****************************************************************/
.ttl-primary {
  color: #dc1148;
}

.ttl-secondary {
  color: #333333;
}

.ttl-error {
  color: #C70000;
}

.ttl-accent {
  color: #1e5712;
}

.ttl-base_bg {
  color: #f4f0e8;
}

.ttl-info {
  color: #70C1B3;
}

.ttl-white {
  color: white;
}

.ttl-black {
  color: black;
}

.ttl-base_light_gray {
  color: #eee;
}

/*!***************************************************************
 *  ボタンスタイル
 ****************************************************************/
.m-btn {
  text-align: center;
  display: block;
  background-color: black;
  color: #FFF;
  font-size: 1.4rem;
  border: 0;
  width: 200px;
  max-width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
}

.m-btn:after {
  content: '';
  height: 100%;
  width: 0;
  vertical-align: middle;
  display: inline-block;
}

.m-btn:hover:not(.disabled) {
  opacity: 0.7;
  text-decoration: none;
  color: white;
  transition: opacity .2s linear;
}

.m-btn.btn-primary {
  background-color: #dc1148;
}

.m-btn.btn-secondary {
  background-color: #333333;
}

.m-btn.btn-error {
  background-color: #C70000;
}

.m-btn.btn-accent {
  background-color: #1e5712;
}

.m-btn.btn-base_bg {
  background-color: #f4f0e8;
  color: #333;
}

.m-btn.btn-info {
  background-color: #70C1B3;
}

.m-btn.btn-white {
  background-color: white;
  color: #333;
}

.m-btn.btn-black {
  background-color: black;
}

.m-btn.btn-base_light_gray {
  background-color: #eee;
  color: #333;
}

.m-btn.btn-disabled {
  cursor: default;
  background-color: #d1d1d1;
  outline: none;
  color: white;
}

.m-btn.btn-disabled:hover {
  opacity: 1;
}

.m-btn.btn-ghost {
  background-color: transparent;
  border: 1px solid white;
  font-weight: normal;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 0px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.m-btn.btn-ghost:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.m-btn.btn-thin {
  padding: 4px 20px;
}

.m-btn.btn-img {
  padding: 0;
  border-radius: 0px;
  width: 100%;
  background: none;
}

.m-btn.btn-arrow {
  position: relative;
}

.m-btn.btn-arrow:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  right: .5em;
  content: '\f105';
  width: 10px;
  height: 14px;
  border-radius: 100%;
  font-weight: bold;
  margin-top: -7px;
}

.m-btn.btn-wide {
  width: 100%;
}

.m-btn.btn-flex {
  width: auto;
  display: inline-block;
}

.m-btn.btn-xl {
  font-size: 2.4rem;
  width: 400px;
  padding: 15px;
}

.m-btn.btn-l {
  font-size: 2rem;
  width: 300px;
  padding: 15px;
}

.m-btn.btn-m {
  font-size: 1.4rem;
  width: 150px;
  padding: 10px;
}

.m-btn.btn-s {
  font-size: 1.2rem;
  font-weight: normal;
  width: auto;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 0;
}

.btns {
  text-align: center;
}

.btns.txt_r {
  text-align: right;
}

.btns .m-btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .btns .m-btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}

/*!***************************************************************
 *  タグタイル
 ****************************************************************/
.m-tag {
  text-align: center;
  display: inline-block;
  background-color: black;
  color: #FFF;
  font-size: 1rem;
  border: 0;
  max-width: 100%;
  padding: 2px 10px;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  margin-right: 5px;
  margin-left: 5px;
}

.m-tag:after {
  content: '';
  height: 100%;
  width: 0;
  vertical-align: middle;
}

.m-tag.tag-primary {
  background-color: #dc1148;
}

.m-tag.tag-tag_type1 {
  background-color: #3b3b3b;
}

.m-tag.tag-tag_type2 {
  background-color: #3B3B3B;
}

.m-tag.tag-tag_type3 {
  background-color: #3B3B3B;
}

.m-tag.tag-error {
  background-color: #C70000;
}

/*------------------------------------------------------------
ページング
------------------------------------------------------------*/
.m-paging {
  margin-bottom: 30px;
}

.m-paging.paging-type-square ul {
  text-align: center;
}

.m-paging.paging-type-square ul li {
  border: 1px solid #dc1148;
  display: inline-block;
  line-height: 0.6;
  border-radius: 3px;
  margin-left: 3px;
  margin-right: 3px;
}

.m-paging.paging-type-square ul li a {
  display: block;
  height: 100%;
  padding: 10px;
}

.m-paging.paging-type-square ul li a:hover {
  text-decoration: none;
  color: white;
  background: #f14976;
  transition: background 0.2s ,color 0.2s;
}

.m-paging.paging-type-square ul li.paging-active {
  background: #dc1148;
  color: white;
  padding: 10px;
}

.m-paging.paging-type-circle ul {
  text-align: center;
}

.m-paging.paging-type-circle ul li {
  border: 1px solid #dc1148;
  display: inline-block;
  line-height: 0.6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
}

.m-paging.paging-type-circle ul li a {
  display: block;
  width: 30px;
  height: 30px;
}

.m-paging.paging-type-circle ul li a:hover {
  text-decoration: none;
  color: white;
  background: #f14976;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: background 0.2s , color 0.2s;
}

.m-paging.paging-type-circle ul li a:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.m-paging.paging-type-circle ul li.paging-active {
  background: #dc1148;
  color: white;
  width: 30px;
  height: 30px;
}

.m-paging.paging-type-circle ul li.paging-active:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*------------------------------------------------------------
ローカルナビ
------------------------------------------------------------*/
.local_nav {
  margin-bottom: 30px;
}

.local_nav header {
  display: inline-block;
  font-weight: bold;
}

.local_nav header:after {
  content: ":";
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.local_nav ul {
  display: inline-block;
}

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

.local_nav ul li:after {
  content: "|";
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}

/*!***************************************************************
 *  リスト
 ****************************************************************/
.m-list:not(:last-child) {
  margin-bottom: 30px;
}

.m-list.list-disc > li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
}

.m-list.list-disc > li:after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #666;
  border-radius: 100%;
}

.m-list.list-disc.list-primary li:after {
  background-color: #dc1148;
}

.m-list.list-disc.list-secondary li:after {
  background-color: #333333;
}

.m-list.list-disc.list-error li:after {
  background-color: #C70000;
}

.m-list.list-disc.list-accent li:after {
  background-color: #1e5712;
}

.m-list.list-disc.list-base_bg li:after {
  background-color: #f4f0e8;
}

.m-list.list-disc.list-info li:after {
  background-color: #70C1B3;
}

.m-list.list-disc.list-white li:after {
  background-color: white;
}

.m-list.list-disc.list-black li:after {
  background-color: black;
}

.m-list.list-disc.list-base_light_gray li:after {
  background-color: #eee;
}

.m-list.list-disc_small > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.m-list.list-disc_small > li:after {
  position: absolute;
  top: 0;
  left: .5em;
  content: '・';
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.m-list.list-disc_small.list-primary li:after {
  color: #dc1148;
}

.m-list.list-disc_small.list-secondary li:after {
  color: #333333;
}

.m-list.list-disc_small.list-error li:after {
  color: #C70000;
}

.m-list.list-disc_small.list-accent li:after {
  color: #1e5712;
}

.m-list.list-disc_small.list-base_bg li:after {
  color: #f4f0e8;
}

.m-list.list-disc_small.list-info li:after {
  color: #70C1B3;
}

.m-list.list-disc_small.list-white li:after {
  color: white;
}

.m-list.list-disc_small.list-black li:after {
  color: black;
}

.m-list.list-disc_small.list-base_light_gray li:after {
  color: #eee;
}

.m-list.list-angle > li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
}

.m-list.list-angle > li:after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-list.list-angle.list-primary li:after {
  border-right-color: #dc1148;
  border-bottom-color: #dc1148;
}

.m-list.list-angle.list-secondary li:after {
  border-right-color: #333333;
  border-bottom-color: #333333;
}

.m-list.list-angle.list-error li:after {
  border-right-color: #C70000;
  border-bottom-color: #C70000;
}

.m-list.list-angle.list-accent li:after {
  border-right-color: #1e5712;
  border-bottom-color: #1e5712;
}

.m-list.list-angle.list-base_bg li:after {
  border-right-color: #f4f0e8;
  border-bottom-color: #f4f0e8;
}

.m-list.list-angle.list-info li:after {
  border-right-color: #70C1B3;
  border-bottom-color: #70C1B3;
}

.m-list.list-angle.list-white li:after {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-angle.list-black li:after {
  border-right-color: black;
  border-bottom-color: black;
}

.m-list.list-angle.list-base_light_gray li:after {
  border-right-color: #eee;
  border-bottom-color: #eee;
}

.m-list.list-arrow > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.m-list.list-arrow > li:after {
  display: block;
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-list.list-arrow > li:before {
  display: block;
  content: '';
  position: absolute;
  top: 12px;
  left: -.025em;
  width: 8px;
  height: 1px;
  background-color: black;
}

.m-list.list-arrow.list-primary li:after {
  border-right-color: #dc1148;
  border-bottom-color: #dc1148;
}

.m-list.list-arrow.list-primary li:before {
  background-color: #dc1148;
}

.m-list.list-arrow.list-secondary li:after {
  border-right-color: #333333;
  border-bottom-color: #333333;
}

.m-list.list-arrow.list-secondary li:before {
  background-color: #333333;
}

.m-list.list-arrow.list-error li:after {
  border-right-color: #C70000;
  border-bottom-color: #C70000;
}

.m-list.list-arrow.list-error li:before {
  background-color: #C70000;
}

.m-list.list-arrow.list-accent li:after {
  border-right-color: #1e5712;
  border-bottom-color: #1e5712;
}

.m-list.list-arrow.list-accent li:before {
  background-color: #1e5712;
}

.m-list.list-arrow.list-base_bg li:after {
  border-right-color: #f4f0e8;
  border-bottom-color: #f4f0e8;
}

.m-list.list-arrow.list-base_bg li:before {
  background-color: #f4f0e8;
}

.m-list.list-arrow.list-info li:after {
  border-right-color: #70C1B3;
  border-bottom-color: #70C1B3;
}

.m-list.list-arrow.list-info li:before {
  background-color: #70C1B3;
}

.m-list.list-arrow.list-white li:after {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-arrow.list-white li:before {
  background-color: white;
}

.m-list.list-arrow.list-black li:after {
  border-right-color: black;
  border-bottom-color: black;
}

.m-list.list-arrow.list-black li:before {
  background-color: black;
}

.m-list.list-arrow.list-base_light_gray li:after {
  border-right-color: #eee;
  border-bottom-color: #eee;
}

.m-list.list-arrow.list-base_light_gray li:before {
  background-color: #eee;
}

.m-list.list-ad > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.m-list.list-ad > li:after {
  display: block;
  content: '';
  position: absolute;
  top: .35em;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: black;
  border-radius: 100%;
}

.m-list.list-ad > li:before {
  display: block;
  content: '';
  position: absolute;
  z-index: 2;
  top: .7em;
  left: .3em;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-list.list-ad.list-primary li:after {
  background-color: #dc1148;
}

.m-list.list-ad.list-primary li:before {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-ad.list-secondary li:after {
  background-color: #333333;
}

.m-list.list-ad.list-secondary li:before {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-ad.list-error li:after {
  background-color: #C70000;
}

.m-list.list-ad.list-error li:before {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-ad.list-accent li:after {
  background-color: #1e5712;
}

.m-list.list-ad.list-accent li:before {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-ad.list-base_bg li:after {
  background-color: #f4f0e8;
}

.m-list.list-ad.list-base_bg li:before {
  border-right-color: #333;
  border-bottom-color: #333;
}

.m-list.list-ad.list-info li:after {
  background-color: #70C1B3;
}

.m-list.list-ad.list-info li:before {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-ad.list-white li:after {
  background-color: white;
}

.m-list.list-ad.list-white li:before {
  border-right-color: #333;
  border-bottom-color: #333;
}

.m-list.list-ad.list-black li:after {
  background-color: black;
}

.m-list.list-ad.list-black li:before {
  border-right-color: white;
  border-bottom-color: white;
}

.m-list.list-ad.list-base_light_gray li:after {
  background-color: #eee;
}

.m-list.list-ad.list-base_light_gray li:before {
  border-right-color: #333;
  border-bottom-color: #333;
}

.m-list.list-line > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.m-list.list-line > li:after {
  display: block;
  content: '';
  position: absolute;
  top: .65em;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: black;
}

.m-list.list-line.list-primary li:after {
  background-color: #dc1148;
}

.m-list.list-line.list-secondary li:after {
  background-color: #333333;
}

.m-list.list-line.list-error li:after {
  background-color: #C70000;
}

.m-list.list-line.list-accent li:after {
  background-color: #1e5712;
}

.m-list.list-line.list-base_bg li:after {
  background-color: #f4f0e8;
}

.m-list.list-line.list-info li:after {
  background-color: #70C1B3;
}

.m-list.list-line.list-white li:after {
  background-color: white;
}

.m-list.list-line.list-black li:after {
  background-color: black;
}

.m-list.list-line.list-base_light_gray li:after {
  background-color: #eee;
}

.m-list.list-inline > li {
  display: inline-block;
  margin-right: 10px;
}

/*!***************************************************************
 *  m-link_list
 ****************************************************************/
.m-link_list {
  position: relative;
}

.m-link_list li {
  margin-bottom: 10px;
}

.m-link_list li a {
  display: block;
  position: relative;
  border: 1px solid #ccc;
  background: white;
  padding: 10px;
}

.m-link_list li a:after {
  font-family: FontAwesome;
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  float: right;
  padding-right: 10px;
}

.m-link_list li a:hover {
  background: #f4f0e8;
}

.m-link_list:not(:last-child) {
  margin-bottom: 30px;
}

.m-link_list.link_list-local a:after {
  content: "";
}

/*!***************************************************************
 *  box
 *  wide_box
 *  thumbnail
 *  panel
 ****************************************************************/
/***** boxモジュール *****/
.m-box {
  padding: 20px;
}

.m-box:not(:last-child) {
  margin-bottom: 30px;
}

.m-box.box-primary {
  background: #dc1148;
  color: white;
}

.m-box.box-secondary {
  background: #333333;
  color: white;
}

.m-box.box-error {
  background: #C70000;
  color: white;
}

.m-box.box-accent {
  background: #1e5712;
  color: white;
}

.m-box.box-base_bg {
  background: #f4f0e8;
}

.m-box.box-info {
  background: #70C1B3;
  color: white;
}

.m-box.box-white {
  background: white;
}

.m-box.box-black {
  background: black;
  color: white;
}

.m-box.box-base_light_gray {
  background: #eee;
}

.m-box.box-p-0 {
  padding: 0px;
}

.m-box.box-p-10 {
  padding: 10px;
}

.m-box.box-p-30 {
  padding: 30px;
}

.m-box.box-p-40 {
  padding: 40px;
}

.m-box.box-p-50 {
  padding: 50px;
}

.m-box.box-border {
  border: 5px solid #ccc;
}

.m-box.box-border.box-primary {
  border: 5px solid #950c31;
}

.m-box.box-border.box-secondary {
  border: 5px solid #0d0d0d;
}

.m-box.box-border.box-error {
  border: 5px solid #7b0000;
}

.m-box.box-border.box-accent {
  border: 5px solid #081805;
}

.m-box.box-border.box-base_bg {
  border: 5px solid #dbceb4;
}

.m-box.box-border.box-info {
  border: 5px solid #459f90;
}

.m-box.box-border.box-white {
  border: 5px solid #d9d9d9;
}

.m-box.box-border.box-black {
  border: 5px solid black;
}

.m-box.box-border.box-base_light_gray {
  border: 5px solid #c8c8c8;
}

.m-box.box-radius {
  border-radius: 5px;
}

.m-box.box-thin {
  padding: 10px 20px;
}

.m-box.box-scroll {
  height: 300px;
  overflow: auto;
}

.m-box.box-scroll_l {
  height: 500px;
  overflow: auto;
}

.m-box.box-scroll_s {
  height: 150px;
  overflow: auto;
}

.m-box.box-note {
  padding: 10px;
  border: 1px solid #C70000;
}

/*!***************************************************************
 *  common_box
 ****************************************************************/
.m-common_box .common_box-header {
  margin-bottom: 20px;
}

.m-common_box .common_box-body {
  margin-bottom: 20px;
}

.m-common_box .common_box-body:last-child {
  margin-bottom: 0;
}

.m-common_box:not(:last-child) {
  margin-bottom: 30px;
}

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

.m-common_box.common_box-border {
  padding: 20px;
  border: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .m-common_box.common_box-big_header .common_box-header {
    font-size: 2rem;
  }
}

/*!***************************************************************
 *  table_box
 ****************************************************************/
.m-table_box {
  width: 100%;
  display: table;
}

.m-table_box .table_box-row {
  display: table-row;
  vertical-align: middle;
  text-align: left;
}

.m-table_box .table_box-row > * {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 10px;
  height: 100%;
}

.m-table_box .table_box-row.table_box-row-primary {
  background: #dc1148;
  color: white;
}

.m-table_box .table_box-row.table_box-row-secondary {
  background: #333333;
  color: white;
}

.m-table_box .table_box-row.table_box-row-error {
  background: #C70000;
  color: white;
}

.m-table_box .table_box-row.table_box-row-accent {
  background: #1e5712;
  color: white;
}

.m-table_box .table_box-row.table_box-row-base_bg {
  background: #f4f0e8;
}

.m-table_box .table_box-row.table_box-row-info {
  background: #70C1B3;
  color: white;
}

.m-table_box .table_box-row.table_box-row-white {
  background: white;
}

.m-table_box .table_box-row.table_box-row-black {
  background: black;
  color: white;
}

.m-table_box .table_box-row.table_box-row-base_light_gray {
  background: #eee;
}

.m-table_box .table_box-header > * {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

.m-table_box .table_box-footer > * {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

.m-table_box:not(:last-child) {
  margin-bottom: 30px;
}

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

.m-table_box.table_box-border {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.m-table_box.table_box-border .table_box-row > * {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.m-table_box.table_box-3-7 .table_box-row > *:first-child {
  width: 30%;
}

.m-table_box.table_box-2-8 .table_box-row > *:first-child {
  width: 30%;
}

/*!***************************************************************
 *  background
 ****************************************************************/
/*!***************************************************************
 *  background
 ****************************************************************/
/*!***************************************************************
 *  bi_box
 ****************************************************************/
/***** bi_boxモジュール *****/
.m-bi_box {
  padding: 50px;
  background-size: cover;
}

.m-bi_box:not(:last-child) {
  margin-bottom: 30px;
}

.m-bi_box.bi_box-type_01 {
  background: url("/main/images/img_01.jpg") no-repeat center center;
}

.m-bi_box.bi_box-type_02 {
  background: url("/main/images/img_02.jpg") no-repeat center center;
}

@media only screen and (max-width: 767px) {
  .m-bi_box {
    padding: 20px;
  }
}

/*!***************************************************************
 *  thumbnail
 ****************************************************************/
.m-thumbnail {
  padding: 10px;
  border: 1px solid #ccc;
  position: relative;
}

.m-thumbnail .thumbnail-img {
  margin-bottom: 20px;
  text-align: center;
}

.m-thumbnail .thumbnail-img:last-child {
  margin-bottom: 0;
}

.m-thumbnail .thumbnail-img img {
  max-width: 100%;
  height: auto;
}

.m-thumbnail .thumbnail-caption {
  margin-top: 20px;
}

.m-thumbnail.thumbnail-no_border {
  padding: 0;
  border: none;
}

.m-thumbnail.thumbnail-under_border {
  border-bottom: 3px solid #dc1148;
  padding-bottom: 30px;
}

.m-thumbnail.thumbnail-with_icon .thumbnail-icon {
  font-style: normal;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #dc1148;
  top: -10px;
  left: 50%;
  color: white;
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
}

.m-thumbnail.thumbnail-primary {
  border-color: #dc1148;
}

.m-thumbnail.thumbnail-secondary {
  border-color: #333333;
}

.m-thumbnail.thumbnail-error {
  border-color: #C70000;
}

.m-thumbnail.thumbnail-accent {
  border-color: #1e5712;
}

.m-thumbnail.thumbnail-base_bg {
  border-color: #f4f0e8;
}

.m-thumbnail.thumbnail-info {
  border-color: #70C1B3;
}

.m-thumbnail.thumbnail-white {
  border-color: white;
}

.m-thumbnail.thumbnail-black {
  border-color: black;
}

.m-thumbnail.thumbnail-base_light_gray {
  border-color: #eee;
}

/*!***************************************************************
  *  panel
 ****************************************************************/
.m-panel {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.m-panel:not(:last-child) {
  margin-bottom: 30px;
}

.m-panel .panel-header {
  padding: 20px;
  background: black;
  color: white;
}

.m-panel .panel-body {
  margin: 20px;
}

.m-panel .panel-footer {
  text-align: right;
  border-top: 1px solid #ccc;
  padding: 20px 0;
  margin-left: 20px;
  margin-right: 20px;
}

.m-panel.panel-thin .panel-header {
  padding: 10px 20px;
}

.m-panel.panel-thin .panel-body {
  margin: 10px 20px;
}

.m-panel.panel-thin .panel-footer {
  text-align: right;
  border-top: 1px solid #ccc;
  padding: 10px 0;
  margin-left: 20px;
  margin-right: 20px;
}

.m-panel.panel-no_border {
  border: none;
}

.m-panel.panel-no_border .panel-header {
  border: none;
}

.m-panel.panel-no_border .panel-body {
  margin-left: 0;
  margin-right: 0;
  border: none;
}

.m-panel.panel-no_border .panel-footer {
  padding-top: 0;
  border: none;
  margin-left: 0;
  margin-right: 0;
}

.m-panel.panel-transparent .panel-header {
  color: white;
  background: transparent;
}

.m-panel.panel-transparent .panel-body {
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #ccc;
}

.m-panel.panel-no_radius {
  border-radius: 0px;
}

.m-panel.panel-primary .panel-header {
  background: #dc1148;
  color: white;
}

.m-panel.panel-secondary .panel-header {
  background: #333333;
  color: white;
}

.m-panel.panel-error .panel-header {
  background: #C70000;
  color: white;
}

.m-panel.panel-accent .panel-header {
  background: #1e5712;
  color: white;
}

.m-panel.panel-base_bg .panel-header {
  background: #f4f0e8;
}

.m-panel.panel-info .panel-header {
  background: #70C1B3;
  color: white;
}

.m-panel.panel-white .panel-header {
  background: white;
}

.m-panel.panel-black .panel-header {
  background: black;
  color: white;
}

.m-panel.panel-base_light_gray .panel-header {
  background: #eee;
}

/*!***************************************************************
 *  m-card
 *  スキン
 *  card-no_border
 *  card-overlay
 *    - card-overlay-fit
 *  色展開
 ****************************************************************/
.m-card {
  position: relative;
  background: #eee;
}

.m-card:not(:last-child) {
  margin-bottom: 30px;
}

.m-card > a {
  display: block;
}

.m-card .card-img img {
  width: 100%;
  height: auto;
}

.m-card .card-header {
  padding: 20px 20px 0 20px;
}

.m-card .card-body {
  padding: 20px;
}

.m-card .card-footer {
  padding: 0 20px 20px 20px;
}

.m-card.card-no_border {
  background: transparent;
}

.m-card.card-no_border .card-img img {
  width: 100%;
  height: auto;
}

.m-card.card-no_border .card-header {
  padding: 10px 0 10px 0;
}

.m-card.card-no_border .card-header h1, .m-card.card-no_border .card-header h2, .m-card.card-no_border .card-header h3, .m-card.card-no_border .card-header h4, .m-card.card-no_border .card-header h5, .m-card.card-no_border .card-header h5 {
  font-weight: bold;
}

.m-card.card-no_border .card-body {
  padding: 0;
}

.m-card.card-no_border .card-footer {
  padding: 0 0 20px 0;
}

.m-card.card-no_border .card-footer-border {
  margin-top: 10px;
  padding: 10px 0 20px 0;
  border-top: 1px solid #ccc;
}

.m-card.card-primary {
  background-color: #dc1148;
  color: white;
}

.m-card.card-secondary {
  background-color: #333333;
  color: white;
}

.m-card.card-error {
  background-color: #C70000;
  color: white;
}

.m-card.card-accent {
  background-color: #1e5712;
  color: white;
}

.m-card.card-base_bg {
  background-color: #f4f0e8;
}

.m-card.card-info {
  background-color: #70C1B3;
  color: white;
}

.m-card.card-white {
  background-color: white;
}

.m-card.card-black {
  background-color: black;
  color: white;
}

.m-card.card-base_light_gray {
  background-color: #eee;
}

.m-horizontal_card {
  position: relative;
}

.m-horizontal_card:after {
  content: '';
  display: table;
  clear: both;
}

.m-horizontal_card .card-img {
  float: left;
  width: 50%;
}

.m-horizontal_card .card-img img {
  width: 100%;
  height: auto;
}

.m-horizontal_card .card-main {
  float: left;
  width: 50%;
  background: #eee;
}

.m-horizontal_card .card-main .card-header {
  padding: 20px 20px 0 20px;
}

.m-horizontal_card .card-main .card-body {
  padding: 20px;
}

.m-horizontal_card .card-footer {
  padding: 0 20px 20px 20px;
}

.m-horizontal_card.horizontal_card-reverse .card-img {
  float: right;
}

.m-horizontal_card.horizontal_card-primary .card-main {
  background-color: #dc1148;
  color: white;
}

.m-horizontal_card.horizontal_card-secondary .card-main {
  background-color: #333333;
  color: white;
}

.m-horizontal_card.horizontal_card-error .card-main {
  background-color: #C70000;
  color: white;
}

.m-horizontal_card.horizontal_card-accent .card-main {
  background-color: #1e5712;
  color: white;
}

.m-horizontal_card.horizontal_card-base_bg .card-main {
  background-color: #f4f0e8;
}

.m-horizontal_card.horizontal_card-info .card-main {
  background-color: #70C1B3;
  color: white;
}

.m-horizontal_card.horizontal_card-white .card-main {
  background-color: white;
}

.m-horizontal_card.horizontal_card-black .card-main {
  background-color: black;
  color: white;
}

.m-horizontal_card.horizontal_card-base_light_gray .card-main {
  background-color: #eee;
}

.m-horizontal_card.horizontal_card-top .card-header {
  font-size: 2rem;
  color: #dc1148;
}

@media only screen and (max-width: 767px) {
  .m-horizontal_card .card-img {
    width: 100%;
  }
  .m-horizontal_card .card-main {
    width: 100%;
  }
}

/************************************************
	フォーム
************************************************/
.m-form-summary {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.m-form {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.m-form .form-wrapper {
  margin-left: 250px;
}

.m-form .form-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

.m-form .form-wrapper.last {
  margin-bottom: 30px;
}

.m-form .form-header {
  width: 250px;
  float: left;
  position: relative;
  margin-left: -250px;
  padding: 20px 50px 20px 20px;
  border-bottom: 1px solid #f4f0e8;
  font-weight: bold;
}

.m-form .form-content {
  width: 100%;
  margin-right: -250px;
  float: left;
  padding: 20px;
  border-bottom: 1px solid #f4f0e8;
}

.m-form input[type=radio] {
  margin-top: -0.1em;
}

.m-form input[type=checkbox] {
  margin-top: 0.05em;
}

.m-form input[type=text], .m-form select {
  height: 35px;
}

.m-form.form-middle .form-wrapper {
  width: 100%;
  display: table;
  margin-left: 0;
}

.m-form.form-middle .form-header {
  float: none;
  display: table-cell;
  margin-left: 0;
  vertical-align: middle;
}

.m-form.form-middle .form-content {
  float: none;
  display: table-cell;
  margin-right: 0;
  vertical-align: middle;
  width: auto;
}

.m-form.form-striped .form-wrapper:nth-child(2n) {
  background: #f4f0e8;
}

.m-form.form-striped .form-wrapper:nth-child(2n) .form-header {
  background: #f4f0e8;
}

.m-form .form-require {
  font-size: smaller;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
}

.m-form .form-require:after {
  content: '';
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.m-form .form-require i {
  background: #C70000;
  padding: 2px 5px;
  line-height: 1.1;
  color: white;
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .m-form .form-wrapper, .m-form.form-middle .form-wrapper {
    margin-left: 0;
  }
  .m-form .form-header, .m-form.form-middle .form-header {
    width: 100%;
    display: block;
    float: none;
    margin-left: 0;
    border-bottom: none;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .m-form .form-content, .m-form.form-middle .form-content {
    margin-right: 0;
    float: none;
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}

/*------------------------------------------------------------
テーブル
------------------------------------------------------------*/
.m-table {
  background: white;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin-bottom: 30px;
  width: 100%;
}

.m-table thead th {
  padding: 10px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 3px solid #dcdcdc;
  color: #dc1148;
}

.m-table thead td {
  border-collapse: collapse;
  padding: 20px;
  border-bottom: 1px solid #dcdcdc;
}

.m-table tbody th {
  width: 20%;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #dcdcdc;
  background: rgba(220, 17, 72, 0.1);
}

.m-table tbody td {
  border-collapse: collapse;
  padding: 20px;
  border-bottom: 1px solid #dcdcdc;
}

.m-table tbody .table_caption_bottom {
  caption-side: bottom;
}

.m-table.table_striped tbody td {
  border-bottom: none;
}

.m-table.table_striped tbody th {
  border-bottom: none;
  background: none;
}

.m-table.table_striped tbody tr:nth-child(2n-1) {
  background: rgba(220, 17, 72, 0.1);
}

.m-table.table_middle th {
  vertical-align: middle;
}

.m-table.table_middle td {
  vertical-align: middle;
}

.m-table.table_comfortable th {
  padding: 20px;
}

.m-table.table_comfortable td {
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .m-table {
    font-size: 1.2rem;
  }
  .m-table tbody td, .m-table tbody th {
    padding: 10px;
  }
  .m-table thead td, .m-table thead th {
    padding: 10px;
  }
  .m-table tfoot td, .m-table tfoot th {
    padding: 10px;
  }
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    min-height: .01%;
    overflow-x: auto;
  }
  .table-responsive .table thead tr th, .table-responsive .table thead tr td, .table-responsive .table tbody tr th, .table-responsive .table tbody tr td, .table-responsive .table tfoot tr th, .table-responsive .table tfoot tr td {
    white-space: nowrap;
  }
}

/*!***************************************************************
 *  見出し
 ****************************************************************/
.ttl_02 {
  color: #fff;
  font-size: 4rem;
  text-align: center;
}

.ttl_02 .ttl_02-sub {
  display: block;
  font-size: 1.6rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .ttl_02 {
    font-size: 2.6rem;
  }
  .ttl_02 .ttl_02-sub {
    font-size: 1.2rem;
  }
}

.ttl_03 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.ttl_03:after {
  content: '';
  display: block;
  position: absolute;
  top: 70px;
  width: 50px;
  height: 3px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #dc1148;
}

.ttl_03 .ttl_03-sub {
  display: block;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 1.2rem;
  margin-top: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .ttl_03 {
    font-size: 2.6rem;
  }
  .ttl_03:after {
    top: 50px;
  }
}

.ttl_04 {
  position: relative;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
}

.ttl_04:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background: #dc1148;
}

@media only screen and (max-width: 767px) {
  .ttl_04 {
    font-size: 1.6rem;
  }
}

.ttl-bg_01 {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(/images/bg_h_01.jpg) no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
}

.ttl-bg_01 .ttl-bg_01-heading {
  line-height: 1;
  display: inline-block;
  padding-bottom: 15px;
  border-bottom: 2px solid white;
  margin-bottom: 15px;
  color: white;
  font-size: 4rem;
}

.ttl-bg_01 .ttl-bg_01-txt {
  color: white;
}

@media only screen and (max-width: 767px) {
  .ttl-bg_01 .ttl-bg_01-heading {
    font-size: 2rem;
  }
}

.ttl-bg_02 {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(/images/bg_h_01.jpg) no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  transform: skewY(-2deg);
  text-align: center;
}

.ttl-bg_02 .ttl-bg_02-heading {
  line-height: 1;
  display: inline-block;
  padding-bottom: 15px;
  border-bottom: 6px solid white;
  margin-bottom: 15px;
  color: white;
  font-size: 4rem;
  transform: skewY(2deg);
}

.ttl-bg_02 .ttl-bg_02-txt {
  color: white;
  transform: skewY(2deg);
}

body .ttl-bg_01, body .ttl-bg_02 {
  margin-bottom: 40px;
}

.ttl_sample_type {
  margin-bottom: 50px;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  margin-top: 20px;
  padding: 10px;
  background: #999;
  color: white;
  transform: rotate(0.05deg);
  font-family: serif;
}

.ttl_l {
  font-size: 2rem;
}

.ttl_ll {
  font-size: 3rem;
}

.ttl_xxl {
  font-size: 4rem;
}

@media only screen and (max-width: 767px) {
  .ttl_l {
    font-size: 1.6rem;
  }
  .ttl_ll {
    font-size: 2rem;
  }
  .ttl_xxl {
    font-size: 3rem;
  }
}

/*!***************************************************************
 *  m-btn
 ****************************************************************/
.m-btn {
  border-radius: 100px;
}

.m-btn.btn-center {
  margin-left: auto;
  margin-right: auto;
}

.m-btn.btn-white {
  border: 1px solid #ccc;
}

.m-btn.btn-black {
  border: 1px solid #000;
}

@media only screen and (max-width: 767px) {
  .m-btn.btn-center-sp {
    margin-left: auto;
    margin-right: auto;
  }
}

/*!***************************************************************
 *  m-tag
 ****************************************************************/
/*------------------------------------------------------------
ページング
------------------------------------------------------------*/
/*------------------------------------------------------------
ローカルナビ
------------------------------------------------------------*/
/*!***************************************************************
 *  リスト
 ****************************************************************/
/*!***************************************************************
 *  m-link_list
 ****************************************************************/
/*!***************************************************************
 *  box
****************************************************************/
/*!***************************************************************
 *  bi_box
 ****************************************************************/
/***** bi_boxモジュール *****/
/*!***************************************************************
 *  common_box
 ****************************************************************/
.m-common_box.common_box-big_header .common_box-header {
  font-size: 4rem;
}

@media only screen and (max-width: 767px) {
  .m-common_box.common_box-big_header .common_box-header {
    font-size: 2rem;
  }
}

/*!***************************************************************
 *  table_box
 ****************************************************************/
/*!***************************************************************
 *  background
 ****************************************************************/
.bg-img-black {
  background: url("/common/images/page_title/bg_pageTitle_01.png") center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.bg-img-black * {
  color: white;
}

.bg-img-syasen {
  background: url("/common/images/bg_syasen.gif");
}

.bg-img-inertia {
  background: url("/images/img_04.jpg") center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.bg-color-light_gray {
  background: #eee;
}

.bg-color-base_bg {
  background: #f4f0e8;
}

/*!***************************************************************
 *  background
 ****************************************************************/
.page_title_01 {
  background: url("/common/images/page_title/bg_pageTitle_01.png") center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.page_title_01 * {
  color: white;
}

/*!***************************************************************
 *  thumbnail
 ****************************************************************/
.m-thumbnail.thumbnail-icon {
  padding: 30px;
  border-radius: 5px;
}

.m-thumbnail.thumbnail-icon .thumbnail-i {
  font-size: 4rem;
}

.m-thumbnail.thumbnail-icon .thumbnail-i:before {
  vertical-align: middle;
}

.m-thumbnail.thumbnail-icon .thumbnail-header {
  text-align: center;
  font-size: 1.6rem;
  position: relative;
}

.m-thumbnail.thumbnail-icon .thumbnail-header h5 {
  font-weight: bold;
}

.m-thumbnail.thumbnail-icon .thumbnail-header:after {
  position: absolute;
  content: '';
  display: block;
  top: 35px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #ccc;
  width: 30px;
  height: 3px;
}

.m-thumbnail.thumbnail-icon .thumbnail-caption {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .m-thumbnail.thumbnail-icon {
    padding: 10px;
  }
}

/*!***************************************************************
  *  panel
 ****************************************************************/
/*!***************************************************************
 *  m-card
 ****************************************************************/
.m-card.card-overlay .m-tag {
  margin: 0;
}

.m-card.card-overlay .card-body {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
}

.m-card.card-overlay .card-footer {
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 10px;
  background: #dc1148;
  color: white;
}

.m-card.card-overlay.card-overlay-fit .card-overlay-fit-category span {
  float: right;
  font-size: 1.2rem;
}

.m-card.card-type_news a:hover .m-tag {
  background: #dc1148;
}

.m-card.card-type_news .card-footer {
  margin: 0 20px 0;
  border-top: 1px solid #ccc;
  padding: 20px 0;
  overflow: hidden;
  font-size: 1.2rem;
}

.m-card.card-type_news .card-type_news-time {
  float: left;
  width: auto;
  margin-right: 10px;
}

.m-card.card-type_news .card-type_news-category {
  float: left;
  width: auto;
}

.m-card.card-type_news .m-tag {
  margin: 0;
}

a:hover .card-type_news .m-tag {
  background: #dc1148;
}

/*!***************************************************************
 *  m-horizontal_card
 ****************************************************************/
/************************************************
	フォーム
************************************************/
/*!***************************************************************
 *  bracket
 ****************************************************************/
.m-bracket {
  position: relative;
  padding: 30px;
  background: white;
}

.m-bracket:before, .m-bracket:after {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
}

.m-bracket:before {
  border-top: 2px solid rgba(220, 17, 72, 0.5);
  border-left: 2px solid rgba(220, 17, 72, 0.5);
  left: 0;
}

.m-bracket:after {
  border-top: 2px solid rgba(220, 17, 72, 0.5);
  border-right: 2px solid rgba(220, 17, 72, 0.5);
  right: 0;
}

.m-bracket .bracket-inner:before, .m-bracket .bracket-inner:after {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0;
}

.m-bracket .bracket-inner:before {
  border-bottom: 2px solid rgba(220, 17, 72, 0.5);
  border-left: 2px solid rgba(220, 17, 72, 0.5);
  left: 0;
}

.m-bracket .bracket-inner:after {
  border-bottom: 2px solid rgba(220, 17, 72, 0.5);
  border-right: 2px solid rgba(220, 17, 72, 0.5);
  right: 0;
}

/*------------------------------------------------------------
テーブル
------------------------------------------------------------*/
.m-table.table-primary {
  border-top: 1px solid #ccc;
}

.m-table.table-primary th {
  background-color: #dc1148;
  color: white;
}

.m-table.table-secondary {
  border-top: 1px solid #ccc;
}

.m-table.table-secondary th {
  background-color: #333333;
  color: white;
}

.m-table.table-error {
  border-top: 1px solid #ccc;
}

.m-table.table-error th {
  background-color: #C70000;
  color: white;
}

.m-table.table-accent {
  border-top: 1px solid #ccc;
}

.m-table.table-accent th {
  background-color: #1e5712;
  color: white;
}

.m-table.table-base_bg {
  border-top: 1px solid #ccc;
}

.m-table.table-base_bg th {
  background-color: #f4f0e8;
}

.m-table.table-info {
  border-top: 1px solid #ccc;
}

.m-table.table-info th {
  background-color: #70C1B3;
  color: white;
}

.m-table.table-white {
  border-top: 1px solid #ccc;
}

.m-table.table-white th {
  background-color: white;
}

.m-table.table-black {
  border-top: 1px solid #ccc;
}

.m-table.table-black th {
  background-color: black;
  color: white;
}

.m-table.table-base_light_gray {
  border-top: 1px solid #ccc;
}

.m-table.table-base_light_gray th {
  background-color: #eee;
}

.m-table.table-type_01 {
  border-top: dashed 1px #ccc;
}

.m-table.table-type_01 th {
  background: none;
  border-bottom: dashed 1px #ccc;
}

.m-table.table-type_01 td {
  border-bottom: dashed 1px #ccc;
  padding: 20px 0;
}

.m-table.table-type_01 td span {
  display: block;
  padding: 0 20px;
  border-left: 1px solid #ccc;
}

.m-table.table-type_02 {
  border-top: 3px solid #ccc;
  border-bottom: 3px solid #ccc;
}

.m-table.table-type_02 th {
  background: #f4f0e8;
  border-bottom: dotted 1px #ccc;
}

.m-table.table-type_02 td {
  border-bottom: dotted 1px #ccc;
}

.m-table.table-type_03 th {
  background: #ccc;
  vertical-align: middle;
  position: relative;
  border-bottom: 1px solid #ffffff;
}

.m-table.table-type_03 th:after {
  left: 100%;
  top: 50%;
  border: 10px solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-left-color: #ccc;
  margin-top: -10px;
}

.m-table.table-type_03 td {
  background: #f8f8f8;
  padding-left: 40px;
  border-bottom: 1px solid #ffffff;
}

/*共通部分*/
.sp_nav_btn {
  position: absolute;
  right: 20px;
  top: 20px;
}

.sp_nav_btn a {
  color: white;
}

@media only screen and (max-width: 767px) {
  .sp_nav_btn {
    right: 20px;
    top: 20px;
  }
}

/**********************************************************************
	body
***********************************************************************/
body {
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  body {
    padding-top: 50px;
  }
}

/**********************************************************************
	ページヘッダ - className : Header-site
***********************************************************************/
.Header-site {
  color: #333;
  background: white;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.Header-site .sp_nav_btn a {
  color: black;
}

.Header-site .sp_nav_btn a:hover {
  text-decoration: none;
}

.Header-site .Header1-logo_area {
  float: left;
  width: auto;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 10px;
}

.Header-site .Header1-logo_area h1 {
  margin-top: 10px;
}

.Header-site .Header1-logo_area h1:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.Header-site .Header1-logo_area a {
  color: #333;
}

.Header-site .Header1-logo_area a:hover {
  text-decoration: none;
}

.Header-site .Header1-nav_area {
  margin-top: 15px;
  float: right;
  width: auto;
}

.Header-site .Header1-nav_area .m-btn {
  width: auto;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  color: white;
}

.Header-site .Header1-nav_area .m-btn.btn-white {
  color: black;
}

.Header-site .Header1-nav_area ul {
  overflow: hidden;
  text-align: right;
}

.Header-site .Header1-nav_area ul li {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  height: 34px;
  vertical-align: middle;
  overflow: hidden;
}

.Header-site .Header1-nav_area ul li span {
  height: 100%;
}

.Header-site .Header1-nav_area ul li a {
  color: #333;
  display: block;
  position: relative;
  height: 100%;
}

.Header-site .Header1-nav_area ul li a:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.Header-site .Header1-nav_area ul li a:hover {
  background: #ccc;
  color: white;
}

@media only screen and (max-width: 767px) {
  .Header-site .Header1-logo_area h1 img {
    width: 120px;
    height: auto;
  }
}

/**********************************************************************
	ページタイトル - className : Page_title
***********************************************************************/
/**********************************************************************
	ページフッタ - className : Footer-site
***********************************************************************/
.Footer-site {
  border-top: 5px solid #ccc;
  padding-top: 60px;
  padding-bottom: 20px;
}

.Footer-site .Footer-site-logoarea {
  display: table;
  width: 100%;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 30px;
}

.Footer-site .Footer-site-logo {
  width: 141px;
  padding-right: 30px;
  padding-bottom: 30px;
  display: table-cell;
  vertical-align: middle;
}

.Footer-site .Footer-site-addr {
  padding-top: 10px;
  display: table;
  padding-bottom: 30px;
  vertical-align: middle;
}

.Footer-site .Footer-site-nav ul li {
  display: inline-block;
  margin-right: 15px;
}

.Footer-site .Footer-site-nav ul li a {
  display: block;
}

.Footer-site .Footer-site-nav ul li a:hover {
  text-decoration: underline;
}

.Footer-site .Footer-site-btn {
  padding-top: 15px;
  padding-bottom: 15px;
}

.Footer-site .Footer-site-lang {
  margin-top: 22px;
  position: relative;
  text-align: center;
}

.Footer-site .Footer-site-lang:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 30%;
  height: 1px;
  background: #ccc;
}

.Footer-site .Footer-site-lang:after {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  width: 30%;
  height: 1px;
  background: #ccc;
}

.Footer-site .Footer-site-lang-head {
  margin-bottom: 10px;
}

.Footer-site .Footer-site-lang-btns {
  font-size: 1.2rem;
}

.Footer-site .Footer-site-lang-btns .m-btn {
  padding: 5px;
  cursor: default;
  border-radius: 5px;
}

.Footer-site .Footer-site-lang-btns a.m-btn {
  cursor: pointer;
}

.Footer-site .Footer-site-lang-btns a.m-btn:hover {
  background: #ccc;
}

.copyright {
  margin-top: 30px;
  clear: both;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  color: #999;
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  .Footer-site {
    padding-top: 40px;
  }
  .Footer-site .Footer-site-logoarea {
    margin-bottom: 0;
  }
  .Footer-site .Footer-site-nav ul li {
    display: block;
    padding: 0;
    border-bottom: 1px dotted #ccc;
    margin-right: 0;
  }
  .Footer-site .Footer-site-nav ul li:after {
    top: 2.2em;
    left: auto;
    right: 10px;
  }
  .Footer-site .Footer-site-nav ul li a {
    display: block;
    padding: 20px;
  }
  .Footer-site .Footer-site-nav ul li a:hover {
    text-decoration: none;
  }
}

/**********************************************************************
	ページトップ - className : Pagetop
***********************************************************************/
.Pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 80px;
}

.Pagetop:hover {
  opacity: .7;
}

.Pagetop.fixed {
  position: absolute;
  top: -40px;
}

@media only screen and (max-width: 767px) {
  .Pagetop {
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  .Pagetop.fixed {
    position: absolute;
    top: -20px;
  }
}

/*****************************************************************
    Floating - className : Floating
*****************************************************************-*/
.Floating {
  position: fixed;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
}

.Floating .Floating-btns .m-btn {
  border-radius: 5px;
  padding: 10px 0;
  font-size: 1rem;
  height: 44px;
}

.Floating .Floating-btns .m-btn.btn-primary {
  font-size: 1.2em;
}

/**********************************************************************
	ページフッタ - className : Sp_nav
***********************************************************************/
@media only screen and (max-width: 767px) {
  .Sp_nav {
    padding: 10px;
  }
  .Sp_nav .Sp_nav-logoarea {
    display: table;
    width: 100%;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 0;
  }
  .Sp_nav .Sp_nav-nav ul li {
    display: block;
    padding-left: 0;
  }
  .Sp_nav .Sp_nav-nav ul li:after {
    top: 2.2em;
    left: auto;
    right: 10px;
  }
  .Sp_nav .Sp_nav-nav ul li a {
    display: block;
    padding: 20px;
    border-bottom: 1px dotted #ccc;
    margin-right: 0;
    background: white;
  }
  .Sp_nav .Sp_nav-nav ul li a:hover {
    text-decoration: none;
  }
  .Sp_nav .Sp_nav-btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .Sp_nav .Sp_nav-lang {
    margin-top: 22px;
    position: relative;
    text-align: center;
  }
  .Sp_nav .Sp_nav-lang:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 30%;
    height: 1px;
    background: #ccc;
  }
  .Sp_nav .Sp_nav-lang:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    width: 30%;
    height: 1px;
    background: #ccc;
  }
  .Sp_nav .Sp_nav-lang-head {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .Sp_nav .Sp_nav-lang-btns {
    font-size: 1.2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  .Sp_nav .Sp_nav-lang-btns .m-btn {
    padding: 5px;
    cursor: default;
    border-radius: 5px;
  }
  .Sp_nav .Sp_nav-lang-btns a.m-btn {
    cursor: pointer;
  }
  .Sp_nav .Sp_nav-lang-btns a.m-btn:hover {
    background: #ccc;
  }
  .Sp_nav p.close-sp_nav {
    margin-top: 20px;
    width: 50%;
    text-align: center;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page_title {
  background: url("../images/bg_subpage.jpg") no-repeat center center;
  background-size: cover;
}

/*!***************************************************************
 *  card-hover_scale
 ****************************************************************/
.m-card .card-img {
  overflow: hidden;
}

.m-card .card-img a {
  transition: transform .3s;
}

.m-card .card-img a:hover img {
  transform: scale(1.1);
  transition: transform .3s;
}

a .m-card .card-img img {
  transition: transform .3s;
}

a:hover .m-card .card-img img {
  transform: scale(1.1);
  transition: transform .3s;
}

/*!***************************************************************
 *  btn_animations
 ****************************************************************/
.m-btn.btn-reverse-primary {
  background-color: #dc1148;
  transition: all .3s;
}

.m-btn.btn-reverse-primary:hover {
  opacity: 1;
  color: #dc1148;
  transition: all .3s;
  background-color: white;
}

.m-btn.btn-circle_zoom-primary {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #dc1148;
}

.m-btn.btn-circle_zoom-primary:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-primary:hover {
  transition: all .4s;
  color: #dc1148;
  background: white;
}

.m-btn.btn-circle_zoom-primary:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-secondary {
  background-color: #333333;
  transition: all .3s;
}

.m-btn.btn-reverse-secondary:hover {
  opacity: 1;
  color: #333333;
  transition: all .3s;
  background-color: white;
}

.m-btn.btn-circle_zoom-secondary {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #333333;
}

.m-btn.btn-circle_zoom-secondary:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-secondary:hover {
  transition: all .4s;
  color: #333333;
  background: white;
}

.m-btn.btn-circle_zoom-secondary:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-error {
  background-color: #C70000;
  transition: all .3s;
}

.m-btn.btn-reverse-error:hover {
  opacity: 1;
  color: #C70000;
  transition: all .3s;
  background-color: white;
}

.m-btn.btn-circle_zoom-error {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #C70000;
}

.m-btn.btn-circle_zoom-error:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-error:hover {
  transition: all .4s;
  color: #C70000;
  background: white;
}

.m-btn.btn-circle_zoom-error:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-accent {
  background-color: #1e5712;
  transition: all .3s;
}

.m-btn.btn-reverse-accent:hover {
  opacity: 1;
  color: #1e5712;
  transition: all .3s;
  background-color: white;
}

.m-btn.btn-circle_zoom-accent {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #1e5712;
}

.m-btn.btn-circle_zoom-accent:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-accent:hover {
  transition: all .4s;
  color: #1e5712;
  background: white;
}

.m-btn.btn-circle_zoom-accent:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-base_bg {
  background-color: #f4f0e8;
  transition: all .3s;
  color: #333;
}

.m-btn.btn-reverse-base_bg:hover {
  opacity: 1;
  color: #f4f0e8;
  transition: all .3s;
  background-color: #333;
}

.m-btn.btn-circle_zoom-base_bg {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #f4f0e8;
  color: #333;
}

.m-btn.btn-circle_zoom-base_bg:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-base_bg:hover {
  transition: all .4s;
  color: #f4f0e8;
  background: #333;
}

.m-btn.btn-circle_zoom-base_bg:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-info {
  background-color: #70C1B3;
  transition: all .3s;
}

.m-btn.btn-reverse-info:hover {
  opacity: 1;
  color: #70C1B3;
  transition: all .3s;
  background-color: white;
}

.m-btn.btn-circle_zoom-info {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #70C1B3;
}

.m-btn.btn-circle_zoom-info:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-info:hover {
  transition: all .4s;
  color: #70C1B3;
  background: white;
}

.m-btn.btn-circle_zoom-info:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-white {
  background-color: white;
  transition: all .3s;
  color: #333;
}

.m-btn.btn-reverse-white:hover {
  opacity: 1;
  color: white;
  transition: all .3s;
  background-color: #333;
}

.m-btn.btn-circle_zoom-white {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: white;
  color: #333;
}

.m-btn.btn-circle_zoom-white:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-white:hover {
  transition: all .4s;
  color: white;
  background: #333;
}

.m-btn.btn-circle_zoom-white:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-black {
  background-color: black;
  transition: all .3s;
}

.m-btn.btn-reverse-black:hover {
  opacity: 1;
  color: black;
  transition: all .3s;
  background-color: white;
}

.m-btn.btn-circle_zoom-black {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: black;
}

.m-btn.btn-circle_zoom-black:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-black:hover {
  transition: all .4s;
  color: black;
  background: white;
}

.m-btn.btn-circle_zoom-black:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-reverse-base_light_gray {
  background-color: #eee;
  transition: all .3s;
  color: #333;
}

.m-btn.btn-reverse-base_light_gray:hover {
  opacity: 1;
  color: #eee;
  transition: all .3s;
  background-color: #333;
}

.m-btn.btn-circle_zoom-base_light_gray {
  position: relative;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
  background: #eee;
  color: #333;
}

.m-btn.btn-circle_zoom-base_light_gray:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s;
  z-index: -1;
}

.m-btn.btn-circle_zoom-base_light_gray:hover {
  transition: all .4s;
  color: #eee;
  background: #333;
}

.m-btn.btn-circle_zoom-base_light_gray:hover:after {
  width: 300px;
  height: 300px;
  transition: all .4s;
}

.m-btn.btn-slide, .m-btn.btn-slide-top, .m-btn.btn-slide-left, .m-btn.btn-slide-right, .m-btn.btn-slide-bottom {
  color: white;
  background: #1e5712;
  transition: all .3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.m-btn.btn-slide:after, .m-btn.btn-slide-top:after, .m-btn.btn-slide-left:after, .m-btn.btn-slide-right:after, .m-btn.btn-slide-bottom:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: white;
  z-index: -1;
  transition: all .3s;
}

.m-btn.btn-slide:hover, .m-btn.btn-slide-top:hover, .m-btn.btn-slide-left:hover, .m-btn.btn-slide-right:hover, .m-btn.btn-slide-bottom:hover {
  opacity: 1;
  color: #1e5712;
  transition: all .3s;
}

.m-btn.btn-slide:hover:after, .m-btn.btn-slide-top:hover:after, .m-btn.btn-slide-left:hover:after, .m-btn.btn-slide-right:hover:after, .m-btn.btn-slide-bottom:hover:after {
  transition: all .3s;
}

.m-btn.btn-slide-top:after {
  top: -100%;
}

.m-btn.btn-slide-top:hover:after {
  top: 0;
  transition: all .3s;
}

.m-btn.btn-slide-left:after {
  left: -100%;
}

.m-btn.btn-slide-left:hover:after {
  left: 0;
}

.m-btn.btn-slide-right:after {
  right: -100%;
  left: inherit;
}

.m-btn.btn-slide-right:hover:after {
  right: 0;
}

.m-btn.btn-slide-bottom:after {
  bottom: -100%;
  top: inherit;
}

.m-btn.btn-slide-bottom:hover:after {
  bottom: 0;
}
