@charset "utf-8";
/*=========================
  Common
=========================*/
/* color */ :root {
  --blue: #036eb8;
  --green: #20afbd;
  --pink: #ee2683;
  --pink2: #e85298;
  --yellow: #fff67e;
  --red: #e01212;
}
.font-mplus1 {
  font-family: 'M PLUS 1', sans-serif;
}
.font-noto {
  font-family: 'Noto Sans JP', sans-serif;
}
html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 0px;
  }
} */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  position: relative;
}
a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.7;
    }
  }
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  line-height: 1.6;
  text-align: justify;
  @media (max-width: 960px) {
    /* font-size: 1rem; */
  }
}
h1, h2, h3, h4, h5, h6 {
  /* line-height: 1; */
  font-size: inherit;
  font-weight: inherit;
}
.pc-only {
  display: initial;
}
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: initial;
  }
}
/* .container {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin-inline: auto;
} */
/*=========================
  header
=========================*/
header {
  border-top: 10px solid #004da0;
}

header .header__wrapper {
  padding: 35px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 960px) {
  header .header__wrapper {
    padding: 1rem;
  }
}

header .header__logo {
  margin-right: 1rem;
}

header .header__logo h1 {
  width: 222px;
}

@media (max-width: 960px) {
  header .header__logo h1 {
    width: 130px;
  }
}

header .header__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  header .header__cta {
    display: none;
  }
}

header .header__ctaTel .tel {
  color: #036eb8;
  display: flex;
  align-items: center;
  font-size: 34px;
  font-weight: 600;
}

header .header__ctaTel .icon {
  margin-right: 0.5rem;
}

header .header__ctaTel .row2 {
  font-size: 11px;
  font-weight: 600;
}

header .header__ctaContact {
  border-radius: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  background-color: #EE2683;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  header .header__ctaContact:hover {
    transform: translateY(2px);
    box-shadow: none;
  }
}

header .header__ctaContact::before {
  content: '';
}

header .header__ctaContact .text {
  text-align: center;
  text-wrap: balance;
  color: #fff;
  font-weight: 600;
}

header .header__ctaContact .text .row1 {
  font-size: 22px;
}

header .header__ctaContact .text .row2 {
  font-size: 13px;
}

/*=========================
  FV
=========================*/
section.fv {
  background: url(../img/fv-bg.png) no-repeat;
  background-size: cover;
}

section.fv .fv__inner {
  position: relative;
}

section.fv .fv__copy {
  width: calc(740 / 1300 * 100vw);
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}

@media (max-width: 768px) {
  section.fv .fv__copy {
    width: calc(333 / 375 * 100vw);
    position: static;
    transform: none;
    padding-top: 2rem;
    z-index: auto;
    display: block;
    margin-left: 2.5rem;
    margin-right: auto;
  }
}


section.fv .fv__img {
  width: 50%;
  margin-left: auto;
  padding-top: 3rem;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  section.fv .fv__img {
    width: 100%;
    padding-top: 0rem;
  }
}


/*=========================
  cta
=========================*/
section.cta {
  position: relative;
  z-index: 2;
  background: #D0F8FF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 4rem;
  padding-top: 100px;
}

@media (max-width: 768px) {
  section.cta {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
}

section.cta .container {
  width: calc(100% - 2rem);
  max-width: 1100px;
  margin-inline: auto;
}

section.cta .campaign-illust {
  position: absolute;
  top: 0;
  left: 25%;
  translate: -110% -50%;
  width: 300px;
  z-index: 3;
}

@media (max-width: 768px) {
  section.cta .campaign-illust {
    width: 130px;
    translate: -80% -40%;
  }
}

section.cta .cta__label {
  background: var(--pink);
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0;
  margin-bottom: 4rem;
}

@media (max-width: 960px) {
  section.cta .cta__label {
    margin-bottom: 3rem;
  }
}

section.cta  .cta_text_01 {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}

section.cta  .cta_text_01 img {
  height: auto;
}

@media (max-width: 768px) {
  .cta_text_01 {
    width: 210px !important;
    height: auto !important;
    max-width: none !important;
  }
}


@media (max-width: 768px) {
  section.cta  .cta_text_01 {
    width: 90%;
    margin-bottom: 1.75rem;
  }
}

section.cta  .cta_text_02 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}

@media (max-width: 768px) {
  section.cta  .cta_text_02 {
    width: 90%;
    margin-bottom: 3.75rem;
  }
}

section.cta .cta__label span:nth-child(1) {
  font-size: 1.5625rem;
  line-height: 1;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 3px 0 6px;
  margin-top: 4px;
  margin-right: 0.5rem;
}

