@charset "UTF-8";
:root {
  --primary-color: #1f3b9e;
  --primary-color-light: #eef6fd;
  --accent-color: #fee902;
  --accent-color-light: #fee302;
  --underline-color: #fee300;
  --background-color: #ffffff;
  --text-color: #333333;
  --text-color-secondary: #ffffff;
  --color-gray: #cccccc;
  --color-red: #e52d2c;
  --color-blue: #0379d6;
  --shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
main img {
  display: block;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}
/*-------------------------
    common
-------------------------*/
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
.u-color-primary {
  color: var(--primary-color);
}
.u-color-accent {
  color: var(--accent-color);
}
.u-color-red {
  color: var(--color-red);
}
.u-text-underline {
  background: linear-gradient(transparent 80%, var(--underline-color) 80%);
}
.u-text-bold {
  font-weight: bold;
}
.u-text-align-center {
  text-align: center;
}
.u-text-align-left {
  text-align: left;
}
.u-text-align-right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

/*-------------------------
    contents-inner
-------------------------*/
.contents-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .contents-inner {
    max-width: 1000px;
    padding: 0;
  }
}

/*-------------------------
    notes
-------------------------*/
.notes {
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .notes {
    max-width: 1200px;
  }
}

/*-------------------------
    見出し
-------------------------*/
/* contents-title */
.contents-title {
  color: #1f3b9e;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents-title {
    font-size: 40px;
  }
}

/* tooltip */
.tooltip {
  position: relative;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  background: var(--primary-color-light);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background: var(--primary-color-light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width: 1025px) {
  .tooltip {
    font-size: 28px;
    padding: 15px;
    margin-bottom: 50px;
  }
  .tooltip::after {
    bottom: -18px;
    width: 32px;
    height: 20px;
  }
}

/*-------------------------
    card-contents
-------------------------*/
.card-contents-wrapper.--column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.card-contents-wrapper.--pc-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.card-contents {
  display: flex;
  flex-direction: column;
}
.card-contents-head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  padding: 10px 0;
  text-align: center;
}
.card-contents-title {
  color: var(--text-color-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.card-contents-body {
  display: block;
  background: var(--background-color);
  border: solid 1px var(--primary-color);
  padding: 20px;
}
/* --radius */
.card-contents.--radius .card-contents-head {
  border-radius: 6px 6px 0 0;
}
.card-contents.--radius .card-contents-body {
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 1025px) {
  .card-contents-wrapper.--pc-column {
    grid-template-columns: 1fr 1fr;
  }
  .card-contents-title {
    font-size: 24px;
  }
  .card-contents-body {
    padding: 24px;
  }
  /* --radius */
  .card-contents.--radius .card-contents-head {
    border-radius: 8px 8px 0 0;
  }
  .card-contents.--radius .card-contents-body {
    border-radius: 0 0 8px 8px;
  }
}

/*-------------------------
    CTA
-------------------------*/
.md-contact {
  padding: 33px 0;
}
#achievement + .md-contact {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .md-contact {
    padding: 40px 0 50px;
  }
  #achievement + .md-contact {
    padding-bottom: 80px;
  }
}

