@charset "UTF-8";
* {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  background: none;
  height: 7rem;
  transition: 0.3s;
}
.header.active {
  background: rgba(0, 0, 0, 0.65);
}
.header.active .header__wrapper {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .header.active {
    height: 10rem;
  }
  .header.active .header__wrapper {
    padding: 0 5rem;
  }
}
.header.active .gnav__list li.accordion ul {
  top: 100%;
}
.header__wrapper {
  display: flex;
  align-items: center;
  padding: 4rem 5rem 0;
  width: 100%;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    padding: 5rem;
  }
}
.header__logo {
  width: 22.2rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 29rem;
  }
}
.header__logo a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .header__btn {
    width: 5rem;
  }
  .header__btn.active .bar {
    background: #333333;
  }
  .header__btn.active .bar:first-of-type {
    transform: rotate(45deg);
    top: 50%;
  }
  .header__btn.active .bar:last-of-type {
    transform: rotate(-45deg);
    top: 50%;
    bottom: auto;
  }
  .header__btn.active .mark {
    height: 3.6rem;
  }
  .header__btn .mark {
    width: 100%;
    height: 2.5rem;
  }
  .header__btn .bar:nth-child(2) {
    top: 1.2rem;
  }
}
.header .gnav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    transform: translateY(-100%);
    z-index: 2;
    background: #f2f2f2;
    display: flex;
    align-items: flex-start;
    padding-top: 20rem;
    padding: 20rem 4rem 6rem;
  }
  .header .gnav.active {
    transform: translateX(0);
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__list {
    display: flex;
    align-items: stretch;
    border-right: 1px solid #fff;
    padding-right: 2rem;
    margin-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    width: 50%;
  }
  .header .gnav__list.wide {
    width: 57%;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__list li:not(:last-of-type) {
    margin-right: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li:not(:last-of-type) {
    margin-bottom: 8rem;
  }
}
.header .gnav__list li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.7rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li a {
    color: #333;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__list li.accordion:hover > a::after {
    transform: rotate(0);
  }
  .header .gnav__list li.accordion:hover ul {
    opacity: 1;
    visibility: visible;
  }
}
.header .gnav__list li.accordion > a {
  position: relative;
  padding-right: 2.5rem;
  padding: 1.5rem 2.5rem 1.5rem 0;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li.accordion > a {
    padding-right: 4rem;
  }
  .header .gnav__list li.accordion > a.active::after {
    transform: rotate(0deg);
    top: 0.1rem;
  }
}
.header .gnav__list li.accordion > a::before, .header .gnav__list li.accordion > a::after {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li.accordion > a::before, .header .gnav__list li.accordion > a::after {
    width: 2rem;
    height: 0.2rem;
    background: #333;
    margin-left: 1rem;
  }
}
.header .gnav__list li.accordion > a::after {
  transform: rotate(90deg);
  top: 0.1rem;
}
.header .gnav__list li.accordion ul {
  padding: 1rem 0;
}
@media print, screen and (min-width: 768px) {
  .header .gnav__list li.accordion ul {
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    position: absolute;
    top: 120%;
    background: rgba(0, 51, 153, 0.85);
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li.accordion ul {
    padding: 5rem 0 0;
  }
}
.header .gnav__list li.accordion ul.course-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li.accordion ul.course-menu {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 0 0;
  }
}
.header .gnav__list li.accordion ul li {
  margin-right: 0 !important;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li.accordion ul li:not(:last-of-type) {
    margin-bottom: 5rem;
  }
}
.header .gnav__list li.accordion ul li a {
  color: #fff;
  padding: 1rem 2.5rem 1rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list li.accordion ul li a {
    color: #333;
    font-size: 2.6rem;
    padding: 0;
  }
  .header .gnav__list li.accordion ul li a::before {
    content: "－";
  }
}
.header .gnav__list li.accordion ul li a::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
}
.header .gnav .other-menu {
  display: flex;
  align-items: center;
}
.header .gnav .other-menu li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.header .gnav .other-menu li a::before {
  content: "";
  display: block;
  margin-right: 0.85rem;
}
.header .gnav .other-menu li.weather {
  margin-right: 2rem;
}
.header .gnav .other-menu li.weather a::before {
  background: url("../img/common/weather-icon.svg") no-repeat center/100%;
  width: 2.2rem;
  height: 2.2rem;
}
.header .gnav .other-menu li.car a::before {
  background: url("../img/common/car-icon.svg") no-repeat center/100%;
  width: 2.6rem;
  height: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav .menu-logo {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 29rem;
  }
  .header .gnav .toggle-menu {
    display: none;
  }
}

