@charset "UTF-8";
/*
* Color
*/
:root {
  --txt-primary: #0F1404;
  --border-solid: #BBB;
  --border-solid-2: #C0C0C0;
  --border-dotted: #888;
  --color-primary: #005E00;
  --color-primary-contrast: #FFF;
  --color-danger: #DB0000;
}

/*
* ダークモードに対応する場合は以下のメディアクエリを
*/
/*
* Font
*/
/*
* Font Size
*/
/* PC Tablet */
/* Mobile */
/*
* Media Query
*/
/*
* メディアクエリ
*/
/*
* ドロップシャドウ
*/
/*
* vwの計算
*/
/**
* Base - サイトのベースになるcss
*/
html {
  font-size: 62.5%;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 1.6rem;
  color: #333;
}
@media screen and (max-width: 500px) {
  body {
    font-size: 1.4rem;
  }
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body li,
body a {
  line-height: 1.6;
}

a {
  /*color: #00e;*/
  color: #264CC4;
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: #330066;
}

address {
  font-style: normal;
}

strong {
  font-weight: bold;
}

input[type=radio] {
  margin: 0 7px 0 0;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
select:focus,
textarea {
  font-size: 16px;
}

p {
  color: #0F1404;
  color: var(--txt-primary);
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

header {
  /*SPnav*/
}
header .bl_indexHeader {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  height: 90px;
  width: 100%;
  position: fixed;
  z-index: 999;
}
@media screen and (max-width: 1400px) {
  header .bl_indexHeader {
    height: 60px;
  }
}
header .bl_indexHeader .logo {
  margin: 28px 0 0 5.2%;
}
header .bl_indexHeader .logo img {
  width: 100%;
}
header .bl_indexHeader .logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1400px) {
  header .bl_indexHeader .logo {
    margin: 15px 0 0 5.2%;
  }
}
header .bl_indexHeader #nav {
  max-width: 1720px;
  margin: 0 5.2% 0 0;
}
header .bl_indexHeader #nav ul {
  margin: 32px 0 8px 0;
  display: flex;
}
header .bl_indexHeader #nav ul li {
  margin-left: 36px;
}
header .bl_indexHeader #nav ul li a {
  color: #333;
}
header .bl_indexHeader #nav ul li a:hover {
  color: #264CC4;
  transition: 0.4s;
}
header .bl_indexHeader #nav ul .bl_header_EJbtn a {
  background-color: #264CC4;
  color: #fff;
  border-radius: 50px;
  padding: 15px 20px;
}
header .bl_indexHeader #nav ul .bl_header_EJbtn a i {
  margin-left: 8px;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transition: 0.3s;
}
header .bl_indexHeader #nav ul .bl_header_EJbtn a:hover {
  color: #fff;
}
header .bl_indexHeader #nav ul .bl_header_EJbtn a:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  header .bl_indexHeader #nav {
    display: none;
  }
}
header #g-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
  display: none;
}
@media screen and (max-width: 500px) {
  header #g-nav {
    font-size: 1.5rem;
  }
}
header #g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 377px) {
  header #g-nav ul {
    margin-top: 30px;
  }
}
header #g-nav ul li {
  list-style: none;
  text-align: center;
}
header #g-nav ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}
header #g-nav ul .bl_header_gnavbr {
  display: none;
}
@media screen and (max-width: 377px) {
  header #g-nav ul .bl_header_gnavbr {
    display: block;
  }
}
header #g-nav ul .bl_header_EJbtn a {
  background-color: #264CC4;
  color: #fff;
  border-radius: 50px;
  padding: 15px 20px;
  margin-top: 50px;
}
header #g-nav ul .bl_header_EJbtn a i {
  margin-left: 8px;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transition: 0.3s;
}
header #g-nav ul .bl_header_EJbtn a:hover {
  opacity: 1;
}
header #g-nav ul .bl_header_EJbtn a:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transition: 0.3s;
}
header #g-nav.panelactive {
  right: 0;
}
@media screen and (max-width: 1400px) {
  header #g-nav {
    display: block;
  }
}
header .openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #264CC4;
  display: none;
}
header .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 16.5px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
header .openbtn1.active span:nth-of-type(1) {
  top: 23px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn1.active span:nth-of-type(3) {
  top: 35px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media screen and (max-width: 1400px) {
  header .openbtn1 {
    display: block;
  }
}
header .openbtn1 span:nth-of-type(1) {
  top: 20px;
}
header .openbtn1 span:nth-of-type(2) {
  top: 28px;
}
header .openbtn1 span:nth-of-type(3) {
  top: 36px;
}

#about #nav ul .nav01 a,
#output #nav ul .nav02 a,
#dug #nav ul .nav03 a,
#event #nav ul .nav04 a,
#research #nav ul .nav05 a,
#link #nav ul .nav06 a {
  color: #264CC4;
}

/*TOP--------------------------------*/
.bl_indexTop {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .bl_indexTop {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bl_indexTop {
    display: block;
    position: relative;
  }
}
.bl_indexTop .bl_indexH1P {
  margin: 0 0 0 5.2%;
}
@media screen and (max-width: 768px) {
  .bl_indexTop .bl_indexH1P {
    margin: 0 0 0 5.2%;
    position: absolute;
    top: 90px;
    left: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 425px) {
  .bl_indexTop .bl_indexH1P {
    top: 70px;
  }
}
.bl_indexTop .bl_indexH1P h1 {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 2.0833vw;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .bl_indexTop .bl_indexH1P h1 {
    font-size: 4vw;
    text-shadow: 3px 2px 3px #ccc;
  }
}
@media screen and (max-width: 425px) {
  .bl_indexTop .bl_indexH1P h1 {
    font-size: 4.5vw;
  }
}
.bl_indexTop .bl_indexH1P h1 span {
  color: #264CC4;
}
.bl_indexTop .bl_indexH1P p {
  font-size: 1.302083vw;
}
@media screen and (max-width: 768px) {
  .bl_indexTop .bl_indexH1P p {
    font-size: 2.1vw;
    margin-top: 0 !important;
    text-shadow: 3px 2px 3px #ccc;
  }
}
@media screen and (max-width: 425px) {
  .bl_indexTop .bl_indexH1P p {
    font-size: 3vw;
  }
}
.bl_indexTop .bl_indeximg01 {
  width: 53.5vw;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 768px) {
  .bl_indexTop .bl_indeximg01 {
    display: none;
  }
}
.bl_indexTop .bl_indeximg02 {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_indexTop .bl_indeximg02 {
    display: block;
  }
}

/*--------------------------------------------*/
/*Topicsトピックス----------------------------*/
.bl_indexTopics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .bl_indexTopics {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .bl_indexTopics {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }
}

.bl_indexBox_topics a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bl_indexBox_topics .bl_indexBox {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.bl_indexBox_topics .bl_indexBox img {
  border-radius: 8px;
  border: 1px solid #f5f5f5;
}
.bl_indexBox_topics .bl_indexBox .bl_indexPtitle {
  margin: 10px 0;
  flex-grow: 1;
  font-weight: bold;
}
.bl_indexBox_topics .bl_indexBox .bl_indexPdate {
  color: #333;
}
.bl_indexBox_topics .bl_indexBox .bl_indexPdate span {
  color: red;
  margin-right: 15px;
}
.bl_indexBox_topics .bl_indexBox:hover {
  opacity: 0.5;
  transition: 0.3s;
}

/*----------------------------------*/
/*Archiveアーカイブ---------------------------*/
.bl_indexArchive {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 25px;
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .bl_indexArchive {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .bl_indexArchive {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .bl_indexArchive {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*----------------------------------*/
/*About JACSIS研究について-----------------------------*/
/*タイトル・ボタン*/
.bl_indexAbouttitle {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .bl_indexAbouttitle {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .bl_indexAbouttitle p {
    text-align: center;
  }
}

/*About,News共通ボタン*/
.bl_indexpBtn a {
  color: #fff;
  background-color: #264CC4;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  outline: 1px solid;
  outline-color: #264CC4;
  outline-offset: 0px;
  display: inline-block;
  transition: 0.3s;
}
.bl_indexpBtn a svg {
  margin-left: 60px;
  margin-bottom: -3px;
  fill: #fff;
}
.bl_indexpBtn a:hover {
  color: #264CC4;
  background-color: #fff;
  animation: light 0.8s infinite;
}
.bl_indexpBtn a:hover svg {
  fill: #264CC4;
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

/*４つの目標*/
.bl_indexAboutgoal {
  display: flex;
  justify-content: space-between;
  margin: 0 1.5%;
}
@media screen and (max-width: 1450px) {
  .bl_indexAboutgoal {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 804px) {
  .bl_indexAboutgoal {
    justify-content: center;
  }
}
.bl_indexAboutgoal .bl_indexAboutfigure {
  max-width: 1450px;
  width: 47%;
  margin: 0 10px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #264CC4;
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1450px) {
  .bl_indexAboutgoal .bl_indexAboutfigure {
    margin-bottom: 50px;
    width: 370px;
  }
}
@media screen and (max-width: 804px) {
  .bl_indexAboutgoal .bl_indexAboutfigure {
    height: auto;
    margin-left: 5.2%;
    margin-right: 5.2%;
  }
}
.bl_indexAboutgoal .bl_indexAboutfigure .bl_indexAboutsvg {
  flex-grow: 1;
}
.bl_indexAboutgoal .bl_indexAboutfigure .bl_indexAboutsvg .cls-1 {
  fill: #264CC4;
}
.bl_indexAboutgoal .bl_indexAboutfigure .bl_indexAboutBold {
  font-weight: bold;
  font-size: 1.33vw;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #264CC4;
}
@media screen and (max-width: 1450px) {
  .bl_indexAboutgoal .bl_indexAboutfigure .bl_indexAboutBold {
    font-size: 2.5rem;
  }
}
.bl_indexAboutgoal .bl_indexAboutfigure p {
  text-align: left;
  /*width: 360px;*/
  margin: 0 auto;
  height: 72px;
}
.bl_indexAboutgoal .bl_indexAboutbr {
  display: none;
}
@media screen and (max-width: 425px) {
  .bl_indexAboutgoal .bl_indexAboutbr {
    display: block;
  }
}

/*----------------------------------*/
/*Output活動実績----------------------------*/
.bl_indexOutput {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px 10px;
}
@media screen and (max-width: 1400px) {
  .bl_indexOutput {
    max-width: 1190px;
    justify-content: space-around;
    gap: 30px 10px;
  }
}
.bl_indexOutput .bl_indexOpBtn a {
  display: flex;
}
.bl_indexOutput .bl_indexOpBtn a svg {
  background-color: #fff;
  border: 1px solid #264CC4;
  border-radius: 8px 0 0 8px;
  fill: #264CC4;
  padding: 20px;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
}
.bl_indexOutput .bl_indexOpBtn a p {
  background-color: #264CC4;
  border: 1px solid #264CC4;
  border-radius: 0 8px 8px 0;
  color: #fff;
  padding: 20px;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1400px) {
  .bl_indexOutput .bl_indexOpBtn a p {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 768px) {
  .bl_indexOutput .bl_indexOpBtn a p {
    /*padding: 20px;*/
  }
}
.bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding01 {
  padding: 20px 25.5px;
}
@media screen and (max-width: 1400px) {
  .bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding01 {
    padding: 20px 55.5px;
  }
}
@media screen and (max-width: 768px) {
  .bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding01 {
    /*padding: 20px 25.5px;*/
  }
}
@media screen and (max-width: 500px) {
  .bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding01 {
    padding: 20px 54.8px;
  }
}
.bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding02 {
  padding: 20px 68px;
}
@media screen and (max-width: 1400px) {
  .bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding02 {
    padding: 20px 98px;
  }
}
@media screen and (max-width: 768px) {
  .bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding02 {
    /*padding: 20px 68px;*/
  }
}
@media screen and (max-width: 500px) {
  .bl_indexOutput .bl_indexOpBtn a .bl_indexOpPpadding02 {
    padding: 20px 92px;
  }
}
.bl_indexOutput .bl_indexOpBtn:hover svg {
  background-color: #264CC4;
  fill: #fff;
}
.bl_indexOutput .bl_indexOpBtn:hover p {
  background-color: #fff;
  color: #264CC4;
  font-weight: bold;
}
.bl_indexOutput::after {
  content: "";
  display: block;
  width: 300px;
  height: 0;
}
.bl_indexOutput .bl_indexPickup:hover {
  font-size: 1.56rem;
}

.fa-angle-right {
  margin-right: 7px;
}

/*----------------------------------*/
/*Newsお知らせ-----------------------*/
.bl_indexNews {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .bl_indexNews {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .bl_indexNewstitlebtn {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 500px) {
  .bl_indexNewstitlebtn {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .bl_indexBtnNews {
    padding-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .bl_indexBtnNews {
    padding-top: 0;
    text-align: center;
  }
}

/*----------------------------------*/
footer {
  text-align: center;
  /*margin: 50px 0;*/
  height: 120px;
}
footer p {
  padding-top: 50px;
}

.body-in {
  position: relative;
}

.float-button__wrap {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 60px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .float-button__wrap {
    right: 30px;
  }
}
@media screen and (max-width: 500px) {
  .float-button__wrap {
    right: 20px;
  }
}

.bl_aboutMain p {
  border-bottom: 1px dotted #707070;
  padding: 30px 0;
}
.bl_aboutMain p span {
  color: #264CC4;
  font-weight: bold;
}
.bl_aboutMain p a {
  text-decoration: underline;
}
.bl_aboutMain p a:hover {
  text-decoration: none;
}
@media screen and (max-width: 425px) {
  .bl_aboutMain .bl_aboutp {
    margin-bottom: 50px;
  }
}

.tab_area {
  overflow: hidden;
  display: table;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 60px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tab_area {
    margin-top: 30px;
  }
}
.tab_area li {
  text-align: center;
  width: calc(calc(100% - 60px) / 5);
  background-color: #f8f8f8;
  border: 1px solid #264CC4;
  padding: 10px 0;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .tab_area li {
    width: calc(calc(100% - 50px) / 2);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .tab_area li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.tab_area li.select {
  background-color: #264cc4;
  background-image: none;
  color: #fff;
}

.bl_outputAll_area {
  overflow: hidden;
}

.hide {
  display: none;
}

.bl_outputNot {
  background-color: #F8F8F8;
  padding: 20px;
  margin-top: 15px;
  border-radius: 8px;
}

/*outcome・report*/
.bl_outputUnderP {
  margin-top: 60px;
  color: #264CC4;
}
@media screen and (max-width: 764px) {
  .bl_outputUnderP {
    margin-top: 40px;
  }
}

.bl_ooutputSubtitle {
  color: #264CC4;
}

.bl_outputUl02 {
  list-style: disc;
}
.bl_outputUl02 li {
  margin-left: 20px;
}

.bl_outputH4 {
  margin-top: 60px;
  margin-bottom: 20px;
  color: #264CC4;
  font-weight: bold;
}

.bl_outputDecoration {
  text-decoration: underline;
}

.bl_outputLink {
  text-decoration: underline;
  color: #264CC4;
}

.bl_outputRecenter {
  text-align: center;
}

.bl_outputLh p {
  line-height: 1.8 !important;
}

.bl_outputBorder {
  border-bottom: none !important;
}

.bl_outputListstyle {
  list-style: none;
}

.bl_outputDl dt {
  position: relative;
  font-weight: bold;
  padding-left: 40px;
}
.bl_outputDl dt::before {
  content: "Q";
  position: absolute;
  top: -7px;
  left: 0;
  color: #264CC4;
  font-size: 3rem;
}
.bl_outputDl dd {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #ccc;
  padding: 0 0 30px 40px;
}
.bl_outputDl dd::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  color: red;
  font-size: 3rem;
  font-weight: bold;
}

.bl_outputPsankou {
  margin-top: 60px;
  font-weight: bold;
  color: gray;
}

.bl_outputOl li {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}
.bl_outputOl li a {
  word-break: break-all;
}
.bl_outputOl li a:hover {
  text-decoration: underline;
}

.bl_dugDomain::before {
  content: "@";
}

.bl_dugP {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .bl_dugP {
    margin-top: 40px;
  }
}

.bl_dugInvestigation h3 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .bl_dugInvestigation h3 {
    font-size: 1.8rem;
  }
}
.bl_dugInvestigation h4 {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .bl_dugInvestigation h4 {
    font-size: 1.6rem;
  }
}

.bl_dugUlaccordion {
  max-width: 1300px;
  border: 2px solid #ccc;
  border-radius: 50px;
  margin: 20px auto 40px auto;
  display: none;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .bl_dugUlaccordion {
    display: block;
  }
}
.bl_dugUlaccordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
.bl_dugUlaccordion summary::-webkit-details-marker {
  display: none;
}
.bl_dugUlaccordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: "";
  transition: transform 0.3s;
}
.bl_dugUlaccordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.bl_dugUlaccordion[open] summary::after {
  transform: rotate(225deg);
}

.bl_dugUlaccordion[open] p {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .bl_dugUl {
    display: none;
  }
}

.bl_dugPagelink {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto;
  gap: 20px 20px;
}
@media screen and (max-width: 1250px) {
  .bl_dugPagelink {
    max-width: 800px;
    gap: 30px 10px;
  }
}
@media screen and (max-width: 810px) {
  .bl_dugPagelink {
    max-width: 550px;
  }
}
@media screen and (max-width: 500px) {
  .bl_dugPagelink {
    gap: 10px;
  }
}
.bl_dugPagelink::after {
  content: "";
  display: block;
  width: 220px;
  height: 0;
}
@media screen and (max-width: 768px) {
  .bl_dugPagelink::after {
    width: 210px;
  }
}
.bl_dugPagelink::before {
  content: "";
  display: block;
  width: 220px;
  height: 0;
  order: 1;
}
@media screen and (max-width: 768px) {
  .bl_dugPagelink::before {
    width: 210px;
  }
}
.bl_dugPagelink li {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .bl_dugPagelink li {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  .bl_dugPagelink li {
    display: block;
    width: 100%;
  }
}
.bl_dugPagelink li a {
  display: block;
  overflow: hidden;
  background-color: #264CC4;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid #264CC4;
}
.bl_dugPagelink li a:hover {
  background-color: #fff;
  color: #264CC4;
}
.bl_dugPagelink li .pb {
  padding: 16.4px 15px;
}
@media screen and (max-width: 500px) {
  .bl_dugPagelink li .pb {
    padding: 10px;
  }
}

@media screen and (max-width: 500px) {
  .bl_dugChildbr {
    display: none;
  }
}
@media screen and (max-width: 335px) {
  .bl_dugChildbr {
    display: block;
  }
}

.bl_dugH3 {
  border-bottom: 2px solid #264CC4;
  width: 129px;
}
@media screen and (max-width: 768px) {
  .bl_dugH3 {
    width: 100px;
  }
}

.bl_dugH302 {
  border-bottom: 2px solid #264CC4;
  width: 550px;
}
@media screen and (max-width: 768px) {
  .bl_dugH302 {
    width: 410px;
  }
}
@media screen and (max-width: 500px) {
  .bl_dugH302 {
    width: 250px;
  }
}

.bl_dugH3_w02 {
  width: 189px;
}
@media screen and (max-width: 768px) {
  .bl_dugH3_w02 {
    width: 142px;
  }
}

.bl_dugChousa {
  border-bottom: 2px solid #264CC4;
  width: 75px;
}

.bl_dugH4blue {
  margin-top: 60px;
  color: #264CC4;
}

.bl_dugH4gray {
  color: #666;
}

.bl_dugSubtitle {
  margin-top: 20px;
}

.bl_dugCont {
  margin-top: 30px;
  margin-bottom: 60px;
}
.bl_dugCont ul {
  margin-top: 10px;
}
.bl_dugCont li {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}
.bl_dugCont li a i {
  margin-right: 10px;
}
.bl_dugCont li a:hover {
  text-decoration: underline;
}
.bl_dugCont li a .fa-file-pdf {
  color: red;
}
.bl_dugCont li span {
  color: red;
}
.bl_dugCont .bl_dugDotted {
  border-bottom: none;
}

.bl_dugTotal {
  margin-top: 15px;
  font-size: 2rem;
}

.bl_dugLh {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .bl_dugH4mt {
    margin-top: 40px;
  }
}

.bl_dugPage {
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}

.bl_dugLink_un {
  text-decoration: underline !important;
}
.bl_dugLink_un:hover {
  text-decoration: none !important;
}

.bl_reSpan {
  font-size: 1.6rem;
}

.bl_reP {
  margin-top: 50px;
  background-color: #264CC4;
  color: #fff;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .bl_reP {
    margin-bottom: 60px;
  }
}

.bl_linkUl {
  margin-top: 60px;
}

.fa-arrow-up-right-from-square {
  margin-left: 10px;
}

.bl_newsList {
  margin-top: 30px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .bl_newsList {
    width: 100%;
  }
}
.bl_newsList li:first-child {
  padding-top: 0;
}

.bl_newsList02 {
  margin-top: 60px;
  width: 100%;
}
.bl_newsList02 li:first-child {
  padding-top: 0;
}

.bl_newsListitem {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .bl_newsListitem {
    display: block;
  }
}
.bl_newsListitem a:hover {
  text-decoration: underline;
}

.bl_newsListitem02 {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px dotted #707070;
}
@media screen and (max-width: 768px) {
  .bl_newsListitem02 {
    display: block;
  }
}
.bl_newsListitem02 a:hover {
  text-decoration: underline;
}

.bl_newsDate {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .bl_newsDate {
    margin-bottom: 10px;
  }
}
.bl_newsDate span {
  color: red;
  margin: 0 0 0 25px;
}

.bl_newsTxt {
  width: calc(100% - 160px);
}
@media screen and (max-width: 768px) {
  .bl_newsTxt {
    width: 100%;
  }
}

.bl_newsP a:hover {
  text-decoration: underline;
}

.bl_soonP {
  font-size: 2rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 60px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .bl_soonP {
    font-size: 1.6rem;
  }
}

.bl_soonTopbutton {
  margin: 60px auto 30px auto;
  text-align: center;
}
.bl_soonTopbutton a {
  background-color: #264CC4;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
}
.bl_soonTopbutton:hover {
  opacity: 0.5;
}

.bl_soonBr {
  display: none;
}
@media screen and (max-width: 500px) {
  .bl_soonBr {
    display: block;
  }
}

.ly_width_1300 {
  max-width: 1451px;
  margin: 0 auto;
}
.ly_width_1300 h1 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .ly_width_1300 h1 {
    font-size: 2.3rem;
  }
}
.ly_width_1300 h1 .ly_widthEn {
  color: #264CC4;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .ly_width_1300 h1 .ly_widthEn {
    font-size: 3rem;
  }
}
.ly_width_1300 h1 .ly_widthJp {
  font-size: 2.5rem;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .ly_width_1300 h1 .ly_widthJp {
    font-size: 1.8rem;
  }
}
.ly_width_1300 h1 .ly_ml {
  margin-left: -7px;
}
.ly_width_1300 h2 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .ly_width_1300 h2 {
    font-size: 2.3rem;
  }
}
.ly_width_1300 h2 .ly_widthEn {
  color: #264CC4;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .ly_width_1300 h2 .ly_widthEn {
    font-size: 3rem;
  }
}
.ly_width_1300 h2 .ly_widthJp {
  font-size: 2.5rem;
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .ly_width_1300 h2 .ly_widthJp {
    font-size: 1.8rem;
  }
}
.ly_width_1300 h2 .ly_ml {
  margin-left: -7px;
}

.ly_width_1720 {
  max-width: 1720px;
  margin: 0 auto;
}
@media screen and (max-width: 1450px) {
  .ly_width_1720 {
    max-width: 850px;
  }
}

.ly_width_Underlayer {
  max-width: 1300px;
  margin: 0 auto;
}

.ly_widthBgc {
  background-color: #f8f8f8;
}

.ly_widthMargin {
  margin: 0 5.2%;
}

.ly_commonToptitle {
  padding-top: 165px;
  padding-bottom: 13px;
  font-size: 4rem !important;
  border-bottom: 3px solid #264CC4;
}
@media screen and (max-width: 768px) {
  .ly_commonToptitle {
    font-size: 3rem !important;
    padding-top: 100px;
  }
}
@media screen and (max-width: 425px) {
  .ly_commonToptitle {
    padding-top: 70px;
  }
}
.ly_commonToptitle .ly_commonbr {
  display: none;
}
@media screen and (max-width: 425px) {
  .ly_commonToptitle .ly_commonbr {
    display: block;
  }
}
.ly_commonToptitle .ly_commonTitle01 {
  font-size: 6rem;
  color: #264CC4;
}
@media screen and (max-width: 768px) {
  .ly_commonToptitle .ly_commonTitle01 {
    font-size: 4rem;
  }
}
.ly_commonToptitle .ly_commonTitle02 {
  font-size: 3rem;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  margin-left: 45px;
}
@media screen and (max-width: 768px) {
  .ly_commonToptitle .ly_commonTitle02 {
    font-size: 2rem;
    margin-left: 30px;
  }
}
@media screen and (max-width: 425px) {
  .ly_commonToptitle .ly_commonTitle02 {
    margin-left: 0;
  }
}

.ly_commonH2 {
  font-size: 2.4rem;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .ly_commonH2 {
    font-size: 2rem;
    margin: 30px 0;
  }
}

.ly_commonH3 {
  font-size: 2rem;
  margin-bottom: 60px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .ly_commonH3 {
    font-size: 1.8rem;
    margin: 30px 0;
  }
}

.ly_commonUl li {
  padding: 30px 0;
  border-bottom: 1px dotted #ccc;
}
.ly_commonUl li:first-child {
  padding-top: 0;
}
.ly_commonUl li a {
  word-break: break-all;
}
.ly_commonUl li a:hover {
  text-decoration: underline;
  color: #264CC4;
}
.ly_commonUl li img {
  margin-bottom: 3px;
  margin-right: 10px;
}

.ly_commonOl li {
  margin-left: 30px;
  padding: 30px 0;
  border-bottom: 1px dotted #ccc;
}
.ly_commonOl li:first-child {
  padding-top: 0;
}
.ly_commonOl li p a:hover {
  text-decoration: underline;
}

.ly_commonOlP02 {
  background-color: #F8F8F8;
  padding: 20px;
  margin-top: 15px;
  border-radius: 8px;
  word-break: break-all;
}

.ly_OlNews {
  list-style-type: decimal;
  padding-left: 16px;
  margin-top: 60px;
}
.ly_OlNews li {
  margin: 15px 0;
  word-break: break-all;
}
.ly_OlNews li:first-child {
  margin-top: 0;
}

.ly_under {
  text-decoration: underline;
}

.ly_italic {
  font-style: italic;
}

/*
* margin
*/
.hp {
  /* margin top */
  /* margin right */
  /* margin bottom */
  /* margin left */
}
.hp_mt0p {
  margin-top: 0px !important;
}
.hp_mt5p {
  margin-top: 5px !important;
}
.hp_mt10p {
  margin-top: 10px !important;
}
.hp_mt15p {
  margin-top: 15px !important;
}
.hp_mt20p {
  margin-top: 20px !important;
}
.hp_mt25p {
  margin-top: 25px !important;
}
.hp_mt25p_media {
  margin-top: 25px !important;
}
@media screen and (max-width: 500px) {
  .hp_mt25p_media {
    margin-top: 0 !important;
  }
}
.hp_mt30p {
  margin-top: 30px !important;
}
.hp_mt35p {
  margin-top: 35px !important;
}
.hp_mt40p {
  margin-top: 40px !important;
}
.hp_mt45p {
  margin-top: 45px !important;
}
.hp_mt50p {
  margin-top: 50px !important;
}
.hp_mt55p {
  margin-top: 55px !important;
}
.hp_mt60p {
  margin-top: 60px !important;
}
.hp_mt60p_media {
  margin-top: 60px !important;
}
@media screen and (max-width: 768px) {
  .hp_mt60p_media {
    margin-top: 30px !important;
  }
}
.hp_mt65p {
  margin-top: 65px !important;
}
.hp_mt65p_media {
  margin-top: 65px !important;
}
@media screen and (max-width: 1024px) {
  .hp_mt65p_media {
    margin-top: 25px !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_mt65p_media {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 500px) {
  .hp_mt65p_media {
    margin-top: 20px !important;
  }
}
.hp_mt70p {
  margin-top: 70px !important;
}
.hp_mt75p {
  margin-top: 75px !important;
}
.hp_mt80p {
  margin-top: 80px !important;
}
.hp_mt85p {
  margin-top: 85px !important;
}
.hp_mt90p {
  margin-top: 90px !important;
}
.hp_mt95p {
  margin-top: 95px !important;
}
.hp_mt100p {
  margin-top: 100px !important;
}
.hp_mt130p {
  margin-top: 130px !important;
}
.hp_mt225p {
  margin-top: 225px !important;
}
.hp_mr0p {
  margin-right: 0px !important;
}
.hp_mr5p {
  margin-right: 5px !important;
}
.hp_mr10p {
  margin-right: 10px !important;
}
.hp_mr15p {
  margin-right: 15px !important;
}
.hp_mr20p {
  margin-right: 20px !important;
}
.hp_mr25p {
  margin-right: 25px !important;
}
.hp_mr30p {
  margin-right: 30px !important;
}
.hp_mr35p {
  margin-right: 35px !important;
}
.hp_mr40p {
  margin-right: 40px !important;
}
.hp_mr45p {
  margin-right: 45px !important;
}
.hp_mr50p {
  margin-right: 50px !important;
}
.hp_mr55p {
  margin-right: 55px !important;
}
.hp_mr60p {
  margin-right: 60px !important;
}
.hp_mr65p {
  margin-right: 65px !important;
}
.hp_mr70p {
  margin-right: 70px !important;
}
.hp_mb0p {
  margin-bottom: 0px !important;
}
.hp_mb5p {
  margin-bottom: 5px !important;
}
.hp_mb10p {
  margin-bottom: 10px !important;
}
.hp_mb15p {
  margin-bottom: 15px !important;
}
.hp_mb20p {
  margin-bottom: 20px !important;
}
.hp_mb25p {
  margin-bottom: 25px !important;
}
.hp_mb30p {
  margin-bottom: 30px !important;
}
.hp_mb35p {
  margin-bottom: 35px !important;
}
.hp_mb40p {
  margin-bottom: 40px !important;
}
.hp_mb45p {
  margin-bottom: 45px !important;
}
.hp_mb50p {
  margin-bottom: 50px !important;
}
.hp_mb55p {
  margin-bottom: 55px !important;
}
.hp_mb60p {
  margin-bottom: 60px !important;
}
.hp_mb65p {
  margin-bottom: 65px !important;
}
.hp_mb70p {
  margin-bottom: 70px !important;
}
.hp_mb75p {
  margin-bottom: 75px !important;
}
.hp_mb80p {
  margin-bottom: 80px !important;
}
.hp_mb85p {
  margin-bottom: 85px !important;
}
.hp_mb90p {
  margin-bottom: 90px !important;
}
.hp_mb95p {
  margin-bottom: 95px !important;
}
.hp_mb100p {
  margin-bottom: 100px !important;
}
.hp_mb105p {
  margin-bottom: 105px !important;
}
.hp_ml0p {
  margin-left: 0px !important;
}
.hp_ml5p {
  margin-left: 5px !important;
}
.hp_ml10p {
  margin-left: 10px !important;
}
.hp_ml15p {
  margin-left: 15px !important;
}
.hp_ml20p {
  margin-left: 20px !important;
}
.hp_ml25p {
  margin-left: 25px !important;
}
.hp_ml30p {
  margin-left: 30px !important;
}
.hp_ml35p {
  margin-left: 35px !important;
}
.hp_ml40p {
  margin-left: 40px !important;
}
.hp_ml45p {
  margin-left: 45px !important;
}
.hp_ml50p {
  margin-left: 50px !important;
}
.hp_ml55p {
  margin-left: 55px !important;
}
.hp_ml60p {
  margin-left: 60px !important;
}
.hp_ml65p {
  margin-left: 65px !important;
}
.hp_ml70p {
  margin-left: 70px !important;
}

/*
* padding
*/
.hp {
  /* padding top */
  /* padding right */
  /* padding bottom */
  /* padding left */
}
.hp_pt0p {
  padding-top: 0px !important;
}
.hp_pt5p {
  padding-top: 5px !important;
}
.hp_pt10p {
  padding-top: 10px !important;
}
.hp_pt15p {
  padding-top: 15px !important;
}
.hp_pt20p {
  padding-top: 20px !important;
}
.hp_pt25p {
  padding-top: 25px !important;
}
.hp_pt30p {
  padding-top: 30px !important;
}
.hp_pt35p {
  padding-top: 35px !important;
}
.hp_pt40p {
  padding-top: 40px !important;
}
.hp_pt45p {
  padding-top: 45px !important;
}
.hp_pt50p {
  padding-top: 50px !important;
}
.hp_pt55p {
  padding-top: 55px !important;
}
.hp_pt60p {
  padding-top: 60px !important;
}
.hp_pt65p {
  padding-top: 65px !important;
}
.hp_pt70p {
  padding-top: 70px !important;
}
.hp_pt70p_media {
  padding-top: 70px !important;
}
@media screen and (max-width: 500px) {
  .hp_pt70p_media {
    padding-top: 0px !important;
  }
}
.hp_pt75p {
  padding-top: 75px !important;
}
.hp_pt95p {
  padding-top: 95px !important;
}
.hp_pt100p {
  padding-top: 100px !important;
}
.hp_pt105p {
  padding-top: 105px !important;
}
.hp_pt110p {
  padding-top: 110px !important;
}
.hp_pt115p {
  padding-top: 115px !important;
}
.hp_pt130p {
  padding-top: 130px !important;
}
.hp_pt225p {
  padding-top: 225px !important;
}
.hp_pr0p {
  padding-right: 0px !important;
}
.hp_pr5p {
  padding-right: 5px !important;
}
.hp_pr10p {
  padding-right: 10px !important;
}
.hp_pr15p {
  padding-right: 15px !important;
}
.hp_pr20p {
  padding-right: 20px !important;
}
.hp_pr25p {
  padding-right: 25px !important;
}
.hp_pr30p {
  padding-right: 30px !important;
}
.hp_pr35p {
  padding-right: 35px !important;
}
.hp_pr40p {
  padding-right: 40px !important;
}
.hp_pr45p {
  padding-right: 45px !important;
}
.hp_pr50p {
  padding-right: 50px !important;
}
.hp_pr55p {
  padding-right: 55px !important;
}
.hp_pr60p {
  padding-right: 60px !important;
}
.hp_pr65p {
  padding-right: 65px !important;
}
.hp_pr70p {
  padding-right: 70px !important;
}
.hp_pb0p {
  padding-bottom: 0px !important;
}
.hp_pb5p {
  padding-bottom: 5px !important;
}
.hp_pb10p {
  padding-bottom: 10px !important;
}
.hp_pb15p {
  padding-bottom: 15px !important;
}
.hp_pb20p {
  padding-bottom: 20px !important;
}
.hp_pb25p {
  padding-bottom: 25px !important;
}
.hp_pb30p {
  padding-bottom: 30px !important;
}
.hp_pb35p {
  padding-bottom: 35px !important;
}
.hp_pb40p {
  padding-bottom: 40px !important;
}
.hp_pb45p {
  padding-bottom: 45px !important;
}
.hp_pb50p {
  padding-bottom: 50px !important;
}
.hp_pb55p {
  padding-bottom: 55px !important;
}
.hp_pb60p {
  padding-bottom: 60px !important;
}
.hp_pb65p {
  padding-bottom: 65px !important;
}
.hp_pb70p {
  padding-bottom: 70px !important;
}
.hp_pb75p {
  padding-bottom: 75px !important;
}
.hp_pb105p {
  padding-bottom: 105px !important;
}
.hp_pb110p {
  padding-bottom: 110px !important;
}
.hp_pb115p {
  padding-bottom: 115px !important;
}
.hp_pb120p {
  padding-bottom: 120px !important;
}
.hp_pb125p {
  padding-bottom: 125px !important;
}
.hp_pb130p {
  padding-bottom: 130px !important;
}
.hp_pl0p {
  padding-left: 0px !important;
}
.hp_pl5p {
  padding-left: 5px !important;
}
.hp_pl10p {
  padding-left: 10px !important;
}
.hp_pl15p {
  padding-left: 15px !important;
}
.hp_pl20p {
  padding-left: 20px !important;
}
.hp_pl25p {
  padding-left: 25px !important;
}
.hp_pl30p {
  padding-left: 30px !important;
}
.hp_pl35p {
  padding-left: 35px !important;
}
.hp_pl40p {
  padding-left: 40px !important;
}
.hp_pl45p {
  padding-left: 45px !important;
}
.hp_pl50p {
  padding-left: 50px !important;
}
.hp_pl55p {
  padding-left: 55px !important;
}
.hp_pl60p {
  padding-left: 60px !important;
}
.hp_pl65p {
  padding-left: 65px !important;
}
.hp_pl70p {
  padding-left: 70px !important;
}

/*
* font
*/
.hp_fwBold {
  font-weight: bold !important;
}
.hp_fs80per {
  font-size: 0.8em !important;
}
.hp_fs120per {
  font-size: 1.2em !important;
}
.hp_fs12px {
  font-size: 12px !important;
}
.hp_fs18px {
  font-size: 18px !important;
}
.hp_fs25px {
  font-size: 25px !important;
}
@media screen and (max-width: 768px) {
  .hp_fs25px {
    font-size: 20px !important;
  }
}
.hp_fs35px {
  font-size: 35px !important;
}
@media screen and (max-width: 768px) {
  .hp_fs35px {
    font-size: 25px !important;
  }
}

.hp_txtCenter {
  text-align: center !important;
}
.hp_txtLeft {
  text-align: left !important;
}
.hp_txtRight {
  text-align: right !important;
}
.hp_txtJust {
  text-align: justify !important;
}

/*
* color
*/
.hp_colorMain {
  color: #005E00 !important;
  color: var(--color-primary) !important;
}
.hp_colorDanger {
  color: #DB0000 !important;
  color: var(--color-danger) !important;
}
.hp_colorBl {
  color: #264CC4;
}
