@charset "UTF-8";
/* CSS Document */


/* container
-----------------------------------------------*/
#main {
  max-width: 1050px;
}
#container {
  display: flex;
  max-width: 1050px;
  margin: 60px auto 0;
  padding: 0 60px;
}
#container #contents {
  width: calc(100%);
  margin: 0 auto;
}
@media only screen and (max-width:1300px) {
  #container {
    display: block;
    max-width: 1050px;
  }
  #container #contents {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  #container {
    margin: 40px auto 0;
    padding: 0 20px;
  }
}


/* newsListBox
-----------------------------------------------*/
.newsListBox:not(:first-child){
  margin-top: 120px;
}
.newsListBox h2 {
  font-size: 30px;
}
.newsListBox h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #002e70;
  margin-top: 30px;
}
.newsListBox h2:not(:first-child) {
  margin-top: 60px;
}
.newsListBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.newsListBox ul li:first-child {
  width: 100%;
}
.newsListBox ul li:not(:first-child) {
  width: calc(50% - 20px);
}
.newsListBox ul li img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 560/260;
  object-fit: cover;
  object-position: center;
}
.newsListBox ul li time {
  display: block;
  font-size: 13px;
  line-height: 1;
  color: #002e70;
  margin-top: 18px;
}
.newsListBox ul li h3 {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 8px;
}
.newsListBox ul li p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
  line-height: 1.8;
  font-size: 14px;
}
.newsListBox ul li:first-child h3 {
  font-size: 22px;
  margin-top: 15px;
}
.newsListBox ul li:first-child p {
  font-size: 16px;
  margin-top: 8px;
}
.newsListBox .btn {
  margin-top: 40px;
  text-align: center;
}
.newsListBox .btn a {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
  padding: 0 30px;
}
.newsListBox .btn a span {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  line-height: 45px;
}
.newsListBox .btn a span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg)translateY(-50%);
  margin-top: -1px;
}
.newsListBox .btn a span::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 15px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
  .newsListBox:not(:first-child){
    margin-top: 60px;
  }
  .newsListBox h2 {
    font-size: 22px;
  }
  .newsListBox h2::after {
    width: 40px;
    height: 3px;
    margin-top: 20px;
  }
  .newsListBox ul {
    gap: 20px;
    margin-top: 30px;
  }
  .newsListBox ul li:nth-child(2),
  .newsListBox ul li:nth-child(3) {
    width: 100%;
  }
  .newsListBox ul li img {
    border-radius: 6px;
  }
  .newsListBox ul li:first-child h3 {
    font-size: 18px;
    margin-top: 8px;
  }
  .newsListBox ul li:first-child p {
    font-size: 14px;
    margin-top: 5px;
  }
  .newsListBox .btn {
    margin-top: 30px;
  }
}


/* section
-----------------------------------------------*/
section:not(:first-child) {
  margin-top: 120px;
}
section h2 {
  font-size: 30px;
}
section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #002e70;
  margin-top: 30px;
}
section h2 + * {
  margin-top: 40px !important;
}
section h3 {
  font-size: 20px;
}
section h4 {
  font-size: 16px;
}
section h2:not(:first-child),
section h3:not(:first-child),
section h4:not(:first-child) {
  margin-top: 40px;
}
section a {
  color: #002e70;
  text-decoration: underline;
}
section a:hover {
  text-decoration: none;
  opacity: 1;
}
section p {
  font-size: 16px;
  line-height: 2;
}
section p:not(:first-child) {
  margin-top: 20px;
}
section h3 + p:not(:first-child) {
  margin-top: 20px;
}
section h4 + p, section h4 + .txtList {
  margin-top: 10px;
}
section .txtRed {
  color: #CC0000;
}
section .pdfLink {
  position: relative;
}
section .pdfLink::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 20px;
  background: url("/image/common/icon_pdf.svg")no-repeat;
  background-size: contain;
  margin-left: 5px;
}
section .movieLink {
  position: relative;
  padding-left: 28px;
  display: inline-block;
}
section .movieLink::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 14px;
  background: url("/image/youtube_social_icon_red24.png")no-repeat;
  background-size: contain;
}
@media only screen and (max-width:767px) {
  section:not(:first-child) {
    margin-top: 40px;
    padding-top: 40px;
  }
  section p {
    font-size: 14px;
  }
  section h2 {
    font-size: 22px;
  }
  section h2::after {
    width: 40px;
    height: 3px;
    margin-top: 20px;
  }
  section h2 + * {
    margin-top: 30px !important;
  }
  section h3 {
    font-size: 16px;
  }
  section h4 {
    font-size: 14px;
  }
}


