@charset "UTF-8";
:root, :host {
  --color-link: #F4E158;
  --color-link-light: #f5eeb9;
  --color-link2: #f2bc29;
  --color-main: #12354E;
  --color-sub: #63d1f2;
  --color-sub-light: #c3e9f5;
  --color-black: #000000;
  --color-white: #FFFFFF;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  overflow-x: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../img/background.svg);
  font-family: "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    background-image: url(../img/background_sp.svg);
  }
}
body a {
  text-decoration: none;
}
body .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  color: var(--color-main);
}
body .sp {
  display: none;
}
body .title p {
  font-size: 2rem;
  margin-top: 30px;
  font-weight: bold;
}
body .title.titleCenter {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .title.titleCenter p {
  position: relative;
  line-height: 120%;
}
body .title.titleCenter p::before, body .title.titleCenter p::after {
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  top: 15px;
  background-color: var(--color-main);
}
body .title.titleCenter p::before {
  left: -100px;
  transform: rotate(30deg);
}
body .title.titleCenter p::after {
  right: -100px;
  transform: rotate(-30deg);
}
body .container {
  padding-top: 70px;
}
body section {
  padding-top: 80px;
  position: relative;
}
body .reserveBtnNew {
  position: fixed;
  z-index: 1000;
  color: #fff;
  background-color: var(--color-link);
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 140%;
  flex-direction: column;
  box-sizing: border-box;
}
body .reserveBtnNew h4 {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
}
body .reserveBtnNew h4 span {
  font-size: 14px;
  transform: translateX(-4px);
}
body .reserveBtnNew img {
  width: 20px;
  position: absolute;
  right: 10px;
  bottom: 12px;
  animation: ease-in-out arrowMove 1s infinite;
}
@keyframes arrowMove {
  0% {
    right: 12px;
  }
  50% {
    right: 4px;
  }
  100% {
    right: 12px;
  }
}
@media screen and (min-width: 769px) {
  body .reserveBtnNew {
    right: 0;
    border-bottom-left-radius: 45px;
    gap: 2px;
    padding: 13px 0;
    width: 264px;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  body .reserveBtnNew {
    width: 90%;
    left: 5%;
    margin: auto;
    border-radius: 100px;
    gap: 4px;
    padding: 12px;
    bottom: 10px;
  }
}
body .cardVisual, body .cardImage {
  overflow: hidden;
  pointer-events: none;
}
body .cardVisual img, body .cardImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  body .pc {
    display: none;
  }
  body .sp {
    display: block;
  }
  body .title img {
    height: 40px;
  }
  body .title p {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 70px;
  transition: 0.2s all ease;
  display: flex;
  align-items: center;
  z-index: 999;
}
header .inner {
  display: flex;
  align-items: center;
}
header .inner .logo {
  background: url(../img/logo_yoko.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 210px;
  height: auto;
  aspect-ratio: 618/193;
  transition: 0.2s all ease;
  display: block;
}
header .inner nav ul li a {
  color: var(--color-main);
}
header .inner nav ul li a:hover {
  color: var(--color-link);
}
header.fixed {
  height: 54px;
  background-color: white;
}
@media screen and (min-width: 769px) {
  header .inner {
    justify-content: flex-start;
    gap: 40px;
  }
  header .inner .logo {
    width: 14%;
  }
  header .inner nav ul {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
  }
  header .inner nav ul li a {
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
  }
  header .inner nav ul li a:hover {
    text-decoration: underline;
  }
  header .inner #js-hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .inner {
    justify-content: space-between;
  }
  header .inner .logo {
    width: 50%;
  }
  header .inner nav {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #CFE2DE;
    top: 0;
    left: 0;
    z-index: 100;
    overflow: hidden;
  }
  header .inner nav ul {
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
  }
  header .inner nav ul li {
    padding: 20px 0;
    border-bottom: solid 1px #eee;
  }
  header .inner nav ul li a {
    font-weight: bold;
  }
  header .inner nav.is-checked {
    display: block;
  }
  header .inner #js-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    background-color: transparent;
    z-index: 999;
    height: 30px;
    width: 30px;
    padding: 0px;
  }
  header .inner #js-hamburger span, header .inner #js-hamburger span::after, header .inner #js-hamburger span::before {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--color-main);
    transition: ease 0.3s;
    display: block;
  }
  header .inner #js-hamburger span::after, header .inner #js-hamburger span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  }
  header .inner #js-hamburger span::before {
    transform: translateY(-8px);
  }
  header .inner #js-hamburger span::after {
    transform: translateY(8px);
  }
  header .inner #js-hamburger.is-checked span {
    transform: rotate(45deg);
  }
  header .inner #js-hamburger.is-checked span::before {
    transform: translateY(0);
  }
  header .inner #js-hamburger.is-checked span::after {
    transform: translateY(0) rotate(90deg);
  }
  header .fixed {
    height: 50px;
  }
}

