@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 〜 1000px時:16px */
    font-size: calc( 16px - ( 1000px - 100vw ) / 280 * 1.6 );
  }
}
@media print, (min-width:1000px) {
  html {
    font-size: 1.6vw;
  }
}
@media print, (min-width:1250px) {
  html {
    font-size: 125%; /* 画面幅1250px以上で20px */
  }
}


body {
  min-height: 100%;
  background-color: #fff;
  fill: #333;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
}
body, 
.sans-serif {
  font-family:
    "游明朝", "Yu Mincho", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 
    Arial, Helvetica, Roboto, "Droid Sans", "Droid Sans Japanese",
    sans-serif;
}
.serif {
  font-family:
    "游明朝", "Yu Mincho", "游明朝体", "YuMincho", 
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
    "Times New Roman",
    serif;
}
body[data-browser="IE"] {
  font-family:
    "游明朝", "Yu Mincho","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", 
    sans-serif;
}


h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}
em, address {
  font-style: normal;
}

img, svg {
  max-width: 100%;
  vertical-align: bottom;
}
svg {
  height: 1em;
}
img:not([width]) {
  width: 100%;
}
img:not([height]) {
  height: auto;
}

figure figcaption {
  display: block;
  margin-top: 0.5em;
  line-height: 1.25;
  font-size: 0.625em;
  text-align: left;
}

/* IEで枠線が背景色の下になるバグ対策 */
th, td {
  position: static;
}


/* FORM */
textarea,
input,
button,
select {
  margin: 0.2rem auto;
  padding: 0.25em;
  max-width: 100%;
  border-style: solid;
  border-width: thin;
  border-color: #ccc;
  background-color: #FFF;
  font-size: 1em;
  line-height: 1.25;
  -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 {
  min-height: 5em;
  line-height: 1.25;
}
@media screen and (max-width: 719px) {
  /* iOSフォームズーム対策 */
  textarea,
  input,
  button,
  select {
    padding: 0;
    font-size: 1rem !important;
  }
}
@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:"]:link {
    text-decoration: none;
    pointer-events: none;
    color: inherit;
  }
}


/* block */
.cf::after {
  content: ' ';
  clear: both;
  display: block;
}

.ib {
  display: inline-block;
}

.inner {
  clear: both;
}
.inner::after {
  content: '';
  clear: both;
  display: block;
}
.inner, 
.-sp_inner, 
.-tb_inner, 
.-pc_inner {
  margin: auto;
}

.-is_sp, 
.-is_tb, 
.-is_pc {
  display: none;
}
@media only screen and (max-width:719px) {
  .inner, 
  .-sp_inner {
    width: 90%;
  }
  .-is_sp {
    display: block;
  }
  .-no_sp {
    display: none;
  }
}
@media print, (min-width:720px) and (max-width:1249px) {
  .inner, 
  .-tb_inner {
    width: 90%;
  }
  .-is_tb {
    display: block;
  }
  .-no_tb {
    display: none;
  }
}
@media print, (min-width:1250px) {
  .inner, 
  .-pc_inner {
    width: 90%;
    max-width: 1200px;
  }
  .-is_pc {
    display: block;
  }
  .-no_pc {
    display: none;
  }
}

.narrow {
  margin: auto;
  max-width: 1000px;
}


