@charset "UTF-8";

/* 下層ページ　- 1カラム用
=======================================*/

/* base
------------------------------------*/
article {
  width: 100%;
}

article * {
  box-sizing: border-box;
}

article img {
  width: 100%;
  display: block;
}

article div.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 0;
}

article ul.pankuzu {
  width: 980px;
  margin: 0 auto;
}

.border {
  background: repeating-linear-gradient(
    45deg,
    #64c39d 0,
    #64c39d 1px,
    #fff 0,
    #fff 6px
  );
  width: 100%;
}

.mincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}

article div.wrapper div.content {
  padding-top: 35px;
  width: 100%;
}

div.content .inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.pcc_none {
  display: none !important;
}
.spp_none {
  display: block !important;
}
@media all and (max-width: 767px) {
  .pcc_none {
    display: none !important;
/*     display: block !important; */
  }

  .spp_none {
    display: none !important;
  }
}

@media all and (max-width: 768px) {
  article ul.pankuzu {
    width: 94%;
    margin: 0 auto;
  }
  article div.wrapper div.content {
    width: 100%;
  }
  div.content .inner {
    width: 85%;
  }
}
@media all and (max-width: 480px) {
  article div.wrapper div.content {
    padding-top: 5px;
  }
  div.content .inner {
    width: 90%;
  }
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.no_link {
  pointer-events: none;
}
/* font
------------------------------------*/
@font-face {
  font-family: "Antro_Vectra_Bolder";
  src: url("../fonts/Antro_Vectra_Bolder.woff2") format("woff2"),
    url("../fonts/Antro_Vectra_Bolder.woff") format("woff"),
    url("../fonts/Antro_Vectra_Bolder.otf") format("opentype");
}

.sec_ttl {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.sec_ttl .head {
  font-family: "Antro_Vectra_Bolder";
  transform: rotate(-5deg) translateY(10%);
  font-size: 85px;
  text-align: center;
  color: #005787;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.sec_ttl.active .head {
  transform: translateY(0) rotate(-5deg);
  opacity: 1;
}

.sec_ttl .under_line .path01,
.sec_ttl .under_line .path02 {
  stroke-width: 0;
}

.sec_ttl.active .under_line .path01 {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw 1s linear 0.5s both;
  stroke-width: 1;
}
.sec_ttl.active .under_line .path02 {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw 1s linear 0.8s both;
  stroke-width: 1;
}
@keyframes draw {
  to {
    stroke-dashoffset: 1500;
  }
}

@media all and (-ms-high-contrast: none) {
  .sec_ttl .under_line .path01,
  .sec_ttl .under_line .path02 {
    stroke-width: 1;
    stroke-dashoffset: 1500;
  }
  .sec_ttl.active .under_line .path01,
  .sec_ttl.active .under_line .path02 {
    animation: none;
    stroke-width: 1;
    stroke-dashoffset: 1500;
  }
}

@media all and (max-width: 1300px) {
}
@media all and (max-width: 768px) {
  .sec_ttl {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  .sec_ttl {
    margin-bottom: 15px;
  }
  .sec_ttl .head {
    font-size: 52px;
    line-height: 0.4;
  }
  .sec_ttl .under_line {
    position: relative;
    display: block;
    width: 40%;
    margin: 0 auto;
    height: 0;
    padding-top: 3%;
    overflow: hidden;
  }
  .sec_ttl .under_line svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: auto;
  }
  .sec_ttl.active .under_line .path01 {
    stroke-width: 2;
  }
  .sec_ttl.active .under_line .path02 {
    stroke-width: 2;
  }
}
/* main vidual
------------------------------------*/
article * {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
article .content {
  position: relative;
}
article .content img {
  width: 100%;
  max-width: 100%;
}
article .content::before {
  content: "";
  display: block;
  width: 800%;
  height: 800%;
  transform: rotate(-30deg);
  background: url("../img/jukensei/bg_img.png") repeat 50% 50% / auto;
  position: absolute;
  top: -100%;
  right: -240%;
  bottom: -100%;
  left: -240%;
  margin: auto;
  z-index: -1;
  opacity: 0.07;
}

article div.content .inner {
  width: 90%;
  margin: 0 auto;
}

/* fv
------------------------------------*/
.fv {
  width: 100%;
  margin: 0 auto 120px;
  position: relative;
}
article div.content .fv .inner {
  max-width: 1300px;
  position: relative;
}
.fv .inner::before {
  content: "";
  display: block;
  position: absolute;
  right: -7%;
  bottom: -80px;
  left: -7%;
  margin: auto;
  width: 114%;
  height: calc(100% - 100px);
  background: url("../img/jukensei/bg_dot.png") repeat 50% 50% / auto;
  background-color: rgba(219, 208, 169, 0.3);
}
.fv .v-wr {
  position: relative;
  width: 100%;
  border: 10px solid #fff;
/*
  overflow: hidden;
  height: 0;
  padding-top: 55.35%;
*/
}
.fv .v-wr iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}
.fv .inner p[class*="abs"] {
  position: absolute;
  font-size: 26px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  position: absolute;
  bottom: 0;
  margin: auto;
  z-index: 2;
  line-height: 1.8;
  letter-spacing: 0.1em;
  width: 72px;
}
/* .fv .inner p[class*="abs"] .bgw {
  background-color: #fff;
  padding: 0.5em 0;
}
.fv .inner p[class*="abs"] .ltsp {
  letter-spacing: -0.05em;
} */
.fv .inner p.abs01 {
  right: 8%;
  bottom: -13%;
}
.fv .inner p.abs02 {
  left: 11%;
  bottom: -29%;
}
.fv .page_ttl {
  position: relative;
  width: 100%;
  bottom: -55px;
}

.fv .page_ttl .head {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  position: relative;
  color: #c01f31;
  line-height: 1;
  margin-bottom: 20px;

  letter-spacing: 0.1em;
}
.fv .page_ttl .head span {
  position: relative;
  padding: 0 0.5em;
}
.fv .page_ttl .head span::before,
.fv .page_ttl .head span::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../img/jukensei/accent.png") no-repeat 50% 50% / 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.fv .page_ttl .head span::before {
  left: -30px;
}
.fv .page_ttl .head span::after {
  right: -30px;
}
.fv .page_ttl p {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .fv .inner p.abs01 {
    right: 5%;
    bottom: -20%;
  }
  .fv .inner p.abs02 {
    left: 4%;
    bottom: -43%;
  }
}
@media all and (max-width: 768px) {
  .fv .page_ttl .head {
    font-size: 45px;
  }
  .fv .page_ttl p {
    font-size: 20px;
  }
  .fv .inner p.abs01 {
    right: 0%;
    bottom: -20%;
  }
  .fv .inner p.abs02 {
    left: 2%;
    bottom: -50%;
  }
}
@media all and (max-width: 480px) {
  article div.content .fv .inner {
    width: 100%;
  }
  .fv .js-video {
    width: 100%;
    position: relative;
  }
  .fv .v-wr,
  .fv .v-wr iframe {
/*     display: none; */
  }

  .fv .page_ttl {
    bottom: -65px;
  }
  .fv .page_ttl .head {
    font-size: 28px;
  }
  .fv .page_ttl .head span {
    padding: 0 0.2em;
  }
  .fv .page_ttl .head span::before,
  .fv .page_ttl .head span::after {
    width: 15px;
    height: 15px;
  }
  .fv .page_ttl .head span::before {
    left: -20px;
  }
  .fv .page_ttl .head span::after {
    right: -20px;
  }
  .fv .page_ttl p {
    font-size: 16px;
  }
  .fv .v-wr {
/*     display: none; */
  }

  .fv .inner p[class*="abs"] {
    width: 50px;
  }
  .fv .inner p.abs01 {
    right: 10%;
    bottom: -2%;
  }
  .fv .inner p.abs02 {
    left: 7%;
    bottom: -17%;
  }
}

/* video modal
----------------------------------------------- */

.modal-video {
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  transition: 0.3s ease-in;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 200;
}

.modal-video.show {
  display: flex;
}

.modal-video .inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 80vh;
  margin: 0 auto;
  text-align: center;
}

