@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;
}
#main.mainBox .box {
  position: relative;
}
#main.mainBox .box::before {
  content: "";
  position: absolute;
  left: 440px;
  top: -30px;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: #E5EAF0;
  border-radius: 10px;
}
#main.mainBox .box .img {
  position: relative;
  left: 280px;
  width: calc(100% - 160px);
  height: 432px;
  overflow: hidden;
  border-radius: 10px;
}
#main.mainBox .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
#main.mainBox .box .txt {
  position: absolute;
  left: 0;
  top: 55%;
}
@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;
  }
  #main.mainBox .box::before {
    left: 140px;
    top: -15px;
    border-radius: 6px;
  }
  #main.mainBox .box .img {
    left: 80px;
    width: 100%;
    height: 180px;
    border-radius: 6px;
  }
  #main.mainBox .box .txt {
    position: absolute;
    left: 0;
    top: 55%;
  }
}


/* 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;
	line-height: 2;
}
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: "";
  position: relative;
  top: 4px;
  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;
}
.men section .link a,
.scheduleList .link a,
.process .link a{
	font-size: 16px;
    color: #002e70;
    text-decoration: underline;
	line-height: 2;
}
@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;
  }
}

/* about
-----------------------------------------------*/
.bgBox {
  background: #f2f2f2;
  padding: 40px 50px;
  margin: 40px 0;
}
.bgBox li {
	margin-top: 20px;
	line-height: 2;
}
.bgBox li:first-child {
	margin-top: 0;
}
.bgBox li a {
	font-size: 16px;
	color: #333333;
}
.about_nt section h3 {
	margin-top: 120px;
}
.about_nt section .col {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.about_nt section .col2 .img {
	margin-right: 20px;
}
.about_nt section .col2 {
	display: flex;
}
.about_nt section .txt li {
	font-size: 14px;
	line-height: 2;
}
.about_nt section .col1 {
	margin-top: 40px;
	text-align: center;
}
.about_nt section ol li {
	display: flex;
	margin-top: 60px;
	line-height: 2;
	width: 100%;
}
.about_nt section ol li .txt {
	margin-right: 20px;
	font-size: 16px;
	width: 60%;
}
.about_nt section ol .img {
	display: block;
	width: 40%;
	text-align: center;
}
.about_nt section ol .img2 {
	display: block;
}
.about_nt section ol .img2 .img {
	display: flex;
	text-align: center;
	width: 100%;
	margin: auto;
}
.about_nt section .img2 .txt {
	margin-right: 0;
	width: 100%
}
.about_nt #sec04 .txt {
	float: left;
}
.txtList {
  margin-top: 20px;
}
.txtList li {
  font-size: 16px;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.75;
}
.about_nt section .img2 .img img {
	margin-right: 0;
	width: 50%;
	padding-left: 0;
	margin: 40px;
}
@media only screen and (max-width:767px) {
.about_nt section h3{
	margin-top: 80px;
}
.bgBox {
    padding: 20px;
}
.bgBox li{
	margin-top: 15px;
}
.bgBox li a{
	font-size: 14px;
}
.about_nt section .col{
	display: block;
	margin-top: 20px;
}
.about_nt section .col>.img{
	text-align: center;
	margin-top: 20px;
	width: 100%;
}
.about_nt section .col>.img img{
	width: 100%;
	max-width: 300px;
}
.about_nt section .txt li{
	font-size: 12px;
}
.about_nt section ol li{
	margin-top: 40px;
	display: block;
}
.about_nt section ol li .txt{
	margin-right: 0;
	font-size: 14px;
	width: 100%;
}
.about_nt section ol li .img {
	margin-top: 20px;
	text-align: center;
	width: 100%;
}
.about_nt section .img2 .img img {
	margin: 20px 0 0 0;
}

}


/* member
-----------------------------------------------*/
.member h2 {
  font-size: 30px;
}
.member h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #002e70;
  margin-top: 30px;
}
.member h2 p {
  margin-top: 30px;
}
.member h2 + p {
  margin-top: 20px;
}
.memberList {
	margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px 80px;
  margin-top: 60px;
}
.memberList li>a{
	font-size: 20px;
	color: #333333;
	font-weight: 700;
}
.memberList li p{
	font-size: 14px;
}
.memberList li .col{
	display: flex;
	margin-top: 10px;
}
.memberList li .col .btn{
	margin-top: 5px;
}
.memberList li .col .btn a{
  display: block;
  font-size: 13px;
  color: #fff;
	text-align: center;
  background: #002e70;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  font-weight: bold;
}
.memberList li .col .txt{
	width: calc(100% - 120px);
  padding-left: 20px;
}
.memberList .img{
	width: 120px;
}
.memberList .img img{
	width: 100%;
}
.memberList .tableList {
  max-width: 100%;
  border-bottom: 1px solid #ccc;
  margin-top: 0;
}
.memberList .tableList th,
.memberList .tableList td {
  padding: 5px 10px;
  font-size: 13px;
  border-top: 1px solid #ccc;
}
.memberList .tableList th{
	background-color: #f2f2f2;
	width: 80px;
  white-space: nowrap;
}
.memberList .tableList td{
  width: 100%;
}
.scheduleList p.note{
	text-align: right;
}
@media only screen and (max-width:767px) {
.member p {
font-size: 14px;
}
.member h2 {
font-size: 22px;
}
.member h2::after {
    width: 40px;
    height: 3px;
    margin-top: 20px;
  }
  .member h2 + * {
    margin-top: 30px !important;
  }
.memberList{
	display: block;
	width: 100%;
}
.memberList li{
  margin-top: 40px;
	width: 100%;
}
.memberList li .col{
	margin-top: 5px;
}
.memberList li:nth-child(2n),
.memberList li:nth-child(2n+1){
  margin-left: 0px;
  margin-right: 0px;
}
.memberList li>a{
	font-size: 18px;
}
.memberList li .col .txt{
	width: calc(100% - 100px);
  padding-left: 15px;
}
.memberList .img{
	width: 100px;
}
.memberList .tableList th,
.memberList .tableList td {
  padding: 4px 10px;
  font-size: 12px;
}
}