.footer {
  background: #fff url("../img/common/footer-bg.png") no-repeat top center/cover;
  padding: 6.6rem 0 0;
}
@media only screen and (max-width: 767px) {
  .footer {
    background: #fff url("../img/common/sp/footer-bg.png") no-repeat top center/cover;
    padding: 10rem 0 0;
  }
}
.footer .inner {
  width: 170rem;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0 2rem 0 5rem;
}
@media only screen and (max-width: 767px) {
  .footer .inner {
    padding: 0 5rem;
  }
}
.footer--logo {
  width: 22.1rem;
}
@media screen and (max-width: 1600px) {
  .footer--logo {
    width: 18rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer--logo {
    width: 49.8rem;
    margin: 0 auto 6rem;
  }
}
.footer--logo a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .footer--logo a img {
    width: 100%;
  }
}
.footer nav {
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .footer nav {
    width: 125rem;
  }
}
.footer nav ul {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer nav ul {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .footer nav ul li {
    width: 50%;
    margin-bottom: 4.9rem;
  }
}
.footer nav ul li a {
  display: block;
  padding: 0 0 0 1.5rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer nav ul li a {
    font-size: 2.7rem;
    padding: 0;
    letter-spacing: -0.06em;
  }
}
.footer .page-top {
  width: 100%;
  margin: 2.7rem auto 2rem;
}
@media only screen and (max-width: 767px) {
  .footer .page-top {
    margin: 0 auto 5rem;
  }
}
.footer .page-top a {
  display: block;
  width: 3rem;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 767px) {
  .footer .page-top a {
    width: 4.5rem;
    margin-bottom: 5rem;
  }
  .footer .page-top a img {
    width: 100%;
  }
}
.footer .copyright {
  background: rgba(51, 51, 51, 0.35);
  line-height: 6.8rem;
  padding-bottom: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .footer .copyright {
    line-height: 11.2rem;
  }
}
.footer .copyright small {
  display: block;
  color: #fff;
  text-align: center;
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 767px) {
  .footer .copyright small {
    font-size: 2.1rem;
    letter-spacing: 0.06em;
  }
}

.reserve-btn {
  position: fixed;
  width: 13rem;
  height: 13rem;
  z-index: 2;
  border-radius: 13rem;
  background: #fff;
  border: 3px solid #003399;
}
@media print, screen and (min-width: 768px) {
  .reserve-btn {
    bottom: 5rem;
    right: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-btn {
    width: 16.2rem;
    height: 16.2rem;
    right: 4rem;
    bottom: 4rem;
  }
}
.reserve-btn a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  width: 100%;
  height: 100%;
  border-radius: 7rem;
  border: 2px solid #fff;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .reserve-btn a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-btn a {
    border-radius: 15rem;
    font-size: 3rem;
    text-align: center;
    display: flex;
    align-items: flex-end;
  }
}
.reserve-btn a:hover {
  opacity: 1;
}
.reserve-btn a:hover::before {
  background: url("../img/common/reserve-navy-icon.svg") no-repeat center/100%;
}
.reserve-btn a:hover img {
  bottom: 2rem;
}
.reserve-btn a img {
  position: absolute;
  width: 10.4rem;
  right: 0;
  bottom: 1rem;
  left: 0;
  margin: auto;
  transition: 0.3s;
  opacity: 1 !important;
}
@media only screen and (max-width: 767px) {
  .reserve-btn a img {
    width: 13rem;
    bottom: 2rem;
  }
}
.reserve-btn a div {
  background: #003399;
  border-radius: 0 0 6.3rem 6.3rem;
  width: 100%;
  height: 6.3rem;
  padding-top: 0.7rem;
  position: relative;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .reserve-btn a div {
    height: 7.8rem;
    border-radius: 0 0 8rem 8rem;
    margin: 0 auto;
  }
}
.reserve-btn a div p {
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.98rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .reserve-btn a div p {
    line-height: 1.05;
    font-size: 2.5rem;
  }
}
.reserve-btn a div p span {
  color: inherit;
  font-size: 1.32rem;
}
@media only screen and (max-width: 767px) {
  .reserve-btn a div p span {
    font-size: 1.8rem;
  }
}
.reserve-btn a:hover div {
  width: calc(100% - 4px);
  margin-bottom: 2px;
}