@media (max-width: 960px) {
  section.cta .cta__label span:nth-child(1), section.cta .cta__label span:nth-child(4) {
    font-size: 1rem;
    margin-right: 0.25rem;
  }
}

section.cta .cta__label span:nth-child(4) {
  font-size: 1.5625rem;
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 10px;
}

section.cta .cta__label span:nth-child(2) {
  font-size: 1.875rem;
  margin-right: 1rem;
}

@media (max-width: 960px) {
  section.cta .cta__label span:nth-child(2) {
    font-size: 1.25rem;
    margin-right: 0.5rem;
  }
}

section.cta .cta__label span:nth-child(3) {
  color: var(--yellow);
  font-size: 2.375rem;
  font-weight: 800;
}

@media (max-width: 960px) {
  section.cta .cta__label span:nth-child(3) {
    font-size: 1.75rem;
  }
}

section.cta .flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  section.cta .flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

section.cta .tel-wrapper, section.cta .contact-wrapper {
  width: 50%;
}

@media (max-width: 768px) {
  section.cta .tel-wrapper, section.cta .contact-wrapper {
    width: min(90%, 490px);
  }
}

section.cta .tel-wrapper .text {
  display: inline-block;
  width: fit-content;
  font-size: 0.875rem;
  margin: 1rem 0 0 5rem;
}

@media (max-width: 768px) {
  section.cta .tel-wrapper .text {
    display: block;
    margin: 1rem auto 0;
  }
}

section.cta .cta__button {
  min-height: 100px;
  line-height: 1.3;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  section.cta .cta__button:hover {
    transform: scale(1.1, 1.1);
  }
}

@media (max-width: 768px) {
  section.cta .cta__button {
    min-height: 78px;
  }
}

section.cta .cta__button--tel {
  background-color: #fff;
  border-radius: 60px;
  border: 3px solid var(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.75rem 1.5rem;
}

section.cta .cta__button--tel .row1 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  section.cta .cta__button--tel .row1 {
    font-size: 0.875rem;
  }
}

section.cta .cta__button--tel .row2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.125rem;
  font-weight: 600;
  color: var(--pink);
}

@media (max-width: 768px) {
  section.cta .cta__button--tel .row2 {
    font-size: 1.5rem;
  }
}

section.cta .cta__button--tel .row2 .icon {
  margin-right: 10px;
}

@media (max-width: 768px) {
  section.cta .cta__button--tel .row2 .icon {
    width: 20px;
    margin-right: 5px;
  }
}

section.cta .cta__button--contact {
  background-color: var(--pink);
  border-radius: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
  section.cta .cta__button--contact {
    gap: 0.5rem;
  }
}

section.cta .cta__button--contact::before {
  content: '';
}

section.cta .cta__button--contact .text {
  text-align: center;
  text-wrap: balance;
  color: #fff;
  font-weight: 600;
}

section.cta .cta__button--contact .text .row1 {
  font-size: 1.875rem;
}

@media (max-width: 768px) {
  section.cta .cta__button--contact .text .row1 {
    font-size: 1.25rem;
  }
}

section.cta .cta__button--contact .text .row2 {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  section.cta .cta__button--contact .text .row2 {
    font-size: 0.875rem;
  }
}

section.cta .cta__button--contact .icon {
  width: 28px;
}

@media (max-width: 768px) {
  section.cta .cta__button--contact .icon {
    width: 20px;
  }
}

section.cta .cta__button--date {
  background-color: var(--blue);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 60px;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  section.cta .cta__button--date {
    font-size: 1.25rem;
  }
}

/*=========================
  course
=========================*/
section.course {
    position: relative;
    background: #CBE3FF;
    background-image: url(../img/course_top_bg.png);
    background-repeat: no-repeat;
	background-position: center -240px;
    padding-top: 100px;
    padding-bottom: 100px;
}

section.course:nth-child(1 of .course) {
  background-image: none !important; 
}


@media (max-width: 768px) {
  section.course {
    padding-top: 2rem;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
    background-image: url(../img/course_top_bg.png);
    background-repeat: no-repeat;
    background-position: center -100px;
    background-size: 80%;
  }
}

section.course .course_ttl {
    display: block;
    max-width: 650px;
    width: 100%;
    padding-right: auto;
    padding-left: auto;
    padding-bottom: 3.75rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
  section.course .course_ttl {
    width: 190px;
    height: auto;
	 padding-bottom: 1.5rem;
  }
}

.course-tabs .tabs {
    width: 1100px;
    margin-top: 5.75rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
.course-tabs .tabs {
	margin-top: 2.5rem;
}
}

