@charset "UTF-8";
.gnav-links__item::after {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.gnav-links__item::after {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow-x: hidden;
  color: #444;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

body * {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* NotoSansCJKjp Medium */
@font-face {
  src: url("/common/font/NotoSansCJKjp-Medium.woff2") format("woff2"), url("/common/font/NotoSansCJKjp-Medium.woff") format("woff");
  font-display: swap;
  font-family: 'NotoSansCJKjp Medium';
  font-style: normal;
  font-weight: 500;
}

.header {
  z-index: 10;
  position: relative;
  padding: 1rem 1.5rem;
  border-top: 0.2rem solid #e50012;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 45px;
  margin: 0 auto;
}

.header__logo {
  display: inline-block;
  width: 135px;
  height: auto;
  margin-right: auto;
}

.footer {
  display: flex;
  position: absolute;
  bottom: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: #e50012;
}

.footer__bottom {
  color: #fff;
}

.footer__copyright {
  font-size: 0.6em;
}

/* layout */
.container {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

main {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

html.is-nav-open {
  height: 100%;
  overflow: auto;
}

html.is-nav-open body {
  height: 100%;
  overflow: hidden;
}

.header__nav-pc {
  display: none;
}

.nav-pc__item {
  display: inline-block;
  margin-left: 2rem;
  letter-spacing: -0.02rem;
}

.nav-pc__item:last-child {
  margin-left: 1.5rem;
}

.nav-pc__link {
  display: block;
  color: #444;
  font-size: 1.15rem;
}

.header__nav {
  width: calc(55px - 1.5rem);
  height: 45px;
  border-left: 1px solid #ccc;
}

.gnav {
  position: absolute;
  top: 0;
  right: 0;
}

.gnav__ham {
  display: inline-block;
  display: flex;
  z-index: 30;
  position: absolute;
  top: 1rem;
  right: 0;
  flex-flow: column;
  justify-content: center;
  width: 55px;
  height: 48px;
  cursor: pointer;
}

.gnav__part {
  display: block;
  width: 21px;
  height: 3px;
  margin: 0 auto 5px;
  border-radius: 1px;
  background-color: #e50012;
}

.gnav__part:last-child {
  margin-bottom: 0;
}

.gnav__inner {
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  padding-top: 70px;
  padding-bottom: 100px;
  overflow: auto;
  background: #fff;
  transition: all 0.5s ease;
}

.is-open .gnav__ham span:nth-of-type(1) {
  animation: top-open .5s;
  animation-fill-mode: forwards;
}

.is-open .gnav__ham span:nth-of-type(2) {
  opacity: 0;
  transition: opacity .5s;
}

.is-open .gnav__ham span:nth-of-type(3) {
  margin-bottom: 0;
  animation: bottom-open .5s;
  animation-fill-mode: forwards;
}

.is-open .gnav__inner {
  transform: translateX(-300px);
}

.is-open + .overlay {
  animation: overlay-show .5s forwards;
}

.is-close .gnav__ham {
  animation: ham-front .5s;
}

.is-close .gnav__ham span:nth-of-type(1) {
  animation: top-close .5s forwards;
}

.is-close .gnav__ham span:nth-of-type(2) {
  opacity: 1;
  transition: opacity .5s;
}

.is-close .gnav__ham span:nth-of-type(3) {
  animation: bottom-close .5s forwards;
}

.is-close .gnav__inner {
  transform: translateX(0);
}

.is-close + .overlay {
  animation: overlay-hide .5s forwards;
}

.overlay {
  display: block;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #333;
}

@keyframes top-open {
  0% {
    transform: translateY(0px) rotate(0deg);
    transform-origin: center;
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  100% {
    transform: translateY(8px) rotate(-45deg);
  }
}

@keyframes bottom-open {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(45deg);
  }
}

@keyframes top-close {
  0% {
    transform: translateY(8px) rotate(-45deg);
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes bottom-close {
  0% {
    transform: translateY(-8px) rotate(45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes overlay-show {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
}

@keyframes overlay-hide {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  90% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
}

.gnav-list {
  font-size: 1.5rem;
}

.gnav-list__category {
  padding: 0.6rem 1.6rem;
  border-bottom: 1px solid #ccc;
  background-color: #e50012;
  color: #fff;
  letter-spacing: 0.04em;
}

.gnav-links__item {
  position: relative;
  border-bottom: 1px solid #ccc;
}

.gnav-links__item::after {
  position: absolute;
  right: 1.8rem;
  width: 0.4rem;
  height: 0.4rem;
  transform: rotate(45deg);
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  content: "";
}

.gnav-links__item--search::after {
  display: none;
}

.gnav-links__link {
  display: block;
  padding: 1.1rem 3rem 1.1rem 1.8rem;
  background-size: 5px 7px;
}

/* search_input */
input::-ms-clear {
  visibility: hidden;
}

.search__btn {
  -webkit-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.search {
  display: block;
}

.search--gray {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #e7e7e7;
  background: #f2f2f2;
}

.search--gray {
  background: #f2f2f2;
}

.search__form {
  position: relative;
  overflow: hidden;
}

.search__text {
  display: block;
  width: 100%;
  padding: 1.2rem 3.2rem 1.2rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  background: #fff;
  font-size: 1.6rem;
}

.search__text::-webkit-input-placeholder {
  color: #ccc;
}

.search__text:-ms-input-placeholder {
  color: #ccc;
}

.search__text::placeholder {
  color: #ccc;
}

.search__btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
}

.search__magnify {
  display: block;
  width: 42px;
  height: 45px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #999;
}

.search__magnify::before {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 45px;
  content: "検索";
}

.gnav-links__item--search .search {
  margin: 1.7rem;
  padding-right: 0;
  padding-left: 0;
}

.gnav-links__item--search .search__form {
  position: relative;
  overflow: hidden;
}

/* status */
.is-lg {
  display: none;
}

.is-md {
  display: none;
}

.is-sm {
  display: none;
}

.is-xs {
  display: none;
}

.is-sp {
  display: block;
}

.is-sp-large {
  display: block;
}

.is-pc {
  display: none;
}

/* layout */
.container {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding-bottom: 45px;
  overflow: hidden;
}

/* main */
main {
  display: block;
  color: #6a6b6b;
}

.course__top main {
  padding-bottom: 0;
}

main a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  text-decoration: underline;
}

main a:hover {
  opacity: 0.7;
}

main button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

main *::before, main *::after {
  box-sizing: inherit;
}

.unit {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

/* guide-area */
.guide-area {
  color: #6a6b6b;
}

.guide-area a:hover {
  opacity: 0.7;
}

.guide-area *::before, .guide-area *::after {
  box-sizing: inherit;
}

/* cv-block */
.cv-block {
  padding: 15px 0;
  background-color: #f2f0eb;
  color: #6a6b6b;
}

.cv-block:not(.cv-block--top) {
  margin-top: 1rem;
  border-top: 1px solid #ccc;
}

.cv-block *::before, .cv-block *::after {
  box-sizing: inherit;
}

.cv-block__catch {
  margin-bottom: 1rem;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 1.8rem;
  text-align: center;
}

/* cv-list */
.cv-list__btn, .cv-list__btn--select, .cv-list__btn--request {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  letter-spacing: 0.2rem;
  text-align: center;
  text-decoration: none;
}

.cv-list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.cv-list--single {
  justify-content: center;
}

.cv-list__item {
  width: 49.27536%;
}

.cv-list__btn {
  position: relative;
  height: 56px;
  border-radius: 36px;
}

.cv-list__btn::after {
  display: block;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 4px * 2);
  height: calc(100% - 4px * 2);
  border: 1px solid #fff;
  border-radius: 36px;
  content: "";
}

.cv-list__btn--select {
  background: #ff8a00;
}

.cv-list__btn--request {
  background: #99b11b;
}

.cv-list__text {
  display: block;
  width: 100%;
  background: url(/special/theme/unique/assets/img/icon_link_btn.svg) no-repeat right 12px center;
  background-size: 10.157px 9.0545px;
}

/* em-text */
.em-text {
  color: #e25452;
}

/* strong-text */
.strong-text {
  font-weight: bold;
}

/* small-text */
.small-text, .movie-unit__caption, .border-block__profile {
  font-size: 1.4rem;
}

/* plane-text */
.plane-text {
  font-size: 1.6rem;
  line-height: 1.55556;
}

/* break-text */
.break-text {
  display: block;
}

.u- {
  /* margin-top */
  /* margin-bottom */
  /* font-size */
  /* font-weight */
  /* text-align */
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt1 {
  margin-top: 1em;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb1 {
  margin-bottom: 1em;
}

.u-size90 {
  font-size: 90%;
}

.u-size110 {
  font-size: 110%;
}

.u-bold {
  font-weight: bold;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-tal {
  text-align: left;
}

/* notes-list */
.notes-list {
  font-size: 1.4rem;
  line-height: 1.42857;
}

.page-section__addition .notes-list {
  display: flex;
  justify-content: flex-end;
}

.table + .notes-list {
  margin-top: 0.5em;
}

.notes-list__item {
  position: relative;
  padding-left: 1em;
}

.notes-list__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "\203B";
}

.notes-list__item--em {
  position: relative;
  padding-left: 1em;
  color: #e50012;
}

.notes-list__item--em::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "\203B";
}

/* link-list */
.link-list__item {
  padding-left: calc(7px + .5rem);
}

.link-list__item + .link-list__item {
  margin-top: 0.5em;
}

/* dot-list */
.dot-list__item {
  position: relative;
  padding-left: 1em;
}

.dot-list__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "\30FB";
}

/* decimal-list */
.decimal-list {
  counter-reset: number;
}

.decimal-list__item {
  padding-left: 2em;
  text-indent: -1.75em;
  counter-increment: number;
}

.decimal-list__item::before {
  margin-right: 0.5em;
}

.decimal-list__item:nth-of-type(-n+9)::before {
  content: " " counter(number) ".";
}

.decimal-list__item:nth-of-type(n+10)::before {
  content: counter(number) ".";
}

.decimal-list__item > * {
  text-indent: 0;
}

/* data-attr-list */
.data-attr-list__item {
  position: relative;
}

.data-attr-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-num);
}

.data-attr-list.circle-num .data-attr-list__item {
  padding-left: 1.1em;
}

.data-attr-list.circle-num .data-attr-list__item::before {
  width: 1em;
  height: 1em;
}

.data-attr-list.single-mark .data-attr-list__item {
  padding-left: 1.1em;
}

.data-attr-list.single-mark .data-attr-list__item::before {
  width: 1em;
  height: 1em;
  content: attr(data-mark);
}

/* link-unit */
.link-unit {
  padding-left: calc(7px + 0.5rem);
  background-image: url(/special/theme/unique/assets/img/icon_link.svg);
  background-position-x: left;
  background-position-y: center;
  background-repeat: no-repeat;
  text-decoration: none;
}

.link-unit__em {
  font-weight: bold;
}

.link-list .link-unit {
  margin-left: calc(-7px - .5rem);
}

/* btn-unit */
.btn-unit {
  margin-top: 2rem;
  padding: 2px 2px 4px;
  border-radius: 40px;
  background: #cdc4b3;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.btn-unit__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 40px;
  background: url(/special/theme/unique/assets/img/icon_link_btn_gr.svg) no-repeat right 14px center #fff;
  font-size: 2rem;
  text-decoration: none;
}

.btn-unit__link--small {
  font-size: 1.35rem;
  line-height: 1.25;
}

.diagnosis-block .btn-unit {
  max-width: 415px;
  margin: 0 auto;
}

/* zoom-unit */
.zoom-unit {
  display: block;
  position: relative;
}

.zoom-unit::before {
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: rgba(204, 204, 204, 0.5);
  background-image: url(/special/theme/unique/assets/img/icon_zoom.svg);
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
}

/* movie-unit */
.movie-unit {
  margin-right: auto;
  margin-left: auto;
}

.movie-unit__content {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}

.movie-unit__source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-unit__caption {
  margin-top: 1rem;
}

/* modal-unit */
.modal-unit {
  display: table;
  position: relative;
  width: auto;
  height: 29px;
  padding-top: 0.5em;
  padding-left: 39px;
  outline: none;
  color: #e25452;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}

.modal-unit::before, .modal-unit::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 29px;
}

.modal-unit::before {
  border: 2px solid #e25452;
  border-radius: 50%;
  content: "";
}

.modal-unit::after {
  font-size: 20px;
  text-align: center;
  content: "\FF0B";
}

.modal-unit__text {
  text-decoration: underline;
}

/* slide-unit */
.slide-unit__header {
  margin-bottom: 1rem;
}

.slide-unit__shoulder {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}

.slide-unit__title {
  color: #e25452;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.2rem;
  line-height: 1.16667;
}

.slide-unit__img {
  padding: 5px;
  background: #fff;
}

.slide-unit__text {
  padding: 1rem;
}

/* slider-row */

/* light-box */
.lb-data .lb-close {
  background-image: url(/special/theme/unique/assets/img/icon_close_zoom.png) !important;
}

/* modal-contents */
.modal-target {
  display: none;
}

.modal-contents {
  padding-top: calc(38px + 1.5rem);
  padding-bottom: 1.5rem;
  background: #f2f0eb !important;
}

.modal-contents button {
  -webkit-appearance: none;
          appearance: none;
  display: block;
  padding: 0;
  border: none;
}

.modal-contents__title {
  margin-bottom: 1em;
  color: #e25452;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 1.5rem;
}

.modal-contents__title--lv2 {
  margin: 1em 0 0.5em;
  color: #9f7836;
  font-size: 1.35rem;
  font-weight: bold;
}

.modal-contents__text * {
  font-size: 1.2rem;
}

.modaal-container {
  background: #f2f0eb;
}

.modaal-content-container {
  padding: 0;
}

.modaal-close {
  z-index: 2;
  position: fixed;
  top: 1rem !important;
  right: 1.5rem !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff !important;
  color: #e25452;
  font-size: 20px;
  font-weight: bold;
  line-height: 38px;
  text-align: center;
}

.modaal-close::before, .modaal-close::after {
  top: 50%;
  left: 50%;
  width: 3px;
  height: 12px;
  border-radius: 0;
  background: #e25452;
}

.modaal-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modaal-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* border-block */
.border-block {
  position: relative;
  margin-top: 6rem;
  padding: 4rem 1.5rem 3rem;
  border: 1px solid #e45a51;
}

.border-block__row {
  margin-top: 2rem;
}

.border-block__img {
  margin-bottom: 2rem;
}

.border-block__caption {
  padding: 8px 10px;
  background: #cdc4b3;
  font-size: 1.4rem;
  line-height: 1.71429;
}

.border-block__text {
  font-size: 1.6rem;
  line-height: 1.375;
}

.border-block__profile {
  margin-top: 1em;
}

/* movie-block */
.movie-block {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border: 1px solid #e45a51;
}

.box-block__wrap .movie-block {
  margin-top: 0;
  padding: 0;
  border: none;
}

.movie-block__title {
  margin-bottom: 0.5rem;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}

.box-block__wrap .movie-block__title {
  margin-bottom: 1.5rem;
}

.movie-block__subtitle {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.375;
}

.box-block__wrap .movie-block__subtitle {
  margin-top: -1.25rem;
}

.movie-block__content + .movie-block__content {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}

.movie-block__col + .movie-block__col {
  margin-top: 2rem;
}

/* accordion-block */
.accordion-block {
  position: relative;
  margin-top: 3rem;
}

.accordion-block__header {
  display: table;
  z-index: 1;
  position: relative;
  width: 70%;
  min-width: 280px;
  max-width: 380px;
  margin: 0 auto;
  padding: 14px 20px;
  border-radius: 99px;
  background: #f2f0eb;
  line-height: 1.3;
  cursor: pointer;
}

.accordion-block__header.is-opened .accordion-block__title::before {
  top: 3px;
  transform: rotate(180deg);
}

.accordion-block__title {
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.accordion-block__title::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(/special/theme/unique/assets/img/icon_arrow_down.svg) no-repeat left center;
  background-size: 15px 15px;
  content: "";
}

.accordion-block__content {
  display: none;
  z-index: 0;
  position: relative;
  margin-top: -14px;
  padding: 2rem 2rem 1rem;
  background: #f2f0eb;
}

.accordion-block__img {
  padding-bottom: 2.4rem;
  text-align: center;
}

.accordion-block__close-btn {
  -webkit-appearance: none;
          appearance: none;
  display: table;
  position: relative;
  margin: 2rem 0 0 auto;
  padding: 0 0 0 25px;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.accordion-block__close-btn::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/special/theme/unique/assets/img/icon_accordion_close.svg) no-repeat left center;
  background-size: contain;
  content: "";
}

/* overflow-block */
.overflow-block {
  max-width: 965px;
  overflow: hidden;
}

/* table */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.table + .table {
  margin-top: 60px;
}

.table .table__cell--th, .table .table__cell--td {
  padding: 1rem;
  font-size: 1.4rem;
  text-align: left;
  vertical-align: middle;
}

.table__caption {
  margin-bottom: 1rem;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2rem;
  text-align: left;
}

.table__cell--th {
  width: 28.98551%;
  background: #e66866;
  color: #fff;
}

.table__cell--td {
  border-top: 1px solid #cdc4b3;
  border-right: 1px solid #cdc4b3;
  border-bottom: 1px solid #cdc4b3;
  background: #fff;
}

.table__notes {
  margin-top: .5rem;
}

/* table-innerblock */
.table-innerblock {
  margin-top: 1em;
  padding: 15px 10px;
  background: #f2f0eb;
  font-size: 1.3rem;
  line-height: 1.53846;
}

.table-innerblock__head {
  font-weight: bold;
}

.table-innerblock__item {
  margin-top: .5rem;
}

/* anchor-list */
.anchor-list {
  margin-top: 1em;
}

.page-section__addition .anchor-list {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.anchor-list__item {
  font-size: 1.6rem;
  font-size: 1.37931rem;
  font-weight: bold;
  line-height: 2.5;
}

.anchor-list__link {
  padding-left: 27px;
  background: url(/special/theme/unique/assets/img/icon_arrow_down.svg) no-repeat left top;
  background-size: 15px 15px;
}

/* pagetop */
.pagetop {
  display: none;
  z-index: 1;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 60px;
  margin-top: 2rem;
  padding: 2px 2px 4px;
  border-radius: 100%;
  background: #cdc4b3;
  text-align: center;
}

.pagetop__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  padding-top: 16px;
  border-radius: 100%;
  background: url(/special/theme/unique/assets/img/icon_pagetop_btn.svg) no-repeat center top 12px #fff;
  font-size: 1.2rem;
}

.pagetop__btn:hover {
  opacity: .7;
}

/* page-header */
.page-header {
  max-width: 965px;
  margin: 0 auto 1.5rem;
}

.page-header__title {
  z-index: 2;
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  padding: 0 1rem 0 64px;
  background: url(/special/theme/unique/assets/img/icon_book.svg) no-repeat left center;
  background-size: 55px 55px;
  color: #e25452;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2.4rem;
  line-height: 1.29167;
}

.page-header__title small {
  font-size: 1.6rem;
}

.page-header__mv {
  z-index: 1;
  position: relative;
  height: 165px;
  overflow: hidden;
}

.page-header__mv.unit {
  padding-right: 0;
  padding-left: 0;
}

.page-header__picture {
  display: block;
  height: 100%;
}

.page-header__mv-img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
}

/* page-lead */
.page-lead {
  margin-bottom: 3rem;
}

.page-lead-p {
  font-size: 1.6rem;
  line-height: 1.5;
}

.page-lead-p--margin {
  margin-top: 1em;
}

.page-lead-hidden {
  display: none;
}

.page-lead-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.page-lead-nav__item {
  position: relative;
}

.page-lead-nav__btn {
  -webkit-appearance: none;
          appearance: none;
  position: relative;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-image: none;
  font-size: 1.6rem;
  font-weight: normal;
  cursor: pointer;
}

.page-lead-nav__btn::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 9px;
  margin-top: -4.5px;
  margin-left: -7.5px;
  background: url(/special/theme/unique/assets/img/icon_link_switch.png) no-repeat center center;
  background-size: contain;
  content: "";
}

.page-lead-nav__btn.is-open::after {
  transform: rotate(180deg);
  transform-origin: center center;
}

.page-lead-nav__btn:hover {
  opacity: 0.7;
}

.page-lead-nav .btn-unit {
  width: 50px;
  height: 50px;
  margin-top: 0;
  border-radius: 50%;
}

/* page-section */
.page-section {
  padding-bottom: 4rem;
}

.page-section + .page-section {
  padding-top: 4rem;
}

.page-section--colored {
  background-color: #f2f0eb;
}

.page-section__title-wrap--divider {
  margin-top: 3.5rem;
  border-top: 3px solid #e45a51;
}

.page-section__title {
  margin-bottom: 1.5rem;
  padding-bottom: 1.3rem;
  border-bottom: 3px solid #e45a51;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.165rem;
  line-height: 1.18182;
  text-align: center;
}

.page-section__title--lv3 {
  margin-top: 3rem;
  text-align: center;
}

.page-section__title--lv3-text {
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15rem;
  line-height: 1.3;
}

.page-section__lead {
  display: block;
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: center;
}

/* card */
.card {
  margin: -1.5rem auto 0;
}

.card--ranking > * .card__content-course-name {
  display: none;
}

.card--ranking > * .card__content-course-name br {
  display: none;
}

.card--ranking > * .card__content-course-name br.is-none {
  display: none;
}

.card--ranking > * .card__content-course-detail {
  display: inline-block;
}

.card--ranking .card__content-link-text {
  line-height: 36px;
}

.card__img {
  margin: 0 auto 15px;
  text-align: center;
}

.card--ranking .card__unit {
  margin-top: 1.5rem;
  padding: 2px 2px 4px;
  border-radius: 10px;
  background: #cdc4b3;
}

.card__unit-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
}

.card__unit-inner:hover {
  opacity: 1;
}

.card__head {
  position: relative;
  height: 60px;
}

.card__head::before, .card__head::after {
  display: block;
  position: absolute;
  font-weight: bold;
}

.card__head::before {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  padding-left: 15px;
  border-radius: 10px 0 0 0;
  background-color: #e6e2d7;
  font-size: 2.6rem;
  line-height: 60px;
  content: attr(data-rank);
}

.card__head::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.4em);
  left: calc(60px - 1em - 15px);
  margin-left: 5px;
  font-size: 1.6rem;
  line-height: 1;
  content: "\4F4D";
}

.card__head[data-rank="1"]::before, .card__head[data-rank="1"]::after, .card__head[data-rank="2"]::before, .card__head[data-rank="2"]::after, .card__head[data-rank="3"]::before, .card__head[data-rank="3"]::after {
  color: #fff;
}

.card__head[data-rank="1"]::before {
  background-color: #c6a000;
}

.card__head[data-rank="2"]::before {
  background-color: #a2a2a2;
}

.card__head[data-rank="3"]::before {
  background-color: #e29b55;
}

.card__head[data-rank="10"]::before {
  padding-left: 5px;
  letter-spacing: -0.3rem;
}

.card__head[data-rank="10"]::after {
  left: calc(48px - 1em);
}

.card__head-title {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  height: 100%;
  margin-left: 60px;
  padding-left: 15px;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.1rem;
  line-height: 1.2;
}

.card__head-title--icon {
  width: calc(100% - 60px - 42px - 1rem);
}

.card__head-icon {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  width: 42px;
  height: 100%;
  line-height: 60px;
}

.card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px 1rem;
}

