@charset "UTF-8";
:root {
  --black: 51,51,51;
  --red: 255,0,0;
  --border: rgba(var(--black),.6);
  --contents_width: 1092px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1152px;
  --sidebar_width: 250px;
  --header_height_sp: 50px;
  --header_height_pc: 100px;
}
/* 02_base
================================================ */
html {
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
body {
  min-width: 375px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}
@media all and (min-width: 768px) {
  body {
    min-width: calc(var(--contents_width) + var(--body_padding_side));
  }
}
.l-wrapper {
  position: relative;
}
/* sp <--> tb ~ pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1152px) {
  .u-media-query {
    font-family: "pc";
  }
}
@media all and (max-width: 767px) {
  .u-view-pc {
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}
/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}
.u-font-en {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.u-font-serif {
  font-family: "Noto Serif JP", serif;
}
/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}
a.u-up {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-up {
    transition: all 0.3s ease;
  }
  a.u-up:hover {
    transform: translateY(-10px);
  }
}
a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}
/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
/* .l-main-img HOME
================================================ */
.l-main-img {
  font-size: 1rem;
  color: #fff;
  position: relative;
  background: #11366F;
}
.l-main-img__area-btn {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 94%;
}
.l-main-img__btn {
  margin-bottom: 10px;
}
.l-main-img__note {
  padding: 0 0 0 10%;
}
@media all and (min-width: 768px) {
  .l-main-img {
    font-size: 1.3rem;
  }
  .l-main-img__area-btn {
    width: 77%;
    bottom: 6%;
    max-width: 960px;
  }
  .l-main-img__img {
    max-width: 1220px;
    margin: auto;
    transform: translateX(-40px);
  }
}
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}
.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
.js-c-switch-tab {
  cursor: pointer;
}
.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}
.l-container {
  padding-top: 0;
}
.c-head01__sub {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 -10px;
}
@media all and (min-width: 768px) {
  .c-head01__sub {
    font-size: 3rem;
  }
}
/* .about
-------------------------------------- */
.about {
  background: url(../img/bg_about01_sp.png) no-repeat center/cover;
}
.about__inner {
  padding-top: 40px;
}
.about__area-txt {
  margin-top: 40px;
}
.about__head-sub {
  width: 240px;
  margin-bottom: 10px;
}
.about__head-main {
  margin-top: 5px;
  max-width: 375px;
  margin-bottom: 30px;
}
.about__txt {
  font-size: 2rem;
  line-height: 2;
}
.about__img {
  width: 327px;
  margin: auto;
}
.about__movie {
  position: relative;
  margin: 40px auto -50px;
  padding-top: 56.25%;
}
.about__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768px) {
  .about {
    background: url(../img/bg_about01_pc.png) no-repeat center/cover;
  }
  .about__inner {
    padding-top: 64px;
  }
  .about__area-txt {
    margin-top: 15px;
  }
  .about__content {
    display: flex;
    justify-content: space-between;
  }
  .about__head-sub {
    width: 394px;
  }
  .about__head-main {
    max-width: 630px;
  }
  .about__txt {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-right: -100px;
  }
  .about__img {
    width: 531px;
    margin-right: -76px;
  }
  .about__movie {
    width: 927px;
    height: 512px;
    margin: 35px auto -72px;
    padding-top: 0;
  }
}
/* .support
-------------------------------------- */
.support {
  background: linear-gradient(to right, #000 0%, #602323 100%);
}
.support__inner {
  padding-top: 90px;
  padding-bottom: 64px;
  color: #fff;
}
.support__head {
  max-width: 337px;
  text-align: center;
  margin: 0 auto 25px;
}
.support__point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}
.support__point {
  text-align: center;
}
.support__point-point {
  color: #602323;
  background-color: #fff;
  border-radius: 14px;
  padding: 2px 16px;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
  display: inline-block;
}
.support__point-img {
  margin-bottom: 8px;
}
.support__point-sub {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-top: 10px;
}
.support__point-title {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.2;
}
.support__point-note {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 8px;
}
.support__more {
  margin-top: 40px;
  text-align: center;
}
.support__more-txt {
  width: 192px;
  margin: 0 auto 37px;
}
.support__more-title {
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
}
.support__more-title img {
  width: 89px;
  display: block;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -190px;
}
.support__more-title-large {
  font-size: 2.8rem;
}
.support__box {
  margin-top: 16px;
  background-color: #fff;
  padding: 24px 20px 20px;
  color: #000;
}
.support__box-head {
  font-size: 2.4rem;
  color: #163A96;
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.support__box-txt {
  text-align: center;
  margin-bottom: 20px;
}
.support__box-txt img {
  width: 91px;
  display: inline-block;
  margin-right: 3px;
}
.support__box-txt .marker {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(transparent 50%, #FAF689 50%);
}
.support__box-img {
  max-width: 269px;
  margin: auto;
}
.support__box-map {
  max-width: 287px;
  margin: 20px auto 0;
}
.support__partner {
  background-color: #E6EDF4;
  padding: 16px 43px 28px;
  margin-top: 24px;
}
.support__partner-head {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.support__partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  width: 208px;
  margin: auto;
}
.support__partner-item {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.support__partner-item-img {
  width: 80px;
  height: 80px;
}
.support__partner-item-area-txt {
  width: calc(100% - 96px);
}
.support__partner-item-title {
  height: 32px;
  width: auto;
  margin-bottom: 7px;
}
.support__partner-item-position {
  font-size: 1.2rem;
  line-height: 1.5;
}
.support__partner-item-name {
  font-size: 1.6rem;
  font-weight: 700;
}
.support__tags {
  font-size: 1.2rem;
  color: #163A96;
  font-weight: 700;
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 4px 10px;
  padding-right: 60px;
}
@media all and (min-width: 768px) {
  .support {
    margin-top: -100px;
  }
  .support__inner {
    padding-top: 180px;
    position: relative;
  }
  .support__head {
    max-width: 1194px;
    margin: 0 auto 25px;
    margin-bottom: 40px;
  }
  .support__point-list {
    flex-direction: row;
    gap: 18px;
    align-items: flex-start;
  }
  .support__point {
    width: 352px;
  }
  .support__point-sub {
    margin-top: 16px;
    font-size: 2rem;
  }
  .support__point-title {
    font-size: 3.2rem;
  }
  .support__point-note {
    margin-top: 8px;
    font-size: 1.2rem;
  }
  .support__more {
    margin-top: 26px;
  }
  .support__more-txt {
    width: 192px;
  }
  .support__more-title {
    font-size: 2rem;
    z-index: 1;
  }
  .support__more-title img {
    width: 98px;
    height: 98px;
    margin-left: -230px;
    top: -30px;
    z-index: -1;
  }
  .support__more-title-large {
    font-size: 3.2rem;
  }
  .support__box {
    margin-top: 24px;
    padding: 40px 40px 24px;
  }
  .support__box-head {
    font-size: 3.2rem;
  }
  .support__box-img {
    margin-top: 26px;
    max-width: 634px;
  }
  .support__box-txt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
  }
  .support__box-txt img {
    width: 125px;
    display: inline-flex;
  }
  .support__box-txt .marker {
    font-size: 2.8rem;
    margin-left: 7px;
  }
  .support__box-map {
    max-width: 421px;
  }
  .support__box-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
  }
  .support__partner {
    width: 503px;
    box-sizing: border-box;
    padding: 21px 20px 24px 40px;
    margin-top: 0;
    box-sizing: border-box;
  }
  .support__partner-head {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .support__partner-list {
    max-width: initial;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
    gap: 24px;
  }
  .support__partner-item {
    width: calc(50% - 12px);
  }
  .support__partner-item-title {
    width: 113px;
  }
  .support__tags {
    margin-top: 40px;
    font-size: 1.6rem;
    justify-content: center;
    text-align: center;
    display: flex;
    gap: 10px;
  }
}
.support__foot-img {
  position: absolute;
  bottom: 0;
  right: -183px;
  width: 279px;
  height: 308px;
}
/* .achievements
-------------------------------------- */
.achievements__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
.achievements__head {
  position: relative;
}
.achievements__head-img {
  position: absolute;
  top: -45px;
  left: 50%;
  margin-left: -150px;
  width: 80px;
  height: 80px;
  transform: rotate(-15deg);
}
.achievements__item {
  background-color: #EFF2F8;
  padding: 16px;
}
.achievements__item + .achievements__item {
  margin-top: 26px;
}
.achievements__item-title {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  text-align: center;
  align-items: flex-end;
  position: relative;
  font-weight: 600;
}
.achievements__item-title::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  top: 0;
  left: 45%;
  margin-left: -19px;
  border-style: solid;
  border-width: 0 0 37px 20px;
  border-color: transparent transparent #163A96 transparent;
  transform: rotate(0deg);
}
.achievements__item-title::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 45%;
  margin-left: -12px;
  width: 13px;
  height: 13px;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
}
.achievements__item-title-before {
  width: 45%;
  background-color: #000;
  padding: 6px 5px 5px;
}
.achievements__item-title-after {
  width: 55%;
  background-color: #163A96;
  font-size: 1.8rem;
  padding: 6px 10px 6px 0;
}
.achievements__set {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.achievements__img {
  width: 120px;
  margin-right: 20px;
}
.achievements__area-txt {
  font-size: 1.4rem;
  font-weight: 700;
}
.achievements__name-large {
  font-size: 2.4rem;
}
.achievements__copy {
  font-size: 2rem;
  color: #163A96;
  font-weight: 700;
  margin-top: 16px;
}
.achievements__txt {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .achievements__inner {
    padding-top: 80px;
    padding-bottom: 82px;
  }
  .achievements__head-img {
    top: -55px;
    margin-left: -190px;
    width: 100px;
    height: 100px;
  }
  .achievements__list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .achievements__item {
    width: 664px;
    box-sizing: border-box;
    padding: 24px;
  }
  .achievements__item + .achievements__item {
    margin-top: 0;
  }
  .achievements__item-title::before {
    margin-left: -24px;
    border-width: 0 0 56px 27px;
  }
  .achievements__item-title::after {
    top: 22px;
    margin-left: -20px;
    width: 19px;
    height: 19px;
  }
  .achievements__item-title-before {
    background-color: #000;
    padding: 7px 5px 11px;
    font-size: 2rem;
  }
  .achievements__item-title-after {
    font-size: 2.4rem;
    padding: 11px 11px 11px 0;
  }
  .achievements__img {
    width: 180px;
  }
  .achievements__area-txt {
    width: calc(100% - 204px);
  }
  .achievements__name-large {
    font-size: 2.8rem;
    margin-right: 4px;
  }
  .achievements__copy {
    margin-right: -1px;
  }
  .achievements__txt {
    margin-top: 20px;
    letter-spacing: 0.06em;
  }
}
/* .message01
-------------------------------------- */
.c-message {
  background: url(../img/bg_message01_sp.jpg) no-repeat center right/cover;
  color: #fff;
}
.c-message__inner {
  padding-top: 30px;
  padding-bottom: 48px;
  position: relative;
  max-width: 500px;
  margin: auto;
}
.c-message__title {
  max-width: 327px;
}
.c-message__txt {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 17px;
  font-weight: 500;
}
.c-message__txt.is-bold {
  font-weight: 700;
}
.c-message__img {
  width: 188px;
  position: absolute;
  bottom: 0;
  right: -10px;
}
.c-message__ico {
  width: 79px;
  position: absolute;
  bottom: 0;
  right: 136px;
  transform: rotate(-15deg);
}
@media all and (min-width: 768px) {
  .c-message {
    background: url(../img/bg_message01_sp.jpg) no-repeat center right/cover;
  }
  .c-message__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 931px;
  }
  .c-message__title {
    max-width: 688px;
  }
  .c-message__txt {
    font-size: 1.8rem;
  }
  .c-message__txt.is-bold {
    font-size: 2.4rem;
  }
  .c-message__img {
    width: 313px;
  }
  .c-message__ico {
    width: 120px;
    height: 120px;
    right: 214px;
    bottom: 48px;
  }
}
@media all and (max-width: 767px) {
  #message01 .c-message__txt {
    margin-top: 30px;
  }
  #message02 .c-message__inner {
    padding-bottom: 87px;
  }
  #message02 .c-message__txt {
    margin-top: 0;
  }
  #message02 .c-message__title {
    width: 210px;
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  #message02 .c-message__inner {
    max-width: 764px;
    padding-top: 34px;
    padding-bottom: 56px;
  }
  #message02 .c-message__title {
    width: 400px;
    margin-top: 20px;
  }
}
#course {
  background-color: #fff;
}
/* .question
-------------------------------------- */
.question__inner {
  padding-top: 65px;
}
@media all and (min-width: 768px) {
  .question__head-main .c-head01__jp {
    display: inline;
    margin: 0 -4px;
    padding: 0 2px;
  }
  .question .question-wrap {
    margin-bottom: 0;
  }
}
/* .skill
-------------------------------------- */
.skill__inner {
  text-align: center;
  padding-top: 17px;
  padding-bottom: 10px;
}
.skill__head-title {
  font-size: 2rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.skill__head-title::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  width: 0px;
  height: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 80px 102px 0 102px;
  border-color: #E6EDF4 transparent transparent transparent;
  z-index: -1;
}
.skill__head-title-line {
  border-bottom: 2px solid #000;
}
.skill__head-txt {
  position: relative;
  margin-top: 22px;
  font-size: 1.6rem;
  font-weight: 700;
  z-index: 1;
}
.skill__logo {
  width: 294px;
  margin: 42px auto 18px;
}
.skill__txt {
  font-weight: 900;
}
.skill__txt-large {
  font-size: 2rem;
}
.skill__txt-large.is-blue {
  color: #163A96;
}
.skill__txt-large.is-red {
  color: #E25241;
}
.skill__foot {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.skill__foot::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  width: 0px;
  height: 0px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 80px 102px 0 102px;
  border-color: #E6EDF4 transparent transparent transparent;
  z-index: -1;
}
.skill__foot-large {
  font-size: 2.2rem;
  font-weight: 900;
}
@media all and (min-width: 768px) {
  .skill__inner {
    padding-top: 40px;
  }
  .skill__head-title {
    font-size: 3.6rem;
  }
  .skill__head-title::before {
    border-width: 150px 190px 0 190px;
    transform: translate(-50%, 0%);
    top: -15px;
  }
  .skill__head-title-line {
    border-width: 3px;
  }
  .skill__head-txt {
    font-size: 2.4rem;
  }
  .skill__logo {
    margin-top: 70px;
    width: 489px;
  }
  .skill__txt {
    margin-top: 20px;
    font-size: 2rem;
  }
  .skill__txt-large {
    font-size: 2.8rem;
  }
  .skill__content {
    margin-top: 24px;
  }
  .skill__foot {
    font-size: 2.4rem;
  }
  .skill__foot::before {
    border-width: 150px 190px 0 190px;
    transform: translate(-50%, 0%);
    top: -15px;
  }
  .skill__foot-large {
    font-size: 3.6rem;
  }
}
/* .solution
-------------------------------------- */
.solution {
  background-color: #03265E;
  color: #fff;
}
.solution__inner {
  padding-top: 30px;
  padding-bottom: 80px;
  text-align: center;
}
.solution__head {
  width: 138px;
  margin: 0 auto 24px;
}
.solution__txt {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.solution__logo {
  max-width: 281px;
  margin: 10px auto 0;
}
.solution__copy {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
.solution__content {
  margin-top: 15px;
}
.solution__content-chart {
  max-width: 326px;
  margin: auto;
}
.solution__point + .solution__point {
  margin-top: 24px;
}
.solution__point-list {
  margin-top: 24px;
  border-top: 1px solid;
  padding-top: 32px;
}
.solution__point-num {
  color: #03265E;
  font-size: 1.8rem;
  background-color: #fff;
  padding: 2px 10px;
  border-radius: 30px;
  font-weight: 700;
  width: 98px;
  margin: 0 auto 8px;
}
.solution__point-txt {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}
.solution__point-txt .small {
  font-size: 1.6rem;
  display: block;
}
.solution__point-note {
  font-size: 1rem;
  margin-top: 8px;
  text-align: left;
}
@media all and (min-width: 768px) {
  .solution__inner {
    padding-top: 55px;
  }
  .solution__head {
    width: 237px;
  }
  .solution__txt {
    margin-top: 65px;
    font-size: 2.4rem;
  }
  .solution__logo {
    margin-top: 30px;
    max-width: 702px;
  }
  .solution__copy {
    margin-top: 28px;
    font-size: 5rem;
    line-height: 1.3;
  }
  .solution__content {
    position: relative;
    z-index: 1;
    margin-top: 64px;
  }
  .solution__content-chart {
    max-width: 1092px;
  }
  .solution__content-img {
    position: absolute;
    left: -60px;
    right: auto;
    top: -30px;
    z-index: -1;
  }
  .solution__point {
    width: 320px;
  }
  .solution__point + .solution__point {
    margin-top: 0;
  }
  .solution__point-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 64px;
    padding-top: 64px;
  }
  .solution__point-num {
    font-size: 2rem;
  }
  .solution__point-txt {
    font-size: 3.2rem;
  }
  .solution__point-txt .small {
    font-size: 2rem;
  }
}
/* .reason
-------------------------------------- */
.reason {
  padding-top: 0;
}
.reason__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
.reason__set + .reason__set {
  margin-top: 40px;
}
.reason__set01-movie {
  position: relative;
  padding-top: 56.25%;
}
.reason__set01-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.reason__set01-area-txt {
  margin-top: 10px;
}
.reason__set01-head {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.reason__set03-txt {
  margin-top: 24px;
}
.reason__set05-item {
  margin-top: 20px;
  background-color: #EFF2F8;
  padding: 46px 16px 26px;
  text-align: center;
  position: relative;
}
.reason__set05-item .freelance-header__txt01,
.reason__set05-item .freelance-header__head {
  color: #173A97;
}
.reason__set05-item + .reason__set05-item {
  margin-top: 16px;
}
.reason__set05-head-logo {
  max-width: 278px;
  margin: 16px auto 10px;
}
.reason__set05-head-data {
  max-width: 295px;
  margin: 0 auto 15px;
}
.reason__set05-txt {
  text-align: left;
}
.reason__set05-foot-txt {
  margin-top: 24px;
}
@media all and (max-width: 767px) {
  .reason .reason-item04__item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .reason .reason-item04__head {
    order: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .reason .reason-item04__img {
    order: 1;
  }
  .reason .reason-item04__txt {
    order: 2;
  }
}
@media all and (min-width: 768px) {
  .reason__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .reason__set {
    margin-top: 54px;
  }
  .reason__set + .reason__set {
    margin-top: 64px;
  }
  .reason__set01 {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row-reverse;
  }
  .reason__set01-movie {
    width: calc(50% - 40px);
    height: 283px;
    padding: 0;
  }
  .reason__set01-area-txt {
    width: 50%;
  }
  .reason__set01-head {
    font-size: 2.4rem;
    text-align: left;
  }
  .reason__set02 {
    flex-direction: row;
  }
  .reason__set03-txt {
    font-size: 1.6rem;
  }
  .reason__set05-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 74px 32px;
    margin-top: 60px;
  }
  .reason__set05-item {
    width: 530px;
    box-sizing: border-box;
    padding: 24px;
  }
  .reason__set05-head-logo {
    max-width: 359px;
  }
  .reason__set05-head-data {
    width: auto;
    height: 67px;
    max-width: initial;
    margin-bottom: 24px;
  }
  .reason__set05-foot-txt {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .reason .reason-item03__area {
    overflow-x: auto;
    padding-bottom: 20px;
    transition: margin-right 0.3s ease;
  }
  .reason .reason-item03__wrap {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    width: 1540px;
  }
  .reason .reason-item03__item {
    height: 432px;
  }
  .reason .reason-item__head h3 {
    white-space: nowrap;
  }
  .reason .reason-item04__head {
    box-sizing: border-box;
  }
  .reason .reason-item04__img {
    height: auto;
    width: 422px;
    margin: auto;
  }
  .reason .reason-item04__img.item04__img {
    width: 450px;
  }
  .reason .freelance-header {
    text-align: left;
  }
  .reason .freelance-header__txt01 {
    font-size: 1.9rem;
  }
  .reason .freelance-header__txt01 img {
    left: -30px;
    top: -85px;
  }
  .reason .freelance-box + .freelance-box .freelance-header__txt01 img {
    left: -30px;
    top: -85px;
  }
  .reason .freelance-header__head {
    font-size: 2.2rem;
    margin-top: 5px;
  }
  .reason .freelance-header__txt02 {
    font-size: 1.6rem;
    margin-top: 8px;
  }
  .reason .reason__set05-item.is-large {
    width: 100%;
    text-align: left;
  }
  .reason .freelance-header__txt02.txt02 {
    font-size: 1.9rem;
    margin: 0;
  }
  .reason .support__box-head {
    display: none;
  }
  .reason .support__tags {
    display: none;
  }
}
@media all and (min-width: 1366px) {
  .reason .reason-item03__area {
    margin-right: -137px;
  }
}
/* .teacher
-------------------------------------- */
.teacher {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #E6EDF4;
}
.teacher__inner {
  padding-top: 40px;
  padding-bottom: 90px;
}
.teacher__movie {
  margin: 24px -23px 0;
}
.teacher__movie .splide__slide {
  width: 280px !important;
  height: 158px !important;
}
.teacher__movie .splide__slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.teacher__movie .splide__arrow {
  background-color: #163A96;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.teacher__movie .splide__arrow svg {
  fill: #fff;
  width: 10px;
  height: 10px;
}
.teacher__movie .splide__arrow:hover {
  background-color: #163A96;
}
.teacher__movie .splide__slide {
  border-radius: 8px;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .teacher__inner {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .teacher-head02 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .teacher-img {
    width: 412px;
  }
  .teacher-text {
    padding-top: 20px;
  }
  .teacher-message {
    padding: 24px 24px 68px;
    margin-top: 0;
  }
  .teacher-message__head {
    font-size: 2.8rem;
  }
  .teacher-message__lead {
    font-size: 2.4rem;
    margin-bottom: 14px;
  }
  .teacher-message__txt {
    line-height: 2;
  }
  .teacher__movie {
    margin: 24px -414px 0;
  }
  .teacher__movie .splide__slide {
    width: 439px !important;
    height: 248px !important;
  }
  .teacher__movie .splide__slide {
    border-radius: 20px;
  }
  .teacher__movie .splide__arrows {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 100px;
    transform: translateX(460px);
  }
  .teacher__movie .splide__arrow {
    background-color: #163A96;
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  .teacher__movie .splide__arrow svg {
    width: 15px;
    height: 15px;
  }
}
/* .plan
-------------------------------------- */
.plan {
  padding-top: 0;
}
.plan-inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
.plan-point {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.plan-point__item {
  background-color: #0C2958;
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.plan-list {
  max-width: 326px;
  margin: 24px auto 0;
}
.plan-list__item {
  text-align: center;
}
.plan-list__item + .plan-list__item {
  margin-top: 20px;
}
.plan-list__item.item02 .plan-list__head {
  background-color: #BF4646;
}
.plan-list__item.item02 .plan-list__price-num,
.plan-list__item.item02 .plan-list__head-txt01 {
  color: #BF4646;
}
.plan-list__item.item03 .plan-list__head {
  background-color: #573C81;
}
.plan-list__item.item03 .plan-list__price-num,
.plan-list__item.item03 .plan-list__head-txt01 {
  color: #573C81;
}
.plan-list__head {
  background-color: #163A96;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  padding: 13px;
}
.plan-list__head-txt01 {
  font-size: 1.6rem;
  color: #163A96;
  background-color: #fff;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 8px;
  border-radius: 20px;
}
.plan-list__head-txt02 {
  font-size: 2.8rem;
}
.plan-list__price {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  position: relative;
  display: inline-block;
}
.plan-list__price-num {
  font-size: 7.6rem;
  color: #163A96;
  margin: 0 6px;
  font-weight: 700;
}
.plan-list__price-note {
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: 35px;
  right: 0;
}
@media all and (min-width: 768px) {
  .plan-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .plan-point__item {
    width: auto;
    height: auto;
    font-size: 2.4rem;
    padding: 0 26px;
    border-radius: 30px;
  }
  .plan-point__item-num {
    font-family: "Outfit", sans-serif;
    font-size: 4rem;
    margin: 0 4px 4px;
    font-weight: 700;
  }
  .plan-list {
    max-width: initial;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 39px;
  }
  .plan-list__item + .plan-list__item {
    margin-top: 0;
  }
  .plan-list__head {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 649px;
  }
  .plan-list__head-txt01 {
    margin: 0;
    padding: 4px 14px;
  }
  .plan-list__price {
    font-size: 3.6rem;
    white-space: nowrap;
  }
  .plan-list__price-num {
    font-size: 10rem;
    margin-right: 0;
  }
  .plan-list__price-note {
    font-size: 1.6rem;
    right: 15px;
  }
  .plan-list__price .yen {
    font-size: 5rem;
  }
}
.l-fixed-cv {
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 100;
  width: 180px;
  height: 100px;
  transform: translateY(120%);
  transition: all 0.3s ease;
}
.l-fixed-cv.is-shown {
  transform: translateY(0%);
}
@media all and (min-width: 768px) {
  .l-fixed-cv {
    width: 280px;
    height: 136px;
    bottom: 24px;
    right: 24px;
  }
}