/* Scss Document */
/*---------------------------------------------------
		kv
----------------------------------------------------*/
.kv {
  margin: 0 5.72%;
  padding: 70px 0 8.6%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .kv {
    margin: 0;
    padding: 4% 0 15%;
  }
}

.kv_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 600px;
  background: url("../img/exam_index.png") center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.kv_bg h2 {
  font-size: 4rem;
  letter-spacing: .2em;
}

.kv_bg ruby {
  font-size: 2.5rem;
  font-family: miller-banner, serif;
  font-style: italic;
  font-weight: lighter;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .kv_bg {
    background: url("../img/exam_index@2x.jpg") center center no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .kv_bg {
    height: 200px;
    background: url("../img/exam_shosai.jpg") center center no-repeat;
    background-size: cover;
  }
  .kv_bg h2 {
    font-size: 2.4rem;
  }
  .kv_bg ruby {
    font-size: 1.4rem;
  }
}

/*---------------------------------------------------
		contents
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .fixed_right {
    display: none;
  }
}

.contents .point {
  margin-bottom: 120px;
}

.contents .point .title {
  margin-bottom: 50px;
  text-align: center;
}

.contents .point .title h3 {
  position: relative;
  margin-bottom: .6em;
  padding-bottom: .2em;
  font-size: 4.4rem;
  font-family: miller-banner, serif;
  font-style: italic;
  font-weight: lighter;
}

.contents .point .title h3::after {
  content: '';
  width: 43px;
  height: 1px;
  background-color: #23234B;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.contents .point .title ruby {
  font-size: 1.7rem;
}

.contents .point .container {
  background: url("../img/exam_point.jpg") center bottom no-repeat;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .contents .point .container {
    background: url("../img/exam_point@2x.jpg") center bottom no-repeat;
    background-size: cover;
  }
}

.contents .point ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10% 0;
}

.contents .point ul li {
  width: 48%;
  margin-bottom: 4%;
  background-color: #fff;
  padding: 20px 40px 50px;
}

.contents .point ul li .number {
  color: #53C47F;
  font-size: 7rem;
  text-align: center;
  font-family: miller-banner, serif;
}

.contents .point ul li h4 {
  margin-bottom: 1em;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.4;
}

.contents .point ul li h4 span {
  display: block;
  margin-top: 1em;
  font-size: 50%;
}

.contents .point ul li .point_button {
  display: none;
}

.contents .point ul li p {
  min-height: 120px;
  margin-bottom: 2em;
  font-size: 1.4rem;
  line-height: 2;
}

.contents .point ul li:nth-child(5) h4, .contents .point ul li:nth-child(6) h4 {
  height: 120px;
}

@media screen and (max-width: 768px) {
  .contents .point {
    margin-bottom: 8%;
  }
  .contents .point .title {
    margin-bottom: 8%;
  }
  .contents .point .title h3 {
    font-size: 3rem;
  }
  .contents .point .title ruby {
    font-size: 1.4rem;
  }
  .contents .point .container {
    background: url("../img/exam_point.jpg") center bottom no-repeat;
    background-size: cover;
  }
  .contents .point ul {
    display: block;
    max-width: 80%;
    padding: 10% 0;
  }
  .contents .point ul li {
    width: 100%;
    margin-bottom: 4%;
    padding: 10px 20px 50px;
  }
  .contents .point ul li .number {
    font-size: 5rem;
  }
  .contents .point ul li h4 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .contents .point ul li .point_button {
    display: block;
    text-align: center;
    text-decoration: underline;
  }
  .contents .point ul li .point_button .open {
    display: none;
  }
  .contents .point ul li .point_box {
    display: none;
  }
  .contents .point ul li p {
    min-height: auto;
    font-size: 1.4rem;
  }
  .contents .point ul li:nth-child(6) h4 {
    line-height: 1.4;
  }
}

.contents .net_banner {
  text-indent: -9999px;
  height: 278px;
  max-width: 1000px;
  margin: 0 auto 80px;
  overflow: hidden;
  position: relative;
}

.contents .net_banner a::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/web_shutugan_bnr.jpg") center center no-repeat;
  background-size: cover;
  top: 0;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
  z-index: 1;
}

.contents .net_banner a:hover {
  opacity: 1;
}

.contents .net_banner a:hover::after {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .contents .net_banner a::after {
    background: url("../img/web_shutugan_bnr@2x.jpg") center center no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .contents .net_banner {
    max-width: 90%;
    height: auto;
    text-indent: 0;
    margin-bottom: 80px;
  }
  .contents .net_banner a::after {
    background: none;
  }
}

.contents .index {
  margin-bottom: 120px;
}

.contents .index .title {
  margin-bottom: 50px;
  text-align: center;
}

.contents .index .title h3 {
  position: relative;
  margin-bottom: .6em;
  padding-bottom: .2em;
  font-size: 4.4rem;
  font-family: miller-banner, serif;
  font-style: italic;
  font-weight: lighter;
}

.contents .index .title h3::after {
  content: '';
  width: 43px;
  height: 1px;
  background-color: #23234B;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.contents .index .title ruby {
  font-size: 1.7rem;
}

.contents .index ul {
  max-width: 1000px;
  margin: 0 auto;
}

.contents .index ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #DEF6E4;
  padding: 4%;
}

.contents .index ul li:not(:last-child) {
  margin-bottom: 55px;
}

.contents .index ul li .category {
  width: 30%;
  font-size: 2.8rem;
}

.contents .index ul li .button_box {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contents .index ul li .button_box .common_button {
  margin: 0;
  width: 48%;
  background-color: #fff;
}

.contents .index ul li .button_box .common_button:nth-child(3), .contents .index ul li .button_box .common_button:nth-child(4) {
  margin-top: 4%;
}

.contents .index ul li .button_box .common_button span {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .contents .index {
    margin-bottom: 20%;
  }
  .contents .index .title {
    margin-bottom: 8%;
  }
  .contents .index .title h3 {
    font-size: 3rem;
  }
  .contents .index .title ruby {
    font-size: 1.4rem;
  }
  .contents .index ul {
    max-width: 90%;
    margin: 0 auto;
  }
  .contents .index ul li {
    display: block;
    padding: 8%;
  }
  .contents .index ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .contents .index ul li .category {
    width: 100%;
    margin-bottom: 1em;
    font-size: 2.4rem;
    text-align: center;
  }
  .contents .index ul li .button_box {
    width: 100%;
    display: block;
  }
  .contents .index ul li .button_box .common_button {
    width: 100%;
  }
  .contents .index ul li .button_box .common_button:nth-child(2), .contents .index ul li .button_box .common_button:nth-child(3), .contents .index ul li .button_box .common_button:nth-child(4) {
    margin-top: 4%;
  }
}

.contents .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 160px;
}

.contents .other li {
  position: relative;
  width: 33.3%;
  height: 150px;
  overflow: hidden;
}

.contents .other li::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
  z-index: 1;
}

.contents .other li:hover::after {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.contents .other li:nth-child(-n+3) {
  margin-bottom: .1%;
}

.contents .other li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(68, 125, 191, 0.5);
  color: #fff;
  font-size: 2rem;
  z-index: 2;
}

.contents .other li:nth-child(1)::after {
  background: url("../img/exam_other01.jpg") center center no-repeat;
  background-size: cover;
}

.contents .other li:nth-child(2)::after {
  background: url("../img/exam_other02.jpg") center center no-repeat;
  background-size: cover;
}

.contents .other li:nth-child(3)::after {
  background: url("../img/exam_other03.jpg") center center no-repeat;
  background-size: cover;
}

.contents .other li:nth-child(4)::after {
  background: url("../img/exam_other04.jpg") center center no-repeat;
  background-size: cover;
}

.contents .other li:nth-child(5)::after {
  background: url("../img/exam_other05.jpg") center center no-repeat;
  background-size: cover;
}

.contents .other li:nth-child(6)::after {
  background: url("../img/exam_other06.jpg") center center no-repeat;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .contents .other li:nth-child(1)::after {
    background: url("../img/exam_other01@2x.jpg") center center no-repeat;
    background-size: cover;
    margin-bottom: .1%;
  }
  .contents .other li:nth-child(2)::after {
    background: url("../img/exam_other02@2x.jpg") center center no-repeat;
    background-size: cover;
    margin-bottom: .1%;
  }
  .contents .other li:nth-child(3)::after {
    background: url("../img/exam_other03@2x.jpg") center center no-repeat;
    background-size: cover;
    margin-bottom: .1%;
  }
  .contents .other li:nth-child(4)::after {
    background: url("../img/exam_other04@2x.jpg") center center no-repeat;
    background-size: cover;
  }
  .contents .other li:nth-child(5)::after {
    background: url("../img/exam_other05@2x.jpg") center center no-repeat;
    background-size: cover;
  }
  .contents .other li:nth-child(6)::after {
    background: url("../img/exam_other06@2x.jpg") center center no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .contents .other {
    display: block;
    margin-bottom: 20%;
  }
  .contents .other li {
    width: 100%;
    height: 125px;
  }
  .contents .other li:not(:last-child) {
    margin-bottom: .3%;
  }
  .contents .other li:hover::after {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .contents .other li a {
    font-size: 1.6rem;
  }
}

.contents .schedule {
  width: 70%;
  margin: 0 auto 10%;
}

.contents .schedule .title {
  margin-bottom: 50px;
  text-align: center;
}

.contents .schedule .title h2,
.contents .schedule .title h3 {
  position: relative;
  margin-bottom: .6em;
  padding-bottom: .2em;
  font-size: 4.4rem;
  font-family: miller-banner, serif;
  font-style: italic;
  font-weight: lighter;
}

.contents .schedule .title h2::after,
.contents .schedule .title h3::after {
  content: '';
  width: 43px;
  height: 1px;
  background-color: #23234B;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.contents .schedule .title ruby {
  font-size: 1.7rem;
}

.contents .schedule .common_button {
  max-width: 900px;
  width: 90%;
}

.contents .schedule .exam_schedule_container {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.contents .schedule .exam_schedule_container.on::before {
  content: none;
  background: url(../../common/img/swipe.svg) 0 0 no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: .9;
  -webkit-animation: swipe 3s ease 0s forwards;
  animation: swipe 3s ease 0s forwards;
}

@-webkit-keyframes swipe {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes swipe {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

.contents .schedule .exam_schedule_container .schedule_img {
  width: calc(4954px * .5);
}

.contents .schedule .exam_schedule_container .exam_schedule_link {
  position: absolute;
  top: 10%;
  width: 130px;
  height: 50px;
  font-size: 0;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link01 {
  left: 181px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link02 {
  left: 317px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link03 {
  left: 545px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link04 {
  left: 682px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link05 {
  left: 834px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link06 {
  left: 1059px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link07 {
  left: 1194px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link08 {
  left: 1438px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link09 {
  left: 1602px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link10 {
  left: 1769px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link11 {
  left: 1905px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link12 {
  left: 2042px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link13 {
  left: 2199px;
}

.contents .schedule .exam_schedule_container .exam_schedule_link.link14 {
  left: 2334px;
}

.contents .schedule .exam_schedule_info {
  margin: 80px auto 0;
}

.contents .schedule .exam_schedule_info.place {
  margin-top: 100px;
}

.contents .schedule .exam_schedule_info h3 {
  margin-bottom: 40px;
  padding: 0.2em 0;
  background: #53C47F;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}

.contents .schedule .exam_schedule_info p {
  font-size: 1.6rem;
  line-height: 1.7;
}

.contents .schedule .exam_schedule_info p .green_bg_text,
.contents .schedule .exam_schedule_info p .blue_bg_text {
  padding: 0 0.5em;
  margin: 0 0.25em;
}

.contents .schedule .exam_schedule_info p .green_bg_text {
  background-color: #beebbb;
}

.contents .schedule .exam_schedule_info p .blue_bg_text {
  background-color: #a5cdf4;
}

.contents .schedule .small_text {
  font-size: 1.3rem;
  letter-spacing: .075em;
}

@media screen and (max-width: 768px) {
  .contents .schedule {
    width: 90%;
    margin: 20px auto 100px;
  }
  .contents .schedule .title {
    margin-bottom: 20px;
  }
  .contents .schedule .title h2 {
    font-size: 3rem;
  }
  .contents .schedule .title ruby {
    font-size: 1.4rem;
  }
  .contents .schedule .exam_schedule_container .teiin_img {
    width: calc(2001px * .5);
  }
  .contents .schedule .exam_schedule_container.on::before {
    content: "";
  }
  .contents .schedule .exam_schedule_info {
    margin: 80px auto 0;
  }
  .contents .schedule .exam_schedule_info.place {
    margin-top: 100px;
  }
}

/*---------------------------------------------------
		kv
----------------------------------------------------*/
.kv {
  margin: 0 5.72%;
  padding: 70px 0 8.6%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .kv {
    margin: 0;
    padding: 6.47% 0;
  }
}

/*---------------------------------------------------
		open_01
----------------------------------------------------*/
.kv_open01 {
  width: 100%;
  height: 300px;
  background: url("../img/exam_shosai.jpg") center center no-repeat;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .kv_open01 {
    width: 100%;
    height: 300px;
    background: url("../img/exam_shosai@2x.jpg") center center no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .kv_open01 {
    height: 100px;
    background: url("../img/exam_shosai.jpg") center center no-repeat;
    background-size: cover;
  }
}
/*# sourceMappingURL=index.css.map */