.card__content-link {
  position: relative;
  min-height: 36px;
  margin-top: 5px;
  padding-right: 44px;
}

.card__content-link::before, .card__content-link::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  content: "";
}

.card__content-link::before {
  top: 0;
  right: 0;
  border-radius: 50%;
  background-color: #e25452;
}

.card__content-link::after {
  background: url(/special/theme/unique/assets/img/icon_link_btn.svg) no-repeat 7px center;
  background-size: 16px 16px;
}

.card__unit:hover .card__content-link::before {
  opacity: 0.7;
}

.card__content-link-text {
  display: table;
  width: auto;
  height: 28px;
  margin-left: auto;
  font-weight: bold;
}

.card__content-link-text-break {
  display: none;
}

.card__summary {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* box-link */
.box-link-list {
  margin-top: 1.5rem;
}

.box-link-list__item {
  margin-top: 0.4rem;
  border-radius: 6px;
  background: #fff;
}

.box-link {
  display: block;
  position: relative;
  padding: 20px 17px 20px 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.33333;
  text-decoration: none;
}

.box-link::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/special/theme/unique/assets/img/icon_link.svg) no-repeat left center;
  background-size: contain;
  content: "";
}

.box-link-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* point-block */
.point-block {
  margin-top: 3rem;
}

.point-block__title {
  margin-bottom: 1.5rem;
  padding: 14px 0;
  border-top: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 1.8rem;
  line-height: 1.44444;
  text-align: center;
}