/*-------------------------
    main-visual
-------------------------*/
.md_main-visual {
  background-color: #192963;
}
.md_main-visual--text {
  color: #ffff;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 39.1px;
  padding: 24px 20px;
}
.md_main-visual > div {
  flex-direction: column;
  align-items: flex-start;
}
/* .md_main-visual img {
  width: 100vw;
} */
.md_main-visual .contents-inner {
  padding: 0;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .md_main-visual--text {
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .md_main-visual .contents-inner {
    max-width: 1200px;
  }
  .md_main-visual--text {
    font-size: min(calc(32 / 1200 * 100vw), 32px);
  }
  .md_main-visual > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/*-------------------------
    worry
-------------------------*/
.worry__contents {
  padding: 40px 0;
}
#worry .worry__list-item:not(:first-child) {
  padding-top: 20px;
}
#worry .worry__list-item:not(:last-child) {
  border-bottom: 1px dashed #1f3b9e;
  padding-bottom: 20px;
}
#worry .worry__contents-body {
  margin-top: 24px;
}
#worry .worry__list-item-checked-text {
  position: relative;
  /* display: flex;
  align-items: flex-start;
  gap: 8px; */
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  padding-left: 28px;
}
#worry .worry__list-item-checked-text::before {
  content: '';
  position: absolute;
  top: .2em;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--color-blue);
  border-radius: 50%;
  /* content: '';
  background: url('../img/icon-check-lightblue.svg') no-repeat center center / contain;
  width: 20px;
  aspect-ratio: 20/20; */
}
#worry .worry__list-item-checked-text::after {
  content: '';
  position: absolute;
  top: .4em;
  left: .4em;
  width: .4em;
  height: .7em;
  border: solid var(--text-color-secondary);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .worry__contents {
    padding: 60px 0;
  }
  #worry .worry__contents-body {
    max-width: 765px;
    margin: 32px auto 0;
  }
  #worry .worry__list-item-checked-text {
    /* gap: 24px; */
    font-size: 24px;
    padding-left: 56px;
  }
  #worry .worry__list-item-checked-text::before {
    width: 32px;
    height: 32px;
    /* width: 32px;
    aspect-ratio: 32/32; */
  }
  #worry .worry__list-item-checked-text::after {
    top: .45em;
    left: .5em;
    border-width: 0 4px 4px 0;
  }
}
@media screen and (min-width: 768px) {
}

/*-------------------------
    course-services
-------------------------*/
#course-services .course-services__contents {
  position: relative;
  border-top: 1px solid #1f3b9e;
  padding: 24px 16px;
}
#course-services .course-services__contents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url('../img/bg-tile.webp') repeat center center/20px auto;
  opacity: 0.2;
  z-index: -1;
}
#course-services .course-services__contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1f3b9e;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
#course-services .course-services__contents-title::before,
#course-services .course-services__contents-title::after {
  content: '';
  background-color: #1f3b9e;
  width: 1px;
  height: 13px;
  border-radius: 20px;
}
#course-services .course-services__contents-title::before {
  transform: rotate(-35deg);
  margin-right: 8px;
}
#course-services .course-services__contents-title::after {
  transform: rotate(35deg);
  margin-left: 8px;
}
#course-services .course-services__contents-img {
  /* width: 100%; */
  height: auto;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  #course-services .course-services__contents {
    position: relative;
    border-top: 1px solid #1f3b9e;
    padding: 30px 0 40px;
  }
  #course-services .course-services__contents-title {
    font-size: 24px;
  }
  #course-services .course-services__contents-title::before,
  #course-services .course-services__contents-title::after {
    width: 2px;
    height: 32px;
  }
  #course-services .course-services__contents-title::before {
    margin-right: 20px;
  }
  #course-services .course-services__contents-title::after {
    margin-left: 20px;
  }
  #course-services .course-services__contents-img {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
}

