@charset "utf-8";
/* CSS Document */

/*-----------Common-----------*/
* {
  line-height: 1.8;
  letter-spacing: 0.01em;
}
html {
  font-size: 62.5%; /*※1.0rem=10px 1.6rem=16px*/
}
body {
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Sans","Helvetica Neue",Arial, Meiryo,sans-serif;
  word-wrap: break-word;
  /* overflow: hidden; */
}
::selection {
  background: rgba(0, 0, 0, 0.12);
}
h1,h2,h3,h4,h5,dt,figcaption {
  font: inherit;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.1s;
  cursor: pointer;
  color: #0F41B2;
  display: inline-block;
  word-break: break-all;
}
a:hover {
  text-decoration: underline;
}
img {
  width: 100%;
  pointer-events: none; 
}
img.img_half{
  width: 50%;
  display: block;
  margin: 0 auto 1.5rem;
}
/* hr{
  width: 1.6rem;
  margin: 14rem auto 3.4rem;
  z-index: 1;
  position: relative;
  background-color: #00125E;
} */

figure img {
  display: block;
  width: auto;
  max-width: 100%;
}
figcaption {
  font-size: 1.1rem;
  color: #343439;
  margin-top:0.5rem;
}
/*
ol,ul {
  list-style: none;
}*/



/*-----------Useful_Class-----------*/
.tg_blank::after {
  font-family: Material Icons;
  content: "\e895";
  padding-left: 1rem;
  vertical-align: top;
}
#area_conts p .tg_blank::after {
  padding-left:0;
}

.note{
  font-size: 90%;
}
.mt_2{
  margin-top: 2rem;
  display: block;
}
.mt_3{
  margin-top: 3rem;
  display: block;
}
.mt_5{
  margin-top: 5rem;
}
.mt_6{
  margin-top: 6rem;
}

.only_sp {
  display: none;
}
.al_right {
  text-align: right;
}
.al_center {
  text-align: center;
}
.material-icons{
  font-size:inherit;
  line-height: inherit;
}
/*----flex----*/
.flex_row ,.sp_flexrow{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.fl_end {
  justify-content: flex-end;
}
.fl_st {
  justify-content: flex-start;
}
.fl_center {
  justify-content:center;
}
.fl_between {
  justify-content: space-between;
}
.fl_alcenter {
  align-items: center;
}

/*flex_inner*/
.flex_row > [class^="flexitem_"] {
  margin-bottom:2rem ;
}
[class^="flexitem_"]:not(:last-child) {
  margin-right: 1.9rem;
}
/*同じサイズのblock*/
.flexitem_1_6:nth-child(6n),
.flexitem_1_5:nth-child(5n),
.flexitem_1_4:nth-child(4n),
.flexitem_1_3:nth-child(3n),
.flexitem_1_2:nth-child(2n) {
  margin-right: 0;
}

.flexitem_1_6 {
  width: calc(
    (100% - 16rem) / 6 * 1
  ); /*margin-rigth:3.0rem * 5 ※IEで入りきらないため15 + 1*/
}
.flexitem_1_5 {
  width: calc((100% - 8rem) / 5 * 1); /*margin-rigth:2.0rem * 4*/
}
.flexitem_1_4 {
  width: calc((100% - 6rem) / 4 * 1); /*margin-rigth:2.0rem * 3*/
}
.flexitem_1_3 {
  width: calc((100% - 4rem) / 3 * 1); /*margin-rigth:2.0rem * 2*/
}
.flexitem_1_2 {
  width: calc((100% - 2rem) / 2 * 1); /*margin-rigth:2.0rem * 1*/
}
.flexitem_1 {
  width: 100%;
}


.flexitem_extra {
  /*残り*/
  flex: 1;
}

/*PDFのみ設定*/
a[href*=".pdf"]::after,
a[href*=".PDF"]::after {
  border: solid 0.1rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  padding: 0.1rem 0.2rem 0.1rem;
  line-height: 1;
  vertical-align: middle;
  font-weight: bold;
  text-decoration: inherit;
  text-decoration-color: #fff;
  max-height: 1.5rem;
}
a[href*=".pdf"]::after,
a[href*=".PDF"]::after {
  content: "PDF";
  color: #1B44AB;
}



/*-------------------breakpoint-------------------*/
@media screen and (max-width: 600px) {
  hr{
    margin-top: 10rem;
    margin-bottom: 3rem;
  }
  .only_sp {
    display: block;
  }
  .only_pc {
    display: none;
  }

   /*-----flex-------*/
  /*flex_inner*/
  .flex_row > [class^="flexitem_"] {
    width: 100%;
  }
  .flex_row > [class^="flexitem_"]:not(:last-child) {
    margin-right: 0;
  }

  .flex_row > .flexitem_extra {
    flex: none;
  }

}
