@charset "UTF-8";
/* --------------------------------------------------
Block
-------------------------------------------------- */

/* Common Block --------------- */

.comm-blc {
  max-width: 1200px;
  padding: 0 4%;
  margin: 0 auto;
  position: relative;
  box-sizing: content-box;
}

.box-comm {
  padding-top: 7%;
  padding-bottom: 7%;
}

.min-box-comm {
  padding-top: 4%;
  padding-bottom: 4%;
}

.tiny-box-comm {
  padding-top: 2%;
  padding-bottom: 2%;
}

/* --------------------------------------------------
Title
-------------------------------------------------- */
.ttl-style-00 {
  text-align: center;
  font-size: 220%;
  font-weight: 800;
  margin-bottom: 20px;
}

.ttl-style-00.col-00 {
  color: #003e88;
}

@media screen and (max-width: 1000px) {
  .ttl-style-00 {
    font-size: 180%;
  }
}

@media screen and (max-width: 767px) {
  .ttl-style-00 {
    font-size: 160%;
  }
}

.ttl-style-01 {
  text-align: center;
  font-size: 180%;
  font-weight: 800;
  margin-bottom: 15px;
}

@media screen and (max-width: 1000px) {
  .ttl-style-01 {
    font-size: 160%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .ttl-style-01 {
    font-size: 140%;
  }
}

/* --------------------------------------------------
TEXT
-------------------------------------------------- */
.txt-style-00 {
  font-size: 100%;
  margin-bottom: 40px;
}

.txt-style-00.col-00 {
  color: #fff;
}

.txt-style-01 {
  font-size: 120%;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .txt-style-01 {
    font-size: 110%;
  }
}

.txt-area-00 {
  width: 100%;
  max-width: 750px;
  text-align: center;
  padding: 0 2%;
  margin: 0 auto;
  box-sizing: content-box;
}

.txt-area-00 > .ttl {
  text-align: center;
  font-size: 180%;
  font-weight: bold;
  margin-bottom: 10px;
}

.txt-area-00.style-00 > .ttl {
  color: #003e88;
}

.txt-area-00.style-00 > .ttl {
  font-size: 220%;
}

.txt-area-00 > .txt {
  text-align: left;
}

.txt-area-00 > .txt.center {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .txt-area-00 > .ttl {
    font-size: 160%;
  }
  .txt-area-00.style-00 > .ttl {
    font-size: 200%;
  }
}

@media screen and (max-width: 767px) {
  .txt-area-00 > .ttl {
    font-size: 140%;
  }
  .txt-area-00.style-00 > .ttl {
    font-size: 180%;
  }
}

@media screen and (max-width: 767px) {
  .txt-area-00 > .txt {
    font-size: 90%;
  }
}

.box-style-00 {
  position: relative;
  width: 100%;
  padding-bottom: 15px;
}

.box-style-00 > .img {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.box-style-00 > .img > img {
  margin-bottom: 10px;
}

.box-style-00 > .img > .txt {
  text-align: center;
  display: block;
  font-size: 110%;
  font-weight: 600;
}

.box-style-00 > .link {
  text-align: center;
  position: relative;
}

.box-style-00 > .link > a {
  position: relative;
}

/* --------------------------------------------------
Table
-------------------------------------------------- */

/* Common Table --------------- */

.tbl-bomm {
  border-top: 1px dotted #fff;
}

.tbl-comm th, 
.tbl-comm td {
  padding: 7px 15px;
  border-bottom: 1px dotted #ccc;
  box-sizing: border-box;
}

.tbl-comm th {
  background-color: #fff;
  width: 20%;
}

.tbl-comm th[align="center"], 
.tbl-comm td[align="center"] {
  text-align: center;
}

.tbl-comm th[align="right"], 
.tbl-comm td[align="right"] {
  text-align: right;
}

.tbl-respon {
  overflow-x: auto;
}

.tbl-respon .tbl-comm {
  min-width: 600px;
}

.note-tbl {
  color: red;
  text-align: center;
  margin: 2% 0;
  display: none;
}

/* Form Table --------------- */

.tbl-form th {
  background-color: #fff;
  width: 25%;
  padding: 2%;
  text-align: left;
}

.tbl-form td {
  padding: 2%;
  text-align: left;
}

.tbl-form th, 
.tbl-form td {
  border-bottom: 1px dotted #ccc;
}

/* tblRespon --------------- */

.tbl-respon {
  overflow-x: auto;
}

.note-tbl-respon {
  font-size: 80%;
  color: red;
  margin: 2% 0;
  text-align: center;
  display: none;
}

@media screen and (max-width: 767px) {
  /* Common Table --------------- */
  .tbl-comm th, 
  .tbl-comm td {
      font-size: 90%;
  }
  .tbl-comm th {
      width: 30%;
  }
  .tbl-comm.single-row th, 
  .tbl-form.single-row th {
      display: block;
      font-weight: bold;
      padding-bottom: 0;
  }
  .tbl-comm.single-row td, 
  .tbl-form.single-row td {
      display: block;
  }
  .note-tbl {
      display: block;
  }
  /* Form Table --------------- */
  .tbl-form th {
      width: auto;
  }
  /* tblRespon --------------- */
  .note-tbl-respon {
      display: none;
  }
}

@media screen and (max-width: 650px) {
  /* tblRespon --------------- */
  .note-tbl-respon {
      display: block;
  }
}

/* --------------------------------------------------
List
-------------------------------------------------- */

/* Common List --------------- */

.list-comm li {
  width: 48%;
  float: left;
}

.list-comm li:nth-of-type(2n) {
  float: right;
}

.list-style-00 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list-style-00 > li {
  position: relative;
  width: calc((100% / 3) - ((5px * 3) / 2));
  margin-bottom: 10px;
}

.list-style-00 > li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.list-style-00 > .spam {
  height: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .list-style-00 > li {
    width: calc((100% / 2) - (10px / 2));
  }
  .list-style-00 > li:nth-last-child(-n+3) {
    margin-bottom: 10px;
  }
  .list-style-00 > li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .list-style-00 > li {
    width: 100%;
  }
  .list-style-00 > li:nth-last-child(-n+2) {
    margin-bottom: 10px;
  }
  .list-style-00 > li:nth-last-child(-n+1) {
    margin-bottom: 0;
  }
}

/* --------------------------------------------------
Button
-------------------------------------------------- */
.btn-style-00 > a {
  text-decoration: none;
  position: relative;
  font-size: 90%;
  color: #fff;
  background-color: #003e88;
  border: 1px solid #003e88;
  padding: 10px calc(25px + 15px) 10px 25px;
  box-sizing: border-box;
  border-radius: 20px;
  transition: 300ms all ease-in-out;
}

.btn-style-00 > a:hover {
  color: #003e88;
  background-color: #fff;
}

.btn-style-00 > a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  display: block;
  width: 15px;
  height: 100%;
  content: '';
  background-image: url(../img/common/btn_arw.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}


/* --------------------------------------------------
Text
-------------------------------------------------- */

.txt-center {
  text-align: center;
}

.txt-underline {
  text-decoration: underline;
}

.txt-big {
  font-size: 115%;
}

.txt-small {
  font-size: 85%;
}

.txt-weight {
  font-weight: bold;
}

.txt-inline-blc {
  text-align: left;
  display: inline-block;
}

.txt-black {
  color: #000;
}

.txt-red {
  color: #BD2D2B;
}

@media screen and (max-width: 767px) {
  .txt-for-sp {
      text-align: left !important;
  }
  .txt-for-sp br {
      display: none !important;
  }
  span.txt-for-sp {
      display: inline-block;
  }
}

@media screen and (min-width: 650px) {
  .br-pc {
      display: block;
  }
  .br-sp {
      display: none;
  }
}

@media screen and (max-width: 650px) {
  .br-pc {
      display: none;
  }
  .br-sp {
      display: block;
  }
}

/* --------------------------------------------------
Other Classes
-------------------------------------------------- */

/* Spacing --------------- */

.mt-1 {
  margin-top: 1%;
}

.mt-2 {
  margin-top: 2%;
}

.mt-3 {
  margin-top: 3%;
}

.mt-4 {
  margin-top: 4%;
}

.mt-5 {
  margin-top: 5%;
}

.mt-6 {
  margin-top: 6%;
}

.mt-7 {
  margin-top: 7%;
}

.mb-1 {
  margin-bottom: 1%;
}

.mb-2 {
  margin-bottom: 2%;
}

.mb-3 {
  margin-bottom: 3%;
}

.mb-4 {
  margin-bottom: 4%;
}

.mb-5 {
  margin-bottom: 5%;
}

.mb-6 {
  margin-bottom: 6%;
}

.mb-7 {
  margin-bottom: 7%;
}

/* Clear fix --------------- */

.clear-fix:after {
  content: "";
  clear: both;
  display: block;
}

/* Clear --------------- */

.clear {
  clear: both;
}

/* Hide --------------- */

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.disnon {
  display: none;
}

/* imgDeco --------------- */

.img-deco {
  border: 1px solid #cdcdcd;
  padding: 1px;
  box-sizing: border-box;
}

/* imgCircle --------------- */

.img-circle {
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
}

/* imgRightBlc --------------- */

.img-right-blc {
  margin: 0 0 20px 20px;
  float: right;
}

/* imgZoomEffect --------------- */

.img-zoom {
  overflow: hidden;
}

.img-zoom img, 
.img-zoom .img {
  -ms-transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
  transition: all 200ms ease-in-out 0s;
}

.img-zoom img:hover, 
.img-zoom .img:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* PDF icon --------------- */

.icn-pdf {
  vertical-align: bottom;
  margin: 0px 3%;
}

@media screen and (max-width: 1000px) {
  /* Hide --------------- */
  .post.hidden {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  /* imgRightBlc --------------- */
  .img-right-blc {
    margin: 0 auto 20px;
    float: none;
  }
  /* Popup --------------- */
  .popup {
    display: block;
    position: relative;
  }
}