/* tableList
-----------------------------------------------*/
.tableList {
  max-width: 100%;
  margin-top: 20px;
  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;
  }
}


/* selectBtn
-----------------------------------------------*/
.selectBtn {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}
.selectBtn select {
  font-size: 16px;
  font-weight: bold;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  cursor: pointer;
  background: #f2f2f2;
  padding: 15px 40px 15px 20px;
  border-radius: 6px;
  min-width: 250px;
}
.selectBtn::before {
  display: block;
  content: '';
  width: 13px;
  height: 13px;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 2;
  transform: rotate(135deg) translateX(-13px);
  pointer-events: none;
}
.selectBtn select option {
  font-size: 12px !important;
}
@media only screen and (max-width:767px) {
  .selectBtn {
    display: block;
    margin-bottom: 10px;
  }
  .selectBtn select {
    width: 100%;
    font-size: 16px;
  }
  .selectBtn::before {
    width: 10px;
    height: 10px;
    right: 25px;
    transform: rotate(135deg) translateX(-10px);
  }
}


/* anchorLink
-----------------------------------------------*/
.anchorLink {
  margin-top: 40px;
}
.anchorLink li {
  font-size: 16px;
  font-weight: bold;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
.anchorLink li:not(:first-child) {
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
.anchorLink li {
  font-size: 14px;
}
}


/* imgFull
-----------------------------------------------*/
.imgFull {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width:767px) {
  .imgFull {
    margin-top: 30px;
  }
  .imgFull img {
    max-width: 220px;
  }
}


/* sponsors
-----------------------------------------------*/
#sponsors {
  padding: 100px 50px;
  background: #f2f2f2;
  margin-top: 120px;
}
#sponsors h2 {
  text-align: center;
}
#sponsors h2::after {
  display: none;
}
#sponsors h2 strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
}
#sponsors h2 span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}
#sponsors .inner {
  max-width: 1080px;
  margin: 0 auto;
}
#sponsors .box h3 {
  color: #999999;
  font-size: 16px;
  margin-bottom: 18px;
}
#sponsors .box {
  display: flex;
  margin-top: 80px;
  justify-content: space-between;
}
#sponsors .box .col:nth-child(1) {
  width: calc(100% - 300px);
}
#sponsors .box .col:nth-child(2) {
  width: 300px;
}
#sponsors .box1 {
  margin-top: 60px !important;
}
#sponsors .box ul {
  font-size: 0;
  max-width: 880px;
  margin: 0 auto;
}
#sponsors .box ul li {
  display: inline-block;
  vertical-align: top;
  margin: 10px 35px 0 0;
}
#sponsors .box ul li h3 {
  margin-bottom: 35px;
}
#sponsors .box ul li a {
  display: block;
}
#sponsors .box ul li a:hover {
  opacity: .7;
}
#sponsors .box ul li img {
  height: 50px;
  width: auto;
}
@media only screen and (max-width:767px) {
  #sponsors {
    padding: 60px 10px;
    margin-top: 40px;
  }
  #sponsors h2 strong {
    font-size: 36px;
  }
  #sponsors h2 span {
    margin-top: 8px;
  }
  #sponsors .box {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
  #sponsors .box1 {
    margin-top: 40px !important;
  }
  #sponsors .box .col:nth-child(1) {
    width: 100%;
  }
  #sponsors .box .col:nth-child(2) {
    width: 100%;
    margin-top: 40px;
  }
  #sponsors .box h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  #sponsors .box ul li {
    margin: 10px 15px 0;
  }
  #sponsors .box1 ul {
    margin-top: 20px;
  }
  #sponsors .box ul li img {
    height: 36px;
  }
}

/* processList
-----------------------------------------------*/
.processList li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
}
.processList table {
  margin-top: 5px;
}
.processList tr:last-child td {
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width:767px) {
}