@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img{
  max-width: 100%;
}
*{
  -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container{
  width:100% !important;
  max-width: 960px !important;
  margin:0 auto !important;
}
ul.links{
    list-style-type: none !important;
    padding-left: 0 !important;
}
ul li, a {
    margin-bottom: 15px;
}
.main-content a{
    color:#00a6bf;
}
.sidebar a{
    color:#666666;
    transition:color 0.1s linear 0s;
}
.sidebar a:hover{
    color:#00a6bf;
}

.pc{
  display: inline-block;
}
.mb{
  display: none;
}


/***********************************************************************************************/
/* GENERAL STYLES */
/***********************************************************************************************/
body{
  font-family: "YuGothic","游ゴシック体","Yu Gothic","游ゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","Meiryo","メイリオ","ＭＳ Ｐゴシック";
  font-size: 18px;
  font-style: normal;
  color: #141414;
  background-color: #fff;
  overflow-x: hidden;
  height: 100vh;
}

h1, h3, h4, h5, h6 {
    font-weight: inherit;
    margin: 0 0 .5em;
    line-height: 1.2;
}

h2{
  font-size: 36px;
}

p {
    font-weight: normal;
    margin: 0 0 16px;
    line-height: 1.5;
}

strong, em{
  font-weight: bold;
}

.container-fluid{
  max-width: 1260px;
  padding: 0 4%;
}

.row {
    row-gap: 16px;
}

/***********************************************************************************************/
/* HEADER STYLES */
/***********************************************************************************************/

.header {
    padding: 18px 0;
    position: relative;
    background: #fff;
}
.header h1{
    line-height: 1;
    margin: 0;
}

.logo img {
    height: auto;
    width: 100%;
    max-width: 130px;
}

.xsp-nav{
  padding: 24px 0 0;
  display: flex;
  justify-content: space-between;
  column-gap: 1%;
  row-gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.xsp-nav li {
    font-size: 18px;
    text-align: left;
    margin: 0;
}

.xsp-nav li a {
  position: relative;
  color: #000000;
  font-weight: 600;
}

.xsp-nav li a.on {
  /* color: #d71920; */
  /* border-bottom: 2px solid #d61800; */
}
.xsp-nav li a.on:hover {
  color: #000000;
  cursor:default;
}
.xsp-nav li a.on:after {
  content:"";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -16px;
  background: #d71920;
}


.horizontalSeparator{
    border-bottom: 1px solid #E6E7E8;
    /* display: none; */
}


/***********************************************************************************************/
/* BANNER STYLES */
/***********************************************************************************************/

.banner-container{
  text-align: center;
}

.banner img {
    width: 100%;
    height: auto;
    max-width: 820px;
}

.banner-area-bg {
    padding: 30px 0;
    background: #f9f9f9;
    /* border-top: 1px solid #f3f3f3; */
    border-bottom: 1px solid #f3f3f3;
}

/***********************************************************************************************/
/* CONTENT STYLES */
/***********************************************************************************************/

.main-content {
    margin-top: 2em;
    margin-bottom: 2em;
    min-height: calc(26vh + 132px);
}

.heading-title {
    position: relative;
    margin-top: 2.5em;
}
.heading-title:after {
    content: "";
    background: #d71920;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    /* border-radius: 4px; */
    display: none;
}

.heading-title.article-title {
  line-height:1.4;
  font-weight: 600;
  font-size: 26px !important;
  position: relative;
  /* padding-left: 26px; */
  margin-bottom: 20px;
  color: #d71920;
}
.heading-title.article-title br{
  display:none;
}
.heading-title.article-title:after{
  top: 11px;
}

.articles {
    /* margin-top: 3em; */
    border-bottom: 1px solid #ebebeb;
    padding: 15px 0px 15px 0;
}

.articles:last-child {
    border-bottom: none;
}

.articles-container{
  margin-top: 2em;
  margin-bottom: 2em;
}


.articles h2 a {
    color: #000000;
    font-weight: 500;
    /* margin-bottom: 8px; */
    line-height: 1.2;
}

.material .articles p,
.material .articles ul{
    padding-left: 150px;
}

.material .articles p:first-child{
    position: relative;
    padding-left: 22px;
    float:left;
    color: #8a8c8e;
}

.material .articles p:first-child:before{
    font-family: FontAwesome;
    content: "\f073";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
}

.articles.list h2 {
    margin-bottom: 6px;
}

.articles.list {
    padding: 25px 0px;
}

.articles h2 {
    margin-bottom: 16px;
    font-size: 23px;
}

.articles h2 a:hover {
    color: #00a6bf;
    text-decoration: none;
}

.article-title {
    font-size: 34px !important;
    font-weight: 600;
}

.section-title{
    font-size: 24px;
    font-weight: 600;
  margin-bottom: 1em;
}

p.date {
    font-size: 14px;
    /* margin-right: 17px; */
    color: #8a8c8e;
}

.date span {
    margin-right: 7px;
    /* color: #731212; */
}


.xsp-nav li a {
    color: #5a5a5a;
    font-weight: bold;
    transition: color 0.2s linear 0s;
    font-size: 18px;
}

ul.xsp-nav li a:hover {
    text-decoration: none;
    color: #cc0000;
}

.articles.list p:first-of-type {
    margin-bottom: 1px;
}

nav.results-nav > button {
    background: 0;
    border: none;
}

nav.results-nav {
    text-align: center;
    margin-bottom: 21px;
}

.fa.fa-angle-right {
    font-size: 1.8rem;
    vertical-align: middle;
}

.fa.fa-angle-left {
    font-size: 1.8rem;
    vertical-align: middle;
}

.date > img {
    width: 14px;
    height: 14px;
    /* margin-top: 3px; */
    margin-right: 5px;
    vertical-align: middle;
}

.articles.list:last-child {
    border-bottom: none;
}


/*** 20180619 ***/
.box-border{
  height:100%;
  box-sizing: border-box;
  border:1px solid #DDD;
  padding:2em;
}
.box-border p:last-child{
  margin-bottom:0;
}
.box-gray{
  margin:2em 0 3em 0;
  padding: 30px;
  background-color: #f9f9f9;
}
.box-gray .row{
  row-gap: 10px;
}
.btn-red{
  display:block;
  width:100%;
  margin:1em 0;
  padding:0.6em 0.5em;
  border: 1px solid #d71920;
  color:#fff !important;
  font-weight: 500;
  line-height:1.4;
  text-align:center;
  text-decoration:none !important;
  background-color: #d71920;
  transition: all 0.2s ease-out;
}

.btn-red:hover{
  color: #c00 !important;
  background-color: #FFF;
}

.list-icon li{
  padding-left: 20px;
  line-height: 1.5;
  margin-bottom: 6px;
  position: relative;
}
.list-icon li:last-child{
  margin-bottom: 0;
}
.list-icon li:before{
  font-size: 13px;
  color: #d6000f;
  font-family: FontAwesome;
  content: "\f078";
  position: absolute;
  left: 0;
  top: 2px;
}

.list-icon li .icon{
  margin-right:12px;
  vertical-align: middle;
  display: none;
}
.list-icon li img{
  width: 13px;
}

.list-icon li a{
  color:#333;
  font-weight: bold;
}
.list-icon li a:hover{
  color:#d71920;
  text-decoration: none;
}

.responsive-image{
  max-width: 100%;
  width: auto;
}
/*** 20180619 ***/


/***********************************************************************************************/
/* PASSWORD PAGE STYLES */
/***********************************************************************************************/
.password-container {
    text-align: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 5% 20px;
    position: relative;
}
.password-container p.password-text{

}

.password-container p.password-form{
    margin-bottom: 24px;
}
.password-container p.password-form #pwLength {
    max-width: 280px;
    margin: auto;
}
.password-container #myBtn {
    max-width: 280px;
    margin: 0 auto 26px;
}

