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


/* container
-----------------------------------------------*/
#main {
  max-width: 1050px;
}
#container {
  display: block;
  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;
  }
}

/* section
-----------------------------------------------*/
section:not(:first-child) {
  margin-top: 120px;
}
section a {
  color: #002e70;
  text-decoration: underline;
}
section a:hover {
  text-decoration: none;
  opacity: 1;
}
section p {
  font-size: 16px;
	line-height: 2em;
}
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 h2:not(:first-child),
section h3:not(:first-child),
section h4:not(:first-child) {
  margin-top: 120px;
}
section .btnbox {
  display: flex;
	justify-content: center;
	margin: 40px auto 0;
}
section .btn {
	margin: 0 20px;
}
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;
}
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 .eps::after {
  background: url("/image/common/icon_eps.svg")no-repeat;
}
@media only screen and (max-width:767px) {
  section:not(:first-child) {
    margin-top: 40px;
    padding-top: 40px;
  }
  section p {
    font-size: 14px;
  }
  section h2:not(:first-child),
  section h3:not(:first-child),
  section h4:not(:first-child) {
    margin-top: 60px;
  }
  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 .btnbox {
    text-align: center;
    margin-top: 25px;
	  flex-direction: column;
  }
  section .btn {
    text-align: center;
  }
  section .btn:nth-child(2) {
    margin-top: 25px;
  }
}



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

/* bookBox
-----------------------------------------------*/
.bookBox .col {
  display: flex;
  position: relative;
  background: #f2f2f2;
  padding: 40px;
}
.bookBox .col:not(:first-child) {
  margin-top: 5px;
}
.bookBox .col .img {
  width: 200px;
  text-align: center;
}
.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;
  }
}