/*-------------------------
    course-point
-------------------------*/
#course-point .course-point__contents {
  background: var(--primary-color);
  padding: 40px 0;
}
#course-point .course-point__title {
  position: relative;
  background: var(--primary-color);
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.26;
  text-align: center;
  /* padding: 14px 0 17px; */
  /* margin-bottom: 9px; */
  padding-bottom: 48px;
}
#course-point .course-point__title .--lg {
  font-size: 32px;
}
#course-point .course-point__title .--lg .num {
  font-size: 54px;
  line-height: 1;
}
#course-point .course-point__title .u-text-underline {
  background: linear-gradient(transparent 97%, var(--underline-color) 97%);
}
#course-point .course-point__item:not(:first-child) {
  margin-top: 48px;
}
#course-point .course-point__item-contents {
  position: relative;
  background: var(--background-color);
  padding: 32px 20px 24px;
}
#course-point .course-point__item-contents.--radius {
  border-radius: 6px;
}
#course-point .course-point__item-contents .tooltip {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  background: var(--accent-color);
  font-size: 16px;
  border-radius: 50px;
  padding: 4px 30px 6px;
  margin-bottom: 0;
  z-index: 1;
}
#course-point .course-point__item:nth-of-type(4) .course-point__item-contents .tooltip {
  top: -3%;
}
#course-point .course-point__item-contents .tooltip::after {
  display: none;
}
#course-point .course-point__item-title {
  color: (--text-color);
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
#course-point .course-point__item-description {
  font-size: 14px;
  line-height: 1.6;
}
#course-point .course-point__item-contents .course-point__item-column .course-point__item-img-wrap {
  position: relative;
  margin: 24px 0;
}
#course-point .course-point__item-contents .course-point__item-img-wrap .course-point__item-img-icon {
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
  align-self: center;
  width: 66px;
  height: 66px;
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  background-color: var(--primary-color);
  border-radius: 50%;
}
#course-point .course-point__item-contents .course-point__item-img-wrap .course-point__item-img-icon-text {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  text-align: center;
}
#course-point .course-point__item-contents .course-point__item-img-icon-text .--small {
  font-size: 10px;
}
#course-point .course-point__example {
  background: var(--primary-color-light);
  margin-top: 12px;
  padding: 14px 16px;
}
#course-point .course-point__example .course-point__example-title {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
#course-point .course-point__example .course-point__example-text {
  margin-top: 7px;
}
#course-point .course-point__example .course-point__example-description {
  font-size: 12px;
  line-height: 1.6;
}
#course-point .course-point__example .course-point__example-text .notes {
  margin-top: 7px;
}
#course-point .course-point__example .course-point__example-text .notes a {
  color: var(--primary-color);
  text-decoration: underline;
}
#course-point .course-point__example .course-point__example-list-item:not(:first-child) {
  padding-top: 8px;
}
#course-point .course-point__example .course-point__example-list-item-checked-text {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 26px;
}
#course-point .course-point__example .course-point__example-list-item-checked-text::before {
  content: '';
  position: absolute;
  top: .2em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
}
#course-point .course-point__example .course-point__example-list-item-checked-text::after {
  content: '';
  position: absolute;
  top: .4em;
  left: .4em;
  width: .4em;
  height: .7em;
  border: solid var(--text-color-secondary);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#course-point .course-point__example .course-point__example-column {
  margin-top: 12px;
}
#course-point .course-point__example .course-point__example-column .course-point__example-column-right {
  padding: 0 16px;
}
#course-point .course-point__example .course-point__example-column .course-point__example-column-left .notes {
  margin-top: 2px;
  padding-right: 16px;
  text-align: right;
}
#course-point .course-point__example .course-point__example-column .course-point__example-list {
  margin-top: 12px;
}
#course-point .course-point__example .course-point__example-column .course-point__example-list .course-point__example-list-item {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
#course-point .course-point__example .course-point__example-column .course-point__example-list .course-point__example-list-item:not(:first-child) {
  padding-top: 0;
}
#course-point .course-point__example.--sub {
  padding: 20px 0;
}
#course-point .course-point__example.--sub .course-point__example-title {
  font-size: 17px;
}
#course-point .course-point__item-column .course-point__example.--sub {
  margin-top: 24px;
  padding: 14px 16px;
}
#course-point .course-point__item-column .course-point__example.--sub .course-point__example-title {
  font-size: 14px;
}
#course-point .course-point__contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1f3b9e;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0 5px;
}
#course-point .course-point__contents-title::before,
#course-point .course-point__contents-title::after {
  content: '';
  background-color: #1f3b9e;
  width: 1px;
  height: 13px;
  border-radius: 20px;
}
#course-point .course-point__contents-title::before {
  transform: rotate(-35deg);
  margin-right: 8px;
}
#course-point .course-point__contents-title::after {
  transform: rotate(35deg);
  margin-left: 8px;
}
#course-point .course-point__contents-img {
  height: auto;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  #course-point .course-point__contents {
    padding: 72px 0;
  }
  #course-point .course-point__title {
    font-size: 32px;
    /* padding: 40px 0;
    margin-bottom: 15px; */
    padding-bottom: 68px;
  }
  #course-point .course-point__title .--lg {
    font-size: 50px;
  }
  #course-point .course-point__title .--lg .num {
    font-size: 100px;
  }
  #course-point .course-point__title .u-text-underline {
    background: linear-gradient(transparent 96%, var(--underline-color) 96%);
  }
  #course-point .course-point__item-body {
    max-width: 1000px;
    margin: 0 auto;
  }
  #course-point .course-point__item:not(:first-child) {
    margin-top: 70px;
  }
  #course-point .course-point__item-contents {
    padding: 60px 60px 50px;
  }
  #course-point .course-point__item-contents.--radius {
    border-radius: 8px;
  }
  #course-point .course-point__item-contents .tooltip {
    top: -3%;
    font-size: 24px;
    padding: 6px 35px 8px;
  }
  #course-point .course-point__item:nth-of-type(4) .course-point__item-contents .tooltip {
    top: -6%;
  }
  #course-point .course-point__item-contents .course-point__item-column {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  #course-point .course-point__item-contents .course-point__item-column .course-point__item-column-left {
    width: 400px;
  }
  #course-point .course-point__item-contents .course-point__item-column .course-point__item-column-right {
    width: 430px;
  }
  #course-point .course-point__item-column-right .course-point__item-text-wrap {
    margin-top: 15px;
  }
  #course-point .course-point__item-title {
    font-size: 26px;
    text-align: left;
  }
  #course-point .course-point__item-description {
    font-size: 16px;
  }
  #course-point .course-point__item-contents .course-point__item-column .course-point__item-img-wrap {
    margin: 0;
  }
  #course-point .course-point__item-contents .course-point__item-img-wrap .course-point__item-img-icon {
    top: -2rem;
    width: 88px;
    height: 88px;
    font-size: 16px;
    line-height: 1.3;
  }
  #course-point .course-point__item-contents .course-point__item-img-icon-text .--small {
    font-size: 13px;
  }
  #course-point .course-point__example {
    padding: 20px 60px;
    margin-top: 30px;
  }
  #course-point .course-point__example .course-point__example-title {
    font-size: 18px;
    text-align: center;
  }
  #course-point .course-point__example .course-point__example-description {
    font-size: 16px;
  }
  #course-point .course-point__example .course-point__example-text .notes {
    margin-top: 2px;
  }
  #course-point .course-point__example .course-point__example-list {
    padding: 0 175px;
  }
  #course-point .course-point__example .course-point__example-column {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 15px;
  }
  #course-point .course-point__example .course-point__example-column .course-point__example-column-left {
    width: 230px;
  }
  #course-point .course-point__example .course-point__example-column .course-point__example-column-left .notes {
    padding-right: 0;
  }
  #course-point .course-point__example .course-point__example-column .course-point__example-column-right {
    width: 450px;
    padding: 0;
  }
  #course-point .course-point__example .course-point__example-column .course-point__example-column-right .notes {
    margin-top: 7px;
  }
  #course-point .course-point__example .course-point__example-column .course-point__example-list {
    padding: 0;
    margin-top: 0;
  }
  #course-point .course-point__example .course-point__example-column .course-point__example-list .course-point__example-list-item {
    font-size: 16px;
    line-height: 1.6;
  }
  #course-point .course-point__example.--sub {
    padding: 20px 80px;
  }
  #course-point .course-point__example.--sub .course-point__example-title {
    font-size: 24px;
  }
  #course-point .course-point__example.--sub .course-point__example-description {
    line-height: 1.4;
  }
  #course-point .course-point__item-column .course-point__example.--sub {
    margin-top: 11px;
    padding: 16px;
  }
  #course-point .course-point__item-column .course-point__example.--sub .course-point__example-title {
    font-size: 16px;
  }
  #course-point .course-point__contents-title {
    font-size: 24px;
    margin: 30px 0 15px;
  }
  #course-point .course-point__contents-title::before,
  #course-point .course-point__contents-title::after {
    width: 2px;
    height: 32px;
  }
  #course-point .course-point__contents-title::before {
    margin-right: 20px;
  }
  #course-point .course-point__contents-title::after {
    margin-left: 20px;
  }
  #course-point .course-point__contents-img {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  #course-point .course-point__contents {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/*-------------------------
    study-space