@media (max-width: 768px) {
.course-tabs.second {
	margin-top: 1.5rem;
}
}

.course-tabs .tab-content {
  max-width: 1100px;
  margin: 0 auto;
}

.course-tabs .tab {
    width: 178px;
    height: 64px;
    line-height: 64px;
    padding: 0;
    text-align: center;
    background-color: #929292;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 24px;
}

.course-tabs .tab.active {
  background-color: #E43F29;
}

.course-tabs .tab.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #E9002D;
}

.course-tabs.second {
    background-color: #CBE3FF;
    max-width: 1100px;
    margin-top: 4.75rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}

.course-tabs.second .tabs {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
}

.course-tabs.second .tab {
    width: 178px;
    height: 64px;
    line-height: 64px;
    padding: 0;
    text-align: center;
    background-color: #929292;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 24px;
}

.course-tabs.second .tab.active {
  background-color: #2BAE2B;
}

.course-tabs.second .tab.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #00AA3D;
}

.course-tabs.second .tab-content {
  text-align: center;
}


.course-tabs .tab-content .main-image,
.course-tabs.second .main-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}



@media (max-width: 768px) {
  .course-tabs {
    margin-bottom: 40px;
  }
	
  .course-tabs,
  .course-tabs.second {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .course-tabs .tabs,
  .course-tabs.second .tabs {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 0.5rem;
	padding: 0 0.5rem;
  }

.course-tabs .tab,
.course-tabs.second .tab {
  height: 37px !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: normal !important;
}


  .course-tabs .tab-content,
  .course-tabs.second .tab-content {
    box-sizing: border-box;
    width: 100%;
    margin-right: -10px;
    margin-top: 10px;
  }

  .course-tabs .tab-content .main-image {
  width: 96% !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.course-tabs.second .tab-content .main-image {
  width: 96% !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}
}


section.course .course_ttl_02 {
    display: block;
    max-width: 350px;
    width: 100%;
    padding-right: auto;
    padding-left: auto;
    padding-bottom: 3.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding-top: 1.75rem;
}

@media (max-width: 768px) {
  section.course .course_ttl_02 {
    max-width: 80%;
    max-width: 300px;
    margin-top: 40px;
	padding-bottom: 2rem;
  }
}

.accordion-item {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .accordion-item {
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    box-sizing: border-box;
  }
}

.accordion-item__title {
  cursor: pointer;
  background-color: var(--blue);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .accordion-item__title {
    font-size: 1.25rem;
  }
}

.accordion-item__title .icon {
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 2px solid #fff;
  position: relative;
}

.accordion-item__title .icon::before,
.accordion-item__title .icon::after {
  content: '';
  display: block;
  background-color: #fff;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item__title .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.4s ease;
}

.accordion-item__body {
  background-color: #fff;
}

.accordion-item__body .inner {
  max-width: 600px;
  margin-inline: auto;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .accordion-item__body .inner {
    padding: 2rem 0;
    width: 90%;
  }
}

.accordion-item__table {
  margin-bottom: 1.5rem;
}

.accordion-item__table .table-title {
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 1rem;
  border: 1px solid var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item__table .table-title .icon {
  width: 20px;
  aspect-ratio: 1/1;
  position: relative;
}

.accordion-item__table .table-title .icon::before,
.accordion-item__table .table-title .icon::after {
  content: '';
  display: block;
  background-color: var(--blue);
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item__table .table-title .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.4s ease;
}

.accordion-item__table .table-body .row {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-bottom: 1px solid var(--blue);
}

@media (max-width: 768px) {
  .accordion-item__table .table-body .row {
    grid-template-columns: auto 40%;
    font-size: 0.75rem;
  }
}

.accordion-item__table .table-body .button {
  margin-top: 1rem;
  background-color: var(--pink);
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 200px;
  margin-inline: auto;
  padding: 0.5rem 1.5rem;
  color: #fff;
  font-weight: 600;
}

.accordion-item__table .table-body .button .icon {
  width: 16px;
}

.accordion-item__body .annotation {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.accordion-item__body,
.accordion-item__table .table-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.accordion-item__body.is-open,
.accordion-item__table .table-body.is-open {
  max-height: 9000px;
}

.accordion-item__title.is-active .icon::after,
.accordion-item__table .table-title.is-active .icon::after {
  transform: rotate(180deg) !important;
  opacity: 0;
}

.accordion-item__table .table-body .th {
  width: 120px;
  flex-shrink: 0;
}

.accordion-item__table .table-body .td {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.accordion-item .course-block {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.accordion-item .badge {
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  width: 150px;
  text-align: center;
  margin-right: 0.75rem;
  margin-left: 0;
}

.accordion-item .badge--red {
  background-color: #e53935;
}

.accordion-item .badge--green {
  background-color: #43a047;
}

.accordion-item .time {
  font-size: 0.875rem;
  color: #333;
}

@media (max-width: 768px) {
  .accordion-item__table .table-body .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .accordion-item__table .table-body .th {
    width: 100%;
  }

  .accordion-item__table .table-body .td {
    width: 100%;
  }

  .accordion-item .course-block {
    justify-content: flex-start;
  }
}

.accordion-item.open_bnr {
    margin-top: 2.5rem;
    max-width: 1100px;
    color: #E43F29;
    box-sizing: border-box;
}

.accordion-item.open_bnr .accordion-item__title {
    background-color: #fff;
    color: #E43F29;
    border: 3px solid #E43F29;
    padding-top: 1.25rem;
    padding-right: 2.25rem;
    padding-bottom: 1.25rem;
    padding-left: 2.25rem;
}

@media (max-width: 768px) {
  .accordion-item.open_bnr .accordion-item__title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
.accordion-item.open_bnr .accordion-item__title {
  padding: 0.5rem 1.25rem;
}
}

.accordion-item.open_bnr .accordion-item__title .icon {
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 2px solid #E43F29;
  position: relative;
}

.accordion-item.open_bnr .accordion-item__title .icon::before,
.accordion-item.open_bnr .accordion-item__title .icon::after {
  content: '';
  display: block;
  background-color: #E43F29;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.open_bnr .accordion-item__title .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.4s ease;
}

.accordion-item.open_bnr.open .accordion-item__title .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-item.open_bnr .accordion-item__body {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

.accordion-item.open_bnr .accordion-item__body .inner {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.accordion-item.open_bnr .accordion-item__table {
  padding: 0;
  margin: 0;
  border: none;
}

.top_bnr_image {
  display: block;
  width: 100%;
  height: auto;
  border: none;
}


.accordion-item.open_bnr_g {
  margin-top: 2.5rem;
  max-width: 1100px;
  color: #29AA29;
  box-sizing: border-box;
}

.accordion-item.open_bnr_g .accordion-item__title {
  background-color: #fff;
  color: #29AA29;
  border: 3px solid #29AA29;
  padding-top: 1.25rem;
  padding-right: 2.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2.25rem;
}

@media (max-width: 768px) {
  .accordion-item.open_bnr_g .accordion-item__title {
    font-size: 20px;
    padding: 0.5rem 1.25rem;
  }
}

.accordion-item.open_bnr_g .accordion-item__title .icon {
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  border: 2px solid #29AA29;
  position: relative;
}

.accordion-item.open_bnr_g .accordion-item__title .icon::before,
.accordion-item.open_bnr_g .accordion-item__title .icon::after {
  content: '';
  display: block;
  background-color: #29AA29;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.open_bnr_g .accordion-item__title .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.4s ease;
}

.accordion-item.open_bnr_g.open .accordion-item__title .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-item.open_bnr_g .accordion-item__body {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

.accordion-item.open_bnr_g .accordion-item__body .inner {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.accordion-item.open_bnr_g .accordion-item__table {
  padding: 0;
  margin: 0;
  border: none;
}

/*=========================
 plan
=========================*/
section.plan {
    position: relative;
    background: #87E4F5;
   background-image: url(../img/course_top_bg.png);
    background-repeat: no-repeat;
	background-position: center -240px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
 
section.plan .plan_ttl {
    display: block;
    max-width: 527px;
    width: 100%;
    padding-right: auto;
    padding-left: auto;
    padding-bottom: 3.75rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
  section.plan {
    padding-top: 2rem;
    padding-bottom: 2rem;
	ackground-image: url(../img/course_top_bg.png);
    background-repeat: no-repeat;
    background-position: center -100px;
    background-size: 80%;
  }
}

@media (max-width: 768px) {
section.plan .plan_ttl {
    width: 144px;
    height: auto;
  }
}

section.plan .plan_detail {
  display: block;
  max-width: 980px;
  width: 100%;
  margin: 0 auto 3.125rem;
  height: auto;
}

@media (max-width: 768px) {
  .plan_detail {
    width: 100%;
    height: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
      background: none;
      position: relative;
    }


/*=========================
  cta lower
=========================*/
section.cta_lower {
  background: #D0F8FF;
  position: relative;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  section.cta_lower {
    padding: 0 0 4rem;
  }
}

section.cta_lower .illust-container {
  position: absolute;
  inset: 0;
  max-width: 1800px;
  background: url(../img/ctaLower-img.svg) no-repeat;
  background-position: 100% -70%;
}

@media (max-width: 768px) {
  section.cta_lower .illust-container {
    position: relative;
	background: none;
  }

  section.cta_lower .illust-container .img-sp {
    display: block;
    width: 100%;
    margin-inline: auto;
  }
}

section.cta_lower .illust-container .img-sp {
  display: none;
}

@media (max-width: 768px) {
section.cta_lower .illust-container .img-sp  {
    display: block !important;
    width: 100%;
    height: auto;
    margin-inline: auto;
  }
}

section.cta_lower .container {
  position: relative;
  z-index: 2;
  width: calc(100% - 2rem);
  max-width: 1100px;
  margin-inline: auto;
}

section.cta_lower .label {
  background-color: var(--blue);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3rem;
  padding: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
  section.cta_lower .label {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

section.cta_lower .section-title {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  section.cta_lower .section-title {
    margin-bottom: 2rem;
  }

  section.cta_lower .section-title img {
    width: 288px;
  }
}

section.cta_lower .section-title img {
  margin-inline: auto;
}

section.cta_lower .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

@media (max-width: 768px) {
  section.cta_lower .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

section.cta_lower .tel-wrapper,
section.cta_lower .contact-wrapper {
  width: 50%;
}

@media (max-width: 768px) {
  section.cta_lower .tel-wrapper,
  section.cta_lower .contact-wrapper {
    width: min(90%, 490px);
  }
}

section.cta_lower .tel-wrapper .text {
  display: inline-block;
  width: fit-content;
  font-size: 0.875rem;
  margin: 1rem 0 0 5rem;
}

@media (max-width: 768px) {
  section.cta_lower .tel-wrapper .text {
    display: block;
    margin: 1rem auto 0;
  }
}

section.cta_lower .cta-button {
  min-height: 100px;
  line-height: 1.3;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  section.cta_lower .cta-button:hover {
    transform: scale(1.1, 1.1);
  }
}

@media (max-width: 768px) {
  section.cta_lower .cta-button {
    min-height: 78px;
  }
}

section.cta_lower .cta-button--tel {
  background-color: #fff;
  border-radius: 60px;
  border: 3px solid var(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.75rem 1.5rem;
}

section.cta_lower .cta-button--tel .row1 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  section.cta_lower .cta-button--tel .row1 {
    font-size: 0.875rem;
  }
}

section.cta_lower .cta-button--tel .row2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.125rem;
  font-weight: 600;
  color: var(--pink);
}

@media (max-width: 768px) {
  section.cta_lower .cta-button--tel .row2 {
    font-size: 1.5rem;
  }

  section.cta_lower .cta-button--tel .row2 .icon {
    width: 20px;
    margin-right: 5px;
  }
}

section.cta_lower .cta-button--tel .row2 .icon {
  margin-right: 10px;
}

section.cta_lower .cta-button--contact {
  background-color: var(--pink);
  border-radius: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
  section.cta_lower .cta-button--contact {
    gap: 0.5rem;
  }
}

section.cta_lower .cta-button--contact::before {
  content: '';
}

section.cta_lower .cta-button--contact .text {
  text-align: center;
  text-wrap: balance;
  color: #fff;
  font-weight: 600;
}

section.cta_lower .cta-button--contact .text .row1 {
  font-size: 1.875rem;
}

@media (max-width: 768px) {
  section.cta_lower .cta-button--contact .text .row1 {
    font-size: 1.25rem;
  }

  section.cta_lower .cta-button--contact .text .row2 {
    font-size: 0.875rem;
  }

  section.cta_lower .cta-button--contact .icon {
    width: 20px;
  }
}

section.cta_lower .cta-button--contact .text .row2 {
  font-size: 1.125rem;
}

section.cta_lower .cta-button--contact .icon {
  width: 28px;
}

/* campaign_video */
section.campaign_video {
  padding-block: 3rem;
  padding-inline: 1rem;
}

section.campaign_video .campaign_video_container {
  text-align: center;
}

section.campaign_video .campaign_video_container iframe {
  width: 100%;
  max-width: 523px;
  height: auto;
  margin: 10px auto 0;
  aspect-ratio: 16 / 9;
  position: relative;
}

/*=========================
  footer
=========================*/
footer {
  background-color: #fff;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0;
  }
}

footer .footer__wrapper {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  footer .footer__wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

footer .footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

footer .footer__links .footer__link {
  font-size: 0.875rem;
  line-height: 1.2;
  border-bottom: 1px solid #333;
}

@media (max-width: 768px) {
  footer .footer__links .footer__link {
    font-size: 0.75rem;
  }
}

footer .footer__copyright {
  font-size: 0.75rem;
}