.section-ttl {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.89;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .section-ttl {
    font-size: 3.2rem;
  }
}
.section-ttl .enfont {
  display: block;
  font-size: 5.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.7636;
  margin-bottom: 1.5rem;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .section-ttl .enfont {
    font-size: 7rem;
    margin-bottom: 2.8rem;
  }
}
.section-ttl .js_txt span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.section-ttl .js_txt.view span {
  opacity: 1;
  transform: translateY(0);
}
.section-ttl .js_txt.view span:nth-of-type(1) {
  transition-delay: 0.05s;
}
.section-ttl .js_txt.view span:nth-of-type(2) {
  transition-delay: 0.1s;
}
.section-ttl .js_txt.view span:nth-of-type(3) {
  transition-delay: 0.15s;
}
.section-ttl .js_txt.view span:nth-of-type(4) {
  transition-delay: 0.2s;
}
.section-ttl .js_txt.view span:nth-of-type(5) {
  transition-delay: 0.25s;
}
.section-ttl .js_txt.view span:nth-of-type(6) {
  transition-delay: 0.3s;
}
.section-ttl .js_txt.view span:nth-of-type(7) {
  transition-delay: 0.35s;
}
.section-ttl .js_txt.view span:nth-of-type(8) {
  transition-delay: 0.4s;
}
.section-ttl .js_txt.view span:nth-of-type(9) {
  transition-delay: 0.45s;
}
.section-ttl .js_txt.view span:nth-of-type(10) {
  transition-delay: 0.5s;
}
.section-ttl .js_txt.view span:nth-of-type(11) {
  transition-delay: 0.55s;
}
.section-ttl .js_txt.view span:nth-of-type(12) {
  transition-delay: 0.6s;
}
.section-ttl .js_txt.view span:nth-of-type(13) {
  transition-delay: 0.65s;
}
.section-ttl .js_txt.view span:nth-of-type(14) {
  transition-delay: 0.7s;
}
.section-ttl .js_txt.view span:nth-of-type(15) {
  transition-delay: 0.75s;
}
.section-ttl .js_txt.view span:nth-of-type(16) {
  transition-delay: 0.8s;
}
.section-ttl .js_txt.view span:nth-of-type(17) {
  transition-delay: 0.85s;
}
.section-ttl .js_txt.view span:nth-of-type(18) {
  transition-delay: 0.9s;
}
.section-ttl .js_txt.view span:nth-of-type(19) {
  transition-delay: 0.95s;
}
.section-ttl .js_txt.view span:nth-of-type(20) {
  transition-delay: 1s;
}
.section-ttl .js_txt.view span:nth-of-type(21) {
  transition-delay: 1.05s;
}
.section-ttl .js_txt.view span:nth-of-type(22) {
  transition-delay: 1.1s;
}
.section-ttl .js_txt.view span:nth-of-type(23) {
  transition-delay: 1.15s;
}
.section-ttl .js_txt.view span:nth-of-type(24) {
  transition-delay: 1.2s;
}
.section-ttl .js_txt.view span:nth-of-type(25) {
  transition-delay: 1.25s;
}
.section-ttl .js_txt.view span:nth-of-type(26) {
  transition-delay: 1.3s;
}
.section-ttl .js_txt.view span:nth-of-type(27) {
  transition-delay: 1.35s;
}
.section-ttl .js_txt.view span:nth-of-type(28) {
  transition-delay: 1.4s;
}
.section-ttl .js_txt.view span:nth-of-type(29) {
  transition-delay: 1.45s;
}
.section-ttl .js_txt.view span:nth-of-type(30) {
  transition-delay: 1.5s;
}
.section-ttl .js_txt.view span:nth-of-type(31) {
  transition-delay: 1.55s;
}
.section-ttl .js_txt.view span:nth-of-type(32) {
  transition-delay: 1.6s;
}
.section-ttl .js_txt.view span:nth-of-type(33) {
  transition-delay: 1.65s;
}
.section-ttl .js_txt.view span:nth-of-type(34) {
  transition-delay: 1.7s;
}
.section-ttl .js_txt.view span:nth-of-type(35) {
  transition-delay: 1.75s;
}
.section-ttl .js_txt.view span:nth-of-type(36) {
  transition-delay: 1.8s;
}
.section-ttl .js_txt.view span:nth-of-type(37) {
  transition-delay: 1.85s;
}
.section-ttl .js_txt.view span:nth-of-type(38) {
  transition-delay: 1.9s;
}
.section-ttl .js_txt.view span:nth-of-type(39) {
  transition-delay: 1.95s;
}
.section-ttl .js_txt.view span:nth-of-type(40) {
  transition-delay: 2s;
}
.section-ttl .js_txt.view span:nth-of-type(41) {
  transition-delay: 2.05s;
}
.section-ttl .js_txt.view span:nth-of-type(42) {
  transition-delay: 2.1s;
}
.section-ttl .js_txt.view span:nth-of-type(43) {
  transition-delay: 2.15s;
}
.section-ttl .js_txt.view span:nth-of-type(44) {
  transition-delay: 2.2s;
}
.section-ttl .js_txt.view span:nth-of-type(45) {
  transition-delay: 2.25s;
}
.section-ttl .js_txt.view span:nth-of-type(46) {
  transition-delay: 2.3s;
}
.section-ttl .js_txt.view span:nth-of-type(47) {
  transition-delay: 2.35s;
}
.section-ttl .js_txt.view span:nth-of-type(48) {
  transition-delay: 2.4s;
}
.section-ttl .js_txt.view span:nth-of-type(49) {
  transition-delay: 2.45s;
}
.section-ttl .js_txt.view span:nth-of-type(50) {
  transition-delay: 2.5s;
}

