@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

body {
  color: #2C3A61;
  background-color: #fff;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4285714286vw;
  }
}
@media (min-width: 1120px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.about {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 130px;
  }
}

.about__inner {
  margin: auto;
}

.about__box {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .about__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
    margin-top: 42px;
  }
}

.about__img {
  position: relative;
  max-width: 240px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__img {
    max-width: 400px;
    width: 45%;
    margin-left: -42px;
  }
}

.about__img::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.about__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__text {
  padding: 20px 12px;
  border: 1px solid #D9D9D9;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
  font-size: 16px;
  line-height: 1.93;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 20px;
    padding: 22px 0 22px 25px;
    max-width: 755px;
    line-height: 1.68;
  }
}

.about__entry {
  margin-top: 100px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__entry {
    margin-top: 94px;
  }
}

.activity {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .activity {
    margin-top: 100px;
  }
}

.activity__title {
  font-size: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .activity__title {
    font-size: 30px;
  }
}

.activity__title span {
  color: #FF9D0C;
  font-size: 30px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .activity__title span {
    font-size: 40px;
  }
}

.activity__lists {
  border-radius: 5px;
  border: 3px solid #FF9D0C;
  background: #fff;
  padding: 20px 10px 14px 20px;
  font-size: 16px;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .activity__lists {
    padding: 24px 20px 20px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 20px;
    margin-top: 64px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.activity__lists li {
  line-height: 2;
  padding-left: 6px;
}
@media screen and (min-width: 768px) {
  .activity__lists li {
    width: calc(50% - 10px);
    margin-top: 0;
    line-height: 1.45;
  }
}

@media screen and (min-width: 768px) {
  .activity__lists li:nth-child(1) {
    padding-left: 66px;
  }
}

.activity__lists li:nth-child(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .activity__lists li:nth-child(2) {
    margin-top: 0;
    padding-left: 50px;
  }
}

.activity__lists li:nth-child(3) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .activity__lists li:nth-child(3) {
    padding-left: 66px;
  }
}

.activity__lists li:nth-child(4) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .activity__lists li:nth-child(4) {
    padding-left: 50px;
  }
}

.activity__lists li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  background-color: #448ACA;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F1E000), to(#FF9D0C));
  background: linear-gradient(180deg, #F1E000 0%, #FF9D0C 100%);
}
@media screen and (min-width: 768px) {
  .activity__lists li::before {
    width: 10px;
    height: 10px;
    margin-right: 5px;
  }
}

.cards {
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cards {
    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;
    max-width: 1010px;
  }
}

.card {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .card {
    width: calc(50% - 40px);
    text-align: center;
    margin-top: 0;
  }
}

.card:not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .card:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .card--review:nth-child(n+3) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .card--voice:nth-child(n+3) {
    margin-top: 60px;
  }
}

.contents {
  margin-top: 98px;
}

.contents__box {
  background-image: url("/images/common/contents-bg-sp-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-top: 18px;
  background-position: top;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .contents__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url("/images/common/contents-bg-1.jpg");
    background-position: -20px center;
    padding: 0 40px;
    margin-top: 100px;
  }
}

.contents__box--first {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .contents__box--first {
    margin-top: 98px;
    padding-bottom: 144px;
  }
}

@media screen and (min-width: 768px) {
  .contents__box--second {
    padding-bottom: 12px;
  }
}

@media screen and (min-width: 768px) {
  .contents__box--third {
    height: 677px;
  }
}

@media screen and (min-width: 768px) {
  .contents__imgbox {
    width: 32%;
    margin-top: 156px;
    margin-left: 134px;
  }
}

.contents__img {
  position: relative;
  max-width: 335px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contents__img {
    max-width: 400px;
  }
}

.contents__img::before {
  content: "";
  padding-top: 74.626%;
  display: block;
}
@media screen and (min-width: 768px) {
  .contents__img::before {
    padding-top: 75%;
  }
}

.contents__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contents__wrap {
  margin-top: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents__wrap {
    width: 60%;
    margin-top: 10px;
    margin-left: 36px;
  }
}

.contents__wrap--second {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contents__wrap--second {
    margin-top: 0;
  }
}

.contents__h3--second {
  padding-top: 42px !important;
}
@media screen and (min-width: 768px) {
  .contents__h3--second {
    padding-top: 0;
  }
}

