<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ===============================================================
  Foundation
=============================================================== */
/* ----------------
【初期設定】
reset.scss：cssのリセット
setting.scss：ブレイクポイント、関数の設定
---------------- */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&amp;family=Noto+Sans+JP:wght@400;700&amp;display=swap");
/* ----- color setting ----- */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
}

a {
  color: #333333;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media only screen and (min-width: 980px) {
  p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.7;
  }
}

.hp_mr10 {
  margin-right: 10px;
}

.hp_mr20 {
  margin-right: 20px;
}

.hp_ml10 {
  margin-left: 10px;
}

.hp_ml20 {
  margin-left: 20px;
}

.hp_mt10 {
  margin-top: 10px;
}

.hp_mt20 {
  margin-top: 20px;
}

.hp_mb10 {
  margin-bottom: 10px;
}

.hp_mb20 {
  margin-bottom: 20px;
}

.spBr {
  display: block;
}

@media only screen and (min-width: 980px) {
  .spBr {
    display: none;
  }
}

.pcBr {
  display: none;
}

@media only screen and (min-width: 980px) {
  .pcBr {
    display: block;
  }
}

/* ===============================================================
  Layout
=============================================================== */
/* ----------------
【ページ内で共通して使うレイアウト】
header:セクション見出しの余白
section：章・節・段落など
---------------- */
.l-section__wrapper {
  width: 90%;
  margin: 0 auto 40px auto;
}

@media only screen and (min-width: 980px) {
  .l-section__wrapper {
    width: 100%;
    max-width: 980px;
    margin: 0 auto 80px auto;
  }
}

.l-section__wrapper--1120 {
  width: 90%;
  margin: 0 auto 40px auto;
}

@media only screen and (min-width: 980px) {
  .l-section__wrapper--1120 {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 80px auto;
  }
}

@media only screen and (min-width: 980px) {
  .l-section__wrapper--w100 {
    width: 100%;
    margin: 0 auto;
  }
}

.l-section__innerLv1 {
  margin: 50px 0 0 0;
}

@media only screen and (min-width: 980px) {
  .l-section__innerLv1 {
    margin: 80px 0 0 0;
  }
}

.l-section__innerLv2 {
  margin: 40px 0 0 0;
}

@media only screen and (min-width: 980px) {
  .l-section__innerLv2 {
    margin: 60px 0 0 0;
  }
}

.l-section__innerLv3 {
  margin: 30px 0 0 0;
}

@media only screen and (min-width: 980px) {
  .l-section__innerLv3 {
    margin: 45px 0 0 0;
  }
}

.l-section__innerLv4 {
  margin: 15px 0 0 0;
}

@media only screen and (min-width: 980px) {
  .l-section__innerLv4 {
    margin: 22px 0 0 0;
  }
}

.l-section__lineDivision {
  margin: 20px 0px;
  background-color: #dddddd;
  height: 1px;
}

@media only screen and (min-width: 980px) {
  .l-section__lineDivision {
    margin: 40px 0px;
  }
}

.l-column__wrapper {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .l-column__wrapper {
    max-width: 980px;
  }
}

.l-column__wrapperMiddle {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .l-column__wrapperMiddle {
    max-width: 810px;
  }
}

.l-column__2common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 980px) {
  .l-column__2common {
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
}

.l-column__2common__left {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .l-column__2common__left {
    width: 47%;
  }
}

.l-column__2common__right {
  width: 100%;
  margin-top: 30px;
}

@media only screen and (min-width: 980px) {
  .l-column__2common__right {
    width: 47%;
    margin-top: 0%;
  }
}

.l-column__2sub, .l-column__2sub--border, .l-column__2sub--reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-column__2sub__left {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub__left {
    width: 60%;
  }
}

.l-column__2sub__left--w55 {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub__left--w55 {
    width: 55%;
  }
}

.l-column__2sub__right {
  width: 100%;
  margin-top: 30px;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub__right {
    width: 36%;
    margin-top: 0%;
  }
}

.l-column__2sub__right--w40 {
  width: 100%;
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub__right--w40 {
    width: 40%;
    margin-top: 0px;
  }
}

.l-column__2sub--border {
  border: 1px solid #dddddd;
  padding: 0px 0px 10px 0px;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub--border {
    padding: 0px 0px 0px 30px;
  }
}

.l-column__2sub--border .l-column__2sub__left {
  padding-top: 10px;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub--border .l-column__2sub__left {
    padding-top: 30px;
  }
}

.l-column__2sub--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-column__2sub--reverse .l-column__2sub__left--w55 {
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .l-column__2sub--reverse .l-column__2sub__left--w55 {
    margin-top: 0px;
  }
}

.l-column__2sub--reverse .l-column__2sub__right--w40 {
  margin-top: 0px;
}

.l-column__3common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-column__3common__item {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .l-column__3common__item {
    width: 31%;
  }
}

.l-column__3common--left {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* 画面幅に合わせてカラム落ちさせる */
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.l-column__3common--left .l-column__3common__item {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .l-column__3common--left .l-column__3common__item {
    width: 31%;
  }
}

.l-column__3common--left:after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}

.l-bgBox__gray {
  background-color: #f7f7f7;
  padding: 10px;
}

@media only screen and (min-width: 980px) {
  .l-bgBox__gray {
    padding: 20px;
  }
}

.l-bgBox__lowerBlue {
  background-color: #e1edf4;
  padding: 10px;
}

@media only screen and (min-width: 980px) {
  .l-bgBox__lowerBlue {
    padding: 20px;
  }
}

.l-bgBox__lowerBlueSub {
  background-color: #f2f9fc;
  padding: 10px;
}

@media only screen and (min-width: 980px) {
  .l-bgBox__lowerBlueSub {
    padding: 20px;
  }
}

.l-bgBox__lowerBlueSub--p40 {
  background-color: #f2f9fc;
  padding: 15px;
}

@media only screen and (min-width: 980px) {
  .l-bgBox__lowerBlueSub--p40 {
    padding: 40px;
  }
}

.l-bgBox__lowerBlueSub--p40 a {
  text-decoration: underline;
  color: #1161aa;
}

/* ===============================================================
  Component
=============================================================== */
/* ----------------
【ページ内で共通して使うコンポーネント】
---------------- */
.c-header {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .c-header {
    margin: 23px auto 0 auto;
  }
}

.c-headerInner {
  margin: 0 auto;
  width: 100%;
  height: 55px;
  top: 0px;
  background-color: #fff;
  z-index: 10;
}

@media only screen and (min-width: 980px) {
  .c-headerInner {
    padding-top: 0px;
    width: 100%;
    height: auto;
    position: relative;
  }
}

.c-headerInner.fixed {
  position: fixed;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__top {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-headerInner__logoArea {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 15px 0px 0px 15px;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__logoArea {
    padding: 0px;
  }
}

.c-headerInner__logo {
  width: 128px;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__logo {
    width: 185px;
  }

  .c-headerInner__logoArea {
    gap: 30px;
  }
}

.c-headerInner__button {
  background-color: #1161aa;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__button {
    display: none;
  }
}

.c-headerInner__button span {
  display: block;
  width: 24px;
  height: 1px;
  position: absolute;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
}

.c-headerInner__button span:nth-of-type(1) {
  top: 22px;
}

.c-headerInner__button span:nth-of-type(2) {
  top: 29px;
}

.c-headerInner__button span:nth-of-type(3) {
  top: 36px;
  -webkit-transition: .2s;
  transition: .2s;
}

.c-headerInner__contact {
  display: none;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-headerInner__contactInfo {
  margin-right: 20px;
  text-align: center;
}

.c-headerInner__contactText {
  font-size: 14px;
  font-size: 0.875rem;
}

.c-headerInner__contactPhone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 0 0;
}

.c-headerInner__contactIcon {
  width: 28px;
  margin: 0 10px 0 0;
}

.c-headerInner__contactNumber {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
}

.c-headerInner__nav {
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: -1;
  position: fixed;
  top: 54px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: scroll;
  padding-bottom: 80px;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__nav {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 23px auto 0 auto;
    position: initial;
    max-width: 1200px;
    height: auto;
    background-color: unset;
    top: auto;
    overflow: inherit;
    padding-bottom: 0px;
  }
}

.c-headerInner__navList {
  position: relative;
  border-bottom: 1px solid #dddddd;
  min-height: 53px;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__navList {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    position: initial;
    border-bottom: none;
    min-height: auto;
  }
}

@media only screen and (min-width: 980px) {
  .c-headerInner__navList:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 4px;
    width: 1px;
    height: 12px;
    background-color: #dddddd;
  }
}

.c-headerInner__navList:last-of-type:after {
  width: 0px;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__navList:hover .c-headerInner__subNav {
    visibility: visible;
  }
}

.c-headerInner__subNav {
  display: none;
  background-color: #f2f9fc;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__subNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #e1edf4;
    width: 100%;
    position: absolute;
    left: 0;
    visibility: hidden;
    -webkit-transition: 0s;
    transition: 0s;
  }
}

.c-headerInner__subNav &gt; li {
  float: left;
  width: 50%;
  border-top: 1px solid #dddddd;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__subNav &gt; li {
    border-top: none;
    width: auto;
    margin-right: 20px;
  }
}

.c-headerInner__subNav &gt; li:nth-child(odd) {
  border-right: 1px solid #dddddd;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__subNav &gt; li:nth-child(odd) {
    border-right: none;
  }
}

.c-headerInner__subNav &gt; li a {
  padding: 20px 0 20px 20px;
  display: block;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__subNav &gt; li a {
    padding: 20px 20px 20px 28px;
    color: #1161aa;
    background-image: url(../images/common/icon_arrowCircle_white.svg);
    background-size: 20px;
    background-position: left 53%;
    background-repeat: no-repeat;
  }
}