.link-btm {
  width: 23.5rem;
  position: relative;
}
.link-btm:hover::before {
  width: 100%;
}
.link-btm::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #333;
  transition: 0.15s;
  width: 0;
  border-radius: 5rem;
}
.link-btm.blue {
  border-color: #003399;
}
.link-btm.blue::before {
  background: #003399;
}
.link-btm a, .link-btm p {
  display: block;
  position: relative;
  width: 100%;
  line-height: 5rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  border: 1px solid #333333;
  border-radius: 2.5rem;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .link-btm a, .link-btm p {
    line-height: 8.8rem;
    border-radius: 8rem;
    font-size: 3.1rem;
    border-width: 2px;
  }
}
.link-btm a::after, .link-btm p::after {
  display: none;
}
.link-btm a:hover, .link-btm p:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
.link-btm a:hover i.arrow, .link-btm p:hover i.arrow {
  right: 1.5rem;
  border-color: #fff;
}
.link-btm a:hover i.arrow::before, .link-btm p:hover i.arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media only screen and (max-width: 767px) {
  .link-btm a:hover i.arrow, .link-btm p:hover i.arrow {
    right: 3rem;
  }
}
.link-btm a i.arrow, .link-btm p i.arrow {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
  border: 1px solid #333;
  border-radius: 1.6rem;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .link-btm a i.arrow, .link-btm p i.arrow {
    width: 2.8rem;
    height: 2.8rem;
    right: 3.5rem;
  }
}
.link-btm a i.arrow::before, .link-btm p i.arrow::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(50% - 0.1rem);
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .link-btm a i.arrow::before, .link-btm p i.arrow::before {
    width: 0.6rem;
    height: 0.6rem;
    right: calc(50% - 0.2rem);
  }
}
.link-btm.white::before {
  background: #fff;
}
.link-btm.white a, .link-btm.white p {
  border-color: #fff;
  color: #fff;
}
.link-btm.white a:hover, .link-btm.white p:hover {
  background: #fff;
  color: #333;
}
.link-btm.white a:hover i.arrow, .link-btm.white p:hover i.arrow {
  border-color: #333;
}
.link-btm.white a:hover i.arrow::before, .link-btm.white p:hover i.arrow::before {
  border-top-color: #333;
  border-right-color: #333;
}
.link-btm.white a i.arrow, .link-btm.white p i.arrow {
  border-color: #fff;
}
.link-btm.white a i.arrow::before, .link-btm.white p i.arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.link-btm.red {
  border-color: #dc4f51;
}
.link-btm.red::before {
  background: #dc4f51;
}
.link-btm.red a, .link-btm.red p {
  border-color: #dc4f51;
  color: #dc4f51;
}
.link-btm.red a:hover, .link-btm.red p:hover {
  background: none;
  color: #fff;
}
.link-btm.red a:hover i.arrow, .link-btm.red p:hover i.arrow {
  border-color: #fff;
  background: #dc4f51;
}
.link-btm.red a:hover i.arrow::before, .link-btm.red p:hover i.arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.link-btm.red a i.arrow, .link-btm.red p i.arrow {
  border-color: #dc4f51;
  background: #fff;
}
.link-btm.red a i.arrow::before, .link-btm.red p i.arrow::before {
  border-top-color: #dc4f51;
  border-right-color: #dc4f51;
}
.link-btm.blue {
  border-color: #003399;
}
.link-btm.blue::before {
  background: #003399;
}
.link-btm.blue a, .link-btm.blue p {
  border-color: #003399;
  color: #003399;
}
.link-btm.blue a:hover, .link-btm.blue p:hover {
  background: #003399;
  color: #fff;
}
.link-btm.blue a:hover i.arrow, .link-btm.blue p:hover i.arrow {
  border-color: #fff;
  background: #003399;
}
.link-btm.blue a:hover i.arrow::before, .link-btm.blue p:hover i.arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.link-btm.blue a i.arrow, .link-btm.blue p i.arrow {
  border-color: #003399;
  background: #fff;
}
.link-btm.blue a i.arrow::before, .link-btm.blue p i.arrow::before {
  border-top-color: #003399;
  border-right-color: #003399;
}