.contents__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contents__title {
    margin-top: 20px;
  }
}

.contents__number {
  display: inline-block;
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 0 #448ACA, -1px -1px 0 #448ACA, -1px 1px 0 #448ACA, 1px -1px 0 #448ACA, 0px 1px 0 #448ACA, -1px 0 #448ACA, -1px 0 0 #448ACA, 1px 0 0 #448ACA;
}
@media screen and (min-width: 768px) {
  .contents__number {
    font-size: 80px;
  }
}

.contents__title h3 {
  font-size: 25px;
  display: inline;
  margin-left: 6px;
  padding-top: 6px;
  text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .contents__title h3 {
    font-size: 40px;
    padding-top: 16px;
    margin-left: 30px;
    line-height: 1.2;
  }
}

.contents__border {
  border-bottom: 3px solid #F4DE19;
}
@media screen and (min-width: 768px) {
  .contents__border {
    border-bottom: 5px solid #F4DE19;
  }
}

@media screen and (min-width: 768px) {
  .contents__title--third h3 {
    padding-top: 24px;
    margin-left: 14px;
  }
}

.contents-lists {
  list-style: none;
  font-size: 16px;
  padding: 14px 20px;
  background: #fff;
  border: 3px solid #448ACA;
  border-radius: 5px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contents-lists {
    max-width: 658px;
    font-size: 20px;
    padding: 18px;
  }
}

.contents-lists li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  background-color: #448ACA;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#45B5E4), to(#448ACA));
  background: linear-gradient(180deg, #45B5E4 0%, #448ACA 100%);
}
@media screen and (min-width: 768px) {
  .contents-lists li::before {
    width: 10px;
    height: 10px;
  }
}

.contents-lists--first {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .contents-lists--first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contents-lists--second {
  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;
  padding-right: 5px;
}

.contents-list--first {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents-list--first {
    width: calc(50% - 10px);
    line-height: 1.45;
  }
}

.contents-list--first:nth-child(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contents-list--first:nth-child(2) {
    margin-top: 0;
  }
}

.contents-list--first:nth-child(n+3) {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .contents-list--first:nth-child(2n) {
    padding-left: 14px;
  }
}

.contents-list--second {
  width: calc(50% - 10px);
  line-height: 1.46;
}
@media screen and (min-width: 768px) {
  .contents-list--second {
    line-height: 1.45;
  }
}

.contents-list--second:nth-child(n+3) {
  margin-top: 10px;
}

.contents-list--second:nth-child(2n) {
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .contents-list--second:nth-child(2n) {
    padding-left: 20px;
  }
}

.contents-list--second:nth-child(n+9) {
  width: 100%;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .contents-list--second:nth-child(n+9) {
    width: 45%;
  }
}

.contents-list--second:nth-child(13) {
  width: 100%;
}

.contents-list--third {
  line-height: 1.44;
}

.contents-list--third:first-child {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .contents-list--third:first-child {
    margin-top: 0;
  }
}

.contents-list--third:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contents-list--third:not(:first-child) {
    margin-top: 10px;
  }
}

.contents-lists--third {
  padding-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .contents-lists--third {
    padding-bottom: 18px;
  }
}

.contents__explain {
  margin-top: 4px;
  max-width: 340px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .contents__explain {
    max-width: 660px;
  }
}
@media screen and (min-width: 768px) {
  .contents__explain {
    font-size: 20px;
    margin-top: 4px;
    max-width: 660px;
  }
}

.contents__explain--bottom {
  margin-top: 20px;
}
.contents__explain--second {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .contents__explain--second {
    margin-top: 14px;
  }
}

@media screen and (min-width: 768px) {
  .contents__explain--third {
    margin-top: 20px;
  }
}

.entry {
  display: inline-block;
}

.entry__info {
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 370px) {
  .entry__info {
    text-align: start;
  }
}
@media screen and (min-width: 768px) {
  .entry__info {
    font-size: 18px;
  }
}