-------------------------*/
#study-space .study-space__contents {
  /* padding: 0 0 40px; */
}
#study-space .study-space__title {
  position: relative;
  background: #0379d6;
  color: var(--text-color-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  padding: 14px 0 17px;
}
#study-space .study-space__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 26px;
  height: 16px;
  background: #0379d6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#study-space .study-space__title .--lg {
  font-size: 24px;
}
#study-space .study-space__contents-body {
  transform: translateY(-35px);
}
#study-space .study-space__item {
  background: var(--primary-color-light);
  padding: 16px 20px;
}
#study-space .study-space__item-list .study-space__item-list-item:not(:first-child) {
  margin-top: 8px;
}
#study-space .study-space__item-list .study-space__item-list-item-checked-text {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    padding-left: 28px;
}
#study-space .study-space__item-list .study-space__item-list-item-checked-text::before {
  content: '';
  position: absolute;
  top: -0.1em;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--color-blue);
  border-radius: 50%;
}
#study-space .study-space__item-list .study-space__item-list-item-checked-text::after {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  width: .4em;
  height: .7em;
  border: solid var(--text-color-secondary);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#study-space .study-space__contents-body .notes {
  margin-top: 8px;
}
@media screen and (min-width: 1025px) {
  #study-space .study-space__contents {
    /* padding: 0 0 90px; */
  }
  #study-space .study-space__title {
    font-size: 40px;
    padding: 40px 0;
  }
  #study-space .study-space__title::after {
    bottom: -20px;
    width: 46px;
    height: 22px;
  }
  #study-space .study-space__title .--lg {
    font-size: 40px;
  }
  #study-space .study-space__contents-body {
    transform: translateY(-55px);
  }
  #study-space  .study-space__item {
    background: var(--primary-color-light);
    margin: 0 180px;
    padding: 32px 75px;
  }
  #study-space .study-space__item-list .study-space__item-list-item:not(:first-child) {
    margin-top: 16px;
  }
  #study-space .study-space__item-list .study-space__item-list-item-checked-text {
    font-size: 24px;
    padding-left: 56px;
}
  #study-space .study-space__item-list .study-space__item-list-item-checked-text::before {
    width: 32px;
    height: 32px;
    top: 0.1em;
  }
  #study-space .study-space__item-list .study-space__item-list-item-checked-text::after {
    top: 0.35em;
    left: .5em;
    border-width: 0 4px 4px 0;
  }
  #study-space .study-space__contents-body .notes {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
}