.df {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.125;
}
@media only screen and (max-width: 767px) {
  .df {
    font-size: 2.8rem;
    line-height: 2.142;
  }
}

.page-title {
  height: 50rem;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .page-title {
    height: 112.5rem;
    margin-bottom: 15rem;
    align-items: flex-start;
    padding-top: 64%;
  }
}
.page-title h1 {
  color: #fff;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .page-title h1 {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .page-title h1 {
    font-size: 3.4rem;
  }
}
.page-title h1.bk {
  color: #333333;
}
.page-title h1 span {
  display: block;
  font-size: 6.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .page-title h1 span {
    font-size: 8rem;
    margin-bottom: 1.9rem;
  }
}
#breadcrumb {
  line-height: 5rem;
  padding-left: 5rem;
  background: #f2f2f2;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  #breadcrumb {
    display: none;
  }
}
#breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
}
#breadcrumb .breadcrumb li {
  font-size: 1.4rem;
  font-weight: 500;
}
#breadcrumb .breadcrumb li:not(:last-of-type) {
  display: flex;
  align-items: center;
}
#breadcrumb .breadcrumb li:not(:last-of-type)::after {
  content: "＞";
  margin: 0 2rem;
  display: block;
}
#breadcrumb .breadcrumb li a,
#breadcrumb .breadcrumb li span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
#breadcrumb .breadcrumb li a {
  text-decoration: underline;
}

.hole {
  background: url("../img/course/hole-bg.jpg") no-repeat top center/cover;
  padding: 10.1rem 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hole {
    padding: 13rem 0 15.3rem;
    background: url("../img/course/sp/hole-bg.jpg") no-repeat top center/cover;
  }
}
.hole .inner {
  width: 120rem;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .hole .inner {
    width: 66.5rem;
  }
}
.hole .title {
  margin-bottom: 4.4rem;
}
@media only screen and (max-width: 767px) {
  .hole .title {
    margin-bottom: 5.6rem;
  }
}
.hole--list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .hole--list {
    gap: 0.2rem;
  }
}
.hole--list li {
  width: calc((100% - 0.5rem) / 6);
}
@media only screen and (max-width: 767px) {
  .hole--list li {
    width: calc(50% - 0.1rem);
  }
}
.hole--list li.active a::before {
  display: none;
}
.hole--list li a {
  display: block;
  position: relative;
}
.hole--list li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}
.hole--list li a:hover {
  opacity: 1;
}
.hole--list li a:hover::before {
  opacity: 0;
}
.hole--list li a:hover p i::before {
  right: 0.55rem;
}
@media only screen and (max-width: 767px) {
  .hole--list li a img {
    width: 100%;
  }
}
.hole--list li a p {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .hole--list li a p {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
  }
}
.hole--list li a p i {
  content: "";
  border-radius: 3.2rem;
  border: 1px solid #fff;
  width: 1.9rem;
  height: 1.9rem;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
}
.hole--list li a p i::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 0.75rem;
  position: absolute;
  margin: auto;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .hole--list li a p i::before {
    width: 0.6rem;
    height: 0.6rem;
    right: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .hole--list li a p i {
    width: 3.2rem;
    height: 3.2rem;
    right: 1.8rem;
  }
}

.content-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  padding: 1.8rem 2.7rem 2rem;
  background: #333;
  position: relative;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .content-title {
    font-size: 4.2rem;
    padding: 3.5rem 3.7rem 3.2rem;
    margin-bottom: 5.3rem;
  }
}
.content-title::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .content-title::before {
    top: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }
}
/*# sourceMappingURL=common.css.map */