.modal-video .if-wr {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 55%;
  overflow: hidden;
}
.modal-video .if-wr iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

@media all and (-ms-high-contrast: none) {
  .modal-video .inner {
    margin: 0;
  }
}

.modal-video .inner .close-btn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -60px;
  right: 15px;
}

.modal-video .inner .close-btn span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-video .inner .close-btn span::before,
.modal-video .inner .close-btn span::after {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
}

.modal-video .inner .close-btn span::before {
  transform: rotate(-45deg);
  left: 20px;
}

.modal-video .inner .close-btn span::after {
  transform: rotate(45deg);
  right: 20px;
}

@media all and (max-width: 768px) {
  .modal-video {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .modal-video .inner .close-btn {
    width: 45px;
    height: 45px;
    top: -55px;
  }
  .modal-video .inner .close-btn span::before,
  .modal-video .inner .close-btn span::after {
    width: 5px;
  }
}

/* menu
------------------------------------*/
.menu {
  width: 100%;
  margin: 0 auto 80px;
}
.menu a:hover img {
  opacity: 1;
}

.menu .sec_ttl {
  margin-bottom: 30px;
}

article div.content .menu ul.inner {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.menu ul {
  transform: translateY(10%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.menu ul.active {
  transform: translateY(0);
  opacity: 1;
}
.menu ul li {
  width: calc(100% / 3);
}
@media all and (-ms-high-contrast: none) {
  .menu ul li {
    width: calc(99% / 3);
  }
}
.menu ul li a {
  display: block;
  padding: 30px;
}
.menu ul li a figure {
  position: relative;
  width: 40%;
  margin: 0 auto 15px;
  height: 0;
  padding-top: 30%;
  overflow: hidden;
}
.menu ul li a figure img,
.menu ul li a figure svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 90%;
  height: auto;
  transition: 0.3s ease-in-out;
}
.menu ul li a figure svg * {
  transition: 0.3s ease-in-out;
}
.menu ul li a:hover figure img,
.menu ul li a:hover figure svg {
  transition: 0.3s ease-in-out;
}
.menu ul li a p {
  color: #4d4d4d;
  font-size: 20px;
  text-align: center;
}
.menu ul li:nth-of-type(odd) {
  background-color: #c8e6ff;
  position: relative;
  overflow: hidden;
}
.menu ul li:nth-of-type(odd)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0.15;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -30deg,
    #fff,
    #fff 3px,
    transparent 3px,
    transparent 6px
  );
  pointer-events: none;
}
.menu ul li:nth-of-type(even) {
  background-color: #fff589;
}
@media all and (max-width: 768px) {
  .menu ul li a p {
    font-size: 16px;
  }
}
@media all and (max-width: 480px) {
  .menu .sec_ttl {
    margin-bottom: 15px;
  }

  article div.content .menu ul.inner {
    width: 100%;
  }
  .menu ul li a {
    padding: 15px 0;
  }
  .menu ul li a p {
    font-size: 14px;
    line-height: 1.4;
  }
  .menu ul li a figure {
    position: relative;
    width: 70%;
    margin: 0 auto 10px;
    padding-top: 54%;
  }
  .menu ul li.menu02 a {
    padding: 20px 0 15px;
  }
  .menu ul li.menu02 a figure {
    margin-bottom: 10px;
    width: 60%;
    padding-top: 39%;
  }
  .menu ul li.menu02 a p {
    line-height: 1.2;
  }
}

/* animation
------------------------------------*/
/* menu01 */
.menu ul li.menu01 a .move {
  transform-origin: bottom left;
}
.menu ul li.menu01 a .move02 {
  transform-origin: bottom right;
}
.menu ul li.menu01 a:hover .move {
  transform: rotate(-5deg);
}
.menu ul li.menu01 a:hover .move02 {
  transform: rotate(8deg);
}
/* menu02 */
.menu ul li.menu02 a:hover img {
  transform: rotate(360deg);
  transform-origin: center;
}
/* menu03 */
.menu ul li.menu03 a .before {
  opacity: 1;
}
.menu ul li.menu03 a .after {
  opacity: 0;
}
.menu ul li.menu03 a:hover .before {
  opacity: 0;
}
.menu ul li.menu03 a:hover .after {
  opacity: 1;
}
/* menu04 */

.menu ul li.menu04 a:hover .fill-change {
  fill: #c01f31;
}
.menu ul li.menu04 a:hover .fill-change02 {
  fill: #fff;
}
.menu ul li.menu04 .second * {
  transition-delay: 0.2s;
}
.menu ul li.menu04 .third * {
  transition-delay: 0.4s;
}
.menu ul li.menu04 .forth * {
  transition-delay: 0.6s;
}
.menu ul li.menu04 a:hover .second *,
.menu ul li.menu04 a:hover .third *,
.menu ul li.menu04 a:hover .forth * {
  transition-delay: 0;
}
/* menu05 */
.menu ul li.menu05 a .before {
  opacity: 1;
}
.menu ul li.menu05 a .after {
  opacity: 0;
}
.menu ul li.menu05 a:hover .before {
  opacity: 0;
}
.menu ul li.menu05 a:hover .after {
  opacity: 1;
}
/* menu06 */
.menu ul li.menu06 a .heart {
  opacity: 0;
  transform-origin: bottom center;
}
.menu ul li.menu06 a:hover .heart {
  animation: pon 0.5s ease-in-out both;
}
@keyframes pon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media all and (max-width: 768px) {
  .menu ul li.menu06 a:hover .heart {
    animation: none;
  }
  .menu ul li.menu06 a .heart {
    opacity: 1;
  }
}

/* menu07 */
.menu ul li.menu07 a .before {
  opacity: 1;
}
.menu ul li.menu07 a .after {
  opacity: 0;
}
.menu ul li.menu07 a:hover .before {
  opacity: 0;
}
.menu ul li.menu07 a:hover .after {
  opacity: 1;
}
@media all and (max-width: 768px) {
  .menu ul li.menu07 a .before {
    opacity: 0;
  }
  .menu ul li.menu07 a .after {
    opacity: 1;
  }
}
/* menu08 */
.menu ul li.menu08 a .before {
  opacity: 1;
}
.menu ul li.menu08 a .after {
  opacity: 0;
}
.menu ul li.menu08 a:hover .before {
  opacity: 0;
}
.menu ul li.menu08 a:hover .after {
  opacity: 1;
}
@media all and (max-width: 768px) {
  .menu ul li.menu08 a .before {
    opacity: 0;
  }
  .menu ul li.menu08 a .after {
    opacity: 1;
  }
}
/* menu09 */
.menu ul li.menu09 a:hover img {
  transform: rotate3d(0, 1, 0, 360deg);
}
/* couese
------------------------------------*/
.course {
  width: 100%;
  margin: 0 auto 140px;
}
article div.content .course ul.inner {
  max-width: 1600px;
}

.course ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course ul li {
  width: calc((100% - 120px) / 5);
  transform: translateY(10%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.course ul li.active {
  transform: translateY(0);
  opacity: 1;
}
.course ul li a {
  display: block;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.course ul li a .gakka_detail {
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  margin: auto;
  width: 80%;
  background-color: #fff;
  padding: 15px 0;
}
.course ul li a .gakka_detail p {
  text-align: center;
}
.course ul li a .gakka_detail p:not(.gakka_nam) {
  font-size: 16px;
  margin-bottom: 5px;
}
.course ul li a .gakka_detail p.gakka_nam {
  font-size: 18px;
  letter-spacing: 0.12em;
}

@media all and (max-width: 1200px) {
  .course ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .course ul li {
    width: calc((100% - 60px) / 3);
    margin-bottom: 80px;
    margin-right: 30px;
  }
  .course ul li:nth-of-type(3),
  .course ul li:last-of-type {
    margin-right: 0;
  }
}
@media all and (max-width: 768px) {
  .course {
    margin: 0 auto 50px;
  }
  .course ul li a .gakka_detail {
    width: 85%;
    padding: 10px 0;
    bottom: -40px;
  }
  .course ul li a .gakka_detail p:not(.gakka_nam) {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .course ul li a .gakka_detail p.gakka_nam {
    font-size: 18px;
  }
}
@media all and (max-width: 480px) {
  article div.content .course ul.inner {
    width: 80%;
  }
  .course ul {
    display: block;
  }
  .course ul li {
    width: 100%;
    margin: 0 auto 100px;
  }
  .course ul li a .gakka_detail {
    position: absolute;
    right: 0;
    bottom: -50px;
    left: 0;
    margin: auto;
    width: 80%;
    background-color: #fff;
    padding: 15px 0;
  }
  .course ul li a .gakka_detail p:not(.gakka_nam) {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .course ul li a .gakka_detail p.gakka_nam {
    font-size: 20px;
  }
}

/* each */
.course ul li:nth-of-type(1) a .gakka_detail {
  border: 1px solid #5c8dcb;
}
.course ul li:nth-of-type(1) a .gakka_nam {
  color: #5c8dcb;
}
.course ul li:nth-of-type(2) a .gakka_detail {
  border: 1px solid #daaaa1;
}
.course ul li:nth-of-type(2) a .gakka_nam {
  color: #daaaa1;
}
.course ul li:nth-of-type(3) a .gakka_detail {
  border: 1px solid #c2baa2;
}
.course ul li:nth-of-type(3) a .gakka_nam {
  color: #c2baa2;
}
.course ul li:nth-of-type(4) a .gakka_detail {
  border: 1px solid #82bd94;
}
.course ul li:nth-of-type(4) a .gakka_nam {
  color: #82bd94;
}
.course ul li:nth-of-type(5) a .gakka_detail {
  border: 1px solid #f0d05c;
}
.course ul li:nth-of-type(5) a .gakka_nam {
  color: #f0d05c;
}
/* news
------------------------------------*/
.news {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 140px;
  padding-top: 55px;
  /* background-color: rgba(227, 221, 198, 0.7); */
}

.news .sec_ttl {
  margin-bottom: 0;
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}

.news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(242, 238, 224, 0.7);
  z-index: -1;
  mix-blend-mode: multiply;
}
article div.content .news .inner {
  max-width: 1300px;
  background-color: #fff;
  position: relative;
  padding: 85px 0 40px;
}
.news .inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f2eee0;
  position: absolute;
  right: -10px;
  bottom: -10px;
  margin: auto;
  mix-blend-mode: multiply;
  z-index: -1;
}

.news .inner ul {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.news .inner ul li {
  border-bottom: 1px dashed #c1c1c1;
  width: 100%;
}

.news .inner ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 60px;
  transition: 0.3s ease-in-out;
}
.news .inner ul li a:hover {
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
.news .inner ul li a time {
  width: auto;
  padding: 0 40px;
  text-align: center;
  display: block;
}
.news .more_link {
  width: 100%;
}
.news .more_link a {
  display: block;
  width: 320px;
  margin: 0 auto;
  background-color: #005787;
  border: 1px solid #005787;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 1em 0;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  transition: 0.3s ease-in-out;
}
.news .more_link a:hover {
  background-color: #fff;
  color: #005787;
  transition: 0.3s ease-in-out;
}

@media all and (max-width: 768px) {
  .news {
    width: 100%;
    padding-bottom: 100px;
    padding-top: 65px;
  }
  .news .sec_ttl {
    top: 60px;
  }
  .news .inner ul li a {
    padding: 10px 0;
  }
  .news .inner ul li a:hover {
    opacity: 1;
  }
}
@media all and (max-width: 480px) {
  .news {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  article div.content .news .inner {
    padding: 40px 0 30px;
  }
  .news .inner::before {
    display: none;
  }
  .news .sec_ttl {
    top: 45px;
  }
  .news .inner ul {
    margin: 0 auto 30px;
    width: 85%;
  }
  .news .inner ul li a {
    display: block;
  }
  .news .inner ul li a time {
    width: 100%;
    padding: 0;
    text-align: left;
    display: block;
  }
  .news .more_link a {
    width: 200px;
    padding: 0.7em 0;
    font-size: 14px;
  }
  .news .inner ul li a time,
  .news .inner ul li a p {
    font-size: 14px;
  }
}

/* calendar
------------------------------------*/

.calendar {
  width: 100%;
  background: url("../img/jukensei/bg_calendar.png") no-repeat 50% 50% / 100%
    auto;
  background-color: #ccd8ed;
  padding: 100px 0 140px;
}

.calendar .sec_ttl .head {
  color: #fff;
}

.calendar .inner {
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.calendar .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media all and (max-width: 1300px) {
}
@media all and (max-width: 768px) {
  .calendar {
    padding: 100px 0 220px;
  }
  .calendar .sec_ttl {
    margin-bottom: 30px;
  }
  .calendar .inner {
    padding-top: 70%;
  }
}
@media all and (max-width: 480px) {
  .calendar {
    padding: 50px 0 50px;
    background: url("../img/jukensei/bg_calendar_sp.png") no-repeat 50% 50% /
      cover;
    background-color: #ccd8ed;
  }
  .calendar .sec_ttl {
    margin-bottom: 15px;
  }
  .calendar .inner {
    padding-top: 140%;
  }
}

.pc_only { display: block; }
.sp_only { display: none; }
@media all and (max-width: 480px) {
  .pc_only { display: none; }
  .sp_only { display: block; }
}