/* キラッとアニメーション */
@-webkit-keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.entry__btn {
  position: relative;
  display: inline-block;
  background: #FF9D0C;
  border-radius: 10px;
  font-size: 20px;
  -webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, .25);
  color: #fff;
  padding: 12px 60px 12px 50px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  margin-top: 8px;
}
@media screen and (max-width: 370px) {
  .entry__btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .entry__btn {
    padding: 12px 40px;
    font-size: 22px;
    margin-top: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .entry__btn {
    padding: 12px 60px;
    font-size: 25px;
    margin-top: 4px;
  }
}

.entry__btn::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  -webkit-transform: scale(2) rotate(20deg);
          transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  -webkit-animation-name: shiny;
          animation-name: shiny;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.entry__discount {
  display: block;
  text-align: center;
  margin-top: 18px;
  margin-left: 12px;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .entry__discount {
    margin-top: 9px;
    margin-left: 10px;
    letter-spacing: 0.01em;
  }
}

.entry__link {
  color: #448ACA;
  font-size: 17px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
@media screen and (min-width: 768px) {
  .entry__link {
    letter-spacing: 0.01em;
  }
}

.entry__link:hover {
  opacity: 0.7;
}

.footer {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 130px;
  }
}

.footer__text {
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 30px;
  }
}

.footer__img {
  position: relative;
  margin-top: 20px;
  max-width: 230px;
  margin-right: auto;
  margin-left: auto;
}

.footer__img::before {
  content: "";
  padding-top: 86.956%;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__img::before {
    padding-top: 75%;
  }
}

.footer__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__entry {
  margin-top: 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__entry {
    margin-top: 224px;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 150px;
  }
}

.footer__copyright small {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__copyright small {
    font-size: 15px;
  }
}

.for-student {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .for-student {
    margin-top: 6.25rem;
    background-image: url(/images/common/for-student-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}

.for-student__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  background-color: #2C3A61;
  padding: 3px 32px;
  padding: 0.1875rem 2rem;
  display: inline-block;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .for-student__title {
    font-size: 2.5rem;
    padding: 0.6875rem 2.5rem 0.6875rem 3.125rem;
  }
}

.for-student__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .for-student__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    margin-top: 2.4375rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.for-studentimg {
  aspect-ratio: 335/260;
  max-width: 335px;
  max-width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .for-studentimg {
    aspect-ratio: 500/420;
    max-width: 31.25rem;
  }
}

.for-studentimg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.for-student__text {
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .for-student__text {
    max-width: 34.875rem;
  }
}

.for-student__text01 {
  color: #448ACA;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .for-student__text01 {
    font-size: 1.875rem;
    margin-top: 0;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

@media screen and (min-width: 768px) {
  .for-student__textbox {
    border-left: 5px solid #F4DE19;
    margin-top: 0.625rem;
  }
}

.for-student__text02 {
  color: #2C3A61;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .for-student__text02 {
    font-size: 1.25rem;
    padding-left: 0.625rem;
    margin-top: 0;
  }
}

.for-student__text02:nth-child(2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .for-student__text02:nth-child(2) {
    margin-top: 0.625rem;
  }
}

.for-student__text02:nth-child(3) {
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .for-student__text02:nth-child(3) {
    margin-top: 0.625rem;
  }
}

.for-student__text02:nth-child(4) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .for-student__text02:nth-child(4) {
    margin-top: 0.625rem;
  }
}

.for-student span {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #2C3A61;
  padding-inline: 3px;
  padding-inline: 0.1875rem;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  display: inline-block;
  height: 30px;
  height: 1.875rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .for-student span {
    font-size: 1.875rem;
    height: 2.5rem;
    line-height: 1.3;
    padding-bottom: 0.125rem;
  }
}

.c-yellow {
  color: #FF9D0C;
}
.for-student__under p {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .for-student__under p {
    margin-top: 1.875rem;
  }
}

.for-student__under01 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .for-student__under01 {
    font-size: 1.875rem;
  }
}

.for-student__under02 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .for-student__under02 {
    margin-top: 0.9375rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1170px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.pictures {
  margin-top: 84px;
}
@media screen and (min-width: 768px) {
  .pictures {
    margin-top: 120px;
  }
}

.picture__box {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .picture__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 70px;
  }
}

.picture {
  position: relative;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .picture {
    margin: 0;
    width: calc(33% - 20px);
  }
}