footer {
  background: var(--color-white);
  padding: 150px 0;
  position: relative;
}
footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
footer .inner p {
  line-height: 150%;
  text-align: center;
}
footer .inner p span {
  display: inline-block;
}
footer .inner img {
  width: 80%;
  max-width: 500px;
}
footer .inner a {
  display: flex;
  justify-content: center;
}

.scTop {
  position: fixed;
  bottom: -80px;
  right: 0;
  width: 6%;
  max-width: 70px;
  height: auto;
  aspect-ratio: 1/1;
  transition-duration: 0.3s;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.scTop img {
  width: 100%;
}
.scTop.fixed {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .scTop {
    width: 15%;
  }
  .scTop.fixed {
    bottom: 65px;
  }
}

#hero {
  padding-top: 0;
  height: calc(100vh - 140px);
}
#hero .visualCase {
  width: 100%;
  height: 100%;
  border-top-right-radius: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .visualCase .visualMain {
  width: 100%;
  height: calc(100vh - 140px);
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .visualCase::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/hero_add_pc.svg) center center/cover no-repeat;
}
#hero .visualCase.visualSlide {
  border-top-right-radius: 300px;
  position: relative;
  height: calc(100vh - 140px);
}
#hero .visualCase.visualSlide .visualBox {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  animation-name: visualAnime;
  animation-fill-mode: backwards;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
#hero .visualCase.visualSlide .visualBox img {
  width: 100%;
  height: calc(100vh - 140px);
  -o-object-fit: cover;
     object-fit: cover;
  animation-name: visualImgAnime;
  animation-fill-mode: backwards;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: normal;
}
#hero .visualCase.visualSlide .visualBox:nth-child(2) {
  animation-delay: 5s;
}
#hero .visualCase.visualSlide .visualBox:nth-child(2) img {
  animation-delay: 5s;
}
#hero .visualCase.visualSlide .visualBox:nth-child(3) {
  animation-delay: 10s;
}
#hero .visualCase.visualSlide .visualBox:nth-child(3) img {
  animation-delay: 10s;
}
@keyframes visualAnime {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  33.3333% {
    opacity: 1;
  }
  36.3333% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes visualImgAnime {
  0% {
    transform: scale(1);
  }
  33.3333% {
    transform: scale(1.1);
  }
  90% {
    transform: scale(1.1);
  }
  91% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
#hero .titleBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 27vw;
  min-width: 390px;
  max-height: 70vh;
}
#hero .titleBox .title {
  width: 100%;
  max-height: 70vh;
}
#hero .titleBox .titleRead {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  color: var(--color-main);
}
#hero .titleBox .titleRead h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 10px;
}
#hero .titleBox .titleRead p {
  font-size: 16px;
  line-height: 160%;
}
#hero .scDown {
  position: absolute;
  right: 1.8%;
  top: 45%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
