@charset "UTF-8";
:root {
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-mplus: "M PLUS 1p", sans-serif;
  --font-weight-basic: 400;
  --line-height-basic: 1.6;
}

:root {
  --color-basic: #333;
  --color-basic-rgb: 51, 51, 51;
  /* #333のRGB値 */
  --color-white: #fff;
  --color-main: #0242B0;
  --color-text-blue: #0242B0;
  --color-blue1: #AFF0FF;
  --color-blue2: #5CB8FF;
  --color-blue3: #35CBED;
  --color-bg_blue: #0050E5;
  --color-bg_blue1: #D0F1FF;
  --color-bg_blue2: #CBF5F7;
  --color-bg_blue3: #ECF9FF;
  --color-grade01: linear-gradient(180deg, #d9f6ff 0%, #99e7ff 95.9%);
  --color-orange: #FF8400;
  --color-yellow: #FFE941;
  --color-pink: #EC0046;
  --color-pink2: #FF5F8E;
}

:root {
  --fs-52: 2rem;
  --fs-38: 1.5714rem;
  --fs-37: 1.5714rem;
  --fs-32: 1.4286rem;
  --fs-30: 1.3571rem;
  --fs-28: 1.2857rem;
  --fs-25: 1.2857rem;
  --fs-24: 1.2857rem;
  --fs-22: 1.1429rem;
  --fs-20: 1.1429rem;
  --fs-18: 1rem;
  --fs-17: 1rem;
  --fs-15: 0.9286rem;
  --fs-14: 0.8571rem;
  --fs-footer-nav-heading: 1rem;
}

@media screen and (min-width: 576px) {
  :root {
    --fs-52: 2.4286rem;
    --fs-38: 1.8571rem;
    --fs-37: 1.8571rem;
    --fs-32: 1.7143rem;
    --fs-30: 1.5714rem;
    --fs-28: 1.5rem;
    --fs-25: 1.5rem;
    --fs-24: 1.4286rem;
    --fs-22: 1.2857rem;
    --fs-20: 1.1429rem;
    --fs-18: 1.0714rem;
    --fs-17: 1rem;
    --fs-15: 0.9286rem;
    --fs-14: 0.8571rem;
    --fs-footer-nav-heading: 1rem;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --fs-52: 3rem;
    --fs-38: 2.4286rem;
    --fs-37: 2.2857rem;
    --fs-32: 2rem;
    --fs-30: 1.8571rem;
    --fs-28: 1.7143rem;
    --fs-25: 1.6429rem;
    --fs-24: 1.5714rem;
    --fs-22: 1.4286rem;
    --fs-20: 1.2857rem;
    --fs-18: 1.1429rem;
    --fs-17: 1.0714rem;
    --fs-15: 1rem;
    --fs-14: 0.9286rem;
    --fs-footer-nav-heading: 1.0714rem;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --fs-52: 3.25rem;
    --fs-38: 2.375rem;
    --fs-37: 2.3125rem;
    --fs-32: 2rem;
    --fs-30: 1.875rem;
    --fs-28: 1.75rem;
    --fs-25: 1.5625rem;
    --fs-24: 1.5rem;
    --fs-22: 1.375rem;
    --fs-20: 1.25rem;
    --fs-18: 1.125rem;
    --fs-17: 1.0625rem;
    --fs-15: 0.9375rem;
    --fs-14: 0.875rem;
    --fs-footer-nav-heading: 1.0625rem;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    --fs-footer-nav-heading: 1.125rem;
  }
}
/* border-radius */
:root {
  --br-10: 5px;
  --br-16: 8px;
  --br-20: 10px;
  --br-30: 15px;
  --br-40: 20px;
}

@media screen and (min-width: 992px) {
  :root {
    --br-10: 10px;
    --br-16: 16px;
    --br-20: 20px;
    --br-30: 30px;
    --br-40: 40px;
  }
}
/* //border-radius */
@media screen and (min-width: 351px) {
  .d-xxs-none {
    display: none;
  }
}
.sailor-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (hover: hover) {
  .sailor-link:hover {
    text-decoration: underline;
  }
}
.school-hero {
  position: relative;
}

.school-hero__image-wrap {
  overflow: hidden;
}

.school-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 466/269;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--br-40);
}
@media screen and (min-width: 576px) {
  .school-hero__image {
    aspect-ratio: 1296/500;
  }
}

.school-hero__copy {
  position: relative;
  z-index: 1;
  margin: -2rem 1rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
}
@media screen and (min-width: 768px) {
  .school-hero__copy {
    margin: -3rem 2rem 0;
    padding: 2rem;
    max-width: 38.75rem;
  }
}
@media screen and (min-width: 992px) {
  .school-hero__copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2.5rem;
    margin: 0;
    padding: 2.5rem;
    max-width: 42.5625rem;
    width: min(52.5vw, 42rem);
  }
}

.school-hero__catch {
  margin-bottom: 1.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--color-basic);
}
@media screen and (min-width: 768px) {
  .school-hero__catch {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .school-hero__catch {
    margin-bottom: 1.125rem;
    font-size: 1.75rem;
  }
}

.school-hero__catch--pink {
  color: var(--color-pink);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .school-hero__catch--pink {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .school-hero__catch--pink {
    font-size: 2.375rem;
  }
}

.school-hero__catch--blue {
  color: var(--color-text-blue);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .school-hero__catch--blue {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .school-hero__catch--blue {
    font-size: 2.375rem;
  }
}

.school-hero__lead {
  font-size: var(--fs-18);
  line-height: 1.8;
}

.school-hero__lead + .school-hero__lead {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .school-hero__lead + .school-hero__lead {
    margin-top: 2rem;
  }
}

.school-hero__icon-wrap {
  position: absolute;
  top: -2.25rem;
  right: 1rem;
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .school-hero__icon-wrap {
    top: -2.5rem;
    right: -1.5rem;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .school-hero__icon-wrap {
    top: -0.5rem;
    right: -4.25rem;
  }
}

.school-hero__icon {
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .school-hero__icon {
    width: 5.5rem;
  }
}
@media screen and (min-width: 992px) {
  .school-hero__icon {
    width: 8.125rem;
  }
}

.school-sec01 {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 992px) {
  .school-sec01 {
    padding-bottom: 9rem !important;
  }
}

.school-sec02 {
  position: relative;
  z-index: 20;
}

.school-sec02__inner {
  position: relative;
  z-index: 20;
  overflow: hidden;
  isolation: isolate;
  padding-top: 4.5714285714rem;
  padding-bottom: 5.7142857143rem;
}
@media screen and (min-width: 768px) {
  .school-sec02__inner {
    padding-bottom: 9.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .school-sec02__inner {
    padding-top: 6.25rem;
    padding-bottom: 12.875rem;
  }
}

.school-sec02__inner::before,
.school-sec02__inner::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.school-sec02__inner::before {
  bottom: 35.5%;
  left: -40%;
  z-index: 0;
  width: 21.4285714286rem;
  height: 21.5714285714rem;
  background-color: #fff;
  -webkit-mask-image: url("../images/sailor/circle-turn-left.svg");
          mask-image: url("../images/sailor/circle-turn-left.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 576px) {
  .school-sec02__inner::before {
    left: -10%;
  }
}
@media screen and (min-width: 992px) {
  .school-sec02__inner::before {
    bottom: 33.5%;
    width: 33.75rem;
    height: 33.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .school-sec02__inner::before {
    left: -8%;
  }
}

.school-sec02__inner::after {
  top: 3%;
  right: -2rem;
  width: 5.3571428571rem;
  height: 1.8571428571rem;
  background-image: url("../images/common/wave-three-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 576px) {
  .school-sec02__inner::after {
    top: 5.625rem;
    width: 7rem;
    height: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .school-sec02__inner::after {
    top: 13.75rem;
    right: -1rem;
    width: 12rem;
    height: 4.375rem;
  }
}

.school-sec02__wave::after {
  bottom: 38.5%;
  left: -1rem;
  transform: rotate(180deg);
  z-index: 10;
  width: 5.3571428571rem;
  height: 1.8571428571rem;
  background-image: url("../images/common/wave-three-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  content: "";
}
@media screen and (min-width: 576px) {
  .school-sec02__wave::after {
    width: 7rem;
    height: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .school-sec02__wave::after {
    width: 12rem;
    height: 4.375rem;
  }
}

.school-sec02__container {
  position: relative;
  z-index: 20;
}

.school-place-list {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 992px) {
  .school-place-list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    margin-bottom: 5rem;
  }
}

.school-place-list__item {
  position: relative;
  height: 100%;
  padding: 1.7142857143rem;
  background: var(--color-white);
  border: 2px solid var(--color-text-blue);
  border-radius: var(--br-40);
  background-image: url(../images/common/bg-net-blue.svg);
}
@media screen and (min-width: 576px) {
  .school-place-list__item {
    padding: 2.2857142857rem;
  }
}
@media screen and (min-width: 992px) {
  .school-place-list__item {
    padding: 2.25rem 2.5rem;
  }
}

.school-place-list__wb {
  position: absolute;
  top: -1.25rem;
  left: 0;
  height: auto;
  width: 6.8571428571rem;
  aspect-ratio: 112/72;
}
@media screen and (min-width: 576px) {
  .school-place-list__wb {
    left: -1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .school-place-list__wb {
    width: 7rem;
  }
}

.school-place-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.school-place-card__figure {
  margin-bottom: 1.25rem;
}

.school-place-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 438/279;
  -o-object-fit: cover;
     object-fit: cover;
}

.school-place-card__ttl {
  margin-bottom: 0.75rem;
  color: var(--color-text-blue);
  font-size: 1.4285714286rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .school-place-card__ttl {
    font-size: var(--fs-28);
  }
}

.school-place-card__text {
  margin-bottom: 1.625rem;
  font-size: 1rem;
  line-height: 1.6;
}

.school-place-card__btn {
  left: 50%;
  transform: translateX(-50%);
  margin-top: auto;
  padding-left: 1.625rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  .school-place-card__btn {
    min-width: 0;
    width: min(100%, 25.8125rem);
  }
}

.school-place-note {
  position: relative;
  padding: 1.7142857143rem;
  border-radius: 0.8571428571rem;
  background-color: #fff;
}
@media screen and (min-width: 576px) {
  .school-place-note {
    padding: 2.2857142857rem;
  }
}
@media screen and (min-width: 768px) {
  .school-place-note {
    border-radius: 1.875rem;
  }
}
@media screen and (min-width: 1200px), print {
  .school-place-note {
    padding: 2.5rem;
  }
}

.school-place-note__wb {
  position: absolute;
  top: -1.5rem;
  left: 0;
  height: auto;
  width: 7.7142857143rem;
  aspect-ratio: 144/101;
}
@media screen and (min-width: 576px) {
  .school-place-note__wb {
    left: -2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .school-place-note__wb {
    width: 9rem;
  }
}

.school-place-note__ttl {
  padding-left: 6rem;
  font-size: 1.2857142857rem;
  font-weight: 700;
  color: var(--color-text-blue);
  line-height: 1.6;
}
@media screen and (min-width: 576px) {
  .school-place-note__ttl {
    padding-left: 3rem;
    font-size: var(--fs-24);
  }
}

.school-role {
  display: flex;
  flex-direction: column;
  row-gap: 1.4285714286rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .school-role {
    flex-direction: row;
  }
}

.school-role-card {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.1428571429rem;
       column-gap: 1.1428571429rem;
  row-gap: 1.7142857143rem;
  position: relative;
  width: 100%;
  padding: 1.7142857143rem 1.2857142857rem;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: var(--br-16);
}
@media screen and (min-width: 576px) {
  .school-role-card {
    -moz-column-gap: 1.4285714286rem;
         column-gap: 1.4285714286rem;
    padding: 2.2857142857rem;
  }
}
@media screen and (min-width: 992px) {
  .school-role-card {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px), print {
  .school-role-card {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    padding: 2.25rem 2.25rem 2.25rem 2.5rem;
  }
}

.school-role-card + .school-role-card {
  margin-top: 2.5rem;
}

.school-role-card__image {
  width: 100%;
}

.school-role-card__figure {
  flex-shrink: 0;
  height: auto;
  aspect-ratio: 329/220;
}
@media screen and (min-width: 992px) {
  .school-role-card__figure {
    width: 20.5625rem;
  }
}

.school-role-card__ttl {
  display: inline-block;
  padding-bottom: 1rem;
}

.school-role-card__ttl::after {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 0.5rem;
  background-image: url(../images/sailor/school/line-wave.svg);
  background-repeat: repeat-x;
  background-position: center center;
  content: "";
}

.school-role-card__text {
  font-size: var(--fs-16);
  line-height: 1.6;
  text-align: left;
}

.school-role-card__note {
  margin-top: 1rem;
  color: #6F6F6F;
  font-size: 0.875rem;
  line-height: 1.6;
}

.school-role-card__icon {
  position: absolute;
}

.school-role-card__icon--anchor {
  bottom: -2rem;
  right: -1.1428571429rem;
  width: 4.2857142857rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 576px) {
  .school-role-card__icon--anchor {
    bottom: -1.2142857143rem;
  }
}
@media screen and (min-width: 768px) {
  .school-role-card__icon--anchor {
    bottom: -1.75rem;
    right: -3.125rem;
    width: 6.75rem;
  }
}

.school-role-card__icon--compass {
  bottom: -2.2857142857rem;
  left: -1.4285714286rem;
  width: 4.2857142857rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 576px) {
  .school-role-card__icon--compass {
    bottom: -1.2857142857rem;
  }
}
@media screen and (min-width: 768px) {
  .school-role-card__icon--compass {
    bottom: -2.7142857143rem;
    left: -3rem;
    width: 6.25rem;
  }
}
@media screen and (min-width: 992px) {
  .school-role-card__icon--compass {
    bottom: -1.3125rem;
    left: -2.375rem;
  }
}

.school-sec03 {
  position: relative;
  z-index: 30;
  padding-top: 4.5714285714rem;
  padding-bottom: 7.1428571429rem;
}
@media screen and (min-width: 768px) {
  .school-sec03 {
    padding-top: 6.8571428571rem;
    padding-bottom: 10.5714285714rem;
  }
}
@media screen and (min-width: 992px) {
  .school-sec03 {
    padding-top: 7.125rem;
    padding-bottom: 12.5rem;
  }
}

.school-sec03::before,
.school-sec03::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.school-sec03::before {
  bottom: -2%;
  right: -28%;
  z-index: 0;
  width: 21.4285714286rem;
  height: 21.5714285714rem;
  background-color: var(--color-bg_blue1);
  -webkit-mask-image: url("../images/sailor/circle-turn-right.svg");
          mask-image: url("../images/sailor/circle-turn-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 576px) {
  .school-sec03::before {
    right: -6%;
  }
}
@media screen and (min-width: 992px) {
  .school-sec03::before {
    bottom: -7%;
    right: -9%;
    width: 33.75rem;
    height: 33.875rem;
  }
}

.school-sec03::after {
  right: -1rem;
  bottom: 10.5%;
  width: 7rem;
  height: 2.5rem;
  background-image: url("../images/common/wave-three-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 576px) {
  .school-sec03::after {
    bottom: 7.5%;
  }
}
@media screen and (min-width: 992px) {
  .school-sec03::after {
    bottom: 19.5%;
    width: 12rem;
    height: 4.375rem;
  }
}

.school-sec03__inner {
  position: relative;
  z-index: 20;
  width: min(100%, 67.125rem);
  margin-inline: auto;
}

.school-sec04 {
  position: relative;
  z-index: 40;
  padding-top: 4.2857142857rem;
  padding-bottom: 5.1428571429rem;
}
@media screen and (min-width: 768px) {
  .school-sec04 {
    padding-top: 5.7142857143rem;
    padding-bottom: 6.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .school-sec04 {
    padding-top: 7.875rem;
    padding-bottom: 7.1875rem;
  }
}

.school-sec04__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .school-sec04__inner {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

.school-sec04__ttl {
  margin-bottom: 2.2857142857rem;
}
@media screen and (min-width: 992px) {
  .school-sec04__ttl {
    margin-bottom: 3.75rem;
  }
}

.school-route-card__image-wrap {
  overflow: hidden;
  margin-bottom: 1rem;
}

.school-route-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 266/148;
  -o-object-fit: cover;
     object-fit: cover;
}

.school-route-card__ttl {
  margin-bottom: 0.5rem;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-blue);
}

.school-route-card__text {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
}

.school-route-card__btn {
  left: 50%;
  transform: translateX(-50%);
  padding-left: 1.625rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  .school-route-card__btn {
    min-width: 0;
    width: 100%;
  }
}

.school-change-card {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  position: relative;
}
@media screen and (min-width: 992px) {
  .school-change-card {
    flex-direction: row;
  }
}

.school-change-card__figure {
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .school-change-card__figure {
    width: min(100%, 32.375rem);
  }
}

.school-change-card__image {
  width: 100%;
  border-radius: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .school-change-card__image {
    border-radius: 2.5rem;
  }
}

.school-change-card__icon {
  position: absolute;
  right: 0;
  bottom: -4.2857142857rem;
  width: 4.5714285714rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 576px) {
  .school-change-card__icon {
    right: -1.8571428571rem;
    bottom: -2.25rem;
  }
}
@media screen and (min-width: 992px) {
  .school-change-card__icon {
    right: 0.125rem;
    width: 7.1875rem;
  }
}

.school-howto-note {
  display: flex;
  flex-direction: column;
  border-radius: 0.8571428571rem;
  padding: 1.4285714286rem 1.7142857143rem;
}
@media screen and (min-width: 576px) {
  .school-howto-note {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .school-howto-note {
    border-radius: 1.875rem;
  }
}
@media screen and (min-width: 992px) {
  .school-howto-note {
    padding: 1.75rem 2.5rem;
  }
}

@media screen and (min-width: 992px) {
  .school-howto-note--second {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
}

.school-howto-note:not(:first-of-type) {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .school-howto-note:not(:first-of-type) {
    margin-top: 1.25rem;
  }
}

.school-howto-note__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.5714285714rem;
  padding: 0.5714285714rem 0;
}
@media screen and (min-width: 576px) {
  .school-howto-note__list {
    padding: 0.5714285714rem 0 0.5714285714rem 2.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .school-howto-note__list {
    row-gap: 0.5rem;
    padding: 0.84375rem 2.25rem 0.84375rem 3.75rem;
  }
}

.school-howto-note__head {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.4285714286rem;
  padding-bottom: 1.7142857143rem;
  border-bottom: 1px solid #DADADA;
}
@media screen and (min-width: 576px) {
  .school-howto-note__head {
    width: 11.4285714286rem;
    padding-right: 1.7142857143rem;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid #DADADA;
  }
}
@media screen and (min-width: 992px) {
  .school-howto-note__head {
    flex-direction: row;
    width: auto;
    padding-right: 3.75rem;
  }
}

.school-howto-note__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.125rem;
  height: 5.125rem;
  border-radius: 2rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .school-howto-note__figure {
    border-radius: 5.125rem;
  }
}

.school-howto-note__ttl {
  font-size: 1.2857142857rem;
  font-weight: 700;
  color: var(--color-text-blue);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .school-howto-note__ttl {
    font-size: 1.375rem;
    text-align: start;
  }
}

.school-howto-note__item {
  position: relative;
  width: 15.4285714286rem;
  margin-inline: auto;
  padding-left: 1.7142857143rem;
  font-size: 1.1428571429rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .school-howto-note__item {
    width: 50%;
    margin-inline: 0;
  }
}
@media screen and (min-width: 992px) {
  .school-howto-note__item {
    padding-left: 2.25rem;
    font-size: 1.125rem;
  }
}

.school-howto-note__item::before {
  display: block;
  position: absolute;
  top: 0.1428571429rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/sailor/school/icon-check-orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 992px) {
  .school-howto-note__item::before {
    top: 0.1875rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
/*# sourceMappingURL=style-sailor-school.css.map */