.picture__title {
  position: absolute;
  z-index: 1111;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  width: 100%;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 8px;
  padding-left: 18px;
}
@media screen and (min-width: 600px) {
  .picture__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .picture__title {
    padding-top: 0;
    font-size: 25px;
    padding-left: 20px;
    height: 40px;
  }
}

.picture__title--first {
  background-image: url("/images/common/picture-rectungle.png");
  max-width: 170px;
}
@media screen and (min-width: 768px) {
  .picture__title--first {
    max-width: 200px;
    width: 100%;
  }
}

.picture__title--second {
  background-image: url("/images/common/picture-rectungle-2.png");
  max-width: 250px;
}
@media screen and (min-width: 600px) {
  .picture__title--second {
    max-width: 210px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .picture__title--second {
    max-width: 310px;
  }
}

.picture__title--third {
  background-image: url("/images/common/picture-rectungle-3.png");
  width: 208px;
}
@media screen and (min-width: 600px) {
  .picture__title--third {
    max-width: 210px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .picture__title--third {
    max-width: 260px;
  }
}

.picture__img {
  position: relative;
  border-left: 3px solid #448ACA;
  border-right: 3px solid #448ACA;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .picture__img {
    border: none;
  }
}

.picture__img::before {
  content: "";
  padding-top: 74.626%;
  display: block;
}
@media screen and (min-width: 768px) {
  .picture__img::before {
    padding-top: 71.428%;
  }
}

.picture__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.picture__entry {
  text-align: center;
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .picture__entry {
    margin-top: 120px;
  }
}

.problem {
  background-image: url("/images/common/problem-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .problem {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.problem__inner {
  text-align: center;
}

.problem__title {
  position: relative;
  border-bottom: 3px solid #F4DE19;
  background: #C5C7D6;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding-bottom: 6px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .problem__title {
    font-size: 40px;
    border-bottom: 6px solid #F4DE19;
  }
}

/* 黄色アンダーライン */
.problem__title:before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 42%;
  border: 26px solid transparent;
  border-top: 26px solid #C5C7D6;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .problem__title:before {
    bottom: -75px;
    left: 44%;
    border: 52px solid transparent;
    border-top: 27px solid #C5C7D6;
  }
}

.problem__title:after {
  position: absolute;
  bottom: -55px;
  left: 42%;
  border: 26px solid transparent;
  border-top: 26px solid #F4DE19;
  border-top-color: #F4DE19;
  content: "";
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .problem__title:after {
    bottom: -82px;
    left: 44%;
    border: 52px solid transparent;
    border-top: 27px solid #F4DE19;
  }
}

.problem__container {
  text-align: start;
  background: #fff;
  background: rgba(255, 255, 255, .8);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .25);
  margin-top: 66px;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .problem__container {
    padding: 52px 106px 40px 106px;
    margin-top: 66px;
    width: 89%;
    margin-left: auto;
    margin-right: auto;
  }
}

.problem__content:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .problem__content:not(:first-child) {
    margin-top: 41px;
  }
}

.problem__detail {
  position: relative;
  font-size: 16px;
  color: #2C3A61;
  border-radius: 10px;
  border: 3px solid #448ACA;
  background: #fff;
  padding: 36px 10px 16px 8px;
  margin-left: 40px;
  margin-top: -30px;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .problem__detail {
    font-size: 18px;
    padding: 38px 16px 12px 16px;
    margin-left: 60px;
  }
}

.problem__detail--oneline {
  margin-top: -20px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .problem__detail--oneline {
    margin-top: -30px;
    padding-top: 38px;
  }
}

.problem__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .problem__box {
    padding: 0;
  }
}

.problem__summary {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background-color: #999999;
  border-radius: 10px;
  padding: 4px 20px 4px 32px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .problem__summary {
    font-size: 20px;
    padding: 10px 20px 10px 56px;
    margin-right: 35px;
  }
}

.problem__summary-oneline {
  padding: 7px 20px 7px 32px;
}
@media screen and (min-width: 768px) {
  .problem__summary-oneline {
    padding: 10px 20px 10px 56px;
  }
}

