@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: メイリオ, Meiryo, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

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

p:not(:last-child) {
  margin-bottom: 1em;
}

i {
  font-style: normal;
}

em {
  font-style: normal;
}

a {
  color: #0d4270;
  text-decoration: none;
}

a:hover {
  color: #156ab5;
  text-decoration: underline;
}

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;
  }
}

/*!***************************************************************
 *  ベーススタイル
 ****************************************************************/
/*!***************************************************************
 *  見出し
 ****************************************************************/
/*!***************************************************************
 *  ボタンスタイル
 ****************************************************************/
.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 {
  opacity: 0.7;
  text-decoration: none;
  color: white;
  transition: opacity .2s linear;
}

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

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

.m-btn.btn-thirdly {
  background-color: #629db0;
}

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

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

.m-btn.btn-base_bg {
  background-color: #ffffff;
  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-light_gray {
  background-color: #f5f5f5;
  color: #333;
}

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

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

.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: #0d4270;
}

.m-tag.tag-tag_type1 {
  background-color: #589b4d;
}

.m-tag.tag-tag_type2 {
  background-color: #629db0;
}

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

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

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

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

.m-paging.paging-type-square ul li {
  border: 1px solid #0d4270;
  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: #156ab5;
  transition: background 0.2s ,color 0.2s;
}

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

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

.m-paging.paging-type-circle ul li {
  border: 1px solid #0d4270;
  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: #156ab5;
  -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: #0d4270;
  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;
}

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

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

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

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

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

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

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

.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: #0d4270;
}

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

.m-list.list-disc.list-thirdly li:after {
  background-color: #629db0;
}

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

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

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

.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-light_gray li:after {
  background-color: #f5f5f5;
}

.m-list.list-disc.list-base_font_color li:after {
  background-color: #333;
}

.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: #0d4270;
}

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

.m-list.list-disc_small.list-thirdly li:after {
  color: #629db0;
}

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

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

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

.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-light_gray li:after {
  color: #f5f5f5;
}

.m-list.list-disc_small.list-base_font_color li:after {
  color: #333;
}

.m-list.list-angle > li {
  position: relative;
  padding-left: 1.5em;
  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: #0d4270;
  border-bottom-color: #0d4270;
}

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

.m-list.list-angle.list-thirdly li:after {
  border-right-color: #629db0;
  border-bottom-color: #629db0;
}

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

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

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

.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-light_gray li:after {
  border-right-color: #f5f5f5;
  border-bottom-color: #f5f5f5;
}

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

.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: #0d4270;
  border-bottom-color: #0d4270;
}

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

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

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

.m-list.list-arrow.list-thirdly li:after {
  border-right-color: #629db0;
  border-bottom-color: #629db0;
}

.m-list.list-arrow.list-thirdly li:before {
  background-color: #629db0;
}

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

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

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

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

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

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

.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-light_gray li:after {
  border-right-color: #f5f5f5;
  border-bottom-color: #f5f5f5;
}

.m-list.list-arrow.list-light_gray li:before {
  background-color: #f5f5f5;
}

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

.m-list.list-arrow.list-base_font_color li:before {
  background-color: #333;
}

.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: #0d4270;
}

.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: #124673;
}

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

.m-list.list-ad.list-thirdly li:after {
  background-color: #629db0;
}

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

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

.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: #f8e244;
}

.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: #ffffff;
}

.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-light_gray li:after {
  background-color: #f5f5f5;
}

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

.m-list.list-ad.list-base_font_color li:after {
  background-color: #333;
}

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

.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: #0d4270;
}

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

.m-list.list-line.list-thirdly li:after {
  background-color: #629db0;
}

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

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

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

.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-light_gray li:after {
  background-color: #f5f5f5;
}

.m-list.list-line.list-base_font_color li:after {
  background-color: #333;
}

.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 #0d4270;
  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: #ffffff;
}

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

.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: 40px;
}

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

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

.m-box.box-thirdly {
  background: #629db0;
  color: white;
}

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

.m-box.box-accent {
  background: #f8e244;
}

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

.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-light_gray {
  background: #f5f5f5;
}

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

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

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

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

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

.m-box.box-border.box-primary {
  border: 1px solid #051a2b;
}

.m-box.box-border.box-secondary {
  border: 1px solid #081e31;
}

.m-box.box-border.box-thirdly {
  border: 1px solid #427383;
}

.m-box.box-border.box-error {
  border: 1px solid #ab1d1d;
}

.m-box.box-border.box-accent {
  border: 1px solid #e7cc09;
}

.m-box.box-border.box-base_bg {
  border: 1px solid #d9d9d9;
}

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

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

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

.m-box.box-border.box-light_gray {
  border: 1px solid #cfcfcf;
}

.m-box.box-border.box-base_font_color {
  border: 1px solid #0d0d0d;
}

.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 #dd3838;
}

.m-box.box-sideScroll {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .m-box.box-sideScroll {
    padding: 0 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .m-box.box-sideScroll > * {
    min-width: 100%;
    width: 640px !important;
  }
}

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

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

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

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

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

/*!***************************************************************
 *  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: #0d4270;
  color: white;
}

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

.m-table_box .table_box-row.table_box-row-thirdly {
  background: #629db0;
  color: white;
}

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

.m-table_box .table_box-row.table_box-row-accent {
  background: #f8e244;
}

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

.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-light_gray {
  background: #f5f5f5;
}

.m-table_box .table_box-row.table_box-row-base_font_color {
  background: #333;
  color: white;
}

.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: 40px;
}

.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
 ****************************************************************/
.bg-color-light_gray {
  background: #ffffff;
}

.bg-color-primary {
  background: #0d4270;
}

/*!***************************************************************
 *  thumbnail
 ****************************************************************/
.m-thumbnail {
  padding: 10px;
  border: 1px solid #0d4270;
  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 #0d4270;
  padding-bottom: 30px;
}

.m-thumbnail.thumbnail-with_icon .thumbnail-icon {
  font-style: normal;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0d4270;
  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: #0d4270;
}

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

.m-thumbnail.thumbnail-thirdly {
  border-color: #629db0;
}

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

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

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

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

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

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

.m-thumbnail.thumbnail-light_gray {
  border-color: #f5f5f5;
}

.m-thumbnail.thumbnail-base_font_color {
  border-color: #333;
}

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

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

.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 #0d4270;
}

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

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

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

.m-panel.panel-thirdly .panel-header {
  background: #629db0;
  color: white;
}

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

.m-panel.panel-accent .panel-header {
  background: #f8e244;
}

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

.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-light_gray .panel-header {
  background: #f5f5f5;
}

.m-panel.panel-base_font_color .panel-header {
  background: #333;
  color: white;
}

/*!***************************************************************
 *  タブ
 ****************************************************************/
.m-tab .tab-content {
  display: none;
}

.m-tab .tab-content:nth-of-type(1) {
  display: block;
}

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

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

.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 #0d4270;
}

.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: #0d4270;
  color: white;
}

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

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

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

.m-card.card-thirdly {
  background-color: #629db0;
  color: white;
}

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

.m-card.card-accent {
  background-color: #f8e244;
}

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

.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-light_gray {
  background-color: #f5f5f5;
}

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

.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: #ffffff;
}

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

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

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

.m-horizontal_card.vertical_card-primary .card-main {
  background-color: #0d4270;
  color: white;
}

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

.m-horizontal_card.vertical_card-thirdly .card-main {
  background-color: #629db0;
  color: white;
}

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

.m-horizontal_card.vertical_card-accent .card-main {
  background-color: #f8e244;
}

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

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

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

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

.m-horizontal_card.vertical_card-light_gray .card-main {
  background-color: #f5f5f5;
}

.m-horizontal_card.vertical_card-base_font_color .card-main {
  background-color: #333;
  color: white;
}

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

/************************************************
	フォーム
************************************************/
.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 #ffffff;
  font-weight: bold;
}

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

.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;
  padding-top: 5px;
  padding-bottom: 5px;
}

.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: #ffffff;
}

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

.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: #dd3838;
  padding: 2px 5px;
  line-height: 1.1;
  color: white;
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .m-form {
    max-width: none;
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
  }
  .m-form .form-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .m-form .form-wrapper .m-box {
    margin-left: 20px;
    margin-right: 20px;
  }
  .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: 40px;
  width: 100%;
}

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

.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(13, 66, 112, 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(13, 66, 112, 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: 1rem;
  }
  .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 .m-table thead tr th, .table-responsive .m-table thead tr td, .table-responsive .m-table tbody tr th, .table-responsive .m-table tbody tr td, .table-responsive .m-table tfoot tr th, .table-responsive .m-table tfoot tr td {
    white-space: nowrap;
  }
}

/*!***************************************************************
 *  見出し
 ****************************************************************/
.ttl_01 {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 40px;
  border-bottom: 3px solid #0d4270;
  padding-left: 50px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
}

.ttl_01.icon-book {
  background-image: url("../images/icon_h_book.png");
}

.ttl_01.icon-download {
  background-image: url("../images/icon_h_download.png");
}

.ttl_01.icon-info {
  background-image: url("../images/icon_h_info.png");
}

.ttl_01.icon-news {
  background-image: url("../images/icon_h_news.png");
}

.ttl_01.icon-shop {
  background-image: url("../images/icon_h_shop.png");
}

.ttl_01.icon-tour-info {
  background-image: url("../images/icon_h_tour-info.png");
}

.ttl_01.icon-login {
  background-image: url("../images/icon_h_login.png");
}

.ttl_01.icon-company {
  background-image: url("../images/icon_h_company.png");
}

.ttl_01.icon-digital {
  background-image: url("../images/icon_h_digital.png");
}