/*-------------------------
    map
-------------------------*/
#map .map__contents {
  padding: 60px 0;
}
#map .contents-title {
  color: #1f3b9e;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.4;
  text-align: center;
}
#map .contents-title .--sm {
  font-size: 30px;
  font-weight: 700;
}
#map .mapArea {
  width: min(94%, 800px);
  height: 550px;
  margin: min(15%, 65px) auto 0 auto;
  position: relative;
}
#map .mapArea .mapAll {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#map .mapArea [class^='area'] {
  background: #d0edff;
  width: 118px;
  font-size: 1.28rem;
  border-radius: 10px;
  position: absolute;
}
#map .mapArea [class^='area'] h3 {
  background: #1f377c;
  color: #fff;
  font-size: 1.28rem;
  padding: 3px 5px;
  letter-spacing: -0.5px;
  border-radius: 10px 10px 0 0;
  font-weight: normal;
}
#map .mapArea .area01 {
  top: 123px;
  left: min(84.25%, 674px);
}
#map .mapArea .area02 {
  top: 272px;
  left: min(84.25%, 674px);
}
#map .mapArea .area03 {
  top: 397px;
  left: min(84.25%, 674px);
}
#map .mapArea .area04 {
  width: 63px;
  top: 397px;
  left: min(74.13%, 593px);
}
#map .mapArea .area05 {
  top: 26px;
  left: min(24.25%, 194px);
}
#map .mapArea .area06 {
  top: 26px;
  left: min(7%, 56px);
}
#map .mapArea .area07 {
  width: 63px;
  top: 150px;
  left: min(24.25%, 194px);
}
#map .mapArea .area08 {
  top: 150px;
  left: min(7%, 56px);
}
#map .mapArea .mapList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
  box-sizing: border-box;
}
#map .mapArea .area04 .mapList,
#map .mapArea .area07 .mapList {
  flex-direction: column;
}
#map .mapArea .mapList li {
  width: 49%;
  text-align: center;
}
#map .mapArea .mapList li a {
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}
#map .mapArea .mapList li a.ls-1 {
  letter-spacing: -1px;
}
/* link-text */
#map .link-text {
  text-align: center;
  padding-top: 0;
}
#map .link-text a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #1f3b9e;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #1f3b9e;
  padding: 0 5px 3px;
}
#map .link-text a::after {
  content: '';
  background: url('../img/arrow-blue.svg') no-repeat center center / contain;
  width: 30px;
  aspect-ratio: 1/1;
}