/* COLUMN */
.col_list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col_list > li {
  margin: 1% 2% 1% 0;
}
.col_list.text_list > li {
  margin: 1% 2% 0 0;
}
.col_list > li:last-child {
  margin-right: 0;
}
@media only screen and (max-width:719px) {
  .col_list > li {
    margin-top: 4%;
    margin-bottom: 4%;
  }
  .col_list.text_list > li {
    margin-top: 2%;
    margin-bottom: 0;
  }
  .col_list.-sp_c01 > li {
    width: 100%;
  }
  .col_list.-sp_c02 > li {
    width: 49%;
  }
  .col_list.-sp_c03 > li {
    width: 32%;
  }
  .col_list.-sp_c04 > li {
    width: 23.5%;
  }
  .col_list.-sp_c05 > li {
    width: 18.4%;
  }
  .col_list.-sp_c06 > li {
    width: 15%
  }
  .col_list.-sp_c01 > li, 
  .col_list.-sp_c02 > li:nth-child( 2n + 0 ), 
  .col_list.-sp_c03 > li:nth-child( 3n + 0 ), 
  .col_list.-sp_c04 > li:nth-child( 4n + 0 ), 
  .col_list.-sp_c05 > li:nth-child( 5n + 0 ), 
  .col_list.-sp_c06 > li:nth-child( 6n + 0 ) {
    margin-right: 0;
  }
}
@media (min-width:720px) and (max-width:999px) {
  .col_list.-tb_c01 > li {
    width: 100%;
  }
  .col_list.-tb_c02 > li {
    width: 49%;
  }
  .col_list.-tb_c03 > li {
    width: 32%;
  }
  .col_list.-tb_c04 > li {
    width: 23.5%;
  }
  .col_list.-tb_c05 > li {
    width: 18.4%;
    width: -webkit-calc( 92% / 5 );
    width: calc( 92% / 5 );
  }
  .col_list.-tb_c06 > li {
    width: 15%
  }
  .col_list.-tb_c07 > li {
    width: 12.57%;
    width: -webkit-calc( 88% / 7 );
    width: calc( 88% / 7 );
  }
  .col_list.-tb_c08 > li {
    width: 10.75%;
    width: -webkit-calc( 86% / 8 );
    width: calc( 86% / 8 );
  }
  .col_list.-tb_c09 > li {
    width: 9.333%;
    width: -webkit-calc( 84% / 9 );
    width: calc( 84% / 9 );
  }
  .col_list.-tb_c01 > li, 
  .col_list.-tb_c02 > li:nth-child( 2n + 0 ), 
  .col_list.-tb_c03 > li:nth-child( 3n + 0 ), 
  .col_list.-tb_c04 > li:nth-child( 4n + 0 ), 
  .col_list.-tb_c05 > li:nth-child( 5n + 0 ), 
  .col_list.-tb_c06 > li:nth-child( 6n + 0 ), 
  .col_list.-tb_c07 > li:nth-child( 7n + 0 ), 
  .col_list.-tb_c08 > li:nth-child( 8n + 0 ), 
  .col_list.-tb_c09 > li:nth-child( 9n + 0 ) {
    margin-right: 0;
  }
}
@media print, (min-width:1000px) {
  .col_list.-pc_c01 > li {
    width: 100%;
  }
  .col_list.-pc_c02 > li {
    width: 49%;
  }
  .col_list.-pc_c03 > li {
    width: 32%;
  }
  .col_list.-pc_c04 > li {
    width: 23.5%;
  }
  .col_list.-pc_c05 > li {
    width: 18.4%;
    width: -webkit-calc( 92% / 5 );
    width: calc( 92% / 5 );
  }
  .col_list.-pc_c06 > li {
    width: 15%;
  }
  .col_list.-pc_c07 > li {
    width: 12.57%;
    width: -webkit-calc( 88% / 7 );
    width: calc( 88% / 7 );
  }
  .col_list.-pc_c08 > li {
    width: 10.75%;
    width: -webkit-calc( 86% / 8 );
    width: calc( 86% / 8 );
  }
  .col_list.-pc_c09 > li {
    width: 9.333%;
    width: -webkit-calc( 84% / 9 );
    width: calc( 84% / 9 );
  }
  .col_list.-pc_c01 > li, 
  .col_list.-pc_c02 > li:nth-child( 2n + 0 ), 
  .col_list.-pc_c03 > li:nth-child( 3n + 0 ), 
  .col_list.-pc_c04 > li:nth-child( 4n + 0 ), 
  .col_list.-pc_c05 > li:nth-child( 5n + 0 ), 
  .col_list.-pc_c06 > li:nth-child( 6n + 0 ), 
  .col_list.-pc_c07 > li:nth-child( 7n + 0 ), 
  .col_list.-pc_c08 > li:nth-child( 8n + 0 ), 
  .col_list.-pc_c09 > li:nth-child( 9n + 0 ) {
    margin-right: 0;
  }
}

/* TEXT */
.title {
  font-weight: bold;
}
.text_area > p, 
.text {
  line-height: 2;
}
[lang="ja"] .text_area > p, 
[lang="ja"] .text {
  text-align: justify;
  text-justify: inter-ideograph;
}
.text_area.indent > p, 
.text.indent {
  text-indent: 1em;
}
.copy {
  font-weight: bold;
  line-height: 1.5;
}
@media print, (min-width:720px) {
  [lang="ja"] .title, 
  [lang="ja"] .copy {
    letter-spacing: 0.1em;
  }
}