@media only screen and (min-width: 980px) {
  .c-headerInner__subNav &gt; li span {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  .c-headerInner__subNav.rightPotition &gt; li {
    float: right;
  }
}

.c-headerInner__navLink {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__navLink {
    padding: 0px 18px 18px 18px;
    border-bottom: 3px solid #fff;
    display: block;
    height: auto;
  }
}

@media only screen and (min-width: 980px) {
  .c-headerInner__navLink:hover {
    border-bottom: 3px solid #1161aa;
  }
}

.c-headerInner__navButton {
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  width: 80px;
  height: 53px;
  z-index: 3;
}

.c-headerInner__navButtonIcon {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 16px;
  height: 2px;
  background: #1161aa;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

.c-headerInner__navButtonIcon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1161aa;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (min-width: 980px) {
  .c-headerInner__navButton {
    display: none;
  }
}

.c-header__js-active {
  opacity: 1;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header__js-active &gt; span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 26px;
  left: 18px;
}

.c-header__js-active &gt; span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 26px;
  left: 18px;
}

.c-header__js-active &gt; span:nth-of-type(3) {
  display: none;
  -webkit-transition: .2s;
  transition: .2s;
}

.c-header__subNav-active {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: tooltipShow 0.3s linear 0s;
          animation: tooltipShow 0.3s linear 0s;
}

@media only screen and (min-width: 980px) {
  .c-header__subNav-active {
    -webkit-transition: 0s;
    transition: 0s;
    -webkit-animation: tooltipShow 0s linear 0s;
            animation: tooltipShow 0s linear 0s;
  }
}

.c-header__icon-minus::before {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@-webkit-keyframes tooltipShow {
  from {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes tooltipShow {
  from {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.c-footer {
  width: 100%;
  padding-bottom: 20px;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-footer {
    padding-bottom: 30px;
  }
}

.c-footer__top {
  padding: 45px 0px;
  background-color: #e1edf4;
  background-image: repeating-linear-gradient(90deg, #c3c3c330, #c3c3c330 1px, transparent 1px, transparent 24px), repeating-linear-gradient(0deg, #c3c3c330, #c3c3c330 1px, #e1edf4 1px, #e1edf4 24px);
}

@media only screen and (min-width: 980px) {
  .c-footer__top {
    padding: 65px 0px;
  }
}

.c-footer__top__wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__wrapper {
    max-width: 980px;
  }
}

.c-footer__top__title {
  font-size: 25px;
  font-size: 1.125rem;
  color: #1161aa;
  letter-spacing: 0.2em;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__title {
    font-size: 38px;
    font-size: 2rem;
  }
}

.c-footer__top__subTitle {
  display: inline-block;
  border: 1px solid #1161aa;
  border-radius: 15px;
  padding: 4px 18px;
  color: #1161aa;
  font-size: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__subTitle {
    padding: 4px 14px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 15px;
  }
}

.c-footer__top__buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px auto;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__buttonArea {
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    margin: 45px auto;
  }
}

.c-footer__top__buttonList {
  width: 100%;
  margin: 10px 0px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__buttonList {
    width: calc((100% / 3) - 22px);
  }
}

.c-footer__top__infoArea {
  background-color: #fff;
  border-radius: 10px;
  margin: 0 auto;
  padding: 20px 0px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__infoArea {
    max-width: 780px;
    padding: 30px 0px;
  }
}

.c-footer__sub__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 980px) {
  .c-footer__sub__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.c-footer__top__phoneBox {
  margin: 0 auto 20px auto;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__phoneBox {
    max-width: 640px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-footer__top__phoneTitle {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #1161aa;
  font-weight: 700;
  width: 100%;
  margin-bottom: 10px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__phoneTitle {
    font-size: 18px;
    font-size: 1.125rem;
    width: auto;
    margin-bottom: 0px;
  }
}

.c-footer__top__phoneNumber, .c-footer__top__phoneNumber--common {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #1161aa;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 0 auto;
  height: 3rem;
  max-width: 290px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__phoneNumber, .c-footer__top__phoneNumber--common {
    width: 100%;
    font-size: 32px;
    font-size: 2rem;
    width: auto;
    color: #333333;
    background-color: white;
    border-radius: 0;
    margin: 0;
    height: auto;
  }
}

.c-footer__top__phoneNumber--common {
  border: 1px solid #1161aa;
  border-radius: 30px;
  padding: 15px 0px;
  margin: 0 auto 10px auto;
  width: 85%;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__phoneNumber--common {
    border: none;
    border-radius: 0px;
    padding: 0px 0px;
    margin: auto;
    width: auto;
  }

  .c-footer__top__phoneNumber_ls {
    letter-spacing: 1.5px;
  }
}

.c-footer__top__phoneIcon {
  width: 20px;
  margin-right: 5px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__phoneIcon {
    margin-right: 8px;
  }
}

.c-footer__top__infoCaption {
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.c-footer__bottom {
  margin: 65px auto 0 auto;
  padding-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  position: relative;
}

.c-footer__bottom__infoArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottom__infoArea {
    max-width: 980px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
}

.c-footer__bottom__logo {
  width: 180px;
}

.c-footer__bottom__logo &gt; img:first-child {
  margin-bottom: 15px;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottom__logo {
    width: 230px;
    display: flex;
    align-items: flex-end;
    gap: 50px;
  }

  .c-footer__bottom__logo &gt; img:first-child {
    margin-bottom: 0;
  }
}

.c-footer__bottom__snsArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 30px;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottom__snsArea {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 170px;
    margin-top: 0px;
  }
}

.c-footer__bottom__snsList {
  width: auto;
  text-align: center;
  margin: 10px 20px;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottom__snsList {
    width: calc(100% / 3);
    text-align: right;
    margin: auto;
  }
}

.c-footer__bottom__snsIcon {
  width: 24px;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottom__snsIcon {
    width: 25px;
  }
}

.c-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .c-footer__nav {
    margin: 55px auto 0 auto;
    max-width: 980px;
  }
}

.c-footer__nav__list {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .c-footer__nav__list {
    width: calc(100% / 5);
    border-bottom: none;
  }
}

@media only screen and (min-width: 980px) {
  .c-footer__nav__list:nth-child(n + 6) {
    margin-top: 40px;
  }
}

.c-footer__nav__list &gt; li {
  margin: 0px 0px;
  font-size: 15px;
  font-size: 0.9375rem;
  border-bottom: 1px solid #dddddd;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-footer__nav__list &gt; li {
    margin: 20px 0px;
    border-bottom: none;
  }
}

.c-footer__nav__link {
  position: relative;
  padding-left: 12px;
}

.c-footer__nav__link:before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #333333;
  position: absolute;
  left: 2px;
  top: 50%;
}

.c-footer__nav__linkHead {
  font-weight: 700;
  padding-left: 0px;
  padding: 20px 20px;
  display: block;
}

@media only screen and (min-width: 980px) {
  .c-footer__nav__linkHead {
    padding: 0px 0px;
  }
}

.c-footer__nav__linkHead:before {
  display: none;
}

.c-footer__nav__button {
  position: absolute;
  right: 0px;
  top: 5px;
  width: 80px;
  height: 50px;
  z-index: 3;
}

@media only screen and (min-width: 980px) {
  .c-footer__nav__button {
    display: none;
  }
}

.c-footer__nav__buttonIcon {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 16px;
  height: 2px;
  background: #1161aa;
  position: relative;
  top: 10px;
  right: -45px;
}

.c-footer__nav__buttonIcon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1161aa;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-footer__subNav {
  display: none;
  background: #f2f9fc;
  overflow: hidden;
}

@media only screen and (min-width: 980px) {
  .c-footer__subNav {
    display: block;
    background: none;
    margin-top: 10px;
  }
}

.c-footer__subNav &gt; li {
  float: left;
  width: 50%;
  border-top: 1px solid #dddddd;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-footer__subNav &gt; li {
    width: 100%;
    border-top: none;
  }
}

.c-footer__subNav &gt; li:nth-child(odd) {
  border-right: 1px solid #dddddd;
}

@media only screen and (min-width: 980px) {
  .c-footer__subNav &gt; li:nth-child(odd) {
    border-right: none;
  }
}

.c-footer__subNav &gt; li a {
  display: block;
  padding: 20px 0 20px 20px;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-footer__subNav &gt; li a {
    padding: 10px 0px 10px 13px;
  }
}

.c-footer__subNav &gt; li a::before {
  content: "";
  width: 5px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  left: 10px;
  top: 50%;
}

@media only screen and (min-width: 980px) {
  .c-footer__subNav &gt; li a::before {
    left: 0px;
    width: 6px;
    height: 1px;
  }
}

.c-footer__subNav-active {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: tooltipShow 0.3s linear 0s;
          animation: tooltipShow 0.3s linear 0s;
}

@media only screen and (min-width: 980px) {
  .c-footer__subNav-active {
    -webkit-transition: 0s;
    transition: 0s;
    -webkit-animation: tooltipShow 0s linear 0s;
            animation: tooltipShow 0s linear 0s;
  }
}

.c-footer__icon-minus::before {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-footer__bottomNav {
  text-align: center;
  margin-top: 40px;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottomNav {
    margin-top: 70px;
  }
}

.c-footer__bottomNav a {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottomNav a {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0px;
  }
}

.c-footer__bottomNav a:nth-child(1) {
  display: block;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottomNav a:nth-child(1) {
    display: inline-block;
  }
}

.c-footer__bottomNav a:nth-child(2) {
  margin: 0px 20px 0px 0px;
  padding: 0px 20px 0px 0px;
  border-right: 1px solid #dddddd;
}

@media only screen and (min-width: 980px) {
  .c-footer__bottomNav a:nth-child(2) {
    margin: 0px 20px;
    padding: 0px 20px;
    border-left: 1px solid #dddddd;
  }
}

.c-footer__copyright {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0px 45px 0px;
}

@media only screen and (min-width: 980px) {
  .c-footer__copyright {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 30px 0px 0px 0px;
  }
}

.c-footer__pageTop {
  display: none;
}

@media only screen and (min-width: 980px) {
  .c-footer__pageTop {
    display: block;
    position: fixed;
    right: 0;
    background-color: #1161aa;
    z-index: 100;
    bottom: 0;
    width: 58px;
    height: 58px;
  }
}

.c-footer__spBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0px;
  z-index: 12;
}

@media only screen and (min-width: 980px) {
  .c-footer__spBottom {
    display: none;
  }
}

.c-footer__spBottom a {
  padding: 15px 8px;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  height: 45px;
}

.c-footer__spBottom a:nth-of-type(1) {
  width: 43%;
  background-color: #7ECBEC;
  color: #fff;
}

.c-footer__spBottom a:nth-of-type(2) {
  width: 43%;
  background-color: #29A8E0;
  color: #fff;
}

.c-footer__spBottom a:nth-of-type(3) {
  width: 14%;
  background-color: #1161aa;
}

.c-footer__spBottom a:nth-of-type(1) img,
.c-footer__spBottom a:nth-of-type(2) img {
  width: 15px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

.c-footer__spBottom a:nth-of-type(3) img {
  margin-top: -10px;
}

@media only screen and (min-width: 600px) {
  .c-footer__spBottom a {
    padding: 20px 8px;
    font-size: 1.4rem;
    height: 60px;
  }
  
  .c-footer__spBottom a:nth-of-type(1) {
    width: 45%;
  }
  
  .c-footer__spBottom a:nth-of-type(2) {
    width: 45%;
  }
  
  .c-footer__spBottom a:nth-of-type(3) {
    width: 10%;
  }
  
  .c-footer__spBottom a:nth-of-type(1) img,
  .c-footer__spBottom a:nth-of-type(2) img {
    width: 30px;
    margin-right: 6px;
  }
  
  .c-footer__spBottom a:nth-of-type(3) img {
    margin-top: -18px;
  }
}

.c-button, .c-button--header, .c-button--footer, .c-button--middle, .c-button--min, .c-button--min--w216 {
  background-color: #1161aa;
  border: 1px solid #1161aa;
  color: #fff;
  border-radius: 30px;
  padding: 14px 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .c-button, .c-button--header, .c-button--footer, .c-button--middle, .c-button--min, .c-button--min--w216 {
    padding: 22px 40px;
  }
}

.c-button__icon {
  width: 20px;
  margin-right: 10px;
  fill: #fff;
}

.c-button:hover, .c-button--header:hover, .c-button--footer:hover, .c-button--middle:hover, .c-button--min:hover, .c-button--min--w216:hover {
  background-color: #fff;
  color: #1161aa;
}

.c-button:hover .c-button__icon, .c-button--header:hover .c-button__icon, .c-button--footer:hover .c-button__icon, .c-button--middle:hover .c-button__icon, .c-button--min:hover .c-button__icon, .c-button--min--w216:hover .c-button__icon {
  fill: #1161aa;
}

@media only screen and (min-width: 980px) {
  .c-button__title {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
}

.c-button--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 980px) {
  .c-button--header {
    padding: 10px 30px;
  }
}

.c-button--footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 980px) {
  .c-button--footer {
    padding: 18px 40px;
  }
}

@media only screen and (max-width: 980px) {
  .c-button--footer {
    margin: 0 auto;
  }
}

.c-button--middle {
  width: 90%;
}

@media only screen and (min-width: 980px) {
  .c-button--middle {
    width: 380px;
    padding: 16px 30px;
  }
}

.c-button--min, .c-button--min--w216 {
  width: 90%;
}

@media only screen and (min-width: 980px) {
  .c-button--min, .c-button--min--w216 {
    width: 200px;
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 980px) {
  .c-button--min--w216 {
    width: 216px;
  }
}

@media only screen and (max-width: 980px) {
  .c-button--max--w290 {
    width: 100%;
    max-width: 290px;
  }
}

@media only screen and (max-width: 980px) {
  .c-button--max--w270 {
    width: 100%;
    max-width: 270px;
  }
}

.c-button__moreOpen, .c-button__moreOpen--close {
  display: block;
  padding: 10px 0px;
  border: 1px solid #1161aa;
  color: #1161aa;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .c-button__moreOpen, .c-button__moreOpen--close {
    padding: 15px 0px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-button__moreOpen:hover, .c-button__moreOpen--close:hover {
  background-color: #1161aa;
  color: #fff;
}

.c-button__moreOpen-contents {
  display: none;
}

.c-button__moreOpen--close {
  display: none;
}

.c-heading {
  width: 100%;
}

.c-heading__pageHead {
  width: 100%;
  padding: 40px 0px;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), to(#1d67b7));
  background: linear-gradient(to right, #00c6fb, #1d67b7);
}

@media only screen and (min-width: 980px) {
  .c-heading__pageHead {
    padding: 90px 0px;
  }
}

.c-heading__pageTitle {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-heading__pageTitle {
    font-size: 38px;
    font-size: 2rem;
  }
}

.c-heading__pageTitle--jp {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 2px 20px;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .c-heading__pageTitle--jp {
    padding: 2px 18px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-heading__lv2--center {
  text-align: center;
}

.c-heading__lv2--logo {
  width: auto;
  height: 40px;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv2--logo {
    height: 56px;
  }
}

.c-heading__lv2__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv2__title {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 700;
  }
}

.c-heading__lv2__titleLine {
  display: inline-block;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv2__titleLine {
    margin-top: 15px;
  }
}

.c-heading__lv2__titleLine span {
  display: inline-block;
  width: 14px;
  height: 3px;
  background-color: #1161aa;
}

.c-heading__lv2__titleLine span:last-child {
  background-color: #29a9e0;
}

.c-heading__lv2__titleBadge, .c-heading__lv2__titleBadge--width207 {
  display: inline-block;
  background-color: #d7e9f4;
  color: #1161aa;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 15px;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.2em;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv2__titleBadge, .c-heading__lv2__titleBadge--width207 {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
    padding: 8px 22px;
  }
}

.c-heading__lv2__titleBadge--width207 {
  min-width: 176px;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv2__titleBadge--width207 {
    min-width: 207px;
  }
}

.c-heading__lv3 {
  background-color: #f2f9fc;
  padding: 10px 0px;
  margin: 0px 0px 15px 0px;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv3 {
    padding: 20px 0px;
    margin: 0px 0px 40px 0px;
  }
}

.c-heading__lv3__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 20px;
  line-height: 1.7;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv3__title {
    font-size: 20px;
    font-size: 1.25rem;
    padding-left: 40px;
    font-weight: 700;
  }
}

.c-heading__lv3__titleLine span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50%;
  background-color: #1161aa;
}

.c-heading__lv3__titleLine span:last-child {
  background-color: #29a9e0;
  top: auto;
  bottom: 0;
}

/* 追記 */
.c-heading__school-type {
  background-color: #f2f9fc;
  padding: 10px 0px;
  margin: 30px 0px 15px 0px;
  position: relative;
 }
  
@media only screen and (min-width: 980px) {
  .c-heading__school-type {
    padding: 20px 0px;
    margin: 0px 0px 40px 0px;
  }
}
  
.c-heading__school-type__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
    
.c-heading__school-type__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 20px;
  line-height: 1.7;
}
  
@media only screen and (min-width: 980px) {
  .c-heading__school-type__title {
    font-size: 20px;
    font-size: 1.25rem;
    padding-left: 40px;
    font-weight: 700;
  }
}
  
.c-heading__school-type__titleLine span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50%;
  background-color: #1161aa;
}
  
.c-heading__school-type__titleLine span:last-child {
  background-color: #29a9e0;
  top: auto;
  bottom: 0;
}
  
.c-heading__school-type__btn {
  display: block;
  float: right;
  padding-right: 15px;
}
  
@media only screen and (min-width: 980px) {
  .c-heading__school-type__btn {
    padding-right: 40px;
  }
}
  
@media only screen and (max-width: 980px) {
  .c-heading__school-type__btn .c-button--min, .c-heading__school-type__btn .c-button--min--w216 {
    padding: 5px 18px;
    width: 102px;
  }
}
  
.c-heading__school-type__btn .c-button__title {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
  
 @media only screen and (min-width: 980px) {
  .c-heading__school-type__btn .c-button__title {
    font-size: 16px;
    font-size: 1rem;
  }
 }
  
 .c-heading__school-type__btnText, .c-heading__school-type__btnText--open, .c-heading__school-type__btnText--close {
  width: 110px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #1161aa;
 }
  
@media only screen and (max-width: 980px) {
  .c-heading__school-type__btnText, .c-heading__school-type__btnText--open, .c-heading__school-type__btnText--close {
    padding: 0;
    font-size: 0.92rem;
  }
}
  
.c-heading__school-type__btnText img, .c-heading__school-type__btnText--open img, .c-heading__school-type__btnText--close img {
  display: inline-block;
}
  
.c-heading__school-type__btnText--open {
  display: inline-block;
  text-align: right;
}
  
.c-heading__school-type__btnText--close {
  display: none;
  text-align: right;
}
  
.c-heading__school-type__btnIcon {
  width: 20px;
  height: auto;
}
  
.c-heading__school-type__contents {
  display: none;
}
 /* 追記終わり */

.c-heading__lv4 {
  margin: 0px 0px 10px 0px;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv4 {
    margin: 0px 0px 30px 0px;
  }
}

.c-heading__lv4__title, .c-heading__lv4__title--blue, .p-rplus__mainHeading--blue {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv4__title, .c-heading__lv4__title--blue, .p-rplus__mainHeading--blue {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 700;
  }
}

.c-heading__lv4__title--blue {
  color: #1161aa;
}

.c-heading__lv5 {
  margin: 0px 0px 15px 0px;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv5 {
    margin: 0px 0px 25px 0px;
  }
}

.c-heading__lv5__title, .c-heading__lv5__title--blue {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv5__title, .c-heading__lv5__title--blue {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
  }
}

.c-heading__lv5__title--blue {
  color: #1161aa;
}

.c-heading__lv6 {
  margin: 0px 0px 10px 0px;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv6 {
    margin: 0px 0px 16px 0px;
  }
}

.c-heading__lv6__title, .c-heading__lv6__title--blue {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv6__title, .c-heading__lv6__title--blue {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 700;
  }
}

.c-heading__lv6__title--blue {
  color: #1161aa;
}

.c-heading__pointBagde {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 980px) {
  .c-heading__pointBagde {
    margin: 0 0 25px 0;
  }
}

.c-heading__pointBagde__bagde {
  border: 1px solid #1161aa;
  border-radius: 20px;
  padding: 8px 12px;
  margin-right: 10px;
  color: #1161aa;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

@media only screen and (min-width: 980px) {
  .c-heading__pointBagde__bagde {
    font-size: 16px;
    font-size: 1rem;
    padding: 8px 15px;
    margin-right: 20px;
  }
}

.c-heading__pointBagde__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  max-width: 65%;
}

@media only screen and (min-width: 980px) {
  .c-heading__pointBagde__title {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
    max-width: unset;
  }
}

.c-heading__tctCenter {
  text-align: center;
}

.c-heading__orangeColor {
  color: #ef5a24;
}

.c-pankuzu {
  width: 90%;
  margin: 25px auto 25px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .c-pankuzu {
    width: 100%;
    max-width: 980px;
    margin: 20px auto 45px auto;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-pankuzu__item {
  margin-right: 20px;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-pankuzu__item {
    margin-right: 25px;
  }
}

.c-pankuzu__item a {
  color: #1161aa;
  text-decoration: underline;
}

.c-pankuzu__item::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -12px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (min-width: 980px) {
  .c-pankuzu__item::after {
    top: 6px;
    right: -14px;
  }
}

.c-pankuzu__item:last-child a {
  color: #333333;
  text-decoration: none;
}

.c-pankuzu__item:last-child::after {
  content: none;
}

.c-pageNav__wrapper {
  width: 100%;
  margin: 0 auto 40px auto;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__wrapper {
    width: 100%;
    max-width: 980px;
    margin: 0 auto 80px auto;
  }
}

.c-pageNav__layerArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #1161aa;
  overflow: hidden;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerArea {
    border-bottom: 1px solid #1161aa;
  }
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerArea.item2 &gt; .c-pageNav__layerLink, .c-pageNav__layerArea.item2 &gt; .c-pageNav__layerLink--column4 {
    width: calc(100% / 2);
  }
}

.c-pageNav__layerArea.item3 {
  border-bottom: 1px solid #1161aa;
}

.c-pageNav__layerArea.item3 &gt; a:nth-child(3) {
  width: 100%;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerArea.item3 &gt; a:nth-child(3) {
    width: calc(100% / 3);
    border-right: 1px solid #1161aa;
  }
}

.c-pageNav__layerArea.item7 &gt; a:nth-child(7) {
  width: 100%;
  border-left: none;
  border-right: none;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerArea.item7 &gt; a:nth-child(7) {
    border-left: 1px solid #1161aa;
    border-right: 1px solid #1161aa;
  }
}

.c-pageNav__layerLink, .c-pageNav__layerLink--column4 {
  width: 50%;
  padding: 15px 0px;
  text-align: center;
  color: #1161aa;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  border-bottom: 1px solid #1161aa;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerLink, .c-pageNav__layerLink--column4 {
    width: calc(100% / 3);
    padding: 20px 0px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    border-right: 1px solid #1161aa;
    border-bottom: none;
  }
}

.c-pageNav__layerLink:hover, .c-pageNav__layerLink--column4:hover {
  background-color: #1161aa;
  color: #fff;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerLink:first-child, .c-pageNav__layerLink--column4:first-child {
    border-left: 1px solid #1161aa;
  }
}

.c-pageNav__layerLink:nth-child(odd), .c-pageNav__layerLink--column4:nth-child(odd) {
  border-right: 1px solid #1161aa;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerLink:nth-child(4), .c-pageNav__layerLink--column4:nth-child(4) {
    border-left: 1px solid #1161aa;
  }
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerLink:nth-child(n+4), .c-pageNav__layerLink--column4:nth-child(n+4) {
    border-top: 1px solid #1161aa;
  }
}

.c-pageNav__layerLink.active, .active.c-pageNav__layerLink--column4 {
  background-color: #1161aa;
  color: #fff;
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerLink--column4 {
    width: calc(100% / 4);
  }
}

@media only screen and (min-width: 980px) {
  .c-pageNav__layerLink--column4:nth-child(4) {
    border-left: none;
    border-top: none;
  }
}

.c-video__wrapper {
  width: 100%;
}

.c-video__wrapper video {
  width: 100%;
}

.c-video__youtubeWrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.c-video__youtubeWrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.c-classParts__topCopy {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1161aa;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .c-classParts__topCopy {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 700;
  }
}

.c-classParts__topBox {
  text-align: center;
  border: 1px solid #dddddd;
  padding-bottom: 30px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__topBox {
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-classParts__topBoxText {
  padding: 0px 10px;
  text-align: left;
}

@media only screen and (min-width: 980px) {
  .c-classParts__topBoxText {
    padding: 0px 25px;
  }
}

.c-classParts__topBoxCaption {
  font-size: 12px;
  font-size: 0.75rem;
  color: #1161aa;
  font-weight: 700;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__topBoxCaption {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-classParts__topBoxLogo, .c-classParts__topBoxLogo--height55 {
  width: auto;
  height: 45px;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .c-classParts__topBoxLogo, .c-classParts__topBoxLogo--height55 {
    height: 45px;
  }
}

.c-classParts__topBoxLogo--height55 {
  height: 55px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__topBoxLogo--height55 {
    height: 55px;
  }
}

.c-classParts__bgBox {
  background-color: #f7f7f7;
  border: 1px solid #dddddd;
  padding: 18px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox {
    padding: 30px;
  }
}

.c-classParts__bgBox__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__heading {
    margin: 0 0 25px 0;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
}

.c-classParts__bgBox__arrow {
  width: 20px;
  margin-right: 8px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__arrow {
    margin-right: 15px;
  }
}

.c-classParts__bgBox__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1161aa;
  width: 80%;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__title {
    font-size: 22px;
    font-size: 1.375rem;
    margin-right: 15px;
    width: auto;
  }
}

.c-classParts__bgBox__badge {
  background-color: #fff;
  border-radius: 15px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1161aa;
  padding: 8px 12px;
  margin-top: 12px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__badge {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 10px 18px;
    margin-top: 0px;
  }
}

.c-classParts__bgBox__badgeImg {
  width: auto;
  height: 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__badgeImg {
    height: 18px;
  }
}

.c-classParts__bgBox__text {
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__text {
    margin: 0 0 25px 0;
  }
}

.c-classParts__bgBox__orange {
  color: #ef5a24;
  font-weight: 700;
  line-height: 1.7;
}

.c-classParts__bgBox__blue {
  color: #1161aa;
  font-weight: 700;
  line-height: 1.7;
}

.c-classParts__bgBox__caution {
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__caution {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-classParts__bgBox__list {
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bgBox__list {
    margin-top: 20px;
  }
}

.c-classParts__bgBox__list &gt; li {
  padding: 0px 0px 12px 18px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}

.c-classParts__bgBox__list &gt; li::before {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #1161aa;
  border-radius: 50%;
  position: absolute;
  top: 14%;
  left: 0px;
}

.renewal-icon {
  margin-bottom: 3px;
  margin-left: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #ef5a24;
}

@media only screen and (min-width: 980px) {
  .renewal-icon {
    font-size: 18px;
  }
}

.c-classParts__linkLine {
  color: #1161aa;
  text-decoration: underline;
}

.c-classParts__linkLine:hover {
  text-decoration: none;
}

.c-classParts__featureBox {
  border: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

.c-classParts__featureBox__titleBox {
  background-color: #1161aa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding: 14px 18px;
  text-align: center;
  width: 40%;
}

@media only screen and (min-width: 980px) {
  .c-classParts__featureBox__titleBox {
    padding: 20px 0px;
    width: 25%;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
}

.c-classParts__featureBox__titleBoxIcon {
  width: 30px;
  margin: 0px 0px 10px 0px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__featureBox__titleBoxIcon {
    width: 38px;
    margin: 0px 10px 0px 0px;
  }
}

.c-classParts__featureBox__titleBoxText {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media only screen and (min-width: 980px) {
  .c-classParts__featureBox__titleBoxText {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.c-classParts__featureBox__commentBox {
  text-align: left;
  padding: 0px 14px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__featureBox__commentBox {
    text-align: center;
    width: 75%;
    padding: 0px 0px;
  }
}

.c-classParts__featureBox__commentBoxText {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-classParts__featureBox__commentBoxText {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-classParts__voiceBox {
  background-color: #e1edf4;
  padding: 30px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__voiceBox {
    padding: 20px;
  }
}

.c-classParts__voiceBox__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-classParts__voiceBox__phArea {
  min-width: 20%;
  margin-right: 3%;
  max-width: 150px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__voiceBox__phArea {
    width: 140px;
  }
}

@media only screen and (max-width: 750px) {
  .c-classParts__voiceBox__phArea {
    width: 100px;
  }
}

.c-classParts__voiceBox__phArea img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .c-classParts__voiceBox__phArea img {
    max-width: 200px;
  }
}

.c-classParts__voiceBox__commentArea {
  width: auto;
}

@media only screen and (max-width: 980px) {
  .c-classParts__voiceBox__commentArea {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-classParts__voiceBox__commentTitle {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1161aa;
  font-weight: 700;
  margin-bottom: 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__commentTitle {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.c-classParts__voiceBox__commentName {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__commentName {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

.c-classParts__voiceBox__commentName &gt; span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__commentName &gt; span {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-classParts__voiceBox__comment, .c-classParts__voiceBox__comment--sp {
  display: none;
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__comment, .c-classParts__voiceBox__comment--sp {
    display: inline-block;
    margin-top: 0;
  }
}

.c-classParts__voiceBox__comment--sp {
  display: inline-block;
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__comment--sp {
    display: none;
  }
}

.c-classParts__voiceBox__comment--parents {
  display: inline-block;
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__voiceBox__comment--parents {
    margin-top: 0;
  }
}

.c-classParts__result__growthList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 980px) {
  .c-classParts__result__growthList {
    max-width: 420px;
    margin: 0 auto;
  }
}

.c-classParts__result__growthItem {
  border: 1px solid #dddddd;
  width: 46%;
  margin: 0% 2% 2% 2%;
  text-align: center;
  padding: 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthItem {
    width: 23%;
    padding: 15px;
    margin: 0% 1% 2% 1%;
  }
}

.c-classParts__result__growthItem &gt; span {
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthItem &gt; span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-classParts__result__growthItem &gt; p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 5px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthItem &gt; p {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 10px;
  }
}

.c-classParts__result__growthItemCurriculum {
  background-color: #e1edf4;
  color: #1161aa;
  padding: 5px 0px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthItemCurriculum {
    padding: 8px 0px;
  }
}

.c-classParts__result__growthScore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.c-classParts__result__growthScoreItem, .c-classParts__result__growthScoreItem--result {
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthScoreItem, .c-classParts__result__growthScoreItem--result {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.c-classParts__result__growthScoreItem &gt; span, .c-classParts__result__growthScoreItem--result &gt; span {
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthScoreItem &gt; span, .c-classParts__result__growthScoreItem--result &gt; span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-classParts__result__growthScoreItem &gt; p, .c-classParts__result__growthScoreItem--result &gt; p {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: normal;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__growthScoreItem &gt; p, .c-classParts__result__growthScoreItem--result &gt; p {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.c-classParts__result__growthScoreItem--result {
  font-weight: 700;
}

.c-classParts__result__growthScore &gt; img {
  width: 6px;
  margin: 0% 3%;
}

.c-classParts__result__growthUp {
  background-color: #ef5a24;
  color: #fff;
  font-weight: 700;
  padding: 6px 0px;
  margin-top: 10px;
  position: relative;
}

.c-classParts__result__growthUp::after {
  content: '';
  position: absolute;
  right: 0;
  top: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ef5a24 transparent transparent transparent;
  border-width: 10px 10px 0 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-classParts__result__yearBar {
  text-align: center;
  background-color: #f2f9fc;
  color: #1161aa;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px 0px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__yearBar {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 20px 0px;
  }
}

.c-classParts__result__awardsList {
  margin-top: 30px;
}

.c-classParts__result__awardsItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px auto 20px auto;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__awardsItem {
    width: 70%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-classParts__result__awardsItem &gt; img {
  width: 50px;
  margin-right: 5%;
}

.c-classParts__result__awardsItemSchool {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 8%;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__awardsItemSchool {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.c-classParts__result__awardsItemNumber {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1161aa;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__awardsItemNumber {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.c-classParts__result__awardsItemNumber &gt; span {
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__awardsItemNumber &gt; span {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-classParts__result__awardsItemCaption {
  margin-left: 2%;
}

.c-classParts__result__breakingTitle {
  background-color: #1161aa;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0 auto;
  font-size: 14px;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__breakingTitle {
    font-size: 18px;
    font-size: 1.375rem;
  }
}

.c-classParts__result__breakingList {
  margin-top: 30px;
  text-align: center;
}

.c-classParts__result__breakingItem {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__breakingItem {
    font-size: 22px;
    font-size: 1.625rem;
  }
}

.c-classParts__result__lastMessage {
  background-color: #f2f9fc;
  text-align: center;
  padding: 30px 0px;
  margin-top: 40px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__lastMessage {
    margin-top: 80px;
  }
}

.c-classParts__result__lastMessage &gt; p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-classParts__result__lastMessage &gt; p {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.c-classParts__list__ja {
  margin-left: 40px;
}

.c-classParts__list__ja__item {
  list-style-type: decimal;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.c-classParts__list__blackDot {
  margin-left: 20px;
}

.c-classParts__list__blackDot__item {
  list-style: none;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.c-classParts__list__blackDot__item:before {
  content: "●";
  margin-left: -20px;
}

.c-classParts__list__no {
  margin-left: 20px;
}

.c-classParts__list__no__item {
  list-style-type: decimal;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.c-classParts__list__kome, .c-classParts__list__kome--timesche {
  margin-left: 20px;
}

.c-classParts__list__kome--timesche {
  margin-left: 16px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__list__kome--timesche {
    margin-left: 14px;
  }
}

.c-classParts__list__kome__item, .c-classParts__list__kome__item--timesche {
  list-style: none;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 980px) {
  .c-classParts__list__kome__item, .c-classParts__list__kome__item--timesche {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-classParts__list__kome__item:before, .c-classParts__list__kome__item--timesche:before {
  content: "※";
  margin-left: -20px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__list__kome__item:before, .c-classParts__list__kome__item--timesche:before {
    margin-left: -18px;
  }
}

.c-classParts__list__kome__item--timesche {
  font-size: 16px;
  font-size: 1rem;
}

@media only screen and (max-width: 980px) {
  .c-classParts__list__kome__item--timesche {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-classParts__list__kome__item--timesche:before {
  margin-left: -16px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__list__kome__item--timesche:before {
    margin-left: -14px;
  }
}

.c-classParts__border--gray {
  border-top: solid 1px #dddddd;
}

.c-classParts__table {
  width: 100%;
  table-layout: fixed;
}

.c-classParts__table__heading, .c-classParts__table__heading--gray {
  vertical-align: middle;
  border: solid 1px #dddddd;
  text-align: center;
  padding: 20px 5px;
  line-height: 1.4;
}

.c-classParts__table__heading--gray {
  background: #f7f7f7;
}

.c-classParts__table__heading--bottomNone {
  border-bottom: none;
}

.c-classParts__table__heading--topNone {
  border-top: none;
}

.c-classParts__table__heading--w200, .c-classParts__table__heading--w200--4column {
  width: 90px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__heading--w200, .c-classParts__table__heading--w200--4column {
    width: 200px;
  }
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading--w200--4column {
    width: 80px;
  }
}

.c-classParts__table__heading--w260 {
  width: 120px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__heading--w260 {
    width: 260px;
  }
}

.c-classParts__table__heading--w145 {
  width: 72px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__heading--w145 {
    width: 145px;
  }
}

.c-classParts__table__heading__inner {
  display: block;
  width: 100%;
}

.c-classParts__table__heading__title__wrap::after {
  content: "";
  display: block;
  clear: both;
}

.c-classParts__table__heading__title {
  display: block;
  float: left;
  text-align: left;
  padding-left: 15px;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__heading__title {
    padding-left: 44px;
    width: 52%;
  }
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading__title {
    width: 70%;
  }
}

@media only screen and (max-width: 490px) {
  .c-classParts__table__heading__title {
    width: 53%;
  }
}

.c-classParts__table__heading__sns {
  display: block;
  float: right;
  padding-right: 30px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading__sns {
    clear: both;
    float: left;
    padding-right: 0px;
    padding-left: 15px;
  }
}

.c-classParts__table__heading__lineBtn {
  display: block;
  margin-bottom: 6px;
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading__lineBtn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 0px;
  }
}

.c-classParts__table__heading__lineBtn img {
  width: 98px;
  height: auto;
}

.c-classParts__table__heading__mapBtn {
  display: block;
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading__mapBtn {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 0px;
  }
}

.c-classParts__table__heading__mapBtn img {
  width: 98px;
  height: auto;
}

.c-classParts__table__heading__btn {
  display: block;
  float: right;
  padding-right: 15px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__heading__btn {
    padding-right: 40px;
  }
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading__btn .c-button--min, .c-classParts__table__heading__btn .c-button--min--w216 {
    padding: 5px 18px;
    width: 102px;
  }
}

.c-classParts__table__heading__btn .c-button__title {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__heading__btn .c-button__title {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-classParts__table__heading__btnText, .c-classParts__table__heading__btnText--open, .c-classParts__table__heading__btnText--close {
  width: 110px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #1161aa;
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading__btnText, .c-classParts__table__heading__btnText--open, .c-classParts__table__heading__btnText--close {
    padding: 0;
    font-size: 0.92rem;
  }
}

.c-classParts__table__heading__btnText img, .c-classParts__table__heading__btnText--open img, .c-classParts__table__heading__btnText--close img {
  display: inline-block;
}

.c-classParts__table__heading__btnText--open {
  display: inline-block;
  text-align: right;
}

.c-classParts__table__heading__btnText--close {
  display: none;
  text-align: right;
}

.c-classParts__table__heading__btnIcon {
  width: 20px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .c-classParts__table__heading .hp_ml20, .c-classParts__table__heading--gray .hp_ml20 {
    margin-left: 0px;
  }
}

.c-classParts__table__text--left {
  padding: 15px 10px;
  text-align: left;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text--left {
    padding: 20px;
  }
}

.c-classParts__table__text {
  padding: 15px 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text {
    padding: 20px;
  }
}

.c-classParts__table__text--14, .c-classParts__table__text--14bold {
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text--14, .c-classParts__table__text--14bold {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.c-classParts__table__text--14bold {
  font-weight: 700;
}

.c-classParts__table__text--16, .c-classParts__table__text--16bold {
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text--16, .c-classParts__table__text--16bold {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.c-classParts__table__text--16bold {
  font-weight: 700;
}

.c-classParts__table__text--18, .c-classParts__table__text--18bold {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text--18, .c-classParts__table__text--18bold {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.c-classParts__table__text--18bold {
  font-weight: 700;
}

.c-classParts__table__text--20bold {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text--20bold {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.c-classParts__table__text--26, .c-classParts__table__text--26bold {
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (min-width: 980px) {
  .c-classParts__table__text--26, .c-classParts__table__text--26bold {
    font-size: 26px;
    font-size: 1.625rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.c-classParts__table__text--26bold {
  font-weight: 700;
}

.c-classParts__table__text--blue {
  color: #1161aa;
}

.c-classParts__table__rightBorderDotted {
  border-right: dotted 2px #dddddd;
}

.c-classParts__bottomBlock__bgBlue {
  background: #f2f9fc;
  margin-top: 0px;
  padding: 30px 10px;
}

@media only screen and (min-width: 980px) {
  .c-classParts__bottomBlock__bgBlue {
    margin-top: 80px;
    padding: 50px 0px;
  }
}

.c-classParts__bottomBlock__bgBlue .c-heading__lv2__title {
  line-height: 1.7;
}

@media only screen and (max-width: 980px) {
  .c-classParts__bottomBlock__bgBlue .c-heading__lv2__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-classParts__movieReady {
  padding: 10px;
  margin: 0 auto;
  display: table;
  border: solid 1px #000;
  text-align: center;
}

.c-caption__item {
  margin-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
}

@media only screen and (min-width: 980px) {
  .c-caption__item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

/* ===============================================================
  Page
=============================================================== */
/* ----------------
【各ページ固有のレイアウト】
---------------- */
.p-top__mainPh {
  background-image: url(../images/top/top-mainPhBg--sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh - 100px);
  position: relative;
  background-position: center top;
  margin-bottom: -25px;
}

@media only screen and (min-width: 980px) {
  .p-top__mainPh {
    background-image: url(../images/top/top-mainPhBg.jpg);
    background-position: center top;
    height: 530px;
    margin-bottom: -40px;
  }
}

.p-top__mainPh__title {
  margin: 0 auto;
  /*height: 612px;*/
  /*position: absolute;
    top: 25px;
    left: 35px;*/
}

@media only screen and (min-width: 980px) {
  .p-top__mainPh__title {
    max-width: 980px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 530px;
  }
}

@media only screen and (max-width: 980px) {
  .p-top__mainPh__title {
    margin: 0 auto;
    height: 340px;
    max-width: 87%;
    padding-top: 60px;
  }
}

.p-top__mainPh__titleImg--pc {
  display: none;
}

@media only screen and (min-width: 980px) {
  .p-top__mainPh__titleImg--pc {
    width: 574px;
    height: auto;
    margin-left: 40px;
    display: inline-block;
  }
}

.p-top__mainPh__titleImg--sp {
  width: 131px;
  height: auto;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .p-top__mainPh__titleImg--sp {
    display: none;
  }
}

.p-top__titleWrap {
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 980px) {
  .p-top__titleWrap {
    margin-bottom: 40px;
  }
}

.p-top__titleWrap .c-heading__pageTitle {
  color: #1161aa;
}

.p-top__titleWrap .c-heading__pageTitle--jp {
  color: #1161aa;
  border: 1px solid #1161aa;
}

.p-top__pickUp__slideWrap .swiper {
  width: 100%;
  height: 100%;
}

.p-top__pickUp__slideWrap .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-top__pickUp__slideWrap .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__pickUp__slideWrap .swiper-button-prev {
  background-image: url(../images/top/slidePrev.svg);
  background-repeat: no-repeat;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  left: calc(10px + 20.5vw);
}

@media only screen and (max-width: 980px) {
  .p-top__pickUp__slideWrap .swiper-button-prev {
    margin-top: -14.5px;
    width: 29px;
    height: 29px;
    left: calc(10px + 13.5vw);
  }
}

.p-top__pickUp__slideWrap .swiper-button-prev:after {
  display: none;
}

.p-top__pickUp__slideWrap .swiper-button-next {
  background-image: url(../images/top/slideNext.svg);
  background-repeat: no-repeat;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  right: calc(10px + 20.5vw);
}

@media only screen and (max-width: 980px) {
  .p-top__pickUp__slideWrap .swiper-button-next {
    margin-top: -14.5px;
    width: 29px;
    height: 29px;
    right: calc(10px + 13.5vw);
  }
}

.p-top__pickUp__slideWrap .swiper-button-next:after {
  display: none;
}

.p-top__caution {
  width: 90%;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
  margin-bottom: 40px;
}

@media only screen and (min-width: 980px) {
  .p-top__caution {
    width: 100%;
  }
}

.p-top__caution--left {
  width: 210px;
  padding: 20px 0;
  min-height: 140px;
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), to(#1d67b7));
  background: linear-gradient(to right, #00c6fb, #1d67b7);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
}

@media only screen and (min-width: 980px) {
  .p-top__caution--left {
    width: 210px;
  }
}

.p-top__caution--leftInner {
  display: block;
  margin: 0 auto;
}

.p-top__caution--left__iconImg {
  width: 25px;
  height: 25px;
  margin: 0 auto 10px auto;
}

.p-top__caution--left__text {
  color: #FFF;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

@media only screen and (min-width: 980px) {
  .p-top__caution--left__text {
    line-height: 1;
  }
}

.p-top__caution--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #dddddd;
  width: 70%;
}

@media only screen and (min-width: 980px) {
  .p-top__caution--right {
    width: 100%;
  }
}

.p-top__caution--rightInner {
  padding: 22px 20px;
}

@media only screen and (min-width: 980px) {
  .p-top__caution--rightInner {
    padding: 20px 40px;
  }
}

.p-top__caution--right__day {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #1161aa;
}

.p-top__caution--right__title {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.5;
}

.p-top__caution--right__textLink {
  font-size: 16px;
  font-size: 1rem;
  color: #1161aa;
  text-decoration: underline;
  padding-top: 10px;
  display: inline-block;
}

.p-top__infoPickup {
  border-top: solid 1px #dddddd;
}

.p-top__infoPickup__linkWrap {
  text-align: right;
  margin-top: 30px;
}

.p-top__infoPickup__link {
  line-height: 24px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #1161aa;
}

.p-top__infoPickup__link .top-infoPickupIcon {
  width: 24px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

.p-top__infoPickup__link:hover {
  text-decoration: underline;
}

.p-top__course {
  background-color: #f7f7f7;
  background-image: repeating-linear-gradient(90deg, #c3c3c330, #c3c3c330 1px, transparent 1px, transparent 24px), repeating-linear-gradient(0deg, #c3c3c330, #c3c3c330 1px, #f7f7f7 1px, #f7f7f7 24px);
  padding: 50px 0 60px 0;
}

@media only screen and (min-width: 980px) {
  .p-top__course {
    padding: 40px 0 60px 0;
  }
}

@media only screen and (max-width: 980px) {
  .p-top__course .l-column__3common {
    display: block;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 980px) {
  .p-top__course .l-column__3common {
    margin-top: 40px;
  }
}

.p-top__course .l-section__wrapper {
  margin-bottom: 0px;
}

.p-top__courseIcon {
  width: 63px;
  height: auto;
  margin: 0 auto 20px auto;
}

@media only screen and (min-width: 980px) {
  .p-top__courseIcon {
    width: 77px;
    height: auto;
  }
}

.p-top__courseLink {
  line-height: 24px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-top__courseLink .top-infoPickupIcon {
  width: 24px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

.p-top__courseLink .top-infoPickupIcon--blue {
  width: 24px;
  height: auto;
  display: none;
  vertical-align: top;
}

.p-top__courseLink:hover .top-infoPickupIcon {
  display: none;
}

.p-top__courseLink:hover .top-infoPickupIcon--blue {
  display: inline-block;
}

.p-top__courseItem, .p-top__courseItem--last {
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (min-width: 980px) {
  .p-top__courseItem, .p-top__courseItem--last {
    margin-bottom: 0px;
  }
}

.p-top__courseItem--last {
  margin-bottom: 0px;
}

.p-top__class {
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), to(#1d67b7));
  background: linear-gradient(to right, #00c6fb, #1d67b7);
  text-align: center;
  padding: 50px 0 60px 0;
}

@media only screen and (min-width: 980px) {
  .p-top__class {
    padding: 30px 0 60px 0;
  }
}

.p-top__class .l-section__wrapper {
  margin-bottom: 0px;
}

.p-top__classIcon {
  width: 70px;
  height: auto;
  margin: 0 auto 20px auto;
}

@media only screen and (min-width: 980px) {
  .p-top__classIcon {
    width: 78px;
    height: auto;
  }
}

.p-top__class__titleWrap {
  text-align: center;
  /*@media only screen and (max-width:980px){
      display: block;
      margin-bottom: 30px;
    }
    @media only screen and (min-width:980px){
      margin-bottom: 40px;
    }*/
}

.p-top__class__titleWrap .c-heading__pageTitle {
  color: #FFF;
}

.p-top__class__titleWrap .c-heading__pageTitle--jp {
  color: #FFF;
  border: 1px solid #FFF;
}

.p-top__classLinkWrap {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .p-top__classLinkWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 980px) {
  .p-top__classLinkWrap li {
    width: 31.5%;
  }
  .p-top__classLinkWrap li a {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 980px) {
  .p-top__classLinkWrap li:first-child .l-section__innerLv4 {
    margin-top: 0px;
  }
}

.p-top__classLinkWrap.l-section__wrapper--1120 {
  width: 90%;
  margin: 30px auto 0 auto;
}

@media only screen and (min-width: 600px) {
  .p-top__classLinkWrap.l-section__wrapper--1120 {
    width: 35.4%;
  }
}

@media only screen and (min-width: 980px) {
  .p-top__classLinkWrap.l-section__wrapper--1120 {
    width: 100%;
    margin: 40px auto 0 auto;
  }
}

.p-top__classLinkWrap--bottom {
  display: none;
}

@media only screen and (min-width: 980px) {
  .p-top__classLinkWrap--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 980px) {
  .p-top__classLinkWrap--bottom li {
    width: 31.5%;
  }
}

.p-top__classLinkWrap--bottom.l-section__wrapper--1120 {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-top__classLinkWrap--bottom.l-section__wrapper--1120 {
    width: 100%;
    margin: 4px auto 0 auto;
  }
}

.p-top__classLink {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 345px;
  width: 100%;
  height: 60px;
  padding: 17px 20px;
  line-height: 24px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 40px;
}

@media only screen and (min-width: 980px) {
  .p-top__classLink {
    padding: 25px 20px;
  }
}

.p-top__classLink.c-button--min, .p-top__classLink.c-button--min--w216 {
  background-color: #fff;
  border: 1px solid #fff;
  color: #1161aa;
}

.p-top__classLink .top-infoPickupIcon {
  width: 24px;
  height: auto;
  vertical-align: top;
  display: none;
}

.p-top__classLink .top-infoPickupIcon--blue {
  width: 24px;
  height: auto;
  vertical-align: top;
  display: inline-block;
}

.p-top__classLink:hover.c-button--min, .p-top__classLink.c-button--min--w216:hover {
  background-color: #1161aa;
  border: 1px solid #1161aa;
  color: #fff;
}

.p-top__classLink:hover .top-infoPickupIcon {
  display: inline-block;
}

.p-top__classLink:hover .top-infoPickupIcon--blue {
  display: none;
}

.p-top__classAllLink.c-button--min, .p-top__classAllLink.c-button--min--w216 {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 20px;
  width: 240px;
}

.p-top__classAllLink:hover.c-button--min, .p-top__classAllLink.c-button--min--w216:hover {
  background-color: #1161aa;
  border: 1px solid #1161aa;
  color: #fff;
}

.p-top__classAllLink .top-infoPickupIcon {
  width: 18px;
  height: auto;
  vertical-align: top;
  display: inline-block;
  }

.p-top__resultVoice__bgOnCard {
  width: 100%;
  position: relative;
  background-color: #f7f7f7;
  background-image: repeating-linear-gradient(90deg, #c3c3c330, #c3c3c330 1px, transparent 1px, transparent 24px), repeating-linear-gradient(0deg, #c3c3c330, #c3c3c330 1px, #f7f7f7 1px, #f7f7f7 24px);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-top__resultVoice__card__wrap {
  display: block;
  width: 92%;
  margin: 0 auto;
  padding: 40px 0;
}

@media only screen and (min-width: 980px) {
  .p-top__resultVoice__card__wrap {
    max-width: 980px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 80px 0;
  }
}

.p-top__resultVoice__card {
  width: 100%;
  max-width: 420px;
  padding: 30px 0 50px 0;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.07);
  position: relative;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-top__resultVoice__card {
    padding: 45px 27px;
    margin: 0 20px 0 0;
    max-width: 980px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 45px 34px;
  }
}

@media only screen and (min-width: 980px) {
  .p-top__resultVoice__card:last-child {
    margin-right: 0px;
  }
}

.p-top__resultVoice__card__topLine {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  display: block;
  line-height: 5px;
}

.p-top__resultVoice__card__topLine span {
  display: inline-block;
  vertical-align: top;
  width: 89px;
  height: 5px;
  background-color: #1161aa;
}

.p-top__resultVoice__card__topLine span:last-child {
  background-color: #29a9e0;
}

.p-top__resultVoice__cardImg01 {
  width: 52px;
  height: auto;
  margin: 0 auto 20px auto;
}

.p-top__resultVoice__cardImg02 {
  width: 64px;
  height: auto;
  margin: 0 auto 20px auto;
}

.p-top__resultVoice .p-top__titleWrap {
  margin-bottom: 20px;
}

.p-top__resultVoiceLinkWrap {
  text-align: center;
}

.p-top__resultVoiceLink {
  max-width: 290px;
  width: 100%;
  line-height: 24px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding: 17px 20px;
  border-radius: 40px;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-top__resultVoiceLink {
    max-width: 360px;
    width: 360px;
    padding: 21px 20px;
  }
}

.p-top__resultVoiceLink .top-infoPickupIcon {
  width: 24px;
  height: auto;
  vertical-align: top;
  display: inline-block;
}

.p-top__resultVoiceLink .top-infoPickupIcon--blue {
  width: 24px;
  height: auto;
  vertical-align: top;
  display: none;
}

.p-top__resultVoiceLink:hover.c-button--min, .p-top__resultVoiceLink.c-button--min--w216:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #1161aa;
  border: solid 1px #1161aa;
}

.p-top__resultVoiceLink:hover .top-infoPickupIcon {
  display: none;
}

.p-top__resultVoiceLink:hover .top-infoPickupIcon--blue {
  display: inline-block;
}

.p-top__faq {
  width: 92%;
  margin-top: 50px;
  margin-bottom: 60px;
}

@media only screen and (min-width: 980px) {
  .p-top__faq {
    width: 90%;
    margin-top: 100px;
    margin-bottom: 80px;
  }
}

@media only screen and (min-width: 1120px) {
  .p-top__faq {
    width: 100%;
  }
}

.p-top__faq .l-column__3common {
  max-width: 880px;
  margin: 0 auto;
}

.p-top__faq .p-top__titleWrap {
  margin-top: 50px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 980px) {
  .p-top__faq .p-top__titleWrap {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}

.p-top__faqItem {
  width: 45%;
}

@media only screen and (min-width: 980px) {
  .p-top__faqItem {
    width: 45%;
  }
}

.p-top__faqItem a {
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), to(#1d67b7));
  background: linear-gradient(to right, #00c6fb, #1d67b7);
  border-radius: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 150px;
}

.p-top__faqItem a:hover {
  opacity: 0.6;
}

.p-top__faqItemInner {
  margin: 0 auto;
}

.p-top__faqImg01 {
  width: 48px;
  height: auto;
  margin: 0 auto 10px auto;
}

@media only screen and (min-width: 980px) {
  .p-top__faqImg01 {
    width: 81px;
  }
}

.p-top__faqImg02 {
  width: 48px;
  height: auto;
  margin: 0 auto 10px auto;
}

@media only screen and (min-width: 980px) {
  .p-top__faqImg02 {
    width: 67px;
  }
}

.p-top__faqImg03 {
  width: 40px;
  height: auto;
  margin: 0 auto 10px auto;
}

@media only screen and (min-width: 980px) {
  .p-top__faqImg03 {
    width: 69px;
  }
}

.p-top__faqText {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFF;
}

@media only screen and (min-width: 980px) {
  .p-top__faqText {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-top__bottomPh {
  background-image: url(../images/top/top-bottomPh.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 190px;
}

@media only screen and (min-width: 980px) {
  .p-top__bottomPh {
    height: 370px;
  }
}

@media only screen and (min-width: 980px) {
  .p-about {
    margin: 80px 0 0 0;
    padding-bottom: 30px;
  }
}

.p-about__topHeading {
  margin-top: 25px;
}

@media only screen and (min-width: 980px) {
  .p-about__topHeading {
    margin-top: 80px;
  }
}

.p-about__bgOnCard {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#d7e9f4), color-stop(69%, #d7e9f4), color-stop(69%, #FFF), to(#FFF));
  background: linear-gradient(180deg, #d7e9f4 0%, #d7e9f4 69%, #FFF 69%, #FFF 100%);
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard {
    background: -webkit-gradient(linear, left top, left bottom, from(#d7e9f4), color-stop(67%, #d7e9f4), color-stop(67%, #FFF), to(#FFF));
    background: linear-gradient(180deg, #d7e9f4 0%, #d7e9f4 67%, #FFF 67%, #FFF 100%);
  }
}

.p-about__bgOnCard__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1161aa;
  padding-top: 40px;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__title {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1;
    padding-top: 60px;
  }
}

.p-about__bgOnCard__text {
  margin: 0 auto;
  display: table;
}

@media only screen and (max-width: 680px) {
  .p-about__bgOnCard__text {
    width: 90%;
  }
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__text {
    width: auto;
  }
}

.p-about__bgOnCard__textBlue {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1161aa;
  line-height: 1.7;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__textBlue {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.p-about__bgOnCard__textBlue-dot {
  padding-top: .4em;
  background-repeat: repeat-x;
  background-size: 1.05em .3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #1161aa, #1161aa 100%, transparent);
  background-position: top left -6px;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__textBlue-dot {
    background-position: top left -8px;
  }
}

.p-about__bgOnCard .c-classParts__list__blackDot {
  margin-top: 20px;
  margin-left: 30px;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard .c-classParts__list__blackDot {
    margin-top: 30px;
  }
}

.p-about__bgOnCard .c-classParts__list__blackDot__item {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 8px;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard .c-classParts__list__blackDot__item {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-about__bgOnCard .c-classParts__list__blackDot__item:before {
  padding-right: 12px;
  margin-left: -28px;
}

.p-about__bgOnCard__card__wrap {
  margin: 30px auto 0 auto;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card__wrap {
    margin: 45px auto 0 auto;
    max-width: 980px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-about__bgOnCard__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 45px 34px;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.07);
  position: relative;
  max-width: 440px;
  width: 90%;
  margin: 14px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card {
    width: 100%;
    max-width: 980px;
    margin: 0 20px 0 0;
  }
}

@media only screen and (max-width: 980px) {
  .p-about__bgOnCard__card:first-child {
    margin-top: 0px;
  }
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card:last-child {
    margin-right: 0px;
  }
}

.p-about__bgOnCard__card__topLine {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  display: block;
  line-height: 5px;
}

.p-about__bgOnCard__card__topLine span {
  display: inline-block;
  vertical-align: top;
  width: 89px;
  height: 5px;
  background-color: #1161aa;
}

.p-about__bgOnCard__card__topLine span:last-child {
  background-color: #29a9e0;
}

.p-about__bgOnCard__card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card__title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.p-about__bgOnCard__card__text__wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 15px 0 0 0;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card__text__wrap {
    margin: 30px 0 0 0;
  }
}

.p-about__bgOnCard__card__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card__text {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-about__bgOnCard__card-w814 {
  max-width: 440px;
  margin: 0 auto !important;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card-w814 {
    max-width: 814px;
  }
}

.p-about__bgOnCard__card .l-column__common__left {
  width: 52%;
}

.p-about__bgOnCard__card .l-column__common__left__img {
  max-width: 275px;
  height: auto;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card .l-column__common__left__img {
    max-width: 375px;
  }
}

.p-about__bgOnCard__card .l-column__common__right {
  width: 48%;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__card .l-column__common__right {
    padding-left: 30px;
  }
}

.p-about__bgOnCard__card .c-classParts__list__ja__item {
  font-weight: 700;
}

.p-about__bgOnCard .c-heading__lv2__titleLine {
  margin-top: 3px;
}

.p-about__table {
  max-width: 814px;
  margin: 25px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-about__table {
    margin: 0 auto;
  }
}

.p-about__table__th {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 700;
  color: #1161aa;
  border-bottom: solid 1px #1161aa;
  text-align: left;
  width: 27%;
  padding: 15px 0 15px 15px;
  border-collapse: collapse;
}

@media only screen and (min-width: 980px) {
  .p-about__table__th {
    font-size: 18px;
    font-size: 1.125rem;
    width: 215px;
    padding: 30px 0 30px 20px;
  }
}

.p-about__table__td {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  border-bottom: solid 1px #dddddd;
  padding: 15px 0 15px 15px;
  border-collapse: collapse;
}

@media only screen and (min-width: 980px) {
  .p-about__table__td {
    font-size: 16px;
    font-size: 1rem;
    padding: 30px 0 30px 40px;
  }
}

.p-about__feature__wrap {
  margin: 0 auto;
  padding-top: 40px;
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__wrap {
    padding-top: 80px;
  }
}

.p-about__feature__wrap .c-heading__lv2__titleLine {
  margin-top: 0px;
}

.p-about__feature__inner {
  margin-bottom: 50px;
  display: block;
}

.p-about__feature__inner::after {
  content: "";
  display: block;
  clear: both;
}

.p-about__feature__item {
  width: 49%;
  float: left;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__item {
    width: 31%;
  }
}

.p-about__feature__item:first-child {
  margin-right: 2%;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__item:first-child {
    margin-right: 3.5%;
  }
}

@media only screen and (min-width: 980px) {
  .p-about__feature__item:nth-child(2) {
    margin-right: 3.5%;
  }
}

.p-about__feature__item:nth-child(3) {
  clear: both;
  margin-right: 2%;
  margin-top: 25px;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__item:nth-child(3) {
    margin-right: 0px;
    margin-top: 0px;
    clear: unset;
  }
}

.p-about__feature__item:nth-child(4) {
  margin-top: 25px;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__item:nth-child(4) {
    clear: both;
    margin-right: 3.5%;
    margin-top: 60px;
  }
}

.p-about__feature__item:nth-child(5) {
  clear: both;
  margin-top: 25px;
  margin-right: 2%;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__item:nth-child(5) {
    margin-right: 0px;
    margin-top: 60px;
    clear: unset;
  }
}

.p-about__feature__img {
  width: 100%;
}

.p-about__feature__title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-about__feature__txt {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-about__feature__txt {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-about__philosophyMovie {
  width: 90%;
  /*max-width: 345px;*/
  margin: 40px auto 0 auto;
  /*iframe{
        width: 100%;
        height: 194px;
        @media only screen and (min-width:980px){
          height: 458px;
        }
      }*/
}

@media only screen and (min-width: 980px) {
  .p-about__philosophyMovie {
    width: 100%;
    max-width: 814px;
    margin: 80px auto 0 auto;
  }
}

.p-about__philosophy__cardImg01 {
  width: 113px;
  height: auto;
  margin: 0 auto 10px auto;
}

.p-about__philosophy__cardImg02 {
  width: 101px;
  height: auto;
  margin: 0 auto 10px auto;
}

.p-about__philosophy__cardImg03 {
  width: 85px;
  height: auto;
  margin: 0 auto 10px auto;
}

.p-about__philosophy__phImg {
  max-width: 475px;
  height: auto;
}

.p-about__philosophy__environment .p-about__bgOnCard__card {
  padding: 45px 24px;
  width: 90%;
}

@media only screen and (min-width: 980px) {
  .p-about__philosophy__environment .p-about__bgOnCard__card {
    width: 100%;
  }
}

.p-about__philosophy__environment .l-column__2common {
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-about__philosophy__environment .l-column__2common {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-about__philosophy__environment .l-column__common__left {
  width: auto;
  display: table;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-about__philosophy__environment .l-column__common__left {
    width: 50%;
  }
}

.p-about__philosophy__environment .l-column__common__right {
  width: auto;
  display: table;
  margin: 20px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-about__philosophy__environment .l-column__common__right {
    width: 50%;
    margin: 0;
    display: block;
  }
}

@media only screen and (max-width: 980px) {
  .p-about__philosophy__environment .l-section__innerLv3 {
    margin: 20px 0 0 0;
  }
}

.p-about__bgOnCard--policy .p-about__bgOnCard__card {
  padding: 45px 24px;
  width: 90%;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--policy .p-about__bgOnCard__card {
    width: 100%;
  }
}

.p-about__bgOnCard--policy .l-column__2common {
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--policy .l-column__2common {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-about__bgOnCard--policy .l-column__common__left {
  width: auto;
  display: table;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--policy .l-column__common__left {
    width: 50%;
  }
}

.p-about__bgOnCard--policy .l-column__common__right {
  width: auto;
  display: table;
  margin: 20px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--policy .l-column__common__right {
    width: 50%;
    margin: 0;
    display: block;
  }
}

.p-about__bgOnCard--policy .l-column__common__right .p-about__bgOnCard__textBlue {
  font-size: 21px;
  font-size: 1.3125rem;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--policy .l-column__common__right .p-about__bgOnCard__textBlue {
    font-size: 27px;
    font-size: 1.6875rem;
    text-align: left;
  }
}

.p-about__bgOnCard--philosophy {
  background: -webkit-gradient(linear, left top, left bottom, from(#d7e9f4), color-stop(84%, #d7e9f4), color-stop(84%, #FFF), to(#FFF));
  background: linear-gradient(180deg, #d7e9f4 0%, #d7e9f4 84%, #FFF 84%, #FFF 100%);
}

.p-about__bgOnCard--philosophy__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 20px auto 0 auto;
  display: table;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--philosophy__text {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 47px auto 0 auto;
  }
}

.p-about__bgOnCard--philosophy__card__title {
  margin: 28px auto 10px auto;
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-about__bgOnCard--philosophy__card__title span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  display: block;
  color: #1161aa;
  line-height: 1.7;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--philosophy__card__title span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.p-about__bgOnCard--philosophy__card__text {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: justify;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard--philosophy__card__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-about__masterLearning__subTitle {
  text-align: center;
  position: relative;
  display: table;
  margin: 0 auto 15px auto;
  padding: 0px 46px;
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__subTitle {
    margin: 0 auto 30px auto;
    padding: 0px 56px;
  }
}

.p-about__masterLearning__subTitle span {
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1161aa;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__subTitle span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-about__masterLearning__subTitle span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #1161aa;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__subTitle span:before {
    width: 40px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

.p-about__masterLearning__subTitle span:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #1161aa;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__subTitle span:after {
    width: 40px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.p-about__masterLearning__title {
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1161aa;
  text-align: center;
  margin-bottom: 44px;
  font-size: 18px;
  font-size: 1.125rem;
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__title {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}

.p-about__masterLearning__img {
  display: none;
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__img {
    max-width: 980px;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
  }
}

.p-about__masterLearning__img--sp {
  max-width: 475px;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
}

@media only screen and (min-width: 980px) {
  .p-about__masterLearning__img--sp {
    display: none;
  }
}

.p-classroom__teacherWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #f7f7f7;
  width: 100%;
  margin: 0 auto 15px auto;
}

@media only screen and (min-width: 980px) {
  .p-classroom__teacherWrap {
    width: 100%;
    max-width: 475px;
    margin: 0px 7.5px 30px 7.5px;
  }
}

@media only screen and (max-width: 980px) {
  .p-classroom__teacherWrap {
    max-width: 570px;
  }
}

.p-classroom__teacherImg {
  width: 30%;
  height: auto;
}

@media only screen and (min-width: 980px) {
  .p-classroom__teacherImg {
    width: 163px;
    height: 267px;
  }
}

.p-classroom__teacherText {
  padding: 15px 20px;
  width: 70%;
}

@media only screen and (min-width: 980px) {
  .p-classroom__teacherText {
    width: calc(100% - 163px);
    padding: 14px 30px;
    min-height: 267px;
  }
}

.p-classroom__teacherName {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .p-classroom__teacherName {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}

.p-classroom__teacherName--eng {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1161aa;
  display: block;
  margin: 10px 0 0 0;
}

@media only screen and (min-width: 980px) {
  .p-classroom__teacherName--eng {
    display: inline-block;
    margin: 20px 0 0 10px;
  }
}

.p-classroom__teacherSubject {
  display: inline-block;
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 30px;
  padding: 7px 18px 10px 18px;
  margin: 10px 0;
}

@media only screen and (min-width: 980px) {
  .p-classroom__teacherSubject {
    margin: 16px 0;
  }
}

.p-classroom__teacherSubject span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1161aa;
}

.p-classroom__teacherMovie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.p-classroom__teacherMovie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.p-classroom__school__slideBtn {
  border: none;
  border-left: solid 3px #1161aa;
}

.p-classroom__school__slideBtn:hover {
  cursor: pointer;
}

.p-classroom__school__wrap {
  margin-bottom: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 980px) {
  .p-classroom__school__wrap {
    padding-bottom: 0px;
  }
}

.p-classroom__school__wrap#school_gTomakomai .p-group4,
.p-classroom__school__wrap#school_gTomakomai .p-group5,
.p-classroom__school__wrap#school_gTomakomai .p-group6,
.p-classroom__school__wrap#school_gTomakomai .j-group1,
.p-classroom__school__wrap#school_gTomakomai .j-group2,
.p-classroom__school__wrap#school_gTomakomai .j-group3 {
  display: none;
}

.p-classroom__school__wrap#school_gTakuyu .p-group6,
.p-classroom__school__wrap#school_gTakuyu .j-group1,
.p-classroom__school__wrap#school_gTakuyu .j-group2,
.p-classroom__school__wrap#school_gTakuyu .j-group3 {
  display: none;
}

.p-classroom__school__wrap#school_rTomakomai .j-rplus,
.p-classroom__school__wrap#school_rTomakomai .s-rplus {
  display: none;
}

.p-classroom__school__wrap#school_rUtonai .j-rplus,
.p-classroom__school__wrap#school_rUtonai .s-rplus {
  display: none;
}

.p-classroom__school__wrap#school_rTakushin .j-rplus,
.p-classroom__school__wrap#school_rTakushin .s-rplus {
  display: none;
}

.p-classroom__school__wrap#school_rItoiekimae .j-rplus,
.p-classroom__school__wrap#school_rItoiekimae .s-rplus {
  display: none;
}

/*
.p-classroom__school__wrap#school_rsTomakomai .j-rplus,
.p-classroom__school__wrap#school_rsTomakomai .s-rplus {
  display: none;
}

.p-classroom__school__wrap#school_rsUtonai .j-rplus,
.p-classroom__school__wrap#school_rsUtonai .s-rplus {
  display: none;
}

.p-classroom__school__wrap#school_rsTakushin .j-rplus,
.p-classroom__school__wrap#school_rsTakushin .s-rplus {
  display: none;
}

.p-classroom__school__wrap#school_rsItoiekimae .j-rplus,
.p-classroom__school__wrap#school_rsItoiekimae .s-rplus {
  display: none;
}
*/

.p-classroom__school__heading__snsAndBtn {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
}

.p-classroom__school__infoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 980px) {
  .p-classroom__school__infoWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 980px) {
  .p-classroom__school__infoWrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 910px;
    margin: 26px auto 40px auto;
    align-items: center;
  }
}

.p-classroom__school__infoTextBlock {
  width: 530px;
}

@media only screen and (max-width: 980px) {
  .p-classroom__school__infoTextBlock {
    width: 100%;
    margin-top: 5px;
  }
}

.p-classroom__school__infoTextBlock__inner {
  padding: 13px 0;
}

.p-classroom__school__infoTitle {
  width: 130px;
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (max-width: 980px) {
  .p-classroom__school__infoTitle {
    width: 110px;
  }
}

.p-classroom__school__infoTitle span {
  vertical-align: middle;
  letter-spacing: 0.1em;
}

.p-classroom__school__icon {
  width: 20px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.p-classroom__school__infoText {
  display: table-cell;
  vertical-align: middle;
}

.p-classroom__school__infoText__textIcon {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 6px;
  width: 94px;
  display: inline-block;
  text-align: center;
  padding: 7px 0 9px 0;
  margin: 2px 1px;
}

@media only screen and (max-width: 980px) {
  .p-classroom__school__infoText__textIcon {
    margin: 0 1px 4px 1px;
  }
}

.p-classroom__school__infoText__textIcon--blue {
  background: #29a9e0;
}

.p-classroom__school__infoText__textIcon--red {
  background: #d2145a;
}

.p-classroom__school__infoText__textIcon--green {
  background: #00a79b;
}

.p-classroom__school__infoText__textIcon--orange {
  background: #ef5a24;
}

.p-classroom__school__infoText__textIcon--lightGreen {
  background: #009245;
}

.p-classroom__school__infoText__textIcon--yellow {
  background: #fcc243;
}

.p-classroom__school__infoPh {
  width: 340px;
  height: 214px;
}

@media only screen and (max-width: 980px) {
  .p-classroom__school__infoPh {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
}

.p-classroom__school__text--17bold {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media only screen and (min-width: 980px) {
  .p-classroom__school__text--17bold {
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.p-classroom__school__text--18 {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media only screen and (min-width: 980px) {
  .p-classroom__school__text--18 {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}

.p-classroom__school__textLink {
  color: #1161aa;
  text-decoration: underline;
}

.p-classroom__school__contents {
  display: none;
}

.p-classroom__timeSchedule {
  margin-bottom: 30px;
}

.p-classroom__timeSchedule .c-classParts__list__kome, .p-classroom__timeSchedule .c-classParts__list__kome--timesche {
  margin-left: 16px;
}

@media only screen and (max-width: 980px) {
  .p-classroom__timeSchedule .c-classParts__list__kome, .p-classroom__timeSchedule .c-classParts__list__kome--timesche {
    margin-left: 14px;
  }
}

.p-classroom__timeSchedule .c-classParts__list__kome__item, .p-classroom__timeSchedule .c-classParts__list__kome__item--timesche {
  font-size: 16px;
  font-size: 1rem;
}

@media only screen and (max-width: 980px) {
  .p-classroom__timeSchedule .c-classParts__list__kome__item, .p-classroom__timeSchedule .c-classParts__list__kome__item--timesche {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-classroom__timeSchedule .c-classParts__list__kome__item:before, .p-classroom__timeSchedule .c-classParts__list__kome__item--timesche:before {
  margin-left: -16px;
}

@media only screen and (max-width: 980px) {
  .p-classroom__timeSchedule .c-classParts__list__kome__item:before, .p-classroom__timeSchedule .c-classParts__list__kome__item--timesche:before {
    margin-left: -14px;
  }
}

.p-classroom__selectbox {
  position: relative;
}

.p-classroom__selectbox:after {
  position: absolute;
  top: 30%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #979797;
  border-right: 3px solid #979797;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
  content: "";
}

.p-classroom__selectbox ::-ms-expand {
  display: none;
  /* IE 対応( select のデフォルト矢印を消す) */
}

.p-classroom__selectbox__schoolGrade {
  font-size: 16px;
  font-size: 1rem;
  padding: 13px 26px;
  width: 394px;
  height: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #dddddd;
  border-radius: 6px;
  cursor: pointer;
  color: #333333;
  background: #FFF;
}

@media only screen and (max-width: 980px) {
  .p-classroom__selectbox__schoolGrade {
    min-width: 180px;
    max-width: 210px;
    width: 100%;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1;
    padding: 7px 10px;
  }
}

.p-classroom__selectbox__schoolGrade:focus {
  outline: none;
}

.p-classroom__selectbox__note {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 6px;
}

.p-question__telBlock {
  width: 100%;
  border: solid 1px #dddddd;
  padding: 20px 20px;
  margin-top: 10px;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock {
    width: 540px;
    padding: 40px 20px;
    margin: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    justify-content: space-between;
  }
}

.p-question__telBlock__left {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__left {
    margin-right: 10px;
  }
}

.p-question__telBlock__title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1161aa;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__title {
    color: #333333;
  }
}

.p-question__telBlock__telText {
  font-size: 22px;
  font-size: 1.375rem;
  color: #1161aa;
  padding: 15px 25px;
  margin-top: 10px;
  border: 1px solid #1161aa;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 980px) {
  .p-question__telBlock__telText {
    margin: 10px auto 10px auto;
    max-width: 290px;
  }
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__telText {
    font-size: 32px;
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    padding: 7px 0px 7px 0px;
    margin-top: 0px;
    border: none;
    border-radius: 0px;
  }
}

.p-question__telBlock__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1161aa;
  padding-top: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__text {
    color: #333333;
    padding-top: 7px;
  }
}

.p-question__telBlock__text &gt; span {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__text &gt; span {
    width: auto;
  }
}

.p-question__telBlock__text a {
  color: #1161aa;
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
  font-weight: normal;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__text a {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #333333;
  }
}

.p-question__telBlock__text span.colon {
  display: none;
  width: auto;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__text span.colon {
    display: block;
  }
}

.p-question__telBlock__text img {
  width: 18px;
  height: auto;
  margin-right: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__text img {
    display: none;
  }
}

.p-question__telBlock__caption {
  color: #1161aa;
  margin: 20px auto 0 auto;
  display: table;
  font-weight: 500;
}

@media only screen and (min-width: 980px) {
  .p-question__telBlock__caption {
    display: none;
  }
}

@media only screen and (max-width: 980px) {
  .p-question__telBlock__join {
    margin: 10px auto 0 auto;
    text-align: center;
  }
}

.p-question__telIcon {
  width: 18px;
  height: auto;
  margin-right: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__telIcon {
    width: 20px;
  }
}

.p-question__telColumn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media only screen and (min-width: 980px) {
  .p-question__telColumn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-question__telCaption {
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .p-question__telCaption {
    margin-top: 0px;
  }
}

.p-question__trial__textBlue {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #1161aa;
  font-weight: 700;
  padding-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__trial__textBlue {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
  }
}

.p-question__trial__step07Btn {
  text-align: center;
}

@media only screen and (max-width: 980px) {
  .p-question__trial__step07Btn {
    margin-top: 20px;
  }
}

.p-question__flow__grayBox, .p-question__flow__grayBox--p70, .p-question__flow__grayBox--p45, .p-question__flow__grayBox--p30 {
  background: #f7f7f7;
}

.p-question__flow__grayBox--p70 {
  padding: 20px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__grayBox--p70 {
    padding: 70px;
  }
}

.p-question__flow__grayBox--p45 {
  padding: 15px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__grayBox--p45 {
    padding: 45px;
  }
}

.p-question__flow__grayBox--p30 {
  padding: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__grayBox--p30 {
    padding: 30px;
  }
}

.p-question__flow__lifeInJoin {
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoin {
    width: 762px;
  }
}

.p-question__flow__lifeInJoin__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-question__flow__lifeInJoin__title {
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoin__title {
    font-size: 23px;
    font-size: 1.4375rem;
    font-weight: 700;
  }
}

.p-question__flow__lifeInJoin__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoin__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-question__flow__lifeInJoin__img {
  width: 60px;
  height: auto;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoin__img {
    width: 100px;
  }
}

.p-question__flow__lifeInJoin__textBlock {
  padding-left: 20px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoin__textBlock {
    padding-left: 50px;
  }
}

.p-question__flow__lifeInJoinBox {
  margin-top: 30px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoinBox {
    margin-top: 0px;
  }
}

.p-question__flow__lifeInJoinBox &gt; .l-column__2sub__right {
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__lifeInJoinBox &gt; .l-column__2sub__right {
    margin-top: 0px;
  }
}

.p-question__flow__textBlue {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #1161aa;
  font-weight: 700;
  padding-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__textBlue {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
  }
}

.p-question__flow__step01Btn {
  text-align: center;
}

.p-question__flow__step01Text {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__step01Text {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }
}

.p-question__flow__step03Title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1161aa;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__step03Title {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }
}

.p-question__flow__step03Text {
  font-size: 13px;
  font-size: 0.8125rem;
  padding-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-question__flow__step03Text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-question__faq__item {
  margin-bottom: 10px;
  border-left: solid 3px #1161aa;
}

.p-question__faq__itemHeading {
  vertical-align: middle;
  background: #f7f7f7;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-question__faq__itemHeading:hover {
  cursor: pointer;
}

.p-question__faq__itemHeading::after {
  content: "";
  display: block;
  clear: both;
}

.p-question__faq__itemHeading__text {
  display: block;
  float: left;
  text-align: left;
  position: relative;
  padding-left: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  width: 85%;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__itemHeading__text {
    padding-left: 44px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    width: 95%;
  }
}

.p-question__faq__itemHeading__text span {
  font-family: 'Lato', sans-serif;
  color: #1161aa;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__itemHeading__text span {
    display: inline-block;
    margin-right: 10px;
  }
}

.p-question__faq__itemHeadingBtn {
  display: block;
  float: right;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__itemHeadingBtn {
    padding-right: 40px;
  }
}

.p-question__faq__itemHeadingBtn--open {
  display: inline-block;
}

.p-question__faq__itemHeadingBtn--close {
  display: none;
}

.p-question__faq__itemHeadingBtnIcon {
  width: 12px;
  height: 12px;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__itemHeadingBtnIcon {
    width: 17px;
    height: 17px;
  }
}

.p-question__faq__itemContents {
  display: none;
  background: #f7f7f7;
}

.p-question__faq__itemContents__blueText {
  color: #1161aa;
}

.p-question__faq__itemContents__links {
  margin-top: 10px;
}

.p-question__faq__itemContents__inner {
  padding: 0px 20px 20px 20px;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__itemContents__inner {
    padding: 10px 65px 40px 65px;
  }
}

.p-question__faq__itemContents__inner a {
  text-decoration: underline;
  color: #1161aa;
}

.p-question__faq__itemContents__inner .c-classParts__list__no {
  margin-left: 1.6em;
  margin-top: 10px;
}

@media only screen and (max-width: 980px) {
  .p-question__faq__itemContents__inner .c-classParts__list__no {
    margin-left: 1.4em;
  }
}

.p-question__faq__itemContents__inner .c-classParts__list__no .c-classParts__list__no__item {
  list-style-type: decimal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 980px) {
  .p-question__faq__itemContents__inner .c-classParts__list__no .c-classParts__list__no__item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-question__faq__table {
  margin-top: 20px;
  width: 100%;
  table-layout: fixed;
}

.p-question__faq__tableHeading .p-question__faq__tableItem--left,
.p-question__faq__tableHeading .p-question__faq__tableItem--right {
  background: #f2f9fc;
  text-align: center;
}

.p-question__faq__tableItem--w260 {
  width: 100px;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__tableItem--w260 {
    width: 260px;
  }
}

.p-question__faq__tableItem--left {
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  background: #FFF;
  border: solid 1px #dddddd;
  font-size: 14px;
  font-size: 0.875rem;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__tableItem--left {
    padding: 30px 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
  }
}

.p-question__faq__tableItem--right {
  text-align: left;
  padding: 10px 0 10px 10px;
  vertical-align: middle;
  background: #FFF;
  border: solid 1px #dddddd;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__tableItem--right {
    padding: 30px 0 30px 40px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-question__faq__tableItem--right span {
  font-weight: 700;
}

.p-question__faq__caption {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1161aa;
  margin-left: 1.4em;
  text-indent: -1.4em;
}

@media only screen and (min-width: 980px) {
  .p-question__faq__caption {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-question__faq__measuresImg {
  margin-top: 10px;
  max-width: 860px;
  width: 100%;
}

@media only screen and (max-width: 980px) {
  .p-question-rightImg {
    margin-top: 10px;
  }
}

.p-info__listWrap {
  border-top: solid 1px #dddddd;
  margin-top: 40px;
}

.p-info__listWrap .navigation {
  margin-top: 50px;
}

.p-info__listWrap .navigation .screen-reader-text {
  display: none;
}

.p-info__listWrap .navigation .nav-links {
  display: table;
  margin: 0 auto;
  overflow: hidden;
}

.p-info__listWrap .navigation .page-numbers {
  padding: 9px 13px;
  border: solid 1px #1161aa;
  border-radius: 5px;
  color: #1161aa;
  line-height: 1;
  margin: 0 7px;
  display: inline-block;
}

.p-info__listWrap .navigation .page-numbers.dots, .p-info__listWrap .navigation .page-numbers.current {
  border: none;
}

.p-info__listWrap .navigation .page-numbers.current {
  font-weight: 700;
}

.p-info__listWrap .navigation a.page-numbers:hover {
  color: #FFF;
  background: #1161aa;
}

.p-info__list {
  border-bottom: solid 1px #dddddd;
  display: block;
  -webkit-transition: .5s;
  transition: .5s;
}

.p-info__list:hover {
  background-color: #e1edf4;
}

.p-info__listItem {
  padding: 20px 5px;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-info__listItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
  }
}

.p-info__dayTextWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .p-info__dayTextWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 980px) {
  .p-info__dayTextWrap {
    margin-right: 10px;
  }
}

.p-info__dayText {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #1161aa;
  font-weight: 700;
  width: 112px;
  line-height: 1.7;
  vertical-align: middle;
}

.p-info__categoryTagWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .p-info__categoryTagWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-info__categoryTag, .p-info__categoryTag--single, .p-info__categoryTag--index {
  line-height: 1.7;
  vertical-align: middle;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 980px) {
  .p-info__categoryTag, .p-info__categoryTag--single, .p-info__categoryTag--index {
    width: 206px;
  }
}

@media only screen and (max-width: 980px) {
  .p-info__categoryTag, .p-info__categoryTag--single, .p-info__categoryTag--index {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 530px) {
  .p-info__categoryTag--single {
    width: auto;
  }
}

@media only screen and (max-width: 980px) and (min-width: 340px) {
  .p-info__categoryTag--index {
    width: auto;
  }
}

.p-info__category {
  border: solid 1px #1161aa;
  color: #1161aa;
  border-radius: 30px;
  background: #FFF;
  font-size: 11px;
  font-size: 0.6875rem;
  padding: 1px 11px;
  width: 68px;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-info__category {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 3px 17px;
    width: 88px;
  }
}

@media only screen and (max-width: 340px) {
  .p-info__category {
    width: 71px;
  }
}

.p-info__tags, .p-info__tags--single, .p-info__tags--index {
  display: inline-block;
  margin-left: 5px;
}

@media only screen and (min-width: 530px) {
  .p-info__tags--single .p-info__tag--e-course,
  .p-info__tags--single .p-info__tag--j-course,
  .p-info__tags--single .p-info__tag--s-course {
    display: inline-block;
    margin: 0;
  }
}

@media only screen and (max-width: 980px) and (min-width: 340px) {
  .p-info__tags--index .p-info__tag--e-course,
  .p-info__tags--index .p-info__tag--j-course,
  .p-info__tags--index .p-info__tag--s-course {
    display: inline-block;
    margin: 0;
  }
}

.p-info__tag, .p-info__tag--e-course, .p-info__tag--j-course, .p-info__tag--s-course {
  border: solid 1px #1161aa;
  border-radius: 30px;
  color: #FFF;
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
  padding: 1px 11px;
  width: 68px;
  margin: 5px 0;
  vertical-align: text-bottom;
}

@media only screen and (min-width: 980px) {
  .p-info__tag, .p-info__tag--e-course, .p-info__tag--j-course, .p-info__tag--s-course {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 3px 17px;
    width: 88px;
  }
}

.p-info__tag--e-course {
  background: #00a79b;
  border: solid 1px #00a79b;
}

.p-info__tag--j-course {
  background: #ef5a24;
  border: solid 1px #ef5a24;
}

.p-info__tag--s-course {
  background: #29a9e0;
  border: solid 1px #29a9e0;
}

.p-info__titleWrap {
  display: block;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-info__titleWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-info__searchForm {
  margin: 0 auto;
  background: #f2f9fc;
  padding: 30px 15px;
  border-radius: 10px;
}

@media only screen and (min-width: 980px) {
  .p-info__searchForm {
    padding: 40px 106px;
    width: 100%;
    max-width: 880px;
  }
}

.p-info__searchForm .c-button--middle {
  width: 260px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin: 16px auto 0 auto;
  display: block;
}

.p-info__searchForm__headingWrap {
  text-align: center;
}

.p-info__searchForm__heading {
  font-size: 20px;
  font-size: 1.25rem;
  color: #1161aa;
  font-weight: 700;
  text-align: center;
}

.p-info__searchForm .c-heading__lv2__titleLine {
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-info__searchForm .c-heading__lv2__titleLine {
    margin-bottom: 10px;
  }
}

.p-info__searchForm .c-heading__lv2__titleLine span {
  width: 10px;
}

@media only screen and (min-width: 980px) {
  .p-info__searchForm .c-heading__lv2__titleLine span {
    width: 20px;
  }
}

.p-info__searchForm .c-heading__lv2__titleLine span:last-child {
  background: #1161aa;
}

.p-info__searchForm input[type="submit"]:hover {
  cursor: pointer;
}

.p-info__infoIcon {
  width: 25px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
}

.p-info__infoIcon-terms {
  width: 20px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.p-info__terms, .p-info__terms--last {
  padding: 20px 0;
  border-bottom: solid 1px #dddddd;
}

@media only screen and (min-width: 980px) {
  .p-info__terms, .p-info__terms--last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
  }
}

.p-info__terms--last {
  padding: 16px 0;
  border-bottom: none;
}

.p-info__terms--left {
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-info__terms--left {
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (max-width: 980px) {
  .p-info__terms--right ul {
    margin-left: 5%;
  }
}

.p-info__terms--right li {
  line-height: 1.7;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .p-info__terms--right li {
    margin-left: 33px;
  }
  .p-info__terms--right li:first-child {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 980px) {
  .p-info__terms--right li {
    max-width: 140px;
    width: 49%;
    padding-left: 2%;
    padding-top: 20px;
  }
  .p-info__terms--right li:first-child {
    padding-left: 0px;
    max-width: 120px;
  }
}

@media only screen and (max-width: 680px) {
  .p-info__terms--right li:nth-child(4) {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 530px) {
  .p-info__terms--right li:nth-child(3) {
    padding-left: 0px;
  }
  .p-info__terms--right li:nth-child(4) {
    padding-left: 2%;
  }
  .p-info__terms--right li:first-child {
    max-width: 140px;
  }
}

.p-info__terms--right li input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: 0;
}

.p-info__terms--right li input[type="radio"] + .p-info__terms__radio:before {
  content: '';
  background: #FFF;
  border-radius: 100%;
  border: 1px solid #bfbfbf;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  position: relative;
  top: -0.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.p-info__terms--right li input[type="radio"]:checked + .p-info__terms__radio:before {
  background-color: #1161aa;
  -webkit-box-shadow: inset 0 0 0 4px #FFF;
          box-shadow: inset 0 0 0 4px #FFF;
}

.p-info__terms--right li input[type="radio"]:focus + .p-info__terms__radio:before {
  outline: none;
  border-color: #1161aa;
}

.p-info__terms--right li input[type="radio"]:disabled + .p-info__terms__radio:before {
  -webkit-box-shadow: inset 0 0 0 4px #FFF;
          box-shadow: inset 0 0 0 4px #FFF;
  border-color: #bfbfbf;
  background: #bfbfbf;
}

.p-info__terms--right li input[type="radio"] + .p-info__terms__radio:empty:before {
  margin-right: 0;
}

.p-info__terms__selectboxWrap {
  position: relative;
  border: 1px solid #CCC;
  background: #FFF;
  border-radius: 5px;
  display: inline-block;
}

@media only screen and (max-width: 980px) {
  .p-info__terms__selectboxWrap {
    margin-top: 20px;
  }
}

.p-info__terms__selectboxWrap:before {
  position: absolute;
  top: 1.1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #979797;
  pointer-events: none;
}

.p-info__terms__selectbox, .p-info__terms__selectbox--years, .p-info__terms__selectbox--month {
  padding: 12px 38px 12px 12px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #979797;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.p-info__terms__selectbox--years {
  width: 100px;
}

.p-info__terms__selectbox--month {
  width: 80px;
}

.p-info__terms span, .p-info__terms--last span {
  font-size: 18px;
  font-size: 1.125rem;
  color: #1161aa;
  font-weight: 700;
  line-height: 1.7;
}

.p-info__error {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 40px;
}

.p-info__singleInner {
  padding-top: 30px;
}

.p-info__single__dayCatTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

@media only screen and (max-width: 530px) {
  .p-info__single__dayCatTags {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-info__single__heading {
  padding-bottom: 27px;
  margin-top: 27px;
  border-bottom: solid 1px #dddddd;
}

.p-info__single__heading__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .p-info__single__heading__title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.p-info__single__navi {
  margin-top: 40px;
  border-top: solid 1px #dddddd;
  padding-top: 30px;
  display: block;
  position: relative;
  height: 60px;
}

@media only screen and (max-width: 340px) {
  .p-info__single__navi {
    height: 100px;
  }
}

@media only screen and (min-width: 980px) {
  .p-info__single__navi {
    margin-top: 80px;
  }
}

.p-info__single__naviPrev, .p-info__single__naviNext, .p-info__single__naviCenter {
  display: block;
  position: absolute;
  height: 30px;
}

.p-info__single__naviPrev a, .p-info__single__naviNext a, .p-info__single__naviCenter a {
  display: block;
  width: 110px;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-info__single__naviPrev a, .p-info__single__naviNext a, .p-info__single__naviCenter a {
    width: 138px;
  }
}

.p-info__single__naviPrev__btnText, .p-info__single__naviNext__btnText, .p-info__single__naviCenter__btnText {
  font-size: 12px;
  font-size: 0.75rem;
  color: #1161aa;
  font-weight: 700;
  padding: 8px 0;
  border: solid 1px #1161aa;
  border-radius: 30px;
  background: #FFF;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-info__single__naviPrev__btnText, .p-info__single__naviNext__btnText, .p-info__single__naviCenter__btnText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-info__single__naviPrev__btnText .p-info__single__naviPrevImg,
.p-info__single__naviPrev__btnText .p-info__single__naviNextImg,
.p-info__single__naviPrev__btnText .p-info__single__naviPrevImg--hover,
.p-info__single__naviPrev__btnText .p-info__single__naviNextImg--hover, .p-info__single__naviNext__btnText .p-info__single__naviPrevImg,
.p-info__single__naviNext__btnText .p-info__single__naviNextImg,
.p-info__single__naviNext__btnText .p-info__single__naviPrevImg--hover,
.p-info__single__naviNext__btnText .p-info__single__naviNextImg--hover, .p-info__single__naviCenter__btnText .p-info__single__naviPrevImg,
.p-info__single__naviCenter__btnText .p-info__single__naviNextImg,
.p-info__single__naviCenter__btnText .p-info__single__naviPrevImg--hover,
.p-info__single__naviCenter__btnText .p-info__single__naviNextImg--hover {
  width: 6px;
  height: auto;
}

.p-info__single__naviPrev__btnText .p-info__single__naviPrevImg,
.p-info__single__naviPrev__btnText .p-info__single__naviNextImg, .p-info__single__naviNext__btnText .p-info__single__naviPrevImg,
.p-info__single__naviNext__btnText .p-info__single__naviNextImg, .p-info__single__naviCenter__btnText .p-info__single__naviPrevImg,
.p-info__single__naviCenter__btnText .p-info__single__naviNextImg {
  display: inline-block;
}

.p-info__single__naviPrev__btnText:hover, .p-info__single__naviNext__btnText:hover, .p-info__single__naviCenter__btnText:hover {
  color: #FFF;
  background: #1161aa;
}

.p-info__single__naviPrev__btnText:hover .p-info__single__naviPrevImg,
.p-info__single__naviPrev__btnText:hover .p-info__single__naviNextImg, .p-info__single__naviNext__btnText:hover .p-info__single__naviPrevImg,
.p-info__single__naviNext__btnText:hover .p-info__single__naviNextImg, .p-info__single__naviCenter__btnText:hover .p-info__single__naviPrevImg,
.p-info__single__naviCenter__btnText:hover .p-info__single__naviNextImg {
  display: none;
}

.p-info__single__naviPrev__btnText:hover .p-info__single__naviPrevImg--hover,
.p-info__single__naviPrev__btnText:hover .p-info__single__naviNextImg--hover, .p-info__single__naviNext__btnText:hover .p-info__single__naviPrevImg--hover,
.p-info__single__naviNext__btnText:hover .p-info__single__naviNextImg--hover, .p-info__single__naviCenter__btnText:hover .p-info__single__naviPrevImg--hover,
.p-info__single__naviCenter__btnText:hover .p-info__single__naviNextImg--hover {
  display: inline-block;
}

.p-info__single__naviPrev {
  left: 0px;
}

@media only screen and (max-width: 340px) {
  .p-info__single__naviPrev {
    bottom: 0;
  }
}

.p-info__single__naviNext {
  right: 0px;
}

@media only screen and (max-width: 340px) {
  .p-info__single__naviNext {
    bottom: 0;
  }
}

.p-info__single__naviCenter {
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

.p-info__single__naviPrevImg--hover {
  display: none;
}

.p-info__single__naviNextImg--hover {
  display: none;
}

.p-info__single__contents--thum {
  width: 100%;
  height: auto;
}

.p-info__single__contents--inner img {
  max-width: 814px;
  width: unset;
  height: auto;
  /* margin-top: 60px; --1201 seto*/
}

@media only screen and (max-width: 980px) {
  .p-info__single__contents--inner img {
    max-width: 100%;
  }
}

.p-info__single__contents b {
  font-weight: 700;
}

.p-info__single__contents p {
  margin-top: 20px;
  word-wrap: break-word;
  overflow: hidden;
}

.p-info__single__contents p .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.p-info__single__contents p .alignright {
  float: right;
  margin-left: auto;
}

.p-info__single__contents p .alignleft {
  float: left;
  margin-right: auto;
}

.p-info__single__contents p .info-button {
  background-color: #1161aa;
  border: 1px solid #1161aa;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  width: fit-content;
  height: 47px;
  padding: 8px 30px;
}

.p-info__single__contents p .info-button span {
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

@media only screen and (max-width: 980px) {
  .p-info__single__contents p .info-button span {
    font-weight: normal;
  }
}

.p-info__single__contents p .info-button:hover {
  background-color: #fff;
  color: #1161aa;
}

.p-info__single__contents .wp-caption-text {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents .wp-caption-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-info__single__contents .wp-caption img {
  max-width: 100%;
  width: auto;
}

.p-info__single__contents .wp-caption.aligncenter {
  text-align: center;
}

.p-info__single__contents .wp-caption.alignleft {
  text-align: left;
}

.p-info__single__contents .wp-caption.alignright {
  text-align: right;
}

.p-info__single__contents h2 {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 3.3rem;
  padding-left: 27px;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.p-info__single__contents h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50%;
  background-color: #1d67b7;
}

.p-info__single__contents h2:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 3px;
  height: 50%;
  background-color: #00c6fb;
  top: auto;
  bottom: 0;
}

.p-info__single__contents h3 {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2.7rem;
  margin-bottom: 1.3rem;
  padding-left: 30px;
}


@media only screen and (min-width: 980px) {
  .p-info__single__contents h3 {
    font-size: 24px;
    font-size: 1.5rem;
    padding-left: 37px;
  }
}

.p-info__single__contents h3:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 17px;
  height: 3px;
  background-color: #1d67b7;
}

.p-info__single__contents h4 {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2rem;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-info__single__contents h4:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../images/info/infoIconh4.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  padding-right: 15px;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents h4:before {
    padding-right: 17px;
  }
}

.p-info__single__contents blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
  margin-top: 20px;
}

.p-info__single__contents blockquote:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 15px;
  content: "❝";
  color: #cfcfcf;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.p-info__single__contents blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

.p-info__single__contents blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.p-info__single__contents a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1161aa;
  text-decoration: underline;
  /*margin-top: 24px; --1201 seto*/
  line-height: 1.7;
  display: inline-block;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents a {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-info__single__contents ul {
  margin-top: 0.8rem;
  margin-left: 30px;
  margin-bottom: 0.8rem;
}

.p-info__single__contents ul li {
  list-style: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents ul li {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-info__single__contents ul li:before {
  content: "●";
  margin-left: -30px;
  color: #1161aa;
  padding-right: 12px;
}

.p-info__single__contents ol {
  margin-top: 24px;
  margin-left: 30px;
  counter-reset: number 0;
}

.p-info__single__contents ol li {
  list-style: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents ol li {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-info__single__contents ol li:before {
  counter-increment: number 1;
  content: counter(number) ",";
  margin-left: -30px;
  padding-right: 12px;
}

.p-info__single__contents table {
  margin-top: 24px;
  width: 100%;
}

.p-info__single__contents table th {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 700;
  background: #f7f7f7;
  border: solid 1px #dddddd;
  padding: 20px 25px;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents table th {
    padding: 40px 45px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-info__single__contents table td {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: left;
  width: 100%;
  padding: 15px 20px;
  border: solid 1px #dddddd;
}

@media only screen and (min-width: 980px) {
  .p-info__single__contents table td {
    padding: 30px 40px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-info__single__contents table td:first-child {
  font-weight: normal;
}

@media only screen and (max-width: 980px) {
  .p-info__single__contents .youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .p-info__single__contents .youtube iframe {
    width: 100%;
    height: 100%;
  }
}

.p-j-course__topCopy {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1161aa;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-j-course__topCopy {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.p-j-course__topBox {
  text-align: center;
  border: 1px solid #dddddd;
  padding-bottom: 20px;
}

@media only screen and (min-width: 980px) {
  .p-j-course__topBox {
    padding-bottom: 30px;
  }
}

.p-j-course__groupBox {
  border: 1px solid #dddddd;
  padding: 15px;
}

@media only screen and (min-width: 980px) {
  .p-j-course__groupBox {
    padding: 30px;
  }
}

.p-j-course__groupPoint__title {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #1161aa;
  font-weight: 700;
  margin-bottom: 6px;
}

@media only screen and (min-width: 980px) {
  .p-j-course__groupPoint__title {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
}

.p-j-course__groupPoint__caption {
  font-size: 12px;
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .p-j-course__groupPoint__caption {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-e-course__result__list {
  margin-top: 30px;
}

.p-e-course__result__list li {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-e-course__result__list li:before {
  margin-left: -14px;
}

.p-e-course__resultPageMenu__wrap {
  display: table;
  margin: 0 auto;
}

.p-e-course__resultPageMenu, .p-e-course__resultPageMenu--4column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 980px) {
  .p-e-course__resultPageMenu, .p-e-course__resultPageMenu--4column {
    margin-top: 50px;
    min-width: 320px;
  }
}

.p-e-course__resultPageMenu a, .p-e-course__resultPageMenu--4column a {
  width: 33%;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-e-course__resultPageMenu a, .p-e-course__resultPageMenu--4column a {
    width: 220px;
  }
}

.p-e-course__resultPageMenu a span, .p-e-course__resultPageMenu--4column a span {
  font-weight: 700;
  color: #1161aa;
  text-decoration: underline;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (min-width: 980px) {
  .p-e-course__resultPageMenu a span, .p-e-course__resultPageMenu--4column a span {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

.p-e-course__resultPageMenu a img, .p-e-course__resultPageMenu--4column a img {
  display: inline-block;
}

.p-e-course__resultPageMenu--4column a {
  width: 25%;
  min-width: 245px;
}

@media only screen and (max-width: 980px) {
  .p-e-course__resultPageMenu--4column a {
    min-width: unset;
    width: 50%;
    padding: 2% 0;
  }
}

.p-e-course__overviewBlock {
  border: 5px solid #e1edf4;
  padding: 25px 20px;
  text-align: center;
  background-color: #fff;
  background-image: repeating-linear-gradient(90deg, #c3c3c330, #c3c3c330 1px, transparent 1px, transparent 24px), repeating-linear-gradient(0deg, #c3c3c330, #c3c3c330 1px, #fff 1px, #fff 24px);
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewBlock {
    padding: 30px 50px;
  }
}

.p-e-course__overviewArrow {
  width: 30px;
  margin: 10px auto;
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewArrow {
    width: 50px;
    margin: 15px auto;
  }
}

.p-e-course__overviewList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 10px 0px;
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewList {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-e-course__overviewList__index {
  width: 100%;
  background-color: #1161aa;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 20px;
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewList__index {
    width: 30%;
    padding: 20px 30px;
  }
}

.p-e-course__overviewList__text {
  width: 100%;
  background-color: #f2f9fc;
  padding: 10px 20px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewList__text {
    width: 70%;
    padding: 20px 30px;
  }
}

.p-e-course__overviewImg {
  width: 80%;
  margin: 0 auto;
}

.p-e-course__overviewColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-e-course__overviewColumn__left {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewColumn__left {
    width: 40%;
    text-align: left;
  }
}

.p-e-course__overviewColumn__right {
  width: 100%;
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .p-e-course__overviewColumn__right {
    width: 60%;
    margin-top: 0px;
  }
}

.p-e-course__tamaishikiStep__pointImg {
  width: auto;
  height: 18px;
  margin: 20px 0 10px 0;
}

.p-e-course__tamaishikiStep__pointText {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media only screen and (min-width: 980px) {
  .p-e-course__tamaishikiStep__pointText {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.p-e-course__tamaishikiStepLogo {
  width: auto;
  height: 60px;
  margin: 0 auto 20px auto;
}

@media only screen and (min-width: 980px) {
  .p-e-course__tamaishikiStepLogo {
    height: 70px;
    margin: 0 auto 40px auto;
  }
}

.p-e-course__tamaishikiHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 980px) {
  .p-e-course__tamaishikiHead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-e-course__tamaishikiHead &gt; *:first-child {
  margin-bottom: 30px;
}

@media only screen and (min-width: 980px) {
  .p-e-course__tamaishikiHead &gt; *:first-child {
    margin-bottom: 0px;
  }
}

.p-e-course__tamaishikiHeadLogo {
  width: auto;
  height: 65px;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-e-course__tamaishikiHeadLogo {
    height: 70px;
  }
}

.p-s-course__systemCaption {
  color: #1161aa;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 700;
  display: block;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemCaption {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.p-s-course__table th span, .p-s-course__table td span {
  vertical-align: middle;
  text-align: right;
}

@media only screen and (max-width: 600px) {
  .p-s-course__table th span, .p-s-course__table td span {
    display: inline-block;
  }
}

@media only screen and (max-width: 980px) {
  .p-s-course__table .c-classParts__table__text--26bold {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }
}

@media only screen and (max-width: 980px) {
  .p-s-course__table .c-classParts__table__text--20bold {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-s-course__table--left__inner {
  display: table;
  margin: 0 auto;
}

@media only screen and (max-width: 390px) {
  .p-s-course__table--left__inner .c-classParts__table__text--26bold {
    display: block;
    margin-top: 10px;
  }
}

.p-s-course__table--right__inner {
  display: table;
  margin: 0 auto;
}

.p-s-course__table--right__inner li {
  display: table-cell;
  width: 120px;
}

@media only screen and (max-width: 980px) {
  .p-s-course__table--right__inner li {
    width: 74px;
  }
}

.p-s-course__table--right--w120 {
  width: 120px;
}

@media only screen and (max-width: 980px) {
  .p-s-course__table--right--w120 {
    width: 74px;
  }
}

.p-s-course__heading__wrap {
  border-bottom: solid 1px #1161aa;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  margin-top: 60px;
}

.p-s-course__heading {
  vertical-align: middle;
}

.p-s-course__heading--right {
  margin-left: 30px;
}

@media only screen and (max-width: 980px) {
  .p-s-course__heading--right {
    margin-left: 15px;
  }
}

.p-s-course__result__list {
  margin-top: 30px;
}

.p-s-course__result__list li {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-s-course__result__list li:before {
  margin-left: -14px;
}

.p-s-course__badgeIcon img {
  width: 53px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 28px;
  margin-left: -81px;
}

.p-s-course__badgeIcon img.p-s-course__subSymbol {
  width: 16px;
  height: auto;
}

@media only screen and (max-width: 390px) {
  .p-s-course__badgeIcon img.p-s-course__subSymbol {
    margin-right: 14px;
  }
}

@media only screen and (max-width: 390px) {
  .p-s-course__badgeIcon img {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.p-s-course__subSymbol__wrap {
  left: 81px;
  position: relative;
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .p-s-course__subSymbol__wrap {
    left: 0px;
  }
}

.p-s-course__icon--Kakosaiko {
  width: 92px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  margin-right: -112px;
}

.p-s-course__icon--Kakosaiko.mr {
  margin-right: 0;
}

@media only screen and (max-width: 980px) {
  .p-s-course__icon--Kakosaiko {
    width: 48px;
    margin-left: 5px;
    margin-right: -53px;
  }

  .p-s-course__icon--Kakosaiko.mr {
    width: 64px;
    margin-right: 0;
  }
}

.p-s-course__icon--Kakosaikotai {
  width: 92px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  margin-right: -112px;
}

.p-s-course__icon--Kakosaikotai.mr {
  margin-right: 0;
}

@media only screen and (max-width: 980px) {
  .p-s-course__icon--Kakosaikotai {
    width: 48px;
    margin-left: 5px;
    margin-right: -53px;
  }

  .p-s-course__icon--Kakosaikotai.mr {
    width: 64px;
    margin-right: 0;
  }
}

.p-s-course__systemOrange {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #EF5A24;
  margin: 40px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemOrange {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 60px auto 0 auto;
  }
}

.p-s-course__systemList {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemList {
    margin-top: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-s-course__systemItem {
  background-color: #F0FCF4;
  border-radius: 10px;
  text-align: center;
  position: relative;
  padding: 40px 10px 20px 10px;
  margin-bottom: 10px;
  width: 47%;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemItem {
    width: calc((100% / 3) - 20px);
    padding: 40px 20px 20px 20px;
    margin-bottom: 0px;
  }
}

.p-s-course__systemItem p {
  color: #009380;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemItem p {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 20px;
  }
}

.p-s-course__systemItemIcon {
  width: auto;
  height: 55px;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemItemIcon {
    height: 75px;
  }
}

.p-s-course__systemItemBadge {
  position: absolute;
  top: 0px;
  left: 10px;
  width: 30px;
  height: auto;
}

@media only screen and (min-width: 980px) {
  .p-s-course__systemItemBadge {
    left: 20px;
    width: 55px;
  }
}

.p-s-course__fixationBlock {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.p-s-course__fixationBlock__left {
  width: 25%;
  background-color: #E6E6E6;
  width: 100%;
  padding: 20px 10px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__left {
    width: 25%;
    padding: 30px 20px;
  }
}

.p-s-course__fixationBlock__leftCatch {
  background-color: #666666;
  border-radius: 30px;
  padding: 8px 10px;
  margin: 0 auto;
  width: 70%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__leftCatch {
    width: 100%;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-s-course__fixationBlock__leftCopy {
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  margin: 12px 0px 6px 0px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__leftCopy {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 15px 0px 10px 0px;
  }
}

.p-s-course__fixationBlock__right {
  width: 100%;
  background-color: #F0FCF4;
  padding: 20px 10px;
  margin-top: 10px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__right {
    width: 72%;
    padding: 30px 20px;
    margin-top: 0px;
  }
}

.p-s-course__fixationBlock__rightCatch {
  background-color: #009380;
  border-radius: 30px;
  padding: 8px 10px;
  width: 80%;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-align: center;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__rightCatch {
    width: 80%;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-s-course__fixationBlock__rightCopy {
  color: #EF5A24;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  margin: 0px 0px 6px 0px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__rightCopy {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0px 0px 10px 0px;
  }
}

.p-s-course__fixationBlock__rightSubCopy {
  color: #009380;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  margin: 10px 0px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__rightSubCopy {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-s-course__fixationBlock__rightInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__rightInner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
  }
}

.p-s-course__fixationBlock__rightInnerText {
  width: 76%;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__rightInnerText {
    width: 70%;
  }
}

.p-s-course__fixationBlock__rightInnerImg {
  width: 22%;
}

@media only screen and (min-width: 980px) {
  .p-s-course__fixationBlock__rightInnerImg {
    width: 15%;
  }
}

.p-policyPage__heading {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 10px;
}

.p-policyPage__text, .p-policyPage__text--right, .p-policyPage__text--bold {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.p-policyPage__text--right {
  text-align: right;
}

.p-policyPage__text--bold {
  font-weight: 700;
  margin-bottom: 5px;
}

.p-policyPage__list, .p-policyPage__list--dots {
  margin-bottom: 10px;
}

.p-policyPage__list--dots {
  list-style-type: disc;
  padding-left: 20px;
}

.p-policyPage__listItem, .p-policyPage__listItem--dots {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-policyPage__table {
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  table-layout: fixed;
  max-width: 600px;
}

.p-policyPage__tableHeading .p-policyPage__tableItem--left,
.p-policyPage__tableHeading .p-policyPage__tableItem--right {
  background: #f2f9fc;
  text-align: center;
  font-weight: 700;
}

.p-policyPage__tableItem--w260 {
  width: 100px;
}

@media only screen and (min-width: 980px) {
  .p-policyPage__tableItem--w260 {
    width: 260px;
  }
}

.p-policyPage__tableItem--left {
  text-align: center;
  padding: 10px;
  vertical-align: middle;
  background: #FFF;
  border: solid 1px #dddddd;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media only screen and (min-width: 980px) {
  .p-policyPage__tableItem--left {
    padding: 15px 0;
    font-weight: 700;
  }
}

.p-policyPage__tableItem--right {
  text-align: left;
  padding: 10px 0 10px 10px;
  vertical-align: middle;
  background: #FFF;
  border: solid 1px #dddddd;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media only screen and (min-width: 980px) {
  .p-policyPage__tableItem--right {
    padding: 15px 0 15px 15px;
  }
}

.p-policyPage__tableItem--right span {
  font-weight: 700;
}

.p-rplus__textUnderline {
  text-decoration: underline;
}

.p-rplus__mainLogo {
  width: 259px;
  height: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__mainLogo {
    width: 150px;
    height: auto;
  }
}

.p-rplus__listpage-logo {
  width: 221px;
  height: auto;
  margin: 0 auto;
}

.p-rplus__text__lv1 {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media only screen and (min-width: 980px) {
  .p-rplus__text__lv1 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-rplus__text__lv2 {
  font-size: 14px;
  font-size: 0.875rem;
}

@media only screen and (min-width: 980px) {
  .p-rplus__text__lv2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-rplus__text__lv3 {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media only screen and (min-width: 980px) {
  .p-rplus__text__lv3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-rplus__text__lv4 {
  font-size: 17px;
  font-size: 1.0625rem;
}

@media only screen and (min-width: 980px) {
  .p-rplus__text__lv4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-rplus__textBold {
  font-weight: 700;
}

.p-rplus__mainHeading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@media only screen and (min-width: 980px) {
  .p-rplus__mainHeading {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.p-rplus__mainHeading--blue {
  color: #1161aa;
}

.p-rplus__blueTextBadge {
  border: 1px solid #1161aa;
  border-radius: 20px;
  padding: 8px 12px;
  margin-right: 10px;
  background-color: #1161aa;
  color: #FFF;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

@media only screen and (min-width: 980px) {
  .p-rplus__blueTextBadge {
    font-size: 16px;
    font-size: 1rem;
    padding: 8px 15px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__blueTextBadge {
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1;
  }
}

.p-rplus__feature-gradation {
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), to(#1d67b7));
  background: linear-gradient(to right, #00c6fb, #1d67b7);
}

.p-rplus__feature-gradation p {
  color: #FFF;
  margin: 0 auto;
  display: table;
}

.p-rplus__mission__wrap {
  background-color: #d7e9f4;
  border: none;
  margin: 10px 0 30px 0;
  position: relative;
}

.p-rplus__mission__wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #d7e9f4 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.p-rplus__mission__borderBluedots {
  border-top: dotted 2px #1161aa;
  margin: 23px 0 17px 0;
}

@media only screen and (max-width: 980px) {
  .p-rplus__mission__borderBluedots {
    margin: 15px 0 18px 0;
  }
}

.p-rplus__3points {
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), to(#1d67b7));
  background: linear-gradient(to right, #00c6fb, #1d67b7);
  padding: 58px 14px 36px 14px;
  margin-top: 30px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points {
    padding: 26px 20px;
  }
}

.p-rplus__3points__title {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  position: relative;
}

@media only screen and (min-width: 980px) {
  .p-rplus__3points__title {
    font-size: 32px;
    font-size: 2rem;
  }
}

.p-rplus__3points__title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.p-rplus__3points__title span img {
  width: 151px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__title span img {
    width: 75px;
  }
}

.p-rplus__3points__inner {
  width: 890px;
  margin: 50px auto 0 auto;
}

@media only screen and (min-width: 980px) {
  .p-rplus__3points__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__inner {
    margin-top: 26px;
    width: 100%;
  }
}

.p-rplus__3points-column {
  background-color: #FFF;
  border-radius: 10px;
  width: 283px;
  position: relative;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points-column {
    max-width: 305px;
    margin: 15px auto 0 auto;
  }
}

.p-rplus__3points__heading {
  padding: 36px 20px 0 20px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading {
    padding: 15px 0 0 0;
    overflow: hidden;
    margin: 0 auto;
    max-width: 250px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-wrap, .p-rplus__3points__heading-title-wrap01, .p-rplus__3points__heading-title-wrap02, .p-rplus__3points__heading-title-wrap03 {
    float: right;
    width: calc(100% - 135px);
    line-height: 1.2;
    position: relative;
    margin-left: 8px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-wrap01 {
    height: 100px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-wrap02 {
    height: 113px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-wrap03 {
    height: 122px;
  }
}

.p-rplus__3points__heading-title {
  font-size: 21px;
  font-size: 1.3125rem;
  text-align: left;
  margin-bottom: 14px;
  color: #1161aa;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .p-rplus__3points__heading-title {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title {
    line-height: 1.2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    margin-bottom: 0px;
  }
}

.p-rplus__3points__heading-title-topImg01 {
  width: 215px;
  height: 168px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-topImg01 {
    /*max-width: 127px;*/
    height: auto;
  }
}

.p-rplus__3points__heading-title-topImg02 {
  width: 189px;
  height: 168px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-topImg02 {
    /*max-width: 127px;*/
    height: auto;
  }
}

.p-rplus__3points__heading-title-topImg03 {
  width: 174px;
  height: 168px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading-title-topImg03 {
    /*max-width: 114px;*/
    height: auto;
  }
}

.p-rplus__3points__heading-title-bottomImg01 {
  width: 89px;
  height: 89px;
}

.p-rplus__3points__heading-title-bottomImg02 {
  width: 72px;
  height: 89px;
}

.p-rplus__3points__heading-title-bottomImg03 {
  width: 83px;
  height: 89px;
}

.p-rplus__3points__heading img {
  margin: 0 auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__heading img {
    float: left;
    width: 127px;
    height: auto;
  }
}

.p-rplus__3points .p-rplus__text__lv3 {
  margin-top: 15px;
  padding: 0 20px;
  line-height: 1.5;
}

@media only screen and (min-width: 980px) {
  .p-rplus__3points .p-rplus__text__lv3 {
    margin-top: 20px;
  }
}

.p-rplus__3points__bottom {
  padding: 0 2px 10px 10px;
  margin-top: 26px;
  border-top: 2px dotted #1161aa;
}

@media only screen and (max-width: 980px) {
  .p-rplus__3points__bottom {
    padding: 0 2px 10px 8px;
  }
}

.p-rplus__3points__bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -20px;
}

.p-rplus__3points__bottom .p-rplus__text__lv4 {
  margin: 0 0 12px 10px;
  line-height: 1.2;
}

.p-rplus__3points__bottom .p-rplus__text__lv4 .c-classParts__bgBox__blue {
  line-height: unset;
}

.p-rplus__featureBox {
  padding: 15px;
  border: 1px solid #dddddd;
}

@media only screen and (min-width: 980px) {
  .p-rplus__featureBox {
    padding: 30px;
  }
}

.p-rplus__featureBox p {
  padding-top: 25px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox p {
    padding-top: 15px;
  }
}

.p-rplus__featureBox sub {
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .p-rplus__featureBox sub {
    font-size: 0.875rem;
  }
}

.p-rplus__featureBox .p-rplus__feature-title {
  padding-left: 0px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature-title .c-heading__pointBagde__bagde {
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints {
  position: relative;
  background: #D4E6F1;
  margin-top: 56px;
  padding: 50px 40px 40px 40px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints {
    margin-top: 28px;
    padding: 30px 18px 18px 18px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-title {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  margin: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-title {
    top: -9px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-title.title01 {
  width: 165px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-title.title01 {
    width: 102px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-title.title02 {
  width: 166px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-title.title02 {
    width: 102px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-title.title03 {
  width: 167px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-title.title03 {
    width: 102px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-title.title04 {
  width: 168px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-title.title04 {
    width: 104px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-title.title05 {
  width: 166px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-title.title05 {
    width: 102px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-img01 {
  width: 100%;
  height: auto;
  margin: 40px auto 15px auto;
}

@media only screen and (min-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-img01 {
    width: 800px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-img01 {
    max-width: 530px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-img03 {
  /*width: 345px;height: auto;*/
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-img03 {
    width: 100%;
    height: auto;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints-img05 {
  width: 100%;
  height: auto;
  margin: 30px auto 15px auto;
}

@media only screen and (min-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-img05 {
    width: 820px;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__featurePoints-img05 {
    max-width: 530px;
  }
}

.p-rplus__featureBox .p-rplus__featurePoints .c-video__youtubeWrapper {
  margin-top: 25px;
}

.p-rplus__featureBox .p-rplus__feature02-img {
  width: 100%;
  height: auto;
}

.p-rplus__featureBox .p-rplus__feature03-img {
  width: 722px;
  height: auto;
  margin: 0 auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature03-img {
    width: 100%;
  }
}

.p-rplus__featureBox .p-rplus__feature03-sdgs .p-rplus__feature-gradation {
  border-radius: 40px;
  text-align: center;
  padding: 14px 0;
  width: 100%;
  margin-top: 30px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature03-sdgs .p-rplus__feature-gradation {
    margin-top: 20px;
  }
}

.p-rplus__featureBox .p-rplus__feature03-sdgs .p-rplus__feature-gradation h4 {
  color: #FFF;
  line-height: 1.4;
}

.p-rplus__featureBox .p-rplus__feature03-2sub {
  margin-top: 20px;
}

@media only screen and (min-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature03-2sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature03-2sub {
    margin-top: 14px;
  }
}

.p-rplus__featureBox .p-rplus__feature03-2sub-right {
  position: relative;
  width: 330px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature03-2sub-right {
    width: 100%;
    margin-top: 10px;
  }
}

.p-rplus__featureBox .p-rplus__feature03-2sub-right .p-rplus__feature-gradation {
  border-radius: 10px;
  padding: 10px 0;
}

@media only screen and (min-width: 980px) {
  .p-rplus__featureBox .p-rplus__feature03-2sub-right .p-rplus__feature-gradation {
    width: 330px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
}

.p-rplus__featureBox .p-rplus__feature03-2sub-right .p-rplus__feature-gradation p {
  line-height: 1.4;
}

.p-rplus__feature-whiteBlock {
  background: #FFF;
  border-radius: 10px;
  padding: 30px 40px;
  margin-top: 25px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-whiteBlock {
    padding: 15px;
  }
}

.p-rplus__feature-whiteBlock .p-rplus__text__lv2 {
  padding-top: 7px;
}

.p-rplus__feature-blueBlock {
  background: #D4E6F1;
  padding: 30px 40px;
  margin-top: 25px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-blueBlock {
    padding: 20px 18px;
  }
}

.p-rplus__feature-blueBlock p {
  padding-top: 0px;
}

.p-rplus__feature-blueBlock .text-right {
  text-align: right;
}

.p-rplus__feature-blueBlock .c-video__youtubeWrapper {
  margin-top: 25px;
}

.p-rplus__feature-blueBlock .p-rplus__text__lv2 {
  padding-top: 7px;
}

.p-rplus__feature-whiteBlock p, .p-rplus__feature-blueBlock p {
  font-weight: 700;
}

.p-rplus__feature-whiteBlock .c-classParts__bgBox__blue, .p-rplus__feature-blueBlock .c-classParts__bgBox__blue {
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-whiteBlock .c-classParts__bgBox__blue, .p-rplus__feature-blueBlock .c-classParts__bgBox__blue {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.p-rplus__feature-whiteBlock .c-classParts__bgBox__list, .p-rplus__feature-blueBlock .c-classParts__bgBox__list {
  margin-top: 10px;
}

.p-rplus__feature-whiteBlock .c-classParts__bgBox__list li, .p-rplus__feature-blueBlock .c-classParts__bgBox__list li {
  padding: 0px 0px 12px 27px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-whiteBlock .c-classParts__bgBox__list li, .p-rplus__feature-blueBlock .c-classParts__bgBox__list li {
    padding: 0px 0px 12px 20px;
  }
}

.p-rplus__feature-whiteBlock .c-classParts__bgBox__list li:before, .p-rplus__feature-blueBlock .c-classParts__bgBox__list li:before {
  width: 18px;
  height: 18px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-whiteBlock .c-classParts__bgBox__list li:before, .p-rplus__feature-blueBlock .c-classParts__bgBox__list li:before {
    top: 13%;
    width: 14px;
    height: 14px;
  }
}

.p-rplus__feature-3column {
  padding-top: 25px;
}

@media only screen and (min-width: 980px) {
  .p-rplus__feature-3column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-3column {
    overflow: hidden;
  }
}

.p-rplus__feature-3column li {
  width: 280px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-3column li {
    width: 48%;
    float: left;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-3column li:nth-child(2) {
    margin-left: 4%;
  }
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-3column li:nth-child(3) {
    margin-top: 4%;
  }
}

.p-rplus__feature-3column li p {
  padding-top: 5px;
}

.p-rplus__blue-fukidashi {
  background: #1161aa;
  color: #FFF;
  position: relative;
}

.p-rplus__blue-fukidashi::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #1161aa transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

@media only screen and (max-width: 980px) {
  .p-rplus__blue-fukidashi::after {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
  }
}

.p-rplus__blue-fukidashi p {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  padding: 3px 0;
}

@media only screen and (max-width: 980px) {
  .p-rplus__blue-fukidashi p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-rplus__feature-freeBan p {
  padding-top: 25px;
}

.p-rplus__feature-freeBan-banner {
  margin: 40px auto 0 auto;
  width: 800px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-freeBan-banner {
    width: 100%;
    margin: 25px auto 0 auto;
  }
}

.p-rplus__feature-freeBan-text {
  width: 800px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 10px !important;
}

@media only screen and (max-width: 980px) {
  .p-rplus__feature-freeBan-text {
    width: 100%;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-rplus__feature-freeBan a:hover img {
  opacity: 0.6;
}

.p-rplus-pt-none {
  padding-top: 0px !important;
}
/*# sourceMappingURL=common.css.map */

/* 以下は奥山追記分 */
.gradationLine {
  padding: 0.5rem 0;
  margin-bottom: 0.7rem;
  background-image: linear-gradient(to right,#00c6fb, #1F7FA8);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  font-weight: 500;
  font-size: 18px;
}

@media only screen and (max-width: 980px) {
  .gradationLine {
    font-size: 16px;
  }
}

.c-classParts__table__heading--w25 {
    width: 25%
  }
  
  .c-classParts__table__no-bottom {
    border-bottom: none;
  }

/* LINE公式アカウント固定ページ */
.line-logo {
  width: auto;
  height: 24px;
  margin: 0 auto;
}

@media only screen and (min-width: 980px) {
  .line-logo {
    height: 36px;
  }
}

.c-heading__lv2__title--line {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.line-info {
  margin: 0 0 30px;
  padding: 30px 90px;
  background-color: #f7f7f7;
}

.line-info &gt; h4 {
  margin: 0 0 15px;
}

.line-info &gt; p {
  font-size: .875rem;
  color: #06c755;
  text-align: center;
  font-weight: 700;
  margin: 0 0 5px;
}

.line-info &gt; img {
  margin: 0 0 15px;
}

.line-info_btn {
  margin: 0 auto;
  padding: .5rem;
  display: block;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background-color: #06c755;
  border-radius: 2.5rem;
  font-weight: 700;
}

@media only screen and (min-width: 980px) {
  .c-heading__lv2__title--line {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 700;
  }

  .line-info_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }

  .line-info {
    margin: 0;
    padding: 30px 60px;
    background-color: #f7f7f7;
  }
  
  .line-info &gt; h4 {
    margin: 0 0 15px;
  }
  
  .line-info &gt; h4 &gt; img {
    height: 40px;
  }
  
  .line-info &gt; p {
    font-size: 1rem;
    color: #06c755;
    text-align: center;
    font-weight: 700;
    margin: 0 0 5px;
  }
  
  .line-info &gt; img {
    margin: 0 0 15px;
  }
  
  .line-info_btn {
    padding: .75rem;
  }
}

/* 料金プルダウン */
.price-select {
  position: relative;
}

.price-select:after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #979797;
  border-right: 3px solid #979797;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
  content: "";
}

.price-select &gt; select {
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 15px;
  font-size: 0.8125rem;
  line-height: 1;
  padding: 0 20px;
  width: 100%;
  height: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #dddddd;
  border-radius: 6px;
  cursor: pointer;
  color: #333333;
  background: #FFF;
}

@media only screen and (min-width: 980px) {
  .price-select &gt; select {
    margin-top: 30px;
    font-size: 1rem;
    padding: 0 20px;
    width: 50%;
    height: 50px;
  }

  .price-select:after {
    top: 56%;
    right: calc(50% + 2em);
  }
}

.e-result_table {
  margin-top: 30px;
}

.trial_sub {
  font-size: 0.75rem;
}

@media only screen and (min-width: 980px) {
  .trial_sub {
    font-size: 0.875rem;
  }
}

/* 電話番号 モーダルウィンドウ */
.tel-list_title {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.tel-list_number {
  text-align: center;
  margin-bottom: 1rem;
}

.tel-list_number &gt; p {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #1161aa;
  font-weight: 700;
  margin-bottom: 5px;
}

.tel-list_number &gt; a {
  position: relative;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #1161aa;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 260px;
  padding: 0 0 0 25px;
  height: 3rem;
  display: inline-block;
  line-height: 2;
}

.tel-list_number.ls &gt; a {
  letter-spacing: 1.2px;
}

.tel-list_number &gt; a::before {
  position: absolute;
  top: 1px;
  left: 32px;
  width: 20px;
  content: url(../images/common/icon_phone_white.svg);
}

.tel-list_time {
  color: #333333;
  text-align: center;
  margin-bottom: 15px;
}

@media only screen and (min-width: 600px) {
  .modaal-container {
    width: 60%;
  }
}

@media only screen and (min-width: 980px) {
  .modaal-container {
    width: 100%;
    max-width: 800px;
  }

  .tel-modal_button {
    width: 220px;
    background-color: #1161aa;
    border: 1px solid #1161aa;
    border-radius: 30px;
    margin: 0 20px 0 0;
    padding: 10px 30px 10px 50px;
    text-align: center;
    display: inline-block;
  }

  .tel-modal_button a {
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.7;
    color: #fff;
  }

  .tel-modal_button a::before {
    position: absolute;
    top: 3px;
    left: -25px;
    width: 20px;
    content: url(../images/common/icon_phone_white.svg);
  }

  .tel-modal_button:hover {
    background-color: #fff;
  }

  .tel-modal_button:hover a {
    color: #1161aa;
  }

  .tel-modal_button:hover a::before {
    content: url(../images/common/icon_phone_blue.svg);
  }

  .tel-list_title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .tel-list_number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 100px 20px;
  }
  
  .tel-list_number &gt; p {
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #1161aa;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .tel-list_number &gt; a {
    font-size: 2rem;
    color: #333333;
    background-color: #ffffff;
    width: auto;
    padding: 0;
    height: auto;
    line-height: 1;
  }
  
  .tel-list_number.ls &gt; a {
    letter-spacing: 1.55px;
  }
  
  .tel-list_number &gt; a::before {
    top: 0px;
    left: -30px;
    width: 24px;
    content: url(../images/common/icon_phone.svg);
  }
}

/* 時間割アコーディオン */
.timetable_contents {
  display: none;
}

.timetable_title_link {
  color: #1161aa;
  text-decoration: underline;
}


.c-classParts__table__no-top {
  border-top: none;
}

/* 固定ページにお知らせ追加 */
.page-news-title {
  margin: 40px 0 -20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  color: #1161aa;
}

.p-info__list.p-info__no-post {
  text-align: center;
  padding: 20px 0;
}

@media only screen and (min-width: 980px) {
  .page-news-title {
    margin: 80px 0 -40px;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-info__list.p-info__no-post {
    text-align: center;
    padding: 40px 0;
  }
}

/* サイト内検索 */
.header_search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #CCC;
  background: #ffffff;
  border-radius: 5px;
  padding: 10px 15px;
  color: #333333;
  cursor: pointer;
  width: 200px;
}

.header_search &gt; input {
  border: none;
  padding: 0;
  font-size: .875rem;
  line-height: 1;
  text-overflow: ellipsis;
  width: 140px;
}

.header_search &gt; button &gt; img {
  width: 20px;
}

.header_button_tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1161aa;
  color: #ffffff;
  font-size: .875rem;
  font-weight: 700;
  margin: 0 15px 0 30px;
  padding: 10px;
  border-radius: 20px;
  transition: all .25s;
}

.header_button_form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1161aa;
  color: #ffffff;
  font-size: .875rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 20px;
  transition: all .25s;
}

.header_button_tel &gt; img, .header_button_form &gt; img {
  width: 20px;
}

.header_button_tel &gt; span, .header_button_form &gt; span {
  display: none;
  margin-left: 10px;
}

.header_button_tel:hover, .header_button_form:hover {
  padding: 10px 20px;
}

.header_button_tel:hover &gt; span, .header_button_form:hover &gt; span {
  display: block;
}

.contact-header_button_tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1161aa;
  color: #ffffff;
  font-size: .875rem;
  font-weight: 700;
  margin: 0 15px 0 30px;
  padding: 10px 20px;
  border-radius: 20px;
}

.contact-header_button_form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1161aa;
  color: #ffffff;
  font-size: .875rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
}

.contact-header_button_tel &gt; img, .contact-header_button_form &gt; img {
  width: 20px;
}

.contact-header_button_tel &gt; span, .contact-header_button_form &gt; span {
  margin-left: 10px;
}

.menu_search &gt; form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #CCC;
  background: #ffffff;
  border-radius: 5px;
  padding: 10px 15px;
  color: #333333;
  cursor: pointer;
  width: 80%;
  margin: 30px auto;
}

.menu_search &gt; form &gt; input {
  border: none;
  padding: 0;
  font-size: .875rem;
  line-height: 1;
  text-overflow: ellipsis;
}

.menu_search &gt; form &gt; button &gt; img {
  width: 20px;
}

@media only screen and (min-width: 980px) {
  .menu_search {
    display: none;
  }
}

.p-info__terms__searchbox {
  margin-top: 20px;
  border: 1px solid #CCC;
  background: #FFF;
  border-radius: 5px;
  display: inline-block;
  padding: 12px 38px 12px 12px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #333333;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
}

@media only screen and (min-width: 980px) {
  .p-info__terms__searchbox {
    margin-top: 0;
    width: 150%;
  }
}

/* フッターにLINE追加 */
.c-footer__top__lineButton {
  background-color: #29A8E0;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80%;
  margin: 10px auto 0;
  height: 3rem;
  max-width: 290px;
}

.c-footer__top__lineButton &gt; img {
  width: 180px;
}

@media only screen and (min-width: 980px) {
  .c-footer__top__lineButton {
    background-color: transparent;
    border-radius: 0;
    width: 120px;
    margin: 0 0 0 10px;
  }
  
  .c-footer__top__lineButton &gt; img {
    width: 120px;
  }

  .c-footer__top__phoneBox02 {
    display: flex;
  }
}

/* 塾生・保護者の声 */
.voice_main-page {
  margin: 30px 0 0;
  text-align: center;
  border: 1px solid #dddddd;
  padding: 0 0 30px;
}

.voice_main-page &gt; div:nth-child(1) &gt; iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.voice_main-page &gt; div:nth-child(2) {
  padding: 30px 0 0;
}

.voice_main-page &gt; div:nth-child(2) &gt; img {
  display: block;
  margin: 0 auto;
  width: 200px;
}

#e-student_tag,
#e-parent_tag,
#j-student_tag,
#j-passer_tag,
#j-parent_tag,
#s-student_tag,
#s-passer_tag,
#s-parent_tag,
#student_tag,
#passer_tag,
#parent_tag {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 0;
}

#e-student_tag button,
#e-parent_tag button,
#j-student_tag button,
#j-passer_tag button,
#j-parent_tag button,
#s-student_tag button,
#s-passer_tag button,
#s-parent_tag button,
#student_tag button,
#passer_tag button,
#parent_tag button {
  display: inline-block;
  padding: 5px 15px;
  margin: 5px;
  cursor: pointer;
  border: 1px solid #1161aa;
  border-radius: 30px;
  background-color: #ffffff;
  color: #1161aa;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

#e-student_tag button.active,
#e-parent_tag button.active,
#j-student_tag button.active,
#j-passer_tag button.active,
#j-parent_tag button.active,
#s-student_tag button.active,
#s-passer_tag button.active,
#s-parent_tag button.active,
#student_tag button.active,
#passer_tag button.active,
#parent_tag button.active {
  color: #ffffff;
  background-color: #1161aa;
}

.c-classParts__voiceBox__tag {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.c-classParts__voiceBox__tag p {
  display: inline-block;
  padding: 5px 15px;
  margin: 5px;
  cursor: pointer;
  border: 1px solid #1161aa;
  border-radius: 30px;
  background-color: #1161aa;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (min-width: 980px) {
  .voice_main-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 45px 0 0;
    padding: 0;
  }
  
  .voice_main-page &gt; div:nth-child(1) {
    width: 50%;
  }
  
  .voice_main-page &gt; div:nth-child(2)  {
    width: 50%;
    padding: 0;
  }
  
  .voice_main-page &gt; div:nth-child(2) &gt; img  {
    width: 300px;
  }

  #e-student_tag,
  #e-parent_tag,
  #j-student_tag,
  #j-passer_tag,
  #j-parent_tag,
  #s-student_tag,
  #s-passer_tag,
  #s-parent_tag,
  #student_tag,
  #passer_tag,
  #parent_tag {
    display: flex;
    flex-wrap: wrap;
    margin: 60px 0 0;
  }
  
  #e-student_tag button,
  #e-parent_tag button,
  #j-student_tag button,
  #j-passer_tag button,
  #j-parent_tag button,
  #s-student_tag button,
  #s-passer_tag button,
  #s-parent_tag button,
  #student_tag button,
  #passer_tag button,
  #parent_tag button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1rem;
  }
  
  .c-classParts__voiceBox__tag {
    margin: 20px 0 0;
  }
  
  .c-classParts__voiceBox__tag p {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1rem;
  }
}

/* 会社概要のビジョン */
.p-about__bgOnCard__title &gt; span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1161aa;
  line-height: 3;
}

.p-about__bgOnCard__card__text.our-mission {
  font-size: 1.125rem;
}

@media only screen and (min-width: 980px) {
  .p-about__bgOnCard__title &gt; span {
    font-size: 1.25rem;
  }
  
  .p-about__bgOnCard__card__text.our-mission {
    font-size: 1.5rem;
  }
}

/* 指導方針 */
.p-about__philosophy__environment_img &gt; figure {
  margin: 20px 0 0;
}

@media only screen and (min-width: 980px) {
  .p-about__philosophy__environment_img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .p-about__philosophy__environment_img &gt; figure {
    margin: 0;
  }
}

/* 小学生 中学生 */
.p-group__listpage-logo {
  width: 180px;
  height: auto;
  margin: 0 auto;
}

.p-sutton__listpage-logo {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

/* 小学生 サットン */
.sutton-blue {
  color: #1161aa;
  font-weight: 700;
}

.c-heading__lv2--logo.sutton {
  height: 75px;
}

.p-sutton__mainHeading--blue {
  margin-bottom: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: #1161aa;
}

.p-sutton__mainHeading--blue &gt; span {
  display: block;
  margin-bottom: 20px;
}

.sutton_heading_lv3 {
  background-color: #f2f9fc;
  margin: 30px 0 0;
  padding: 10px 0px;
  position: relative;
}

.sutton_heading_lv3 &gt; div span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50%;
  background-color: #1161aa;
}

.sutton_heading_lv3 &gt; div span:last-child {
  background-color: #29a9e0;
  top: auto;
  bottom: 0;
}

.sutton_heading_lv3 &gt; h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 20px;
  line-height: 1.7;
}

.sutton_introduction_content p {
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
}

.sutton_heading_lv4 {
  background-color: #d7e9f4;
  padding: 15px;
  margin: 30px 0px 20px 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.sutton_flex01 &gt; p {
  margin-bottom: 20px;
}

.sutton_figure01 {
  margin: 20px 0 0;
  padding: 25px;
  border: 5px solid #e1edf4;
  background-color: #fff;
  background-image: repeating-linear-gradient(90deg, #c3c3c330, #c3c3c330 1px, transparent 1px, transparent 24px), repeating-linear-gradient(0deg, #c3c3c330, #c3c3c330 1px, #fff 1px, #fff 24px);
  text-align: center;
}

.sutton_figure01 &gt; div &gt; p:nth-child(1),
.sutton_figure01 &gt; div &gt; p:nth-child(3) {
  display: inline-block;
  background-color: #1161aa;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 5px 25px;
}

.sutton_figure01 &gt; div &gt; p:nth-child(2) {
  color: #1161aa;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.sutton_figure01 &gt; img {
  width: 30px;
  margin: 20px auto;
}

.sutton_figure01 &gt; p {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.sutton_figure02 {
  margin: 20px 0;
  padding: 25px;
  border: 5px solid #e1edf4;
  background-color: #fff;
  background-image: repeating-linear-gradient(90deg, #c3c3c330, #c3c3c330 1px, transparent 1px, transparent 24px), repeating-linear-gradient(0deg, #c3c3c330, #c3c3c330 1px, #fff 1px, #fff 24px);
  text-align: center;
}

.sutton_figure02 dl {
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
}

.sutton_figure02 dt {
  margin-top: 20px;
  font-weight: 700;
}

.sutton_program_content01 p,
.sutton_program_content02 p,
.sutton_program_content03 p {
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
}

.sutton_program_content01 &gt; div {
  display: flex;
  align-items: end;
  gap: 15px;
  margin: 15px 0 30px;
}

.sutton_program_content01 &gt; div &gt; img {
  width: 60px;
}

.sutton_program_content01 &gt; div &gt; h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1161aa;
}

.sutton_program_content01 &gt; dl {
  font-size: 15px;
  line-height: 1.5;
}


.sutton_program_content01 &gt; dl &gt; div {
  padding: 15px;
  background-color: #f2f9fc;
}

.sutton_program_content01 &gt; dl &gt; div:first-child {
  margin-bottom: 20px;
}

.sutton_program_content01 &gt; dl dt {
  font-weight: 700;
}

.sutton_program_content01 &gt; dl span {
  font-weight: 700;
}

.sutton_program_content02_title,
.sutton_program_content03_title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0 20px;
  padding: 15px;
  background-color: #d7e9f4;
}

.sutton_program_content02_title &gt; span,
.sutton_program_content03_title &gt; span {
  padding: 8px 12px;
  border-radius: 15px;
  background-color: #1161aa;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.sutton_program_content02_title &gt; h4,
.sutton_program_content03_title &gt; h4 {
  font-size: 16px;
  font-weight: 700;
}

.sutton_flex02 ul {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}

.sutton_flex02 p {
  margin-bottom: 20px;
}

.sutton_example01, 
.sutton_example02 {
  margin: 15px 0 0;
  padding: 20px 15px;
  background-color: #dddddd;
  border-bottom: 3px solid #1161aa;
}

.sutton_example01 img {
  margin: 20px 0;
}

.sutton_example02 span {
  font-weight: 700;
}

.sutton_example02 img {
  margin-top: 20px;
  width: 200px;
}

.sutton_program_content03 h5 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 30px;
}

.sutton_program_content03 h5 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  text-align: justify;
  margin-top: 30px;
}

.sutton_program_content03_ol01 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #1161aa;
}

.sutton_program_content03_ol01 li {
  margin-bottom: 20px;
}

.sutton_program_content03_ol01 span {
  font-weight: 400;
  color: #333333;
}

.sutton_program_content03_ol02 {
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 20px;
}

@media only screen and (min-width: 980px) { 
  .c-heading__lv2--logo.sutton {
    height: 100px;
  }
  
  .p-sutton__mainHeading--blue {
    margin-bottom: 80px;
    font-size: 1.625rem;
  }
  
  .sutton_heading_lv3 {
    margin: 80px 0 0;
    padding: 20px 0px;
  }
  
  .sutton_heading_lv3 &gt; h3 {
    font-size: 1.25rem;
    padding-left: 40px;
  }
  
  .sutton_introduction_content p {
    font-size: 1rem;
  }

  .sutton_heading_lv4 {
    padding: 35px 30px;
    margin: 40px 0px;
    font-size: 1.375rem;
  }

  .sutton_flex01 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  
  .sutton_flex01 &gt; p {
    margin-bottom: 0;
  }
  
  .sutton_flex01 &gt; img {
    width: 400px;
  }
  
  .sutton_figure01 {
    margin: 40px 0 0;
    padding: 30px;
  }
  
  .sutton_figure01 &gt; div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 0 0 30px;
  }
  
  .sutton_figure01 &gt; div &gt; p:nth-child(1),
  .sutton_figure01 &gt; div &gt; p:nth-child(3) {
    font-size: 1.25rem;
    width: 300px;
  }
  
  .sutton_figure01 &gt; div &gt; p:nth-child(2) {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .sutton_figure01 &gt; img {
    width: 50px;
    margin: 15px auto;
  }
  
  .sutton_figure01 &gt; p {
    font-size: 1.25rem;
  }
  
  .sutton_figure02 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    text-align: justify;
  }
  
  .sutton_figure02 img {
    width: 400px;
  }
  
  .sutton_figure02 dl {
    font-size: 1rem;
  }
  
  .sutton_figure02 dt {
    margin-top: 30px;
  }
  
  .sutton_program_content01 p,
  .sutton_program_content02 p,
  .sutton_program_content03 p {
    font-size: 1rem;
  }
  
  .sutton_program_content01 &gt; div {
    gap: 20px;
    margin: 20px 0 30px;
  }
  
  .sutton_program_content01 &gt; div &gt; img {
    width: 60px;
  }
  
  .sutton_program_content01 &gt; div &gt; h4 {
    font-size: 1.375rem;
  }
  
  .sutton_program_content01 &gt; dl {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    font-size: 1rem;
  }
  
  .sutton_program_content01 &gt; dl &gt; div {
    width: 465px;
    padding: 30px;
  }
  
  .sutton_program_content01 &gt; dl &gt; div:first-child {
    margin-bottom: 0px;
  }
  
  .sutton_program_content02_title,
  .sutton_program_content03_title {
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
  }
  
  .sutton_program_content02_title &gt; span,
  .sutton_program_content03_title &gt; span {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
  }
  
  .sutton_program_content02_title &gt; h4,
  .sutton_program_content03_title &gt; h4 {
    font-size: 1.375rem;
  }

  .sutton_flex02 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  
  .sutton_flex02 ul {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .sutton_flex02 p {
    margin-bottom: 0;
  }

  .sutton_flex02 img {
    width: 400px;
  }
  
  .sutton_example01, 
  .sutton_example02 {
    margin: 20px 0 0;
    padding: 50px;
  }
  
  .sutton_example01 div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }

  .sutton_example01 img {
    margin: 0;
    width: 320px;
  }

  .sutton_example02 img {
    margin-top: 20px;
    width: 880px;
  }
  
  .sutton_program_content03 h5 {
    font-size: 1.25rem;
    margin: 45px 0 15px;
  }
  
  .sutton_program_content03_ol01 {
    font-size: 1rem;
  }

  .sutton_program_content03_ol02 {
    font-size: 1rem;
  }
}

/* フッター 共育ラボ */
.c-footer__kyoikulab {
  padding: 45px 0;
  background-color: #ffffff;
}

.c-footer__kyoikulab__wrapper {
  text-align: center;
  margin: 0 auto;
}

.c-footer__kyoikulab__title {
  font-size: 25px;
  font-size: 1.125rem;
  color: #1161aa;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.c-footer__kyoikulab__subTitle {
  display: inline-block;
  border: 1px solid #1161aa;
  border-radius: 15px;
  padding: 4px 18px;
  color: #1161aa;
  font-size: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.c-footer__kyoikulab__intro {
  margin: 30px 0;
}

.c-footer__kyoikulab__intro &gt; img {
  margin: 0 auto 15px;
  width: 200px;
}

.c-footer__kyoikulab__intro &gt; p {
  padding: 0 18.75px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: justify;
}

.c-footer__kyoikulab_slider .swiper-slide {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  overflow: hidden;
  position: relative; 
  height: 230px;
}

.c-footer__kyoikulab_slider .swiper-slide img {
  transition: transform 0.3s ease;
}

.c-footer__kyoikulab_slider .swiper-slide img:hover {
  transform: scale(1.1);
}

.c-footer__kyoikulab_slider .swiper-slide p {
  margin: 15px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.c-footer__kyoikulab_slider .swiper-button-prev {
  background-image: url(../images/top/slidePrev.svg);
  background-repeat: no-repeat;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  left: calc(10px + 20.5vw);
}

@media only screen and (max-width: 980px) {
  .c-footer__kyoikulab_slider .swiper-button-prev {
    margin-top: -14.5px;
    width: 29px;
    height: 29px;
    left: calc(10px + 11.5vw);
  }
}

.c-footer__kyoikulab_slider .swiper-button-prev:after {
  display: none;
}

.c-footer__kyoikulab_slider .swiper-button-next {
  background-image: url(../images/top/slideNext.svg);
  background-repeat: no-repeat;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  right: calc(10px + 20.5vw);
}

@media only screen and (max-width: 980px) {
  .c-footer__kyoikulab_slider .swiper-button-next {
    margin-top: -14.5px;
    width: 29px;
    height: 29px;
    right: calc(10px + 11.5vw);
  }
}

.c-footer__kyoikulab_slider .swiper-button-next:after {
  display: none;
}

.c-footer__kyoikulab__button {
  max-width: 290px;
  width: 100%;
  padding: 17px 20px;
  border-radius: 40px;
  margin: 30px 0 45px;
  background-color: #1161aa;
  border: 1px solid #1161aa;
  display: inline-block;
}

.c-footer__kyoikulab__button a {
  position: relative;
  left: -10px;
  line-height: 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.c-footer__kyoikulab__button a::after {
  content: '';
  position: absolute;
  top: 2px;
  right: -25px;
  width: 18px;
  height: 18px;
  background-image: url(../images/common/new-window.svg);
}

.c-footer__kyoikulab__button:hover {
  background-color: #ffffff;
}

.c-footer__kyoikulab__button:hover a {
  color: #1161aa;
}

.c-footer__kyoikulab__button:hover a::after {
  background-image: url(../images/common/new-window-blue.svg);
}

.c-footer__kyoikulab_banner {
  padding: 0 18.75px;
}

@media only screen and (min-width: 768px) {
  .c-footer__kyoikulab_slider .swiper-slide {
    height: auto;
  }
}

@media only screen and (min-width: 980px) {
  .c-footer__kyoikulab {
    padding: 65px 0;
  }
  
  .c-footer__kyoikulab__title {
    font-size: 2rem;
  }
  
  .c-footer__kyoikulab__subTitle {
    padding: 4px 14px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 15px;
  }
  
  .c-footer__kyoikulab__intro {
    margin: 40px 0;
  }
  
  .c-footer__kyoikulab__intro &gt; img {
    margin: 0 auto 20px;
    width: 320px;
  }
  
  .c-footer__kyoikulab__intro &gt; p {
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    font-size: 1rem;
  }
  
  .c-footer__kyoikulab_flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .c-footer__kyoikulab_flex div {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    overflow: hidden;
    position: relative;
    height: 300px;
  }
  
  .c-footer__kyoikulab_flex div img {
    transition: transform 0.3s ease;
  }
  
  .c-footer__kyoikulab_flex div img:hover {
    transform: scale(1.1);
  }
  
  .c-footer__kyoikulab_flex div p {
    margin: 15px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
  }

  .c-footer__kyoikulab__button {
    max-width: 360px;
    width: 360%;
    margin: 45px 0 60px;
    padding: 21px 20px;
  }
  
  .c-footer__kyoikulab_banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 18.75px;
  }
}

/* ポップアップ */
.popup_banner {
  background: rgba(0, 0, 0, .7);
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2000;
}

.popup_banner.active {
  display: block;
}

.popup_banner &gt; span {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  cursor: pointer;
}

.popup_banner &gt; div {
  margin: calc((100vh - 515px) / 2) auto 0;
  width: 320px;
}

.popup_banner_button {
  margin: 30px 0 0;
}

.popup_banner_button li {
  margin: 0 0 15px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 22.5px;
  box-shadow: 0px 0px 0px 1.5px rgb(255 137 0), 0px 0px 0px 3px rgb(248 181 45);
}

.popup_banner_button a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.popup_banner_button div {
  padding: 0 15px;
  height: 20px;
  border-radius: 10px;
  background-color: #f7931e;
}

.popup_banner_button a span {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  line-height: 20px;
}

.popup_banner_button &gt; li:nth-child(1) img {
  width: 100px;
}

.popup_banner_button &gt; li:nth-child(2) img {
  width: 120px;
}

.popup_banner_button &gt; li:nth-child(3) {
  margin: 0;
}

.popup_banner_button &gt; li:nth-child(3) img {
  width: 120px;
}

@media screen and (min-width: 768px) {  
  .popup_banner &gt; span {
    top: calc(((100vh - 510px) / 2) - 80px);
    right: calc(((100vw - 80px) / 2) - 255px);
    width: 80px;
  }
  
  .popup_banner &gt; div {
    margin: calc((100vh - 510px) / 2) auto 0;
    width: 100%;
  }
  
  .popup_banner &gt; div &gt; img {
    margin: 0 auto;
    width: 400px;
  }

  .popup_banner_button {
    margin: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .popup_banner_button li {
    margin: 0;
    width: 360px;
    height: 60px;
    border-radius: 30px;
  }
  
  .popup_banner_button a {
    gap: 15px;
  }
  
  .popup_banner_button div {
    height: 30px;
    border-radius: 15px;
  }
  
  .popup_banner_button a span {
    font-size: 12px;
    line-height: 30px;
  }
  
  .popup_banner_button &gt; li:nth-child(1) img {
    width: 120px;
  }
  
  .popup_banner_button &gt; li:nth-child(2) img {
    width: 140px;
  }

  .popup_banner_button &gt; li:nth-child(3) img {
    width: 140px;
  }
}
/* 奥山追記分の終わり*/</pre></body></html>