@media (max-width: 750px) {
  #map .map__contents {
    padding: 40px 0;
  }
  #map .contents-title {
    color: #1f3b9e;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
  }
  #map .contents-title .--sm {
    font-size: 14px;
    font-weight: 700;
  }
  #map .mapArea {
    width: min(100%, 800px);
    height: 100%;
    padding-top: 86.67%;
    margin: min(5%, 30px) auto min(15%, 65px) auto;
  }
  #map .mapArea .mapAll {
    width: 72.93%;
  }
  #map .mapArea [class^='area'] {
    width: 19.6%;
    font-size: 2.13vw;
    border-radius: 5px;
    position: absolute;
  }
  #map .mapArea [class^='area'] h3 {
    font-size: 2.13vw;
    border-radius: 5px 5px 0 0;
  }
  #map .mapArea .area01 {
    top: 30%;
    left: 74.93%;
  }
  #map .mapArea .area02 {
    top: 60%;
    left: 74.93%;
  }
  #map .mapArea .area03 {
    top: 86.5%;
    left: 74.93%;
  }
  #map .mapArea .area04 {
    width: 12%;
    top: 86.5%;
    left: 59.93%;
  }
  #map .mapArea .area05 {
    top: 26px;
    left: 28.53%;
  }
  #map .mapArea .area06 {
    top: 26px;
    left: 5%;
  }
  #map .mapArea .area07 {
    width: 12%;
    top: 34%;
    left: 28.53%;
  }
  #map .mapArea .area08 {
    top: 34%;
    left: 5%;
  }
  #map .mapArea .mapList {
    padding: 8px;
  }
  /* link-text */
  #map .link-text {
    text-align: center;
    padding-top: 0;
  }
  #map .link-text a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #1f3b9e;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #1f3b9e;
    padding: 0 5px 3px;
  }
  #map .link-text a::after {
    content: '';
    background: url('../img/arrow-blue.svg') no-repeat center center / contain;
    width: 23px;
    aspect-ratio: 1/1;
  }
}

/*-------------------------
    flow
-------------------------*/
#flow .flow__contents {
  padding: 0 0 40px;
}
#flow .contents-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1f3b9e;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  border-radius: 12px 12px 0px 0px;
  padding: 17px 0;
}
#flow .flow__contents-body {
  border: 2px solid #1f3b9e;
  border-radius: 0 0 12px 12px;
  padding: 30px 20px;
}
#flow .flow__item:not(:first-child) {
  padding-top: 30px;
}
#flow .flow__item:not(:last-child) {
  border-bottom: 1px solid #1f3b9e;
  padding-bottom: 30px;
}
#flow .flow__item-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #1f3b9e;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
#flow .flow__item-title span {
  display: inline-block;
  background: #fee302;
  color: #1f3b9e;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  line-height: 1;
}
#flow .flow__item-description {
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 12px;
}
#flow .flow__item-notes {
  color: #666666;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 5px;
}
/* flow__cta */
#flow .flow__cta-wrap {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  #flow .flow__contents {
    padding: 5px 0 60px;
  }
  #flow .contents-inner {
    max-width: 700px;
  }
  #flow .contents-title {
    font-size: 30px;
    padding: 20px 0;
  }
  #flow .flow__contents-body {
    padding: 40px;
  }
  #flow .flow__item-title {
    font-size: 28px;
  }
  #flow .flow__item-title span {
    font-size: 18px;
    line-height: 1.6;
    padding: 5px 20px;
  }
  /* flow__cta */
  #flow .flow__cta-wrap {
    max-width: 540px;
    margin: 12px auto 0;
  }
}