/* SCROLL */
@media only screen {
  .scroll_block {
    max-width: 100%;
    max-height: 20em;
    -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;
  }
}

/* KERNING */
.kn {
  display: inline-block;
  margin-right: -0.3em;
}
.kn_bc {
  display: inline-block;
  margin-right: -0.3em;
  margin-left: -0.3em;
}


/* IMAGE */
.logo {
  display: inline-block;
  line-height: 1;
}

.icn {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  line-height: 1;
}

.trim_img {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: bottom;
  z-index: 1;
}
.trim_img > img, 
.trim_img > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.staff_block .staff_portrait .fit_h, 
.trim_img.landscape > img, 
.trim_img.landscape > svg {
  max-width: none;
  width: auto;
  height: 100%;
}
.staff_block .staff_portrait .fit_w, 
.trim_img.portrait > img, 
.trim_img.portrait > svg {
  max-height: none;
  width: 100%;
  height: auto;
}
.trim_img::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.trim_img.trim_03x02::before {
  padding-top: 66.666%;
  padding-top: -webkit-calc( 2 / 3 * 100% );
  padding-top: calc( 2 / 3 * 100% );
}
.trim_img.trim_02x03::before {
  padding-top: 150%;
}
.trim_img.trim_04x03::before {
  padding-top: 75%;
}
.trim_img.trim_03x04::before {
  padding-top: 133%;
  padding-top: -webkit-calc( 4 / 3 * 100% );
  padding-top: calc( 4 / 3 * 100% );
}
.trim_img.trim_16x09::before {
  padding-top: 56.25%;
}
.trim_img.trim_09x16::before {
  padding-top: 177%;
  padding-top: calc( 16 / 9 * 100% );
}


/* MENU */
.menu_list, 
.menu_list ul, 
.menu_list ol {
  list-style: none;
}
.menu_list a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}


/* UI */
.switch {
  display: none;
}

.btn {
  display: inline-block;
  -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);
  text-align: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  cursor: pointer;
}
.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);
}


.bnr {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  overflow: hidden;
  -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);
}
.bnr: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);
}
.bnr .bnr_img {
  width: 100%;
}
.bnr_list {
  list-style: none;
  text-align: center;
}
.bnr_list > li {
  margin-top: 2%;
  margin-bottom: 2%;
}
@media print, (min-width:720px) {
  .bnr_list > li {
    margin-top: 1%;
    margin-bottom: 1%;
  }
}