#hero .scDown .scDownArrow {
  animation: ease-in-out scDownMove 1s infinite;
}
@keyframes scDownMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  #hero .visualCase {
    height: 80vh;
    border-top-right-radius: 150px !important;
    transform: translateX(-5.2vw);
  }
  #hero .visualCase::after {
    background-image: url(../img/hero_add_sp.svg);
  }
  #hero .titleBox {
    width: 70vw;
    min-width: auto;
    max-width: 390px;
  }
}

#intro .inner > .title {
  margin-bottom: 40px;
}
#intro .inner > p {
  font-size: 16px;
  line-height: 160%;
  margin-top: 12px;
}
#intro .program_slide {
  margin-top: 80px;
}
#intro .program_slide .program_slide_attn {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
  text-align: center;
}
#intro .program_slide .program_slider .cardCase {
  justify-content: center;
  margin-top: 40px;
}
#intro .program_slide .program_slider .cardCase li {
  height: auto;
  aspect-ratio: 1/1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  display: block;
  position: relative;
}
#intro .program_slide .program_slider .cardCase li h4 {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0 0 24px 24px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  #intro .program_slide .program_slider .cardCase {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #intro .program_slide {
    margin-bottom: 40px;
  }
  #intro .program_slide .program_slider {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  #intro .program_slide .program_slider .cardCase {
    display: flex;
    gap: 30px;
    margin-bottom: 34px;
    width: -moz-max-content;
    width: max-content;
  }
  #intro .program_slide .program_slider .cardCase li {
    width: 240px;
  }
}

#program {
  border-top: 3px dashed var(--color-main);
  margin-top: 80px;
  padding-bottom: 80px;
}
#program .programLink {
  display: grid;
  margin-top: 40px;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#program .programLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 20px;
  font-weight: 700;
  background-color: var(--color-link);
  color: var(--color-white);
  padding: 19px 20px 17px;
  border-top-right-radius: 24px;
  position: relative;
  gap: 4px;
}
#program .programLink a span {
  font-size: 14px;
}
#program .programLink a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_pdf.svg) center center/contain no-repeat;
}

.programSchedule {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 80px;
  padding-bottom: 40px;
}
.programSchedule .programScheduleTable {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.programSchedule .programScheduleTable table {
  width: 100%;
  position: relative;
}
.programSchedule .programScheduleTable table::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -36px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-main);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.programSchedule .programScheduleTable table:last-child::after {
  display: none;
}
.programSchedule .programScheduleTable tr {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 2fr;
  gap: 2px;
  line-height: 130%;
}
.programSchedule .programScheduleTable tr th {
  background-color: var(--color-link-light);
  border-top-right-radius: 0;
}
.programSchedule .programScheduleTable tr th, .programSchedule .programScheduleTable tr td {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.programSchedule .programScheduleTable tr td {
  background-color: var(--color-sub-light);
  position: relative;
  border-radius: 0 0 12px 12px;
}
.programSchedule .programScheduleTable tr td.tableTime {
  color: white;
  background-color: var(--color-main);
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.programSchedule .programScheduleTable tr td.tableTime span {
  text-align: center;
  font-size: 12px;
}
.programSchedule a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  background-color: var(--color-link);
  z-index: 1;
  width: calc(100% - 20px);
  padding: 8px 30px 5px 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  color: var(--color-white);
  box-sizing: border-box;
}
.programSchedule a span {
  position: absolute;
  height: 50px;
  width: 50px;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--color-sub);
}
.programSchedule a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 19px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .programSchedule {
    flex-direction: row;
    align-items: flex-start;
  }
  .programSchedule .programScheduleTable {
    width: calc(100% - 270px);
  }
}
@media screen and (max-width: 768px) {
  .programSchedule {
    flex-direction: column;
    align-items: center;
  }
  .programSchedule .programScheduleTable {
    width: 100%;
  }
  .programSchedule a span {
    right: -12px;
    height: 40px;
    width: 40px;
  }
  .programSchedule a span::after {
    left: 14px;
    top: 10px;
  }
}

.programTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.programTitle h4 {
  width: 160px;
  height: 160px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-sub);
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 120%;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.programTitle h5 {
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 120%;
  text-align: center;
  color: var(--color-sub);
  font-weight: bold;
}
.programTitle h5 span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .programTitle {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .programTitle {
    width: 100%;
  }
  .programTitle h5 br {
    display: none;
  }
}

.programActiveBtn {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.programActiveBtn p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 150%;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-link);
}
.programActiveBtn p::before, .programActiveBtn p::after {
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  top: 15px;
  background-color: var(--color-link);
}
.programActiveBtn p::before {
  left: -100px;
  transform: rotate(30deg);
}
.programActiveBtn p::after {
  right: -100px;
  transform: rotate(-30deg);
}
.programActiveBtn a {
  background: var(--color-link);
  border-bottom-left-radius: 45px;
  box-sizing: border-box;
  color: #fff;
  padding: 30px 40px 26px;
  width: 60%;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  line-height: 140%;
  margin: 0 auto;
  position: relative;
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
}
.programActiveBtn a strong {
  font-size: 1.5rem;
}
.programActiveBtn a::after {
  content: url(../images/summer/arrow_right.svg);
  position: absolute;
  top: 30px;
  right: 15px;
}
.programActiveBtn .attn {
  text-align: center;
  padding: 0;
  line-height: 160%;
  font-size: 0.8rem;
  color: #999;
}
@media screen and (max-width: 768px) {
  .programActiveBtn p {
    font-size: 1rem;
  }
  .programActiveBtn p::before, .programActiveBtn p::after {
    width: 70px;
  }
  .programActiveBtn p::before {
    left: -70px;
  }
  .programActiveBtn p::after {
    right: -70px;
  }
  .programActiveBtn a {
    width: 100%;
    padding: 30px 30px 26px;
  }
  .programActiveBtn a::after {
    top: 32px;
    right: 15px;
  }
}

#area {
  padding: 80px 0 160px;
  margin: 0 auto;
  background: none;
}
#area .card {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
#area .card .programNum {
  position: absolute;
  top: 14px;
  right: -10px;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  line-height: 100%;
  color: white;
  font-weight: bold;
  background-color: var(--color-main);
  padding-top: 10px;
  box-sizing: border-box;
}
#area .card .programNum span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  padding-top: 4px;
  font-weight: bold;
  background-color: var(--color-white);
  color: var(--color-main);
  box-sizing: border-box;
}
#area .card .cardListBox {
  padding-top: 100px;
  width: 100%;
}
#area .card .cardListBox .cardListBoxInner {
  width: 100%;
  height: 100%;
  background-color: #63d1f2;
  box-sizing: border-box;
  padding: 40px 20px 60px;
  color: white;
  position: relative;
  border-top-left-radius: 60px;
}
#area .card .cardListBox h3 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-right: 12px;
  text-align: center;
  line-height: 140%;
}
#area .card .cardCheck {
  margin-top: 40px;
  padding: 30px 40px;
  background-color: var(--color-sub-light);
  border-radius: 16px;
}
#area .card .cardCheck ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#area .card .cardCheck ul li {
  color: var(--color-main);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
}
#area .card .cardCheck ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -13px;
  width: 36px;
  height: auto;
  aspect-ratio: 172/168;
  background: url(../img/check.svg) center center/contain no-repeat;
}
#area .card .cardTable {
  margin-top: 40px;
  width: 100%;
}
#area .card .cardTable tr {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 2px;
  line-height: 130%;
}
#area .card .cardTable tr th {
  background-color: var(--color-main);
}
#area .card .cardTable tr th:first-of-type {
  border-top-left-radius: 12px;
}
#area .card .cardTable tr th:last-of-type {
  border-bottom-left-radius: 12px;
}
#area .card .cardTable tr th, #area .card .cardTable tr td {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
#area .card .cardTable tr td {
  background-color: var(--color-sub-light);
  color: var(--color-main);
  position: relative;
}
#area .card .cardTable tr td:first-of-type {
  border-top-right-radius: 12px;
}
#area .card .cardTable tr td:last-of-type {
  border-bottom-right-radius: 12px;
}
#area .card .cardNavi {
  margin-top: 140px;
  border-radius: 12px;
  background-color: var(--color-white);
  padding: 170px 40px 40px;
  color: var(--color-main);
  position: relative;
}
#area .card .cardNavi .cardVisual {
  width: 240px;
  height: auto;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--color-main);
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
#area .card .cardNavi h3 {
  font-size: 30px;
}
#area .card .cardNavi p {
  margin-top: 12px;
  line-height: 150%;
}
#area .card .cardHighlight {
  margin-top: 60px;
}
#area .card .cardHighlight h4 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 20px 7px;
  background-color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin: 0;
}
#area .card .cardHighlight h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 0;
}
#area .card .cardHighlight p {
  line-height: 150%;
  margin: 0;
  padding: 0;
}
#area .card .cardHighlight .cardHighlightBox {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  height: 200px;
}
#area .card .cardHighlight .cardHighlightBox .cardVisual {
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
}
#area .card .cardHighlight .cardHighlightBox .cardVisual .navSp {
  display: none;
}
#area .card .cardHighlight .cardHighlightBox .cardBody {
  background-color: var(--color-white);
  color: var(--color-main);
  box-sizing: border-box;
  padding: 20px;
  width: calc(100% - 220px);
  border-radius: 12px;
  display: flex;
  gap: 40px;
  align-items: center;
}
#area .card .cardHighlight .cardHighlightBox .cardBody .cardImage {
  width: 160px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