.problem__box--dtlayout {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
@media screen and (min-width: 768px) {
  .problem__box--dtlayout {
    padding: 10px 20px 10px 56px !important;
  }
}

.problem__box--layout {
  margin-top: -18px !important;
  padding-top: 28px !important;
}
@media screen and (min-width: 768px) {
  .problem__box--layout {
    margin-top: -30px !important;
    padding: 38px 16px 12px 16px !important;
  }
}

.problem__number {
  color: #fff;
  font-size: 25px;
  top: -2px;
  left: 7px;
  position: relative;
  text-align: center;
  z-index: 111;
}
@media screen and (min-width: 768px) {
  .problem__number {
    font-size: 40px;
    top: -2px;
    left: 14px;
  }
}

.problem__number::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #448ACA;
  z-index: -1;
  top: -2px;
  left: -12px;
}
@media screen and (min-width: 768px) {
  .problem__number::before {
    width: 60px;
    height: 60px;
    top: 0;
    left: -18px;
  }
}

.problem__number::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 42px;
  background: #054CA4;
  z-index: -2;
  top: -2px;
  left: -12px;
}
@media screen and (min-width: 768px) {
  .problem__number::after {
    width: 60px;
    height: 60px;
    top: 2px;
    left: -12px;
  }
}

.profile {
  margin-top: 145px;
}
@media screen and (min-width: 768px) {
  .profile {
    margin-top: 100px;
  }
}

.profile__inner {
  margin: auto;
}

.profile__box {
  border: 1px solid #D9D9D9;
  -webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .profile__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1035px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 40px;
  }
}

.profile__left {
  background: #2C3A61;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .profile__left {
    padding: 30px 10px;
    width: 200px;
    display: block;
  }
}