/* newsList
-----------------------------------------------*/
.newsList {
  margin-top: 10px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.newsList li:first-child {
  width: 100%;
}
.newsList li {
  width: calc(50% - 20px);
}
.newsList li img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 560/260;
  object-fit: cover;
  object-position: center;
}
.newsList li time {
  display: block;
  font-size: 13px;
  line-height: 1;
  color: #002e70;
  margin-top: 18px;
}
.newsList li h2 {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 8px;
}
.newsList li p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
  line-height: 1.8;
}
@media only screen and (max-width:767px) {
  .newsList li {
    width: 100%;
  }
  .newsList li img {
    border-radius: 6px;
  }
}


/* txtList
-----------------------------------------------*/
.txtList {
  margin-top: 20px;
}
.txtList li {
  font-size: 16px;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.75;
}
.txtList li:not(:first-child) {
  margin-top: 15px;
}
@media only screen and (max-width:767px) {
  .txtList li {
    font-size: 14px;
  }
}


/* qrList
-----------------------------------------------*/
.qrList {
  display: flex;
  gap: 20px;
  margin: 20px auto 0;
}
.qrList li {
  width: 150px;
  text-align: center;
}
.qrList li span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}


/* lineBox
-----------------------------------------------*/
.lineBox {
  border: 1px solid #ccc;
  padding: 40px;
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  .lineBox {
    padding: 20px;
  }
}


/* tableOver
-----------------------------------------------*/
.tableOver {
  overflow-x: auto;
}
.tableOver::-webkit-scrollbar, .tableOver::-webkit-scrollbar:horizontal {
  height: 6px;
  background: #f2f2f2;
}
.tableOver::-webkit-scrollbar-thumb, .tableOver::-webkit-scrollbar-thumb:horizontal {
  background: #333;
}
@media only screen and (max-width:767px) {
  .tableList {
    width: 600px;
  }
}


/* tableList
-----------------------------------------------*/
.tableList {
  width: 100%;
  margin-top: 40px;
  border-bottom: 1px solid #ccc;
}
.tableList th,
.tableList td {
  padding: 15px 30px;
  font-size: 14px;
  border-top: 1px solid #ccc;
}
.tableList th {
  background: #f2f2f2;
}
@media only screen and (max-width:767px) {
  .tableList th,
  .tableList td {
    padding: 10px 15px;
    font-size: 13px;
  }
}


/* bookBox
-----------------------------------------------*/
.bookBox {
  margin-top: 40px;
}
.bookBox .col {
  display: flex;
  position: relative;
  background: #f2f2f2;
  padding: 40px 80px;
}
.bookBox .col:not(:first-child) {
  margin-top: 5px;
}
.bookBox .col .img {
  width: 140px;
}
.bookBox .col .txt {
  width: calc(100% - 140px);
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookBox .col .txt .txtInner {
  width: 100%;
}
.bookBox .col .txt p {
  margin-top: 10px;
}
.bookBox .col a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
  width: 200px;
  margin-top: 20px;
  text-decoration: none;
}
.bookBox .col a span {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  line-height: 45px;
}
.bookBox .col a span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg)translateY(-50%);
  margin-top: -1px;
}
.bookBox .col a span::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 15px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
  .bookBox {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }
  .bookBox .col {
    display: block;
    padding: 30px 20px;
  }
  .bookBox .col .img {
    margin: 0 auto;
    width: 150px;
  }
  .bookBox .col .txt {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
  .bookBox .col .txt a {
    margin: 15px auto 0;
  }
}


/* bgBox
-----------------------------------------------*/
.bgBox {
  background: #f2f2f2;
  padding: 40px 50px;
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .bgBox {
    padding: 20px;
  }
}


/* imgOver
-----------------------------------------------*/
.imgOver {
  overflow: hidden;
}
.imgOver img {
  float: right;
  margin: 0 0 20px 20px;
}



/* bookBox
-----------------------------------------------*/
.bookBox {
  margin-top: 40px;
}
.bookBox .col {
  display: flex;
  position: relative;
  background: #f2f2f2;
  padding: 40px 80px;
}
.bookBox .col:not(:first-child) {
  margin-top: 5px;
}
.bookBox .col .img {
  width: 140px;
}
.bookBox .col .txt {
  width: calc(100% - 140px);
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookBox .col .txt .txtInner {
  width: 100%;
}
.bookBox .col .txt p {
  margin-top: 10px;
}
.bookBox .col a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
  width: 200px;
  margin-top: 20px;
  text-decoration: none;
}
.bookBox .col a span {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  line-height: 45px;
}
.bookBox .col a span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg)translateY(-50%);
  margin-top: -1px;
}
.bookBox .col a span::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 15px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
  .bookBox {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }
  .bookBox .col {
    display: block;
    padding: 30px 20px;
  }
  .bookBox .col .img {
    margin: 0 auto;
    width: 150px;
  }
  .bookBox .col .txt {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
  .bookBox .col .txt a {
    margin: 15px auto 0;
  }
}