#area .card .cardHighlight .cardHighlightBox .cardBody .cardImage.cardNotrim {
  border-radius: 0;
}
#area .card .cardHighlight .cardHighlightBox .cardBody .cardRead {
  width: calc(100% - 200px);
}
#area .card .cardHighlight .cardHighlightBox .cardBody.cardNoimage .cardRead {
  width: 100%;
}
#area .card .cardHighlight .cardHighlightBox.cardHighlightNogap {
  gap: 0;
}
#area .card .cardHighlight .cardHighlightBox.cardHighlightNogap .cardVisual {
  border-radius: 0;
  width: 220px;
}
#area .card .cardHighlight .cardHighlightBox.cardHighlightNogap .cardBody {
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 899px) {
  #area .card .cardHighlight .cardHighlightBox {
    height: auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  #area .card .cardHighlight .cardHighlightBox .cardVisual {
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 12px 12px 0 0;
  }
  #area .card .cardHighlight .cardHighlightBox .cardVisual .navPc {
    display: none;
  }
  #area .card .cardHighlight .cardHighlightBox .cardVisual .navSp {
    display: block;
  }
  #area .card .cardHighlight .cardHighlightBox .cardBody {
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 12px 12px;
  }
  #area .card .cardHighlight .cardHighlightBox .cardBody .cardImage {
    width: 240px;
  }
  #area .card .cardHighlight .cardHighlightBox .cardBody .cardRead {
    width: 100%;
  }
  #area .card .cardHighlight .cardHighlightBox.cardHighlightNogap .cardVisual {
    width: 100%;
    aspect-ratio: 200/176;
  }
  #area .card .cardHighlight .cardHighlightBox.cardHighlightNogap .cardBody {
    border-radius: 0 0 12px 12px;
  }
}
@media screen and (max-width: 768px) {
  #area {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 80px;
  }
  #area .card .programNum {
    top: -60px;
    right: 50%;
    width: 100px;
    height: 100px;
    font-size: 14px;
    transform: translateX(50%);
  }
  #area .card .cardListBox h3 {
    padding-top: 20px;
    padding-right: 0;
    font-size: 24px;
  }
  #area .card .cardCheck {
    margin-top: 20px;
    padding: 30px 20px;
  }
  #area .card .cardNavi {
    padding: 140px 20px 20px;
  }
  #area .card .cardNavi h3 {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */