@charset "UTF-8";

/* HTML */
*,
::before,
::after {
  position: relative;
  z-index: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  font-size: 100%; /* 16px */
  font-size: 5vmin; /* 画面最小幅320px時に16px */ 
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media print, (min-width:720px) {
  html {
    font-size: 2vw; /* 画面幅720px時に14.4px〜 */
  }
}
@media print, (min-width:1000px) {
  html {
    font-size: 125%; /* 画面幅1000px以上で20px */
  }
}

body {
  min-height: 100%;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
}

em, address {
  font-style: normal;
}

figure {
  line-height: 1;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
figure > figcaption {
  display: inline-block;
  margin-top: 1em;
  font-size: 0.8em;
  line-height: 1.25;
}

p {
  line-height: 1.5;
}

/* FORM */
textarea,
input,
button,
select {
  margin: 0.2rem auto;
  padding: 0.2em;
  max-width: 100%;
  border-radius: 0.3rem;
  border-style: solid;
  border-width: thin;
  border-color: #ccc;
  background-color: #FFF;
  font-size: 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
textarea.w_narrow,
input.w_narrow,
button.w_narrow,
select.w_narrow {
  width: 8em;
}
textarea.w_half,
input.w_half,
button.w_half,
select.w_half,
textarea.w_full,
input.w_full,
button.w_full,
select.w_full {
  width: 100%;
}
textarea {
  height: 5em;
  line-height: 1.25;
}
@media screen and (max-width: 719px) {
  /* iOSフォームズーム対策 */
  textarea,
  input,
  button,
  select {
    font-size: 1.6rem;
  }
}

@media print, (min-width: 720px) {
  textarea.w_half,
  input.w_half,
  button.w_half,
  select.w_half {
    width: 49%;
  }
}


/* LINK */
a, 
a::before, 
a::after {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
a[href^="http"]:empty::after {
  content: attr(href);
}
a[href^="http"]:empty::after,
a[href^="mailto"] {
  display: inline;
  white-space: normal;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}
a[href=""] {
  pointer-events: none;
  opacity: 0.8;
}
a[href^="tel:"] {
  color: inherit;
}
@media print, (min-width: 720px) {
  a[href^="tel:"] {
    text-decoration: none;
    pointer-events: none;
  }
}


body, .sans-serif {
  font-family:
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, "游ゴシック", "ＭＳ Ｐゴシック", "MS PGothic",
    "Yu Gothic", "游ゴシック体", "YuGothic", Osaka, 
    Arial, Helvetica, Roboto, "Droid Sans", "Droid Sans Japanese",
    sans-serif;
}
.serif {
  font-family:
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",
    "游明朝", "Yu Mincho", "游明朝体", "YuMincho",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
    "Times New Roman",
    serif;
}

.cf::after {
  content: ' ';
  clear: both;
  display: block;
}
.ib {
  display: inline-block;
}
.kn_bc {
  display: inline-block;
  margin-right: -0.3em;
  margin-left: -0.3em;
}


.icn {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.icn .icn_img {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: bottom;
}
.icn .icn_txt {
  text-align: center;
}

.logo {
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
}
a.logo {
  text-decoration: none;
}


.title {
  font-weight: bold;
  letter-spacing: 0.1em;
}
.text_area > p, 
.text {
  line-height: 1.75;
  text-align: justify;
}
.text_area > p + p {
  margin-top: 1em;
}
.text_area.indent > p, 
.text.indent {
  text-indent: 1em;
}
.copy {
  font-weight: bold;
  line-height: 1.5;
}
@media print, (min-width:720px) {
  .copy {
    letter-spacing: 0.1em;
  }
}

.inner {
  clear: both;
  width: 90%;
}
.inner::after {
  content: '';
  clear: both;
  display: block;
}
.inner, 
.-sp_inner, 
.-tb_inner, 
.-pc_inner {
  margin: auto;
  max-width: 1000px;
}

.-is_sp, 
.-is_tb, 
.-is_pc {
  display: none;
}
@media only screen and (max-width:719px) {
  .-sp_inner {
    width: 90%;
  }
  .-is_sp {
    display: block;
  }
  .-no_sp {
    display: none;
  }
}
@media print, (min-width:720px) and (max-width:999px) {
  .-tb_inner {
    width: 90%;
  }
  .-is_tb {
    display: block;
  }
  .-no_tb {
    display: none;
  }
}
@media print, (min-width:1000px) {
  .-pc_inner {
    width: 90%;
  }
  .-is_pc {
    display: block;
  }
  .-no_pc {
    display: none;
  }
}


.menu_list {
  list-style: none;
}
.menu_list .menu-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.switch {
  display: none;
}
.btn {
  display: inline-block;
  position: relative;
  padding: 0.5em;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.3);
  box-shadow: 0 1px 1px 0 rgba(0,0,0,0.3);
  color: inherit;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  -webkit-box-shadow: 0 1px 1px 1px rgba(0,0,0,0.3);
  box-shadow: 0 1px 1px 1px rgba(0,0,0,0.3);
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  transform: translate(0, -1px);
}

.link_btn {
  border-style: solid;
  border-width: thin;
  line-height: 1;
}

.bnr {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.bnr:hover {
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  transform: translate(0, -1px);
}


@media print, (min-width:720px) {
  /*.col_block {
    margin: 0.5rem auto;
    width: 48%;
  }
  .col_block.col_r {
    clear: right;
    float: right;
  }
  .col_block.col_l {
    clear: left;
    float: left;
  }*/
}

.col_list {
  list-style: none;
  margin: auto -1%;
  width: 102%;
}
.col_list::after {
  content: ' ';
  clear: both;
  display: block;
}
.col_list > li {
  float: left;
}
@media only screen and (max-width:719px) {
  .col_list > li {
    margin: 4% 2% auto;
  }
  .col_list > li.-sp_c01, 
  .col_list.-sp_c01 > li {
    width: 96%;
  }
  .col_list > li.-sp_c02, 
  .col_list.-sp_c02 > li {
    width: 46%;
  }
  .col_list > li.-sp_c03, 
  .col_list.-sp_c03 > li {
    width: 29.333%;
    width: -webkit-calc( 88% / 3 );
    width: calc( 88% / 3 );
  }
  .col_list > li.-sp_c04, 
  .col_list.-sp_c04 > li {
    width: 21%;
  }
  .col_list > li.-sp_c05, 
  .col_list.-sp_c05 > li {
    width: 12%;
  }
  .col_list > li.-sp_c06, 
  .col_list.-sp_c06 > li {
    width: 12.666%;
    width: -webkit-calc( 76% / 6 );
    width: calc( 76% / 6 );
  }
  .col_list.-sp_c01 > li, 
  .col_list.-sp_c02 > li:nth-child( 2n + 1 ), 
  .col_list.-sp_c03 > li:nth-child( 3n + 1 ), 
  .col_list.-sp_c04 > li:nth-child( 4n + 1 ), 
  .col_list.-sp_c05 > li:nth-child( 5n + 1 ), 
  .col_list.-sp_c06 > li:nth-child( 6n + 1 ) {
    clear: left;
  }
  .col_list.-sp_c01 > li:nth-child( 1 ), 
  .col_list.-sp_c02 > li:nth-child( 2 - n ), 
  .col_list.-sp_c03 > li:nth-child( 3 - n ), 
  .col_list.-sp_c04 > li:nth-child( 4 - n ), 
  .col_list.-sp_c05 > li:nth-child( 5 - n ), 
  .col_list.-sp_c06 > li:nth-child( 6 - n ) {
    margin-top: auto;
  }
}
@media print, (min-width:720px) and (max-width:999px) {
  .col_list > li {
    margin: 2% 1% auto;
  }
  .col_list > li.-tb_c01, 
  .col_list.-tb_c01 > li {
    width: 98%;
  }
  .col_list > li.-tb_c02, 
  .col_list.-tb_c02 > li {
    width: 48%;
  }
  .col_list > li.-tb_c03, 
  .col_list.-tb_c03 > li {
    width: 31.333%;
    width: -webkit-calc( 94% / 3 );
    width: calc( 94% / 3 );
  }
  .col_list > li.-tb_c04, 
  .col_list.-tb_c04 > li {
    width: 23%;
  }
  .col_list > li.-tb_c05, 
  .col_list.-tb_c05 > li {
    width: 18%;
  }
  .col_list > li.-tb_c06, 
  .col_list.-tb_c06 > li {
    width: 14.666%;
    width: -webkit-calc( 88% / 6 );
    width: calc( 88% / 6 );
  }
  .col_list.-tb_c01 > li, 
  .col_list.-tb_c02 > li:nth-child( 2n + 1 ), 
  .col_list.-tb_c03 > li:nth-child( 3n + 1 ), 
  .col_list.-tb_c04 > li:nth-child( 4n + 1 ), 
  .col_list.-tb_c05 > li:nth-child( 5n + 1 ), 
  .col_list.-tb_c06 > li:nth-child( 6n + 1 ) {
    clear: left;
  }
  .col_list.-tb_c01 > li:nth-child( 1 ), 
  .col_list.-tb_c02 > li:nth-child( -n + 2 ), 
  .col_list.-tb_c03 > li:nth-child( -n + 3 ), 
  .col_list.-tb_c04 > li:nth-child( -n + 4 ), 
  .col_list.-tb_c05 > li:nth-child( -n + 5 ), 
  .col_list.-tb_c06 > li:nth-child( -n + 6 ) {
    margin-top: auto;
  }
}
@media print, (min-width:1000px) {
  .col_list > li {
    margin: 2% 1% auto;
  }
  .col_list > li.-pc_c01, 
  .col_list.-pc_c01 > li {
    width: 98%;
  }
  .col_list > li.-pc_c02, 
  .col_list.-pc_c02 > li {
    width: 48%;
  }
  .col_list > li.-pc_c03, 
  .col_list.-pc_c03 > li {
    width: 31.333%;
    width: -webkit-calc( 94% / 3 );
    width: calc( 94% / 3 );
  }
  .col_list > li.-pc_c04, 
  .col_list.-pc_c04 > li {
    width: 23%;
  }
  .col_list > li.-pc_c05, 
  .col_list.-pc_c05 > li {
    width: 18%;
  }
  .col_list > li.-pc_c06, 
  .col_list.-pc_c06 > li {
    width: 14.666%;
    width: -webkit-calc( 88% / 6 );
    width: calc( 88% / 6 );
  }
  .col_list.-pc_c01 > li, 
  .col_list.-pc_c02 > li:nth-child( 2n + 1 ), 
  .col_list.-pc_c03 > li:nth-child( 3n + 1 ), 
  .col_list.-pc_c04 > li:nth-child( 4n + 1 ), 
  .col_list.-pc_c05 > li:nth-child( 5n + 1 ), 
  .col_list.-pc_c06 > li:nth-child( 6n + 1 ) {
    clear: left;
  }
  .col_list.-pc_c01 > li:nth-child( 1 ), 
  .col_list.-pc_c02 > li:nth-child( -n + 2 ), 
  .col_list.-pc_c03 > li:nth-child( -n + 3 ), 
  .col_list.-pc_c04 > li:nth-child( -n + 4 ), 
  .col_list.-pc_c05 > li:nth-child( -n + 5 ), 
  .col_list.-pc_c06 > li:nth-child( -n + 6 ) {
    margin-top: auto;
  }
}


/* TEXT LIST */
.text_list > li {
  text-align: justify;
  line-height: 1.25;
}
.text_list > li + li {
  margin-top: 0.5em;
}

/* MARK LIST */
ul.mark_list, 
ol.mark_list {
  list-style: none;
}
p.mark_p, 
ul.mark_list > li, 
ol.mark_list > li, 
dl.mark_list > dt,
dl.mark_list > dd {
  padding-left: 1em;
}
p.mark_p::before, 
ul.mark_list > li::before, 
ol.mark_list > li::before, 
dl.mark_list > dt::before {
  content: '';
  display: inline-block;
  margin-left: -1em;
  background-color: #333;
  vertical-align: middle;
}
p.mark_p.mark_dis::before, 
ul.mark_list.mark_dis > li::before, 
ol.mark_list.mark_dis > li::before, 
dl.mark_list.mark_dis > dt::before {
  margin-left: -0.7em;
  margin-right: 0.3em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
}
p.mark_p.mark_squ::before, 
ul.mark_list.mark_squ > li::before, 
ol.mark_list.mark_squ > li::before, 
dl.mark_list.mark_squ > dt::before,
.mark_p.mark_cir::before, 
ul.mark_list.mark_cir > li::before, 
ol.mark_list.mark_cir > li::before, 
dl.mark_list.mark_cir > dt::before {
  margin-top: -0.2em;
  margin-right: 0.2em;
  width: 0.8em;
  height: 0.8em;
}
p.mark_p.mark_cir::before, 
ul.mark_list.mark_cir > li::before, 
ol.mark_list.mark_cir > li::before, 
dl.mark_list.mark_cir > dt::before {
  border-radius: 50%
}


span.footnote {
  display: inline-block;
}
.footnote, 
.footnote_list > li {
  padding-left: 1em;
  line-height: 1.5;
}
.footnote::before, 
.footnote_list > li::before {
  content: '※';
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}



/* TABLE */
.info_table, 
.info_table th, 
.info_table td {
  border-style: solid;
  border-width: 0;
  border-color: #ccc;
}
.info_table {
  table-layout: fixed;
  border-collapse: collapse;
  margin: auto;
  width: 100%;
  font-size: 0.875em;
}
.info_table .row_head {
  width: 25%;
}
.info_table th, 
.info_table td {
  padding: 1em;
  border-bottom-width: 2px;
  text-align: left;
  vertical-align: top;
}
.info_table tbody tr:first-child th, 
.info_table tbody tr:first-child td {
  border-top-width: 2px;
}
.info_table tbody tr th {
  background-color: #eaeaea;
}
@media only screen and (max-width:719px) {
  .info_table .row_head {
    width: 100%;
  }
  .info_table th, 
  .info_table td {
    display: block;
    padding: 0.5em;
    width: 100%;
  }
  .info_table th {
    border-bottom: none;
  }
  .info_table td {
    padding-right: 0;
    padding-left: 0;
    border-top: none;
  }
}


.scroll_block {
  max-width: 100%;
  max-height: 10em;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0,0,0,0.2) inset;
  box-shadow: 0 1px 1px 1px rgba(0,0,0,0.2) inset;
}
.scroll_block.scroll_x {
  overflow-x: scroll;
}
.scroll_block.scroll_y {
  overflow-y: scroll;
}
@media print, (min-width:720px) {
  .scroll_block {
    max-height: 20em;
  }
}


.form_table {
  margin: 3em auto;
}
.form_table caption {
  margin-bottom: 0.5em;
  font-weight: bold;
  text-align: left;
}
.form_table th.required::after {
  content: '（必須）';
  display: inline-block;
  color: #f00;
  vertical-align: baseline;
}
.form_unit {
  text-align: center;
}


/* MAINTENANCE */
span.-dummy {
  display: inline-block;
}
.-dummy::after {
  content: 'dummy';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 10em;
  height: 2em;
  background-color: rgba(0,0,0,0.8);
  color: #FFF;
  text-align: center;
  line-height: 2;
  font-size: 1rem;
}

.-comingsoon {
  pointer-events: none;
  opacity: 0.5;
}

@media only screen and (max-width:719px) {
  html #wpadminbar {
    top: -46px;
  }
}