.ttl_01.icon-kouhou {
  background-image: url("../images/icon_h_kouhou.png");
}

.ttl_01.icon-randsel {
  background-image: url("../images/icon_h_randsel.png");
}

.ttl_01.icon-bag {
  background-image: url("../images/icon_h_bag.png");
}

@media only screen and (max-width: 767px) {
  .ttl_01 {
    padding-left: 40px;
    font-size: 2rem;
    background-size: 24px 24px;
    line-height: 1.6;
  }
  .ttl_01 .icon {
    padding: 0 10px 10px 0;
  }
  .ttl_01 span {
    margin-bottom: 7px;
  }
}

.ttl_02 {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 60px;
  padding-right: 20px;
  position: relative;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.ttl_02:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid 4px #0d4270;
  position: absolute;
  left: 20px;
  top: 10px;
}

@media only screen and (max-width: 767px) {
  .ttl_02 {
    line-height: 1.4;
  }
}

.ttl_03 {
  font-size: 1.6rem;
  font-weight: normal;
  padding-left: 15px;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .ttl_03 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.ttl_03:before {
  content: '';
  width: 5px;
  height: 13px;
  background-color: #0d4270;
  position: absolute;
  left: 0;
  top: 5px;
}

.ttl_04 {
  font-weight: bold;
}

.ttl_border {
  border-bottom: solid 3px #0d4270;
}

.ttl-primary {
  color: #0d4270;
}

.ttl-secondary {
  color: #124673;
}

.ttl-thirdly {
  color: #629db0;
}

.ttl-error {
  color: #dd3838;
}

.ttl-accent {
  color: #f8e244;
}

.ttl-base_bg {
  color: #ffffff;
}

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

.ttl-white {
  color: white;
}

.ttl-black {
  color: black;
}

.ttl-light_gray {
  color: #f5f5f5;
}

.ttl-base_font_color {
  color: #333;
}

/*!***************************************************************
 *  m-btn
 ****************************************************************/
.m-btn {
  border-radius: 50px;
  position: relative;
  margin: auto;
  outline: none;
}

.m-btn span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.4;
  padding: 0 15px 0 10px;
}

.m-btn:hover {
  opacity: 1;
  transition: background .2s linear;
}

.m-btn.btn-primary {
  color: white;
  border: solid 1px #0d4270;
}

@media only screen and (min-width: 1200px) {
  .m-btn.btn-primary:hover {
    color: #0d4270;
    background-color: white;
  }
}

.m-btn.btn-white {
  color: #0d4270;
  border: solid 1px #0d4270;
}

@media only screen and (min-width: 1200px) {
  .m-btn.btn-white:hover {
    color: white;
    background-color: #0d4270;
    border: solid 1px #0d4270;
  }
}

.m-btn.btn-accent {
  color: #0d4270;
  border: solid 1px #0d4270;
}

@media only screen and (min-width: 1200px) {
  .m-btn.btn-accent:hover {
    color: #0d4270;
    background-color: white;
  }
}

.m-btn.btn-light-gray {
  color: #0d4270;
  border: solid 1px #0d4270;
  background-color: #f5f5f5;
}

@media only screen and (min-width: 1200px) {
  .m-btn.btn-light-gray:hover {
    color: #0d4270;
    background-color: white;
  }
}

.m-btn.btn-l {
  font-size: 1.8rem;
  font-weight: bold;
  width: 350px;
  max-width: 100%;
  height: 65px;
  border-bottom: 4px solid #052e51;
}

.m-btn.btn-l:active {
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom-width: 1px;
}

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

.m-btn.btn-m {
  font-size: 1.6rem;
  font-weight: bold;
  width: 245px;
  max-width: 100%;
  height: 65px;
  border-bottom: 4px solid #052e51;
}

.m-btn.btn-m:active {
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: solid 1px #0d4270;
}

.m-btn.btn-s {
  font-size: 1.4rem;
  max-width: 100%;
  width: 170px;
  height: 30px;
}

.m-btn.btn-s span {
  padding: 5px;
}

.m-btn.btn-s.btn-arrow span {
  padding: 5px 20px 5px 10px;
}

@media only screen and (max-width: 1199px) {
  .m-btn.btn-s.btn-arrow span:after {
    transform: translateY(-52%);
    right: 10px;
    font-size: 1.4rem;
    height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .m-btn.btn-s {
    font-size: 1.2rem;
  }
}

.m-btn.btn-ss {
  font-size: 1.4rem;
  width: 80px;
  max-width: 100%;
  height: 30px;
  padding: 0;
}

.m-btn.btn-ss span {
  padding: 0 24px 0 10px;
}

.m-btn.btn-ss:not(:last-child) {
  margin-bottom: 5px;
}

.m-btn.btn-wait {
  cursor: default;
  background-color: #ccc;
  color: black;
}

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

.m-btn.btn-arrow:after {
  display: none;
}

.m-btn.btn-arrow span {
  padding: 5px 35px 5px 10px;
}

.m-btn.btn-arrow span:after {
  font: normal normal normal 20px/1 FontAwesome;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: '\f105';
  height: 20px;
  border-radius: 100%;
  font-weight: bold;
}

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

.m-btn.btn-arrow-back:after {
  display: none;
}

.m-btn.btn-arrow-back span {
  padding: 0 10px 0 15px;
}

.m-btn.btn-arrow-back span:after {
  font: normal normal normal 20px/1 FontAwesome;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  content: '\f104';
  height: 20px;
  border-radius: 100%;
  font-weight: bold;
}

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

.m-btn.btn-arrow-bottom:after {
  display: none;
}

.m-btn.btn-arrow-bottom span {
  padding-right: 50px;
}

.m-btn.btn-arrow-bottom span:after {
  font: normal normal normal 20px/1 FontAwesome;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: '\f078';
  height: 20px;
  border-radius: 100%;
  font-weight: bold;
}

.m-btn.btn-pdf {
  position: relative;
  background-color: #0d4270;
  color: #fff;
}

.m-btn.btn-pdf:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 20px;
  content: '\f019';
  width: 14px;
  height: 14px;
}

.m-btn.btn-dl-pdf {
  position: relative;
  background-color: #d9534f;
  color: #fff;
  border: none;
}

.m-btn.btn-dl-pdf:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 10px;
  content: '\f019';
  width: 14px;
  height: 14px;
}

.m-btn.btn-dl-pdf:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

.m-btn.btn-word {
  position: relative;
  background-color: #428bca;
  color: #fff;
  border: none;
}

.m-btn.btn-word:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 10px;
  content: '\f019';
  width: 14px;
  height: 14px;
}

.m-btn.btn-word:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

.m-btn.btn-excel {
  position: relative;
  background-color: #229654;
  color: #fff;
  border: none;
}

.m-btn.btn-excel:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 10px;
  content: '\f019';
  width: 14px;
  height: 14px;
}

.m-btn.btn-excel:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

.m-btn.btn-taro {
  position: relative;
  background-color: #ec9820;
  color: #fff;
  border: none;
}

.m-btn.btn-taro:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 10px;
  content: '\f019';
  width: 14px;
  height: 14px;
}

.m-btn.btn-taro:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

.m-btn.btn-zip {
  position: relative;
  background-color: #7658b2;
  color: #fff;
  border: none;
}

.m-btn.btn-zip:after {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 10px;
  content: '\f019';
  width: 14px;
  height: 14px;
}

.m-btn.btn-zip:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

.m-btn.btn-flash {
  position: relative;
  background-color: #ec9820;
  color: #fff;
  border: none;
}

.m-btn.btn-flash:after {
  background: url("../images/link_blank_white.png") no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 10px;
  width: 14px;
  height: 14px;
}

.m-btn.btn-flash:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

.m-btn.btn-dl {
  position: relative;
  background-color: #0d4270;
  color: #fff;
  border: none;
  font-size: 1.2rem;
}

.m-btn.btn-dl:hover {
  background-color: #fff;
  border: #0d4270 1px solid;
  color: #0d4270;
}

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

.m-btn.btn-more span:after {
  font: normal normal normal 20px/1 FontAwesome;
  position: absolute;
  content: '\f055';
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-55%);
  left: 225px;
}

@media only screen and (max-width: 1199px) {
  .m-btn.btn-more.btn-white:hover {
    background-color: white;
    color: #0d4270;
  }
}

.m-btn.btn-more.open span:after {
  content: '\f056';
}

@media only screen and (max-width: 1199px) {
  .m-btn.btn-more.open {
    background-color: #0d4270;
    color: white;
  }
}

@media only screen and (max-width: 1199px) {
  .m-btn.btn-more.open.btn-white:hover {
    background-color: #0d4270;
    color: white;
  }
}

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

.m-btn.btn-reset:after {
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 20px;
  content: '\f057';
  width: 16px;
  height: 16px;
}

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

.m-btn.btn-search:after {
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 20px;
  content: '\f002';
  width: 16px;
  height: 16px;
}

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

.m-btn.btn-link:after {
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 20px;
  content: '\f08e';
  width: 16px;
  height: 16px;
}

.m-btn.btn-pager {
  font-size: 1.4rem;
  width: 100px;
  max-width: 100%;
  height: 30px;
  padding: 0;
  color: #0d4270;
  background-color: #f5f5f5;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .m-btn.btn-pager {
    width: 80px;
  }
}

.m-btn.btn-pager span {
  width: 2px;
  background-color: #0d4270;
  top: 14px;
}

.m-btn.btn-pager i {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .m-btn.btn-pager.pc {
    display: none;
  }
}

.m-btn.btn-pager.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .m-btn.btn-pager.sp {
    display: inline-block;
    font-size: 1.0rem;
    width: 30px;
    border-radius: 50%;
  }
}

.m-btn.btn-pager:hover {
  background: #0d4270;
  color: #f5f5f5;
  transition: all 0.2s linear;
}

.m-btn.btn-disabled {
  color: #333;
  border: solid 1px #ccc;
}

.m-btn.btn-disabled span {
  padding: 0;
}

.m-btn.btn-disabled.btn-arrow span:after {
  display: none;
}

.m-btn.btn-disabled:hover {
  color: #333;
  background: #ccc;
  border: solid 1px #ccc;
}

.m-btn.btn-disabled:active {
  transform: translateY(0) !important;
}

.sort_btns {
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sort_btns {
    margin-bottom: 0;
  }
}

.sort_btns .tab-btn:hover {
  text-decoration: none;
}

.sort_btns .tab-btn > [class^="col-"] {
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .sort_btns .tab-btn > [class^="col-"] {
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.sort_btns > * {
  color: #0d4270;
  font-size: 1.4rem;
  cursor: pointer;
  background: white;
  display: block;
  max-width: 100%;
  min-width: 80px;
  width: auto;
  text-align: center;
  border: solid 1px #0d4270;
  border-radius: 50px;
  transition: all 0.2s linear;
  padding: 0 10px;
}

.sort_btns > *.current {
  background: #0d4270;
  color: white;
}

.sort_btns > *:hover {
  background: #0d4270;
  color: white;
}

@media only screen and (max-width: 767px) {
  .sort_btns > * {
    font-size: 1.2rem;
  }
}

.sort_btns a {
  display: inline-block;
  padding: 0;
}

.sort_btns a span {
  width: 100% !important;
  display: inline-block;
  border-radius: 50px;
  padding: 0 10px;
}

@media only screen and (max-width: 1199px) {
  .sort_btns {
    display: block;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .sort_btns {
    text-align: center;
  }
}

/*!***************************************************************
 *  m-tag
 ****************************************************************/
.m-tag.tag-member {
  font-size: 1.4rem;
  padding: 4px 20px 2px 41px;
  border-radius: 20px;
  vertical-align: middle;
  text-align: center;
  color: #0d4270;
  background: #f5f5f5 url("../images/icon_padlock.png") no-repeat 10px center;
  background-size: 16px auto;
  margin: 0;
  line-height: 1.0;
}

.m-tag.tag-news {
  font-size: 1.1rem;
  margin-left: 20px;
  padding: 2px 20px 2px 30px;
  border-radius: 20px;
  width: 130px;
  background-color: #f5f5f5;
}

@media only screen and (max-width: 767px) {
  .m-tag.tag-news {
    margin: 5px 5px 5px 0;
    width: 115px;
    padding-right: 10px;
  }
  .m-tag.tag-news:nth-of-type(2n) {
    margin-right: 0;
  }
}

.m-tag.tag-news.elementary {
  color: #1baa7d;
  background: #f5f5f5 url("../images/icon_news_elementary.png") no-repeat 10px center;
}

.m-tag.tag-news.juniorhigh {
  color: #2e88ce;
  background: #f5f5f5 url("../images/icon_news_juniorhigh.png") no-repeat 10px center;
}

.m-tag.tag-news.book {
  color: #905b31;
  background: #f5f5f5 url("../images/icon_news_book.png") no-repeat 10px center;
}

.m-tag.tag-news.shop {
  color: #eb7256;
  background: #f5f5f5 url("../images/icon_news_shop.png") no-repeat 10px center;
}

.m-tag.tag-news.others {
  color: #8e9092;
  background: #f5f5f5 url("../images/icon_news_others.png") no-repeat 10px center;
}

.tag-anchor {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 10px;
}

.tag-anchor a {
  display: inline-block;
  font-size: 1.4rem;
  color: #0d4270;
  position: relative;
  padding-right: 39px;
  padding-left: 20px;
}

.tag-anchor a:hover {
  text-decoration: none;
}

.tag-anchor a:hover span {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .tag-anchor a {
    padding: 10px 40px 10px 30px;
    margin-bottom: 10px;
  }
}

.tag-anchor a:before {
  display: inline-block;
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
}

@media only screen and (max-width: 767px) {
  .tag-anchor a:before {
    right: 30px;
  }
}

.tag-anchor a:after {
  display: inline-block;
  content: '|';
  position: absolute;
  right: 0;
  color: #f0f0f0;
}

/*------------------------------------------------------------
ページング
------------------------------------------------------------*/
/*------------------------------------------------------------
ローカルナビ
------------------------------------------------------------*/
/*!***************************************************************
 *  リスト
 ****************************************************************/
body {
  counter-reset: question answer;
}

.m-list {
  margin-bottom: 0;
}

.m-list:not(:last-child) {
  margin-bottom: 0;
}

.m-list.list-faq {
  position: relative;
  counter-increment: question answer;
}

.m-list.list-faq + .list-faq {
  border-top: dotted 2px #0d4270;
}

.m-list.list-faq .header {
  position: relative;
  padding: 20px 3em;
}

.m-list.list-faq .header:before {
  content: "Q." counter(question);
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 0;
  color: #0d4270;
}

.m-list.list-faq .header:after {
  content: "\f067";
  font-family: FontAwesome;
  font-size: 1.8rem;
  color: #0d4270;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.m-list.list-faq .header.open:after {
  content: "\f068";
}

.m-list.list-faq .header.close:after {
  content: "\f067";
}

.m-list.list-faq .body {
  position: relative;
  padding: 20px 3em;
}

.m-list.list-faq .body:before {
  content: "A." counter(answer);
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 0;
  color: #dd3838;
}

.m-list.list-decimal-brackets > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}

.m-list.list-decimal-brackets > li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
}

.m-list.list-decimal {
  padding-left: 1em;
}

.m-list.list-decimal > li {
  list-style-type: decimal;
}

/*!***************************************************************
 *  m-link_list
 ****************************************************************/
/*!***************************************************************
 *  box
****************************************************************/
.m-box:not(:last-child) {
  margin-bottom: 10px;
}

.m-box.box-book {
  padding: 30px 0 30px 0;
}

.m-box.box-book:not(:last-child) {
  border-bottom: dashed 1px #0d4270;
}

.m-box.box-sideScroll {
  overflow: inherit !important;
}

@media only screen and (max-width: 767px) {
  .m-box.box-sideScroll {
    overflow-x: auto !important;
  }
}

@media only screen and (min-width: 767px) {
  .m-box .scroll-hint-icon {
    display: none;
  }
}

.m-box .box-book_inner:not(:last-child) {
  padding-bottom: 20px;
}

.m-box.box-list {
  padding: 30px 20px;
  border-bottom: dashed 1px #0d4270;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .m-box.box-list {
    padding-right: 0;
    padding-left: 0;
  }
}

.m-box.box-list a {
  position: relative;
  display: block;
}

.m-box.box-list a dl {
  color: #333;
  padding-right: 20px;
}

.m-box.box-list a dl dt {
  margin-bottom: 20px;
}

.m-box.box-list a dl dd {
  position: relative;
}

.m-box.box-list a dl dd.bold {
  font-weight: bold;
  margin-bottom: 5px;
}

.m-box.box-list a dl dd.small {
  font-size: 80%;
}

@media only screen and (max-width: 767px) {
  .m-box.box-list a dl dd.small {
    font-size: 100%;
  }
}

.m-box.box-list a:after {
  content: "\f08e";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.m-box.box-list a:hover {
  text-decoration: none;
}

.m-box.box-list:hover {
  background: #f5f5f5;
}

.box-grayBtn {
  max-width: 750px;
  margin: auto;
  background-color: #f5f5f5;
  border-top: solid 3px #0d4270;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #0d4270;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.box-grayBtn .txt_info_s {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .m-box.box-sideScroll .scroll-hint-icon-wrap {
    width: 100% !important;
  }
}

/*!***************************************************************
 *  common_box
 ****************************************************************/
/*!***************************************************************
 *  table_box
 ****************************************************************/
/*!***************************************************************
 *  background
 ****************************************************************/
/*!***************************************************************
 *  thumbnail
 ****************************************************************/
/*!***************************************************************
  *  panel
 ****************************************************************/
/*!***************************************************************
 *  タブ
 ****************************************************************/
.tab-btns .tab-btn {
  width: auto;
  display: inline-block;
  margin: 5px;
  padding: 2px 10px;
}

.tab-btns .tab-btn.selected {
  color: white;
  background: #0d4270;
}

@media only screen and (max-width: 767px) {
  .tab_contents {
    background-color: inherit;
  }
}

.Search-box {
  margin: 40px auto;
}

.Search-box .m-tab .tab-btns .tab-btn {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 17px 20px 20px;
  color: #fff;
  background-color: #0d4270;
  border-top: 3px solid #0d4270;
}

.Search-box .m-tab .tab-btns .tab-btn.selected {
  background-color: #f5f5f5;
  color: #0d4270;
}

.Search-box .m-tab .tab_contents {
  padding: 20px 40px;
  background-color: #f5f5f5;
}

.Search-box .m-tab .tab_contents .Search_solid {
  border-bottom: 1px solid #0d4270;
}

.Search-box .m-tab .tab_contents .Search_dushed {
  border-bottom: 1px dashed #0d4270;
}

.Search-box .m-tab .tab_contents .Search_radio input {
  margin-bottom: 6px;
}

.Search-box .m-tab .tab_contents .search_btns input {
  background: transparent;
  border: none;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 50px;
  outline: none;
}

@media only screen and (max-width: 767px) {
  .Search-box .m-tab .tab_contents .search_btns {
    padding-top: 0 !important;
  }
}

.Search-box .m-tab .tab_contents .search_btns .btn-s {
  margin-left: 10px;
  margin-right: 10px;
}

.Search-box .m-tab .tab_contents .search_btns .btn-s.btn-search input {
  color: white;
}

@media only screen and (min-width: 1200px) {
  .Search-box .m-tab .tab_contents .search_btns .btn-s.btn-search:hover input {
    background: white;
    color: #0d4270;
    transition: 0.2s linear;
  }
}

.Search-box .m-tab .tab_contents .search_btns .btn-s.btn-reset {
  margin-bottom: 8px;
}

.Search-box .m-tab .tab_contents .search_btns .btn-s.btn-reset input {
  color: #0d4270;
}

@media only screen and (min-width: 1200px) {
  .Search-box .m-tab .tab_contents .search_btns .btn-s.btn-reset:hover input {
    background: #0d4270;
    color: white;
    transition: 0.2s linear;
  }
}

.Search-box .m-tab .tab_contents .search_btns:after {
  display: block;
  content: '';
  clear: both;
}

.Search-box .m-tab .tab_contents .Search_cheakbox {
  padding: 15px 0;
}

.Search-box .m-tab .tab_contents .Search_cheakbox label {
  padding: 5px 30px 5px 0;
  display: inline-block;
}

.Search-box .m-tab .tab_contents dt {
  color: #0d4270;
  font-weight: bold;
  padding: 5px 0px 5px 0;
}

.Search-box .m-tab .tab_contents .Search_txt input {
  padding: 10px;
  width: 100%;
}

.Search-box .m-tab .tab_contents .Search_date input {
  padding: 3px;
  border: 1px solid #0d4270;
}

.Search-box .m-tab .tab_contents .Search_date img {
  margin: 0 10px 5px 10px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .tab-btns .tab-btn {
    width: 47%;
    margin: 0 1% 10px;
  }
  .Search-box .m-tab .tab-btns .tab-btn {
    font-size: 1.2rem;
    padding: 10px;
    margin: 0;
    width: 49%;
  }
  .Search-box .m-tab .tab_contents {
    padding: 15px;
    background-color: #f5f5f5;
  }
  .Search-box .m-tab .tab_contents .Search_solid {
    border-bottom: 1px solid #0d4270;
  }
  .Search-box .m-tab .tab_contents .Search_dushed {
    border-bottom: 1px dashed #0d4270;
  }
  .Search-box .m-tab .tab_contents .Search_radio input {
    margin-bottom: 6px;
  }
  .Search-box .m-tab .tab_contents .Search_cheakbox {
    padding: 10px 0;
  }
  .Search-box .m-tab .tab_contents .Search_cheakbox label {
    padding-right: 30px;
  }
  .Search-box .m-tab .tab_contents .Search_txt input {
    padding: 10px;
    width: 100%;
  }
  .Search-box .m-tab .tab_contents .Search_date {
    width: 100%;
  }
  .Search-box .m-tab .tab_contents .Search_date input {
    width: 70%;
  }
  .Search-box .m-tab .tab_contents .Search_date img {
    margin: 0 10px 5px 10px;
    display: inline-block;
  }
}

/*!***************************************************************
 *  m-card
 ****************************************************************/
/*!***************************************************************
 *  m-horizontal_card
 ****************************************************************/
/************************************************
	フォーム
************************************************/
.form-box {
  margin: 40px auto 0;
}

.form-box .m-tab .form-btns .form-btn span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0d4270;
  padding-top: 20px;
  width: 85%;
  height: 60px;
  background-color: #f5f5f5;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .form-box .m-tab .form-btns .form-btn span {
    width: 80%;
    padding-top: 7px;
    height: 40px;
  }
}

.form-box .m-tab .form-btns .form-btn span.selected {
  background-color: #0d4270;
  color: #fff;
}

.form-box .m-tab .form-btns .form-btn span.selected::after {
  border-left: 25px solid #0d4270;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  content: "";
  position: absolute;
  right: -25px;
  top: 0;
  margin-left: 50px;
}

@media only screen and (max-width: 767px) {
  .form-box .m-tab .form-btns .form-btn span.selected::after {
    border-left: 15px solid #0d4270;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    right: -15px;
  }
}

.form-box .m-tab .form-btns .form-btn span.flow::after {
  border-left: 25px solid #f5f5f5;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  content: "";
  position: absolute;
  right: -25px;
  top: 0;
  margin-left: 50px;
}

@media only screen and (max-width: 767px) {
  .form-box .m-tab .form-btns .form-btn span.flow::after {
    border-left: 15px solid #f5f5f5;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    right: -15px;
  }
}

.form-box .m-tab .form_contents dt {
  color: #0d4270;
  font-weight: bold;
  padding: 5px 0px 5px 0;
}

.form-box .m-tab .form_contents .Search_txt .txt_input {
  max-width: 100%;
  height: auto;
  border: #0d4270 solid 1px;
  color: #75758A;
}

.form-box .m-tab .form_contents .Search_txt input {
  padding: 10px;
  width: 100%;
  border: #0d4270 solid 1px;
}

.form-box .m-tab .form_contents .Search_date input {
  padding: 3px;
  border: 1px solid #0d4270;
}

.form-box .m-tab .form_contents .Search_date img {
  margin: 0 10px 5px 10px;
  display: inline-block;
}

.custom_check {
  display: none;
}

.custom_check + span {
  padding-left: 20px;
  margin-right: 20px;
  position: relative;
}

.custom_check + span::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: solid 1px #CCC;
  background: white;
}

.custom_check:checked + span::after {
  content: '';
  display: block;
  position: absolute;
  top: 30%;
  left: 3px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 15px;
  border-bottom: solid 2px #0d4270;
  border-right: solid 2px #0d4270;
}

.m-form {
  max-width: 100%;
}

.m-form .form-wrapper {
  border-bottom: 1px dashed #0d4270;
}

.m-form .form-header {
  color: #0d4270;
  padding: 20px;
}

.m-form .form-header .required_icon {
  background-color: #f8e244;
  color: #0d4270;
  font-size: 1.2rem;
  margin-right: 10px;
  padding: 2px 3px;
}

.m-form.form-middle .form-wrapper {
  padding-top: 5px;
  padding-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .m-form.form-middle .form-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.m-form.form-middle label {
  padding: 5px 3% 5px 0;
}

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

@media only screen and (max-width: 767px) {
  .m-form {
    max-width: none;
    width: auto;
    margin-right: unset;
    margin-left: unset;
  }
  .m-form.form-middle .form-content {
    padding-top: 10px;
  }
  .m-form.form-middle label {
    display: block;
    padding-right: 0;
  }
}

/*------------------------------------------------------------
テーブル
------------------------------------------------------------*/
.m-table.table-primary {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-left: solid 1px #0d4270;
  border-top: solid 1px #0d4270;
  line-height: 1.4;
  position: relative;
  text-align: center;
}

.m-table.table-primary:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #0d4270;
}

.m-table.table-primary:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0d4270;
}

.m-table.table-primary th {
  color: white;
  background: #0d4270;
  padding: 20px;
  vertical-align: middle;
  width: 20%;
  border-bottom: solid 1px #f5f5f5;
  border-right: solid 1px white;
}

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

.m-table.table-primary th.border-bottom {
  border-bottom: solid 1px #ffffff;
}

.m-table.table-primary td {
  font-size: 1.4rem;
  border-bottom: dashed 1px #0d4270;
  vertical-align: middle;
  border-right: dashed 1px #0d4270;
  padding: 20px 10px;
}

.m-table.table-primary td.boder-r {
  border-right: dashed 1px #0d4270;
}

.m-table.table-primary tr:nth-child(odd) td {
  background: #f5f5f5;
}

.m-table.table-primary tr:last-child th {
  border-bottom: none;
}

.m-table.table-primary tr:last-child td {
  border-bottom: none;
}

.m-table.table-secondary {
  width: 100%;
  text-align: left;
  table-layout: fixed;
}

.m-table.table-secondary tr {
  border-bottom: solid 1px #f0f0f0;
  border-top: solid 1px #f0f0f0;
}

.m-table.table-secondary th {
  background-color: #f5f5f5;
  padding: 10px;
  width: 25%;
}

.m-table.table-secondary td {
  padding: 10px;
}

.m-table.table-thirdly {
  width: 100%;
  margin-bottom: 20px;
  border: solid 1px #0d4270;
}

.m-table.table-thirdly tbody {
  border: solid 1px #0d4270;
}

.m-table.table-thirdly th {
  color: white;
  padding: 20px;
  width: 10%;
  vertical-align: middle;
  background-color: #0d4270;
}

.m-table.table-thirdly td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: dashed 1px #0d4270;
}

.m-table.table-thirdly .td-cat {
  text-align: center;
  color: #0d4270;
  font-weight: bold;
  width: 10%;
  border-right: solid 1px #0d4270;
}

.m-table.table-thirdly tr {
  /*&:last-child {
				th {
					border-bottom: none;
				}
				td {
					border-bottom: none;
				}
			}*/
}

.m-table.table-thirdly tr:nth-child(odd) td {
  background: #f5f5f5;
}

.m-table.table-slim td, .m-table.table-slim th {
  padding: 10px 30px;
}

@media only screen and (max-width: 767px) {
  .m-table {
    margin-bottom: 10px;
  }
  .m-table.table-primary td {
    font-size: 1.2rem;
  }
  .m-table.table-thirdly th {
    padding: 10px;
  }
  .m-table.table-thirdly td {
    padding: 10px;
  }
}