.password-container .password-forgot{
    font-size: 15px;
    line-height: 1.3;
    text-indent: -1em;
    padding-left: 1em;
    text-align: left;
}
.password-container .password-forgot a{
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.password-container img {
    margin-bottom: 10px;
}
.password-container h3 {
    margin-bottom: 1px;
}

.error {
    background-color: #F7DFE5;
    padding: 10px;
    color: #9F2336;
    font-size: 11.8px;
    font-weight: 600;
    margin-top: -24px;
    margin-bottom: 15px;
    position: relative;
}

.arrow-up {
    width: 0;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    border-bottom: 10px solid #F7DFE5;
    top: -10px;
    left: 5px;
}

canvas{
  border: 1px black solid;
  padding:20px;
}

#textCanvas{
  display:none;
}

#image {
  width: 375px;
  background: lightgray;
}

@font-face {
    font-family: deportee;
    src: url(../fonts/deportee.tff);
}

#capContainer label {
    margin-bottom: 10px;
    font-size: 14px;
}

#capContainer {
    margin-top: 18px;
    margin-bottom: 30px;
}

#isValid {
    color: red;
    /* margin-bottom: 15px; */
    /* margin-top: -25px; */
    /* margin-left: -115px; */
    /* position: absolute; */
    /* top: 305px; */
    font-size: 12px;
    /* left: 20px; */
    margin-left: 1px;
    margin-top: 6px;
}


/***********************************************************************************************/
/* material */
/***********************************************************************************************/
.material .articles p a{
  word-wrap:break-word;
}


/***********************************************************************************************/
/* support */
/***********************************************************************************************/
.support {
    margin-bottom: 50px;
}
.support article{
    position:relative;
    padding-top: 30px;
    padding-bottom: 0px;
}
/* .support article:before{
    content: attr(data-year) "年";
    font-size: 26px;
    color: #c1c1c1;
    font-weight: 500;
} */
.support h2.article-title a:before {
    font-family: FontAwesome;
    content: "\f0d7";
}
.support h2.article-title a.collapsed:before {
    font-family: FontAwesome;
    content: "\f0da";
    margin: 0 0.1em 0 0.11em;
}
.support .articles.list {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    padding: 18px 0px;
}
.support .articles h2 {
    font-size: 20px;
    margin-bottom: 0;
}
.support .articles h2 a:hover {
    color: #d71920;
    text-decoration: none;
    cursor:pointer;
}
.support .articles p.date {
    position: relative;
    padding-left: 22px;
    min-width: 140px;
    font-size: 16px;
}

.support .articles p.date:before {
    font-family: FontAwesome;
    content: "\f073";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}
#accordion .support {
    margin-bottom: 50px;
}
#accordion .support h2.article-title a:before {
    font-family: FontAwesome;
    content: "\f0d7";
}
#accordion .support h2.article-title a.collapsed:before {
    font-family: FontAwesome;
    content: "\f0da";
    margin: 0 0.1em 0 0.11em;
}
#accordion .support .articles h2 a:hover {
    color: #00a6bf;
    text-decoration: none;
    cursor:pointer;
}
#accordion .support .modal-title {
    font-weight: bold;
    font-size: 120%;
}
#accordion .support .modal-body {
    font-size: 16px;
    padding: 20px;
}
#accordion .support .heading h2{
  position: relative;
  margin-bottom: 16px;
}
.support .heading h2 a{
  margin-left: 30px;
}
.support .heading h2 a:before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 9px;
    left: 0;
    margin: auto;
    border-radius: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #000000 transparent transparent transparent;
}
.support h2.article-title a.collapsed:before {
    content: "";
    transform: rotate(-90deg);
}
article{
    padding-top: 18px;
    padding-bottom: 40px;
}
article .articles.list{
    padding: 16px 0px;
}
.modal-open .modal {
    padding-right: 0!important;
}
.modal-header {
    padding: 14px 20px;
    /* display: flex; */
    /* justify-content: space-between; */
}
.modal-title {
    font-weight: bold;
    font-size: 120%;
}
.modal-title {
    font-weight: bold;
    font-size: 120%;
}
.modal-header .close {
    padding: 20px 10px 10px;
    /* margin-top: -6px; */
}
.modal-body {
    font-size: 16px;
    padding: 20px;
}
.modal-body p{
    margin-bottom: 0;
    word-break: break-all;
}
.modal-body.ver02 p{
    margin-bottom: 1.3em!important;
}
.modal-body.ver02 p.title {
    margin-bottom: 0!important;
}
.modal-body.ver02 p.text {
    padding-left: 1em;
}
.modal-body.ver02 p.sub-title {
    margin-left: 1em;
    margin-bottom: 0!important;
}
.modal-body.ver02 p.sub-text {
    margin-left: 1em;
    padding-left: 1em;
}
.modal-dialog{
    max-width: 900px;
    margin: 1rem auto;
    padding: 0 1rem;
}

/***********************************************************************************************/
/* keisatsu */
/***********************************************************************************************/
.modal-list h3{
    font-size: 20px;
    margin-bottom: 14px;
}
.modal-list ul{
  margin-bottom: 20px;
}
.modal-list ul li{
  position:relative;
  font-size: 18px;
  font-weight: 500;
}
.modal-list ul li.none{
  color: #a2a2a2;
}
.modal-list ul li a {
  position:relative;
  cursor: pointer;
}
.modal-list ul li a:after {
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  top: 6px;
  right: -19px;
  font-size: 12px;
  color: #d6000f;
  transition: all 0.2s ease-out;
}
.modal-list ul li.none:after{
  display:none;
}
.modal-list ul li a:hover{
    color: #d6000f!important;
}
.modal-list ul li a:hover:after{
  right: -21px;
}
.keisatsu .modal-content {
    /* width: fit-content; */
    /* margin: auto; */
}
.keisatsu .modal-dialog{
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
}
.keisatsu .modal-dialog .modal-body {
    background: #f3f3f3;
}
.keisatsu .modal-dialog .modal-body .box-border {
    background: #fff;
}
.keisatsu .modal-dialog .modal-body p{
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.3;
}
.keisatsu .modal-dialog .modal-body p span.note{
    display: block;
    color: #d71920;
    margin-top: 4px;
    /*text-align: left;*/
}
.keisatsu .modal-dialog .modal-body .btn-red{
  max-width: 400px;
  margin: 1em auto;
}

/***********************************************************************************************/
/* FOOTER STYLES */
/***********************************************************************************************/

footer{
  position: absolute;
  width: 100%;
}
.footer-container {
    background-color: #838383;
    padding: 20px 0;
}
.footer-nav-links {
    display: flex;
    justify-content: center;
    column-gap: 4%;
    row-gap: 10px;
    flex-wrap: wrap;
}
.footer-nav-links > li {
    margin: 0;
}

.footer-nav-links > li > a {
  color: #ffffff;
  font-size: 16px;
}

.copyright{
 background-color: #333333;
 padding: 20px 4%;
 text-align: center;
}

.copyright p {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}

#to-top {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(177 177 177 / 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
#to-top.on {
  opacity: 1;
  visibility: visible;
}

/* 矢印のスタイル */
#to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-bottom: -6px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
}

/* ホバー時のスタイル */
#to-top:hover {
  transform: scale(1.1);
}


/***********************************************************************************************/
/* @media */
/***********************************************************************************************/

@media (max-width: 1100px) {
  .xsp-nav {
      padding: 20px 0 0;
  }
  .xsp-nav li{
    /*width: calc(100% / 3 - 3%);*/
  }
  .xsp-nav li a{
    font-size: 16px;
  }
  .xsp-nav li a.on:after {
      bottom: -16px;
  }
  .article-title {
      font-size: 30px !important;
  }
  .heading-title.article-title {
    font-size: 24px !important;
    /* padding-left: 20px; */
    margin-bottom: 16px;
  }
  .heading-title.article-title br{
    display:inline-block;
  }
  .heading-title:after {
      width: 14px;
      height: 14px;
  }
  .heading-title.article-title:after{
    top: 10px;
  }
  .articles h2 {
      margin-bottom: 8px;
      font-size: 20px;
  }
  .box-gray {
      margin: 1.0em 0;
      padding: 1.3em;
  }
  .list-icon li {
      margin-bottom: 12px;
      padding-left: 18px;
      line-height: 1.3;
  }
  .list-icon li a {
      font-size: 17px;
  }
  .list-icon li img {
      width: 12px;
  }
  .box-border {
      padding: 1.5em;
  }
  .section-title {
      font-size: 22px;
  }
  .btn-red {
      font-size: 16px;
  }
  .modal-list h3 {
      font-size: 19px;
  }
  .modal-list ul li {
      font-size: 16px;
      margin-bottom: 10px;
  }
  .modal-list ul li a:after {
      top: 5px;
      right: -17px;
      font-size: 12px;
  }
  .modal-list ul li a:hover:after {
      right: -19px;
  }
}

@media (max-width: 940px) {
  .xsp-nav li a{
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .main-content {
      margin-top: 10px;
      margin-bottom: 10px;
      /* min-height: auto; */
  }
  .articles-container {
      margin-top: 1em;
      margin-bottom: 1em;
  }
  .header {
      padding: 14px 0;
  }
  .logo img {
      max-width: 130px;
  }
  .banner-area-bg {
      padding: 20px 0;
  }
  .banner img {
      width: 100%;
  }
  .xsp-nav {
      padding: 14px 0 6px;
      column-gap: 4px;
      row-gap: 10px;
      opacity: 0;
      visibility: hidden;
      position: fixed;
      top: 0;
      right: 0;
      transform: translateX(300px);
      /* width: 230px; */
      padding: 64px 0 20px;
      background: #ffffff;
      height: 100vh;
      display: block;
      z-index: 2;
      transition: all .3s;
  }
  body.on .xsp-nav {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
  }
  body.on:after {
      content:"";
      position:fixed;
      display:block;
      background: #0000004d;
      left: 0;
      top: 0;
      width: 100%;
      height: 100vh;
      z-index: 0;
  }
  .xsp-nav li{
    width: calc(100%);
    /* margin-bottom: 26px; */
  }
  .xsp-nav li a{
    font-size: 17px;
    padding: 18px 26px;
    width: 100%;
    display: block;
    margin: 0;
    border-top: 1px solid #e3e3e3;
  }
  .xsp-nav li a.on:after {
      top: 0;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 3px;
      margin: auto;
  }
  .menu-button {
      width: 34px;
      height: 30px;
      z-index: 999;
      cursor: pointer;
      transform: scale(1);
      transition: all .3s ease;
      position: absolute;
      top: 16px;
      right: 4%;
  }
  body.on .menu-button {
      position: fixed;
  }
  .menu-button a {
      position: absolute;
      width: 34px;
      height: 30px;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      transition: all .3s;
      z-index: 10000;
  }
  .menu-button a span {
      position: absolute;
      left: 0;
      right: 0;
      width: 76%;
      margin: auto;
      height: 2px;
      background-color: #898989;
      transition: all .3s;
  }
  .menu-button a span:nth-of-type(1) {
        top: 6px;
    }
  .menu-button a span:nth-of-type(2) {
        top: 14px;
    }
  .menu-button a span:nth-of-type(3) {
      bottom: 6px;
  }
  body.on .menu-button a span:nth-of-type(1) {
      transform: translateY(8px) rotate(-45deg);
  }
  body.on .menu-button a span:nth-of-type(2) {
      opacity: 0;
  }
  body.on .menu-button a span:nth-of-type(3) {
      transform: translateY(-8px) rotate(45deg);
  }
  .article-title {
      font-size: 26px !important;
  }
  .material .articles p{
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.3;
    padding-left: 126px;
  }
  .material .articles p:first-child:before {
      top: 0px;
      font-size: 14px;
  }
  .heading-title.article-title {
    font-size: 22px !important;
    /* padding-left: 18px; */
    margin-bottom: 12px;
  }
  .heading-title:after {
      width: 12px;
      height: 12px;
  }
  .heading-title.article-title:after{
    top: 8px;
  }
  .list-icon li {
      margin-bottom: 6px;
  }
  .list-icon li:before {
      font-size: 11px;
      top: 5px;
  }
  .list-icon li a {
      font-size: 16px;
  }
  .articles h2 {
      margin-bottom: 0;
      font-size: 17px;
  }
  .box-border {
      padding: 1.5em;
  }
  .section-title {
      font-size: 20px;
  }
  .btn-red {
      font-size: 15px;
  }
  .support .articles h2 {
      font-size: 18px;
  }

  .footer-nav-links > li {
      width: 100%;
      text-align: center;
      margin-bottom: 4px;
  }
  .footer-nav-links > li > a {
      font-size: 15px;
  }
  .copyright {
      padding: 14px 4%;
  }
  .copyright p {
      font-size: 11px;
  }
}

@media (max-width: 414px) {
  .pc{
    display: none;
  }
  .mb{
    display: inline-block;
  }
  .modal-title {
      font-size: 18px;
      line-height: 1.3;
  }
  .modal-header .close {
      padding: 16px 8px 10px;
  }
  .modal-list h3 {
      font-size: 20px;
  }
  .modal-list ul li {
      font-size: 18px;
      margin-bottom: 10px;
  }
  .modal-list ul li a:after {
      top: 6px;
  }
  .material .articles p,
  .material .articles ul{
    padding-left: 0;
  }
  .material .articles p:first-child{
    float:none;
  }
  .support .articles.list {
    flex-direction: column-reverse;
  }
  .support .articles h2 {
      font-size: 16px;
      margin-top: 6px;
  }
}