.profile__title {
  font-size: 20px;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .profile__title {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.profile__img {
  width: 125px;
  height: 125px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -74px;
}
@media screen and (min-width: 768px) {
  .profile__img {
    position: relative;
    right: 32px;
    width: 250px;
    height: 250px;
    padding-top: 70px;
    margin: 0;
  }
}

.profile__right {
  padding: 20px 10px;
  line-height: 1.94;
}
@media screen and (min-width: 768px) {
  .profile__right {
    padding: 20px 30px 20px 55px;
    max-width: 835px;
  }
}

.profile__text {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .profile__text {
    font-size: 20px;
    line-height: 190.8%;
  }
}

.question {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .question {
    margin-top: 120px;
  }
}

.question__container {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .question__container {
    margin-top: 62px;
  }
}

.question__box {
  border-bottom: 3px solid rgba(244, 222, 25, .5);
  padding-top: 26px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .question__box {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .question__box:first-child {
    padding-top: 12px;
    padding-bottom: 42px;
  }
}

.question__box:nth-child(2) {
  padding-top: 34px;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .question__box:nth-child(2) {
    padding-top: 74px;
    padding-bottom: 40px;
  }
}

.question__box:nth-child(n+3) {
  padding-top: 32px;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .question__box:nth-child(n+3) {
    padding-top: 74px;
    padding-bottom: 42px;
  }
}

.question__box dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.question__box dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .question__box dd {
    margin-top: 30px;
  }
}

.question__icon {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .question__icon {
    width: 40px;
    height: 40px;
  }
}

.question__icon--q {
  background-image: url("/images/common/question-q.png");
}

.question__icon--a {
  background-image: url("/images/common/question-a.png");
}

.question__text {
  width: 85%;
  padding-top: 8px;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .question__text {
    width: 100%;
    padding-left: 10px;
  }
}

.recommend {
  margin-top: 94px;
  background-image: url("/images/common/recommend-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .recommend {
    margin-top: 90px;
    padding-top: 25px;
    padding-bottom: 40px;
  }
}

.recommend__box {
  position: relative;
  border: solid 3px #448ACA;
  border-radius: 5px;
  padding: 0 20px 20px 10px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .recommend__box {
    padding: 0 40px 60px 40px;
    max-width: 880px;
    margin: auto;
  }
}

.box--orange {
  border: solid 3px #FF9D0C;
  margin-top: 76px;
}
@media screen and (min-width: 768px) {
  .box--orange {
    margin-top: 108px;
  }
}

.recommend__title {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: -20px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .recommend__title {
    text-align: start;
    font-size: 25px;
    left: 20px;
  }
}

.recommend__title span {
  padding: 10px 27px 5px 27px;
  background: #FFF;
  color: #448ACA;
}
@media screen and (min-width: 768px) {
  .recommend__title span {
    padding: 10px 60px 5px 68px;
  }
}

.recommend__subtitle {
  display: block;
  font-size: 25px;
  margin-top: 30px;
  text-align: center;
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .recommend__subtitle {
    text-align: start;
    font-size: 35px;
    margin-top: 22px;
    margin-left: 0px;
  }
}

@media screen and (min-width: 768px) {
  .recommend__subtitle--second {
    margin-left: 30px;
  }
}

@media screen and (min-width: 768px) {
  .recommend__flex {
    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;
  }
}

.recommend__img {
  margin-top: 16px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .recommend__img {
    margin-left: 0;
  }
}

.recommend__img img {
  width: 180px;
  height: 150px;
  display: block;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .recommend__img img {
    width: 250px;
    height: 200px;
  }
}

.recommend__lists {
  margin-top: 22px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .recommend__lists {
    font-size: 20px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .recommend__list {
    line-height: 1.4;
  }
}

.recommend__list:not(:first-child) {
  margin-top: 10px;
}

.recommend__list::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
  background-color: #448ACA;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#45B5E4), to(#448ACA));
  background: linear-gradient(180deg, #45B5E4 0%, #448ACA 100%);
}
@media screen and (min-width: 768px) {
  .recommend__list::before {
    width: 10px;
    height: 10px;
  }
}

.list--orange::before {
  background-color: #F1E000;
  background: -webkit-gradient(linear, left top, left bottom, from(#F1E000), to(#FF9D0C));
  background: linear-gradient(180deg, #F1E000 0%, #FF9D0C 100%);
}

@media screen and (min-width: 768px) {
  .lists--orange {
    margin-right: 100px;
  }
}

.result {
  margin-top: 96px;
}
@media screen and (min-width: 768px) {
  .result {
    margin-top: 118px;
  }
}

.result__inner {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .result__inner {
    margin-top: 66px;
  }
}

.result__container {
  padding-top: 20px;
  padding-bottom: 20px;
  background-image: url("/images/common/result-bg-1.jpg");
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .result__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.result__container dl {
  font-size: 20px;
  margin: auto;
  max-width: 800px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 3px solid #448ACA;
  background-image: url("/images/common/result-bg-2-sp.png");
  background-color: #fff;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .result__container dl {
    background-image: url("/images/common/result-bg-2.jpg");
    border-bottom: 3px solid #448ACA;
    border-right: none;
    height: 100px;
    vertical-align: middle;
    width: 80%;
  }
}
@media screen and (min-width: 600px) {
  .result__container dl {
    border-bottom: 3px solid #448ACA;
    border-right: none;
  }
}
.result__container dl:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .result__container dl:not(:first-child) {
    margin-top: 40px;
  }
}
.result__container dt {
  display: inline-block;
  color: #fff;
  position: absolute;
  z-index: 1;
  font-size: 18px;
  background-image: url("/images/common/result-rectungle.png");
  width: 100%;
  max-width: 85px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .result__container dt {
    max-width: 135px;
    padding-top: 6px;
    padding-left: 24px;
    font-size: 20px;
  }
}

.result__list {
  padding: 10px 23px 12px 85px;
  font-size: 16px;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .result__list {
    padding: 20px 60px 18px 130px;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .result__list-oneline {
    padding: 34px 60px 18px 130px;
    font-size: 20px;
  }
}

.review {
  margin-top: 58px;
}
@media screen and (min-width: 768px) {
  .review {
    margin-top: 60px;
  }
}

.review__title {
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .review__title {
    font-size: 30px;
  }
}

.review__title span {
  position: relative;
}

.review__title span::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 5px;
  background-color: #F4DE19;
  top: 35px;
  left: -10px;
}
@media screen and (min-width: 768px) {
  .review__title span::before {
    width: 100px;
    height: 10px;
    top: 45px;
  }
}

.review__box {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .review__box {
    margin-top: 55px;
  }
}

.roots {
  background-image: url("/images/common/roots-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding-top: 17px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .roots {
    padding-top: 30px;
    padding-bottom: 35px;
  }
}

.roots__txt {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 25px;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .roots__txt {
    font-size: 30px;
    line-height: 1.44;
  }
}

.roots__txt span {
  border-bottom: 3px solid #F4DE19;
}
@media screen and (min-width: 768px) {
  .roots__txt span {
    border-bottom: 5px solid #F4DE19;
  }
}

.section__titlebox {
  text-align: center;
}

.section-title {
  color: #448ACA;
  display: inline-block;
  padding: 0 10px;
  font-size: 25px;
  border-left: 10px #F4DE19 solid;
  border-right: 10px #F4DE19 solid;
}
@media screen and (min-width: 768px) {
  .section-title {
    padding: 0 15px;
    font-size: 50px;
    border-left: 20px #F4DE19 solid;
    border-right: 20px #F4DE19 solid;
  }
}

.strength {
  margin-top: 58px;
}
@media screen and (min-width: 768px) {
  .strength {
    margin-top: 78px;
  }
}

.strength__contents {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .strength__contents {
    margin-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .strength__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.strength__box:not(:first-child) {
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .strength__box:not(:first-child) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .strength__imgbox {
    width: 35.6%;
  }
}

.strength__img {
  position: relative;
}
.strength__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.strength__img::before {
  content: "";
  padding-top: 59.7014%;
  display: block;
}
@media screen and (min-width: 768px) {
  .strength__img::before {
    padding-top: 82.5%;
  }
}

@media screen and (min-width: 768px) {
  .strength__list {
    width: 60.8%;
  }
}

.strength__title {
  font-size: 20px;
  color: #448ACA;
  margin-top: 25px;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .strength__title {
    font-size: 35px;
    margin-top: 0;
  }
}

.strength__explain {
  font-size: 16px;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 3px solid #F4DE19;
  line-height: 1.444;
}
@media screen and (min-width: 768px) {
  .strength__explain {
    font-size: 20px;
    border-left: 5px solid #F4DE19;
    margin-top: 19px;
    padding-left: 16px;
    line-height: 1.45;
  }
}

.strength__entry {
  margin-top: 54px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strength__entry {
    margin-top: 100px;
  }
}

.strength__lists {
  list-style-type: disc;
}

.top {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("/images/common/top-sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 201.6%;
  height: 756px;
  padding-top: 20px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .top {
    padding-top: 45.1388%;
    background-image: url("/images/common/top.jpg");
    background-position: center center;
    padding-top: 35px;
    padding-bottom: 54px;
    height: 776px;
  }
}
@media screen and (min-width: 1024px) {
  .top {
    padding-top: 45.1388%;
    height: 650px;
    background-image: url("/images/common/top.jpg");
    background-position: center center;
    padding-top: 35px;
    padding-bottom: 54px;
  }
}

.top__inner {
  display: block;
}
@media screen and (min-width: 768px) {
  .top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .top__dr-icon {
    margin-right: auto;
  }
}

.top__dr-icon img {
  width: 235px;
  height: 70px;
  position: relative;
  top: 0;
  left: -5px;
  z-index: 111;
}
@media screen and (min-width: 768px) {
  .top__dr-icon img {
    top: 0;
    left: -10px;
    width: 350px;
    height: 100px;
  }
}

.top__title {
  color: #556FB5;
  font-size: 40px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .top__title {
    font-size: 60px;
    margin-top: 84px;
  }
}

.top__subtitle {
  color: #FF9D0C;
  font-size: 30px;
  margin-top: 10px;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .top__subtitle {
    margin-top: 30px;
    line-height: 1.4;
    font-size: 45px;
  }
}

.top__entry {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top__entry {
    margin-top: 99px;
  }
}

.top__count {
  margin-top: 195px;
  display: inline-block;
  padding-left: 110px;
}
@media screen and (min-width: 768px) {
  .top__count {
    padding-top: 406px;
    margin-top: 0;
    margin-left: 90px;
  }
}

.top__number {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top__number {
    margin-top: 10px;
  }
}

.top__number img {
  width: 230px;
  height: 74px;
}
@media screen and (min-width: 768px) {
  .top__number img {
    width: 280px;
    height: 100px;
  }
}

.twitter-tweet {
  width: 100% !important;
  max-width: 335px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .twitter-tweet {
    max-width: 450px !important;
  }
}

.voice {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .voice {
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .voice__box {
    margin-top: 70px;
  }
}
/*# sourceMappingURL=styles.css.map */