/* MARK LIST */
ul.mark_list, 
ol.mark_list {
  list-style: none;
}
.mark_title, 
.mark_line, 
.mark_list > li, 
.mark_list > dt,
.mark_list > dd {
  padding-left: 1em;
}
.mark_list > li, 
.mark_list > dt{
  margin-top: 0.25em;
}
.mark_title::before, 
.mark_line::before, 
.mark_list > li::before, 
.mark_list > dt::before {
  content: '';
  display: inline-block;
  background-color: #333;
  color: #333;
  vertical-align: middle;
  margin-left: -0.7em;
  margin-right: 0.3em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.2em;
  border-radius: 50%;
}
.mark_title.mark_squ::before, 
.mark_line.mark_squ::before,
.mark_list.mark_squ > li::before, 
.mark_list.mark_squ > dt::before, 
.mark_title.mark_cir::before, 
.mark_line.mark_cir::before, 
.mark_list.mark_cir > li::before, 
.mark_list.mark_cir > dt::before {
  margin-top: -0.2em;
  margin-left: -1em;
  margin-right: 0.2em;
  border-width: 0.4em;
}
.mark_list.mark_squ > li::before, 
.mark_list.mark_squ > dt::before, 
.mark_title.mark_squ::before, 
.mark_line.mark_squ::before, 
.mark_list.mark_arr > li::before, 
.mark_list.mark_arr > dt::before, 
.mark_title.mark_arr::before, 
.mark_line.mark_arr::before {
  border-radius: 0;
}
.mark_list.mark_arr > li::before, 
.mark_list.mark_arr > dt::before, 
.mark_title.mark_arr::before, 
.mark_line.mark_arr::before {
  content: '';
  display: inline-block;
  margin-top: -0.2em;
  margin-right: 0.3em;
  width: 0.5em;
  height: 0.5em;
  background-color: transparent !important;
  border-width: 0.1em 0.1em 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* num_list */
.num_list {
  list-style: none;
  counter-reset: num_list;
}
.num_list > li, 
.num_list > dt {
  counter-increment: num_list;
}
.num_list > li, 
.num_list > dt, 
.num_list > dd {
  padding-left: 2em;
}
.num_list > li::before, 
.num_list > dt::before {
  content: counter( num_list ) '.';
  display: inline-block;
  margin-left: -2em;
  margin-right: 0.5em;
  width: 1.5em;
  text-align: right;
}


/* date_list */
.date_list > dt, 
.date_list > dd {
  margin: auto;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: 1.5;
}
.date_list, 
.date_list > dd {
  border: solid 0 #CCC;
}
.date_list {
  border-bottom-width: thin;
}
.date_list > dd {
  border-top-width: thin;
  min-height: 2.5em;
}
.date_list > dd + dd {
  border-top-style: dotted;
}
@media print, (min-width:720px) {
  .date_list > dt {
    clear: left;
    float: left;
    width: 10em;
    font-weight: bold;
  }
  .date_list > dt + dd {
    padding-left: 10em;
  }
  .date_list > dd + dd {
    margin-left: 10em;
  }
}

/* text_list */
.text_list {
  list-style: none;
}
.text_list > li {
  display: inline-block;
}
.text_list.list_colon > li:not(:last-child)::after {
  content: ',';
}
html[lang="ja"] .text_list.list_colon > li:not(:last-child)::after {
  content: '、';
}
.text_list.etc > li:last-child::after {
  content: ', etc.';
}
html[lang="ja"] .text_list.etc > li:last-child::after {
  content: '、等';
}


/* footnote */
.footnote, 
.footnote_list {
  font-size: 0.75rem;
}
span.footnote {
  display: inline-block;
}
.footnote_list {
  list-style: none;
}
.footnote, 
.footnote_list > li {
  margin-top: 0.5em;
  padding-left: 1em;
  line-height: 1.5;
}
.footnote::before, 
.footnote_list > li::before {
  content: '*';
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}
html[lang="ja"] .footnote::before, 
html[lang="ja"] .footnote_list > li::before {
  content: '※';
}
ol.footnote_list {
  counter-reset: footnote;
}
ol.footnote_list > li {
  counter-increment: footnote;
  padding-left: 2.5em;
}
ol.footnote_list > li::before {
  content: '*' counter(footnote);
  margin-left: -2.5em;
  width: 2.5em;
}
html[lang="ja"] ol.footnote::before, 
html[lang="ja"] ol.footnote_list > li::before {
  content: '※' counter(footnote);
}


/* TABLE */
table {
  table-layout: fixed;
  background-color: #FFF;
  border-collapse: collapse;
  width: 100%;
}
body.Firefox table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption {
  margin-bottom: 0.5em;
  font-weight: bold;
  text-align: left;
}
table th, 
table td {
  padding: 0.5em 1em;
  border-width: thin;
  border-style: solid dotted;
  border-color: #ccc;
  text-align: left;
}
table .th_right th, 
table .td_right td {
  text-align: right;
}
table .th_center th, 
table .td_center td {
  text-align: center;
}
table tr > th:first-child, 
table tr > td:first-child, 
table tr > th[rowspan] + th, 
table tr > th[rowspan] + td {
  border-left-style: solid;
}
table tr > th:last-child, 
table tr > td:last-child {
  border-right-style: solid;
}
table thead {
  background-color: #e6e2db;
}
table thead th, 
table thead td {
  border-bottom-style: double;
  border-bottom-width: medium;
  text-align: center;
}
table tfoot th, 
table tfoot td {
  border-top-style: double;
  border-top-width: medium;
}
table tbody th, 
table tfoot th {
  background-color: rgba(230, 226, 219, 0.5);
}
table tfoot, 
table tbody {
  background-color: #FFF;
}
table tbody th {
  font-weight: normal;
}

.table_note {
  font-size: 0.75rem;
  text-align: right;
}

/* -sp_block */
@media only screen and (max-width:719px) {
  table.-sp_block colgroup, 
  table.-sp_block col {
    display: none;
  }
  table.-sp_block, 
  table.-sp_block thead, 
  table.-sp_block tfoot, 
  table.-sp_block tbody, 
  table.-sp_block tr, 
  table.-sp_block th, 
  table.-sp_block td {
    display: block;
  }
}

/* -sp_scroll */
@media only screen and (max-width:719px) {
  .table_area.-sp_scroll {
    overflow-x: auto;
  }
  .table_area.-sp_scroll {
    min-width: 150%;
  }
  .table_area.-sp_scroll th {
    white-space: nowrap;
    -ms-word-break: keep-all;
    word-break: keep-all;
  }
  .table_area.-sp_scroll table colgroup, 
  .table_area.-sp_scroll table col {
    display: none;
  }
  .table_area.-sp_scroll table caption, 
  .table_area.-sp_scroll table thead, 
  .table_area.-sp_scroll table tfoot, 
  .table_area.-sp_scroll table tbody, 
  .table_area.-sp_scroll table tr, 
  .table_area.-sp_scroll table th, 
  .table_area.-sp_scroll table td {
    display: block;
  }
  .table_area.-sp_scroll table th, 
  .table_area.-sp_scroll table td {
    padding: 1em;
  }
  .table_area.-sp_scroll table th {
    border-bottom: none;
  }
  .table_area.-sp_scroll table td {
    padding-right: 0;
    padding-left: 0;
    border-top: none;
  }
}

/*　scroll-y */
@media only screen {
  table.scroll-y {
    background-color: #efefef;
  }
  table.scroll-y colgroupe, 
  table.scroll-y col {
    display: none;
  }
  table.scroll-y, 
  table.scroll-y thead, 
  table.scroll-y tfoot, 
  table.scroll-y tbody {
    display: block;
    width: 100%;
  }
  table.scroll-y thead {
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
  }
  table.scroll-y tfoot {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: 0 -1px 1px 0 rgba(0,0,0,0.2);
    box-shadow: 0 -1px 1px 0 rgba(0,0,0,0.2);
    z-index: 20;
  }
  table.scroll-y tbody {
    max-height: 20em;
    overflow-y: scroll;
  }
  table.scroll-y tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  table.scroll-y tbody th, 
  table.scroll-y tbody td {
    border-top: none;
  }
}
@media only screen and (min-width:720px) {
  body[data-browser="IE"] table.scroll-y thead, 
  body[data-browser="IE"] table.scroll-y tfoot, 
  body[data-browser="Edge"] table.scroll-y thead, 
  body[data-browser="Edge"] table.scroll-y tfoot, 
  body[data-browser="Safari"] table.scroll-y thead, 
  body[data-browser="Safari"] table.scroll-y tfoot, 
  body[data-browser="Opera"] table.scroll-y thead, 
  body[data-browser="Opera"] table.scroll-y tfoot {
    padding-right: 17px;
  }
  body[data-browser="Firefox"] table.scroll-y thead, 
  body[data-browser="Firefox"] table.scroll-y tfoot {
    padding-right: 16px;
  }
  body[data-browser="Chrome"] table.scroll-y thead, 
  body[data-browser="Chrome"] table.scroll-y tfoot {
    padding-right: 15px;
  }
}

/* form_table */
.form_table {
  margin: 1.5rem auto;
  width: 100%;
  font-size: 0.875em;
}
.form_table th, 
.form_table td {
  vertical-align: top;
}
.form_table .row_head {
  width: 33.333%;
  width: -webkit-calc( 100% / 3 );
  width: calc( 100% / 3 );
}
@media only screen and (max-width:719px) {
  .form_table colgroup, 
  .form_table col {
    display: none;
  }
  .form_table, 
  .form_table thead, 
  .form_table tfoot,
  .form_table tbody, 
  .form_table tr, 
  .form_table th, 
  .form_table td, 
  .form_table caption {
    display: block;
    max-width: 100%;
  }
  .form_table, 
  .form_table td, 
  .form_table th {
    border-width: 0;
  }
  .form_table tr {
    border: solid thin #ccc;
  }
  .form_table tr + tr {
    border-top-width: 0;
  }
}


.required::after {
  content: '*';
  display: inline-block;
  width: 1em;
  color: #f00;
  text-align: center;
  vertical-align: baseline;
}
html[lang="ja"] .required::after {
  content: '※';
}
.form_unit {
  margin-top: 1rem;
  text-align: center;
}
.form_unit input[type="submit"] {
  padding: 0.5em 1em;
}

/* form_list */
.form_list,
.form_list > dt, 
.form_list > dd {
  border: dotted 0 #666;
}
.form_list {
  border-top-width: thin;
}
.form_list > dt, 
.form_list > dd {
  padding: 0.5em 0;
}
.form_list > dt {
  font-weight: bold;
}
.form_list > dd {
  border-bottom-width: thin;
}
@media only screen and (max-width:719px) {
  .form_list > dt {
    padding-bottom: 0;
  }
  .form_list > dd {
    padding-top: 0;
  }
}
@media print, (min-width:720px) {
  .form_list {
    font-size: 0.875em;
  }
  .form_list > dt {
    clear: left;
    float: left;
    width: 10em;
  }
  .form_list > dd {
    padding-left: 10em;
  }
}


/* map_block */
.map_block::before {
  content: '';
  display: block;
  padding-top: 30%;  
}
.map_block .map,
.map_block iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}


/* skiplink */
#skiplink {
  display: block;
  margin: auto;
  max-height: 0;
  background-color: rgba(0,0,0,0.6);
  color: #FFF;
  overflow: hidden;
  z-index: 5000;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#skiplink.-active {
  max-height: 100vh;
  -webkit-box-shadow: 0 -3px 3px 0 rgba(0,0,0,0.3) inset;
  box-shadow: 0 -3px 3px 0 rgba(0,0,0,0.3) inset;
  overflow-y: auto;
}
#skiplink .menu_list {
  padding: 1rem;
  font-size: 0.75em;
}
#skiplink .menu_list > li::before {
  border-color: #FFF
}
#skiplink .menu {
  color: inherit;
  text-decoration: none;
}
@media (min-width:720px) {
  #skiplink .menu_list > li {
    display: inline-block;  
  }
}
@media only print {
  #skiplink {
    display: none;
  }
}


/* to_top */
a.to_top {
  display: block;
  position: fixed;
  bottom: -6em;
  right: 0;
  margin: 1rem;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  color: inherit;
  text-align: center;
  text-decoration: none;
  z-index: 2999;
  overflow: hidden;
}
a.to_top::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: -0.3em auto auto;
  width: 1.2em;
  height: 1.2em;
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
a.to_top.-active {
  bottom: 0;
}
a.to_top .btn_txt {
  display: inline-block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  -ms-word-break: keep-all;
  word-break: keep-all;
  white-space: nowrap;
}
@media only print {
  a.to_top {
    display: none;
  }
}

.sns_list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.sns_list .sns_icn {
  display: inline-block;
  line-height: 0;
}
.sns_facebook .icn {
  fill: #3B5998;
}
.sns_twitter .icn {
  fill: #1DA1F2;
}
.sns_google .icn {
  fill: #DB4437;
}
.sns_line .icn {
  fill: #00b900;  
}
.sns_instagram .icn {
  fill: #f00075;
}
.sns_youtube .icn {
  fill: #ff0000;
}
.sns_pinterest .icn {
  fill: #e60019;
}


/* TAB */
[role="tab"] {
  cursor: pointer;
}
[role="tabpanel"] {
  overflow: hidden;
}
[role="tabpanel"][aria-hidden="true"] {
  max-height: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
[role="tabpanel"][aria-hidden="false"] {
  max-height: 100vh;
  overflow-y: auto;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}


/* jQuery */
[data-inview="true"], 
[data-inview="true"]::before, 
[data-inview="true"]::after {
  opacity: 1;
  -webkit-transition: all 0.5s 0.2s;
  -o-transition: all 0.5s 0.2s;
  transition: all 0.5s 0.2s;
}
[data-inview="false"], 
[data-inview="false"]::before, 
[data-inview="false"]::after {
  opacity: 0;
}

body .mfp-image-holder .mfp-content {
  max-width: 90%;
}

/* MAINTENANCE */

.-memo {
  display: none;
}
.logged-in .-memo {
  display: run-in;
}

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;
  z-index: 999;
}

.-comingsoon {
  pointer-events: none;
  opacity: 0.5;
}

@media only screen and (max-width:719px) {
  html #wpadminbar {
    top: -46px;
  }
}

@media print {
  *[data-print="none"] {
    display: none !important;
  }
}