.point-block__lead {
  font-size: 1.6rem;
  line-height: 1.375;
}

.point-block__row {
  margin-top: 2.5rem;
}

.point-block__img {
  display: none;
}

.point-list__item {
  padding-left: calc(7px + 0.5rem);
  background-image: url(/special/theme/unique/assets/img/icon_link.svg);
  background-position-x: left;
  background-position-y: 0.3em;
  background-repeat: no-repeat;
}

.point-list__item + .point-list__item {
  margin-top: 2.5rem;
}

.point-list__link {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.44444;
}

.point-list__text {
  margin-top: 0.3rem;
  font-size: 1.6rem;
  line-height: 1.375;
}

/* related-content */
.related-content__title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  font-family: 'NotoSansCJKjp Medium', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}

/* related-list */

.related-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
  overflow: hidden;
}

.related-list__item {
  width: calc(50% - 10px);
  max-width: 225px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.related-list__link {
  display: block;
  position: relative;
}

.related-list__img {
  z-index: 0;
  position: relative;
  border-radius: 6px;
}

.related-list__caption {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 5px;
  border-radius: 0 0 6px 6px;
  background: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.06667;
  text-align: center;
}

/* breadcrumb-nav */
.breadcrumb-nav {
  padding: 18px 0 14px;
  border-top: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  font-size: 1.4rem;
  line-height: 1.71429;
}

.breadcrumb-nav__list {
  width: 100%;
}

.breadcrumb-nav__item {
  display: inline;
}

.breadcrumb-nav__item a {
  margin-right: 5px;
  color: #e25452;
  font-weight: bold;
  text-decoration: none;
}

.breadcrumb-nav__item a::after {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-left: 10px;
  background: url(/special/theme/unique/assets/img/icon_link_breadcrumb.svg) no-repeat center center;
  content: "";
}

@media screen and (min-width: 375px) {
  html {
    font-size: 67.5%;
  }
  body {
    font-size: 1.4rem;
  }
  .search__magnify {
    width: 48px;
    height: 49px;
  }
  .search__magnify::before {
    line-height: 49px;
  }
  .is-xs {
    display: block;
  }
  .is-min {
    display: none;
  }
  .unit {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cv-list__btn {
    font-size: 1.5rem;
  }
  .cv-list__btn {
    font-size: 1.38889rem;
  }
  .small-text, .movie-unit__caption, .border-block__profile {
    font-size: 1.2963rem;
  }
  .plane-text {
    font-size: 1.48148rem;
  }
  .notes-list {
    font-size: 1.2963rem;
  }
  .btn-unit__link {
    font-size: 1.85185rem;
  }
  .btn-unit__link--small {
    font-size: 1.35rem;
  }
  .border-block__caption {
    font-size: 1.2963rem;
  }
  .border-block__text {
    font-size: 1.48148rem;
  }
  .movie-block__subtitle {
    font-size: 1.48148rem;
  }
  .accordion-block__title {
    font-size: 1.48148rem;
  }
  .accordion-block__close-btn {
    font-size: 1.2963rem;
  }
  .pagetop__btn {
    font-size: 1.11111rem;
  }
  .page-header__mv-img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }
  .page-lead-p {
    font-size: 1.48148rem;
  }
  .page-lead-nav__btn {
    font-size: 1.48148rem;
  }
  .page-section__lead {
    font-size: 1.48148rem;
  }
  .card__head::before {
    font-size: 2.40741rem;
  }
  .card__head::after {
    font-size: 1.48148rem;
  }
  .card__head-title {
    font-size: 1.85185rem;
  }
  .card__summary {
    font-size: 1.48148rem;
  }
  .box-link {
    font-size: 1.66667rem;
  }
  .point-block__title {
    font-size: 1.66667rem;
  }
  .point-block__lead {
    font-size: 1.48148rem;
  }
  .point-list__link {
    font-size: 1.66667rem;
  }
  .point-list__text {
    font-size: 1.48148rem;
  }
  .related-list__caption {
    font-size: 1.38889rem;
  }
  .breadcrumb-nav {
    font-size: 1.2963rem;
  }
}

@media screen and (min-width: 568px) {
  html {
    font-size: 72.5%;
  }
  .gnav-list {
    font-size: 1.3rem;
  }
  .search__form {
    width: 445px;
    margin-right: auto;
    margin-left: auto;
  }
  .search__magnify {
    width: 53px;
    height: 53px;
  }
  .search__magnify::before {
    line-height: 53px;
  }
  .gnav-links__item--search .search__form {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .is-md {
    display: block;
  }
  .is-sp-large {
    display: none;
  }
  .cv-list__btn {
    font-size: 1.2931rem;
  }
  .small-text, .movie-unit__caption, .border-block__profile {
    font-size: 1.2069rem;
  }
  .plane-text {
    font-size: 1.55172rem;
  }
  .notes-list {
    font-size: 1.2069rem;
  }
  .btn-unit__link {
    font-size: 1.72414rem;
  }
  .btn-unit__link--small {
    font-size: 1.4rem;
  }
  .border-block__caption {
    font-size: 1.2069rem;
  }
  .border-block__text {
    font-size: 1.55172rem;
  }
  .movie-block__subtitle {
    font-size: 1.37931rem;
  }
  .accordion-block__title {
    font-size: 1.37931rem;
  }
  .accordion-block__close-btn {
    font-size: 1.2069rem;
  }
  .pagetop__btn {
    font-size: 1.03448rem;
  }
  .page-header__mv {
    height: 180px;
  }
  .page-header__mv-img {
    position: absolute;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }
  .page-lead-p {
    font-size: 1.37931rem;
  }
  .page-lead-nav__btn {
    font-size: 1.37931rem;
  }
  .page-section__title {
    text-align: center;
  }
  .page-section__lead {
    font-size: 1.37931rem;
  }
  .card--ranking {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card--ranking > * .card__content-course-name {
    display: block;
  }
  .card--ranking > * .card__content-course-name br {
    display: inline;
  }
  .card--ranking > * .card__content-course-name--inline {
    display: inline;
  }
  .card--ranking > *:nth-child(-n+6) {
    width: 49%;
  }
  .card--ranking > *:nth-child(n+7) {
    width: 49%;
  }
  .card--ranking > *:nth-child(n+7) .card__head {
    height: 48px;
  }
  .card--ranking > *:nth-child(n+7) .card__content-course-name {
    display: none;
  }
  .card--ranking > *:nth-child(n+7) .card__content-course-detail {
    display: block;
    line-height: 33px;
  }
  .card--ranking .card__content-link-text {
    font-size: 1.2069rem;
    line-height: 1.28571;
  }
  .card__head::before {
    font-size: 2.24138rem;
  }
  .card__head::after {
    font-size: 1.37931rem;
  }
  .card__head[data-rank="7"]::before, .card__head[data-rank="7"]::after, .card__head[data-rank="8"]::before, .card__head[data-rank="8"]::after, .card__head[data-rank="9"]::before, .card__head[data-rank="9"]::after, .card__head[data-rank="10"]::before, .card__head[data-rank="10"]::after {
    width: 48px;
    height: 48px;
  }
  .card__head[data-rank="7"]::before, .card__head[data-rank="8"]::before, .card__head[data-rank="9"]::before, .card__head[data-rank="10"]::before {
    font-size: 1.89655rem;
    line-height: 48px;
  }
  .card__head[data-rank="7"]::after, .card__head[data-rank="8"]::after, .card__head[data-rank="9"]::after, .card__head[data-rank="10"]::after {
    left: calc(48px - 1em - 12px);
    font-size: 1.03448rem;
  }
  .card__head[data-rank="10"]::after {
    left: calc(48px - 1em - 10px);
  }
  .card__head-title {
    font-size: 1.72414rem;
  }
  .card__head[data-rank="7"] .card__head-title, .card__head[data-rank="8"] .card__head-title, .card__head[data-rank="9"] .card__head-title, .card__head[data-rank="10"] .card__head-title {
    width: calc(100% - 48px);
    margin-left: 48px;
  }
  .card__head[data-rank="7"] .card__head-title--icon, .card__head[data-rank="8"] .card__head-title--icon, .card__head[data-rank="9"] .card__head-title--icon, .card__head[data-rank="10"] .card__head-title--icon {
    width: calc(100% - 48px - 42px - 10px);
  }
  .card__head[data-rank="7"] .card__head-icon, .card__head[data-rank="8"] .card__head-icon, .card__head[data-rank="9"] .card__head-icon, .card__head[data-rank="10"] .card__head-icon {
    line-height: 48px;
  }
  .card__content-link {
    min-height: 42px;
    margin-top: 1.51515rem;
    padding-top: 0.83333rem;
    padding-right: 36px;
    border-top: 1px solid #cdc4b3;
  }
  .card__content-link::before, .card__content-link::after {
    top: 14px;
    width: 28px;
    height: 28px;
  }
  .card__content-link::after {
    background-position-x: 3px;
  }
  .card__summary {
    font-size: 1.37931rem;
  }
  .box-link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .box-link-list__item {
    width: calc(50% - 4px);
    margin-top: 8px;
  }
  .box-link {
    font-size: 1.55172rem;
  }
  .point-block__title {
    font-size: 1.55172rem;
  }
  .point-block__lead {
    font-size: 1.37931rem;
  }
  .point-list__link {
    font-size: 1.55172rem;
  }
  .point-list__text {
    font-size: 1.37931rem;
  }
  .related-list__caption {
    font-size: 1.2931rem;
  }
  .breadcrumb-nav {
    font-size: 1.2069rem;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 82.5%;
  }
  .header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top-width: 0.4rem;
  }
  .header__nav-pc {
    display: flex;
    align-items: center;
  }
  .nav-pc__link:hover, .nav-pc__link:active {
    text-decoration: underline;
  }
  .header__nav {
    display: none;
  }
  .gnav__ham {
    top: 1.8rem;
  }
  .gnav__part {
    width: 23px;
  }
  .gnav-list {
    font-size: 1.2rem;
  }
  .search__magnify {
    width: 57px;
    height: 57px;
  }
  .search__magnify::before {
    font-size: 1.2rem;
    line-height: 57px;
  }
  .is-lg {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
  .cv-block {
    padding: 30px 0;
  }
  .cv-block:not(.cv-block--top) {
    border-top-width: 2px;
  }
  .cv-list {
    max-width: 810px;
  }
  .cv-list__item {
    max-width: 390px;
  }
  .cv-list__btn {
    height: 85px;
    border-radius: 38px;
    font-size: 1.81818rem;
  }
  .cv-list__btn::after {
    top: 5px;
    left: 5px;
    width: calc(100% - 5px * 2);
    height: calc(100% - 5px * 2);
  }
  .cv-list__text {
    background-position: right 28px center;
    background-size: auto;
  }
  .small-text, .movie-unit__caption, .border-block__profile {
    font-size: 1.06061rem;
  }
  .plane-text {
    font-size: 1.36364rem;
    line-height: 1.66667;
  }
  .notes-list {
    font-size: 1.06061rem;
    line-height: 1.71429;
  }
  .btn-unit__link {
    height: 74px;
    background-position: right 20px center;
    font-size: 1.66667rem;
  }
  .btn-unit__link--small {
    font-size: 1.51515rem;
  }
  .modal-unit {
    font-size: 1rem;
  }
  .slide-unit__header {
    margin-bottom: 0.5rem;
  }
  .slide-unit__content {
    font-size: 1.36364rem;
  }
  .slider-row {
    display: flex;
    justify-content: space-between;
  }
  .modaal-close {
    right: 2rem;
  }
  .border-block {
    margin-right: auto;
    margin-left: auto;
    padding: 3.78788rem;
  }
  .border-block__content {
    display: flex;
    justify-content: space-between;
  }
  .border-block__img {
    width: 45.4023%;
    max-width: 395px;
  }
  .border-block__caption {
    font-size: 1.06061rem;
  }
  .border-block__text {
    font-size: 1.36364rem;
    line-height: 1.5;
  }
  .border-block__text {
    width: 50%;
    max-width: 435px;
  }
  .movie-block {
    margin-top: 4.54545rem;
    margin-right: auto;
    margin-left: auto;
    padding: 3.78788rem;
  }
  .movie-block__title {
    text-align: center;
  }
  .box-block__wrap .movie-block__title {
    margin-bottom: 2.27273rem;
    font-size: 1.81818rem;
    line-height: 1.25;
  }
  .movie-block__subtitle {
    margin-bottom: 1.51515rem;
    font-size: 1.36364rem;
    line-height: 1.66667;
    text-align: center;
  }
  .box-block__wrap .movie-block__subtitle {
    margin-top: -1.5rem;
  }
  .movie-block__row {
    display: flex;
    justify-content: space-between;
  }
  .movie-block__col {
    width: calc(50% - 10px);
    max-width: 435px;
  }
  .movie-block__col + .movie-block__col {
    margin-top: 0;
  }
  .accordion-block__header {
    width: 380px;
  }
  .accordion-block__title {
    font-size: 1.4rem;
  }
  .accordion-block__content {
    padding: 2.5rem 3rem 1rem;
  }
  .accordion-block__row {
    display: flex;
    align-items: center;
  }
  .accordion-block__img {
    padding-bottom: 0;
  }
  .accordion-block__text {
    flex: 1;
    padding-left: 4.10959%;
  }
  .accordion-block__close-btn {
    margin-right: -1.5rem;
    font-size: 1.06061rem;
  }
  .table__caption {
    font-size: 2.12121rem;
    text-align: center;
  }
  .table .table__cell--th {
    font-size: 1.36364rem;
  }
  .table .table__cell--td {
    font-size: 1.36364rem;
  }
  .table-innerblock {
    padding: 20px;
    font-size: 1.06061rem;
    line-height: 1.71429;
  }
  .table-innerblock__head {
    font-size: 1.21212rem;
  }
  .anchor-list {
    display: flex;
    justify-content: center;
  }
  .anchor-list__item {
    margin: 0 1em;
    font-size: 1.21212rem;
    line-height: 2.5;
  }
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
  .pagetop__btn {
    font-size: 0.90909rem;
  }
  .page-header {
    margin-top: 2.27273rem;
  }
  .page-header__title {
    bottom: 29px;
    padding-left: 79px;
    background-size: 64px 64px;
    font-size: 2.34848rem;
  }
  .page-header__title small {
    font-size: 1.74242rem;
  }
  .page-header__mv {
    height: auto;
  }
  .page-header__mv.unit {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .page-header__mv-img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }
  .page-lead-p {
    font-size: 1.21212rem;
  }
  .page-lead-hidden {
    display: block !important;
  }
  .page-lead-nav {
    display: none;
  }
  .page-section {
    padding-bottom: 5.30303rem;
  }
  .page-section + .page-section {
    padding-top: 5.30303rem;
  }
  .page-section__title-wrap--divider {
    margin-top: 5.30303rem;
  }
  .page-section__title {
    margin-bottom: 3.0303rem;
    padding-bottom: 1.13636rem;
    font-size: 2.57576rem;
    line-height: 1.29412;
  }
  .page-section__title--lv3 {
    margin-top: 3.40909rem;
  }
  .page-section__title--lv3-text {
    font-size: 2.12121rem;
    line-height: 1.42857;
  }
  .page-section__lead {
    margin-top: 0.75758rem;
    font-size: 1.36364rem;
    line-height: 1.66667;
  }
  .card--ranking > *:nth-child(-n+6) {
    width: 31.70984%;
    max-width: 306px;
  }
  .card--ranking > *:nth-child(n+7) {
    width: 23.8342%;
    max-width: 230px;
  }
  .card--ranking > *:nth-child(n+7) .card__head-title {
    font-size: 1.21212rem;
    line-height: 1.375;
  }
  .card--ranking > *:nth-child(n+7) .card__content-course-detail {
    padding-top: 0.2em;
    line-height: 1.375;
  }
  .card--ranking > *:nth-child(n+7) .card__content-link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
  .card--ranking .card__unit {
    margin-top: 1.89394rem;
  }
  .card__head::before {
    font-size: 1.9697rem;
  }
  .card__head::after {
    font-size: 1.21212rem;
  }
  .card__head[data-rank="7"]::before, .card__head[data-rank="8"]::before, .card__head[data-rank="9"]::before, .card__head[data-rank="10"]::before {
    padding-left: 10px;
  }
  .card__head[data-rank="10"]::before {
    padding-left: 1px;
  }
  .card__head[data-rank="10"]::after {
    left: calc(48px - 1em - 8px);
  }
  .card__head-title {
    padding-left: 8px;
    font-size: 1.59091rem;
  }
  .card__summary {
    font-size: 1.13636rem;
    line-height: 1.46667;
  }
  .box-link-list {
    justify-content: flex-start;
    margin-right: -1%;
    margin-left: -1%;
  }
  .box-link-list__item {
    width: 32%;
    max-width: 316px;
    margin-left: 1%;
  }
  .box-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 1.36364rem;
  }
  .point-block__title {
    margin-bottom: 2.65152rem;
    font-size: 1.66667rem;
    line-height: 1.54545;
  }
  .point-block__lead {
    font-size: 1.21212rem;
  }
  .point-block__row {
    display: flex;
    justify-content: space-between;
  }
  .point-block__img {
    display: block;
    width: 31.08808%;
    max-width: 300px;
  }
  .point-block__text {
    flex: 1;
    padding-left: 4.14508%;
  }
  .point-list__item + .point-list__item {
    margin-top: 2.27273rem;
  }
  .point-list__link {
    font-size: 1.51515rem;
    line-height: 1.5;
  }
  .point-list__text {
    font-size: 1.21212rem;
  }
  .related-content__title {
    font-size: 1.81818rem;
  }
  .related-content__title {
    margin-bottom: 2.27273rem;
  }
  .related-list-wrap {
    margin-top: -25px;
  }
  .related-list {
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
  }
  .related-list__item {
    width: calc(25% - 10px);
    margin: 25px 0 0;
  }
  .related-list__caption {
    padding: 8px;
    font-size: 1.21212rem;
    line-height: 1.25;
  }
  .breadcrumb-nav {
    font-size: 1.21212rem;
  }
  .breadcrumb-nav__item a {
    margin-right: 7px;
  }
  .breadcrumb-nav__item a::after {
    margin-left: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .header__inner {
    height: auto;
    padding: 2rem;
  }
  .header__logo {
    width: 157px;
  }
  .header {
    padding: 0;
  }
  .search__magnify::before {
    font-size: 2rem;
  }
}

@media screen and (min-width: 414px) {
  .header {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .header__nav {
    width: calc(55px - 2rem);
  }
  .search {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .is-sm {
    display: block;
  }
  .plane-text {
    font-size: 1.66667rem;
  }
  .btn-unit__link--small {
    font-size: 1.4rem;
  }
  .border-block__text {
    font-size: 1.66667rem;
  }
}

/*# sourceMappingURL=maps/style.css.map */
