@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 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 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 p a[target="_blank"]::after {
  position: relative;
  top: -1px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("/image/common/icon_win.svg");
  width: 11px;
  height: 10px;
  margin-left: 8px;
}
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 {
  display: flex;
  align-items: center;
}
section .movieLink .img {
  max-width: 168px;
  width: 100%;
  margin-right: 15px;
}
section .movieLink img{
  border: solid 1px #ccc;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}
section .movieLink:hover img{
  opacity: .7;
}
section .btn {
  margin-top: 30px;
}
section .btn a {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #002e70;
  border-radius: 45px;
  white-space: nowrap;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  font-size: 14px;
  padding: 0 30px;
}
section .btn a:hover {
  opacity: .7;
}
section .btn a span {
  position: relative;
  padding-right: 18px;
}
section .btn a span::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 10px;
  background: url("/image/common/icon_win_wht.svg");
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@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;
  }
  section .movieLink {
    flex-wrap: wrap;
  justify-content: center;
  }
  section .movieLink .img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  section .btn {
    text-align: center;
    margin-top: 25px;
  }
}


/* 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;
  }
}


/* txtListNote
-----------------------------------------------*/
.txtListNote {
  margin-top: 20px;
}
.txtListNote li {
  font-size: 13px;
  margin-left: 1em;
  text-indent: -1em;
}
.txtListNote li:not(:first-child) {
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .txtListNote li {
    font-size: 12px;
  }
}


/* txtNote
-----------------------------------------------*/
.txtNote {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
  margin-top: 5px;
  font-size: 13px;
}
@media only screen and (max-width:767px) {
  .txtNote {
    font-size: 12px;
  }
}


/* bgBox
-----------------------------------------------*/
.bgBox {
  background: #f2f2f2;
  padding: 40px 50px;
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .bgBox {
    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;
  }
}


/* tableHole
-----------------------------------------------*/
.tableHole {
  width: 100%;
  margin-top: 20px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.tableHole th,
.tableHole td {
  padding: 15px 20px;
  font-size: 14px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
}
.tableHole .bg {
  background: #e6e6e6;
  color: #b3b3b3;
}
.tableHole th {
  background: #f2f2f2;
}
@media only screen and (max-width:767px) {
  .tableHole th,
  .tableHole td {
    padding: 10px 15px;
    font-size: 13px;
  }
}


/* bookBox
-----------------------------------------------*/
.bookBox .col {
  display: flex;
  position: relative;
  background: #f2f2f2;
  padding: 40px;
}
.bookBox .col:not(:first-child) {
  margin-top: 5px;
}
.bookBox .col .img {
  width: 200px;
}
.bookBox .col .txt {
  width: calc(100% - 200px);
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookBox .col .txt .txtInner {
  width: 100%;
}
.bookBox .col .txt p {
  margin-top: 5px;
}
.bookBox .col .txt a {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
}
.bookBox .col .img a:hover {
  opacity: .7;
}
@media only screen and (max-width:767px) {
  .bookBox {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .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 {
    font-size: 14px;
  }
}


/* imgFull
-----------------------------------------------*/
.imgFull {
  text-align: center;
  margin-top: 20px;
}


/* imgBorder
-----------------------------------------------*/
.imgBorder {
  border: 1px solid #ccc;
  padding: 20px;
}


/* bnrBtn
-----------------------------------------------*/
.bnrBtn {
  margin-top: 20px;
  text-align: center;
}