@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: var(--site-primary-inbox);
  margin: 0 auto;
  inset: 1rem auto auto 0;
  gap: 1rem 2rem;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -1.5rem 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 30rem;
  margin: 0 0 4.5rem auto;
}
.global-select select {
  padding: 1.5rem 3.7rem 1.5rem 1.5rem;
}

/*
# c-tel
------------------------*/
.c-tel {
  font-size: var(--font-size-30);
  line-height: 0.75;
  letter-spacing: 0.02em;
}
.c-tel small {
  font-size: var(--font-size-20);
}
.c-tel__text {
  width: 22.6rem;
  line-height: 0.85;
}

/*
# c-worktime
------------------------*/
.c-worktime {
  letter-spacing: 0;
  text-align: center;
}
.c-worktime__title {
  font-size: var(--font-size-15);
  line-height: 1.4;
}
.c-worktime__content {
  line-height: 1.8;
  font-size: var(--font-size-16);
}

/*
# c-sns__buttons
------------------------*/
.c-sns__buttons {
  gap: 1rem 2.3rem;
  width: -moz-fit-content;
  width: fit-content;
}
.c-sns__buttons .c-sns__button-link {
  width: 18.6rem;
}

/*
# c-sns__icons
------------------------*/
.c-sns__icons {
  width: -moz-fit-content;
  width: fit-content;
  gap: 3.3rem;
}

/*
# c-contact
------------------------*/
.c-contact {
  position: relative;
  z-index: 3;
}
.c-contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 21.5rem;
  inset: -21.3rem 0 auto;
  -webkit-mask: url(../img/top/contact_frame.png) bottom center/100% no-repeat;
          mask: url(../img/top/contact_frame.png) bottom center/100% no-repeat;
  background: var(--primary-color);
}
.c-contact__inbox {
  padding: 10.5rem 0 12.2rem;
  z-index: 2;
}
.c-contact__title {
  position: absolute;
  inset: -9.5rem 0 auto;
  text-align: center;
}
.c-contact__title .title-en {
  padding-left: 0 !important;
}
.c-contact__title .title-en::before, .c-contact__title .title-en::after {
  position: absolute;
  content: "";
  width: 2.9rem !important;
  height: 4rem !important;
  background: url(../img/top/contact-ttl-en_shape.svg) center/100% no-repeat !important;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 0 !important;
}
.c-contact__title .title-en::before {
  left: -5rem !important;
}
.c-contact__title .title-en::after {
  transform: scale(-1, 1);
  right: -4.5rem;
}
.c-contact__list {
  padding: 6rem 0;
  background: url(../img/top/contact-list_bdr.png) top center repeat-x, url(../img/top/contact-list_bdr.png) bottom center repeat-x;
  gap: 4.5rem 4.4rem;
}
.c-contact__item .c-tel__num {
  text-align: center;
  font-size: 6rem;
  color: var(--color-white);
}
.c-contact__item .c-tel__num small {
  font-size: var(--font-size-30);
}
.c-contact__item .c-tel__text {
  margin: 0 auto;
  line-height: 1.5;
}
.c-contact__item .c-tel__text img {
  filter: brightness(0) invert(1);
}
.c-contact__button {
  width: 28rem !important;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 2rem 0;
}
.com-table tr th {
  padding: 0 1rem;
  width: 18rem;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 18rem);
  padding: 0 2rem;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 4rem;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 50rem;
}
#g-map .map iframe {
  border-radius: 2rem;
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding: 0 3.85rem 0 1.8rem;
  color: var(--color-white);
  background: var(--primary-color);
}
.button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0px 0.7rem 1rem;
  border-color: transparent transparent transparent var(--color-white);
  inset: 0 7% 0 auto;
  margin: auto 0;
  z-index: 1;
}
.button--primary {
  min-width: 15.4rem;
  border-radius: var(--button-radius-pc);
  min-height: 4.6rem;
}
.button--secondary {
  border-radius: 1.4rem;
  min-height: 6rem;
  width: 37.4rem;
  padding-left: 4rem;
}
.button--secondary.bg-color-green {
  background: var(--color-line);
}
.button--secondary.bg-color-white {
  background: var(--color-white);
  color: var(--primary-color);
}
.button--secondary.bg-color-white::after {
  border-color: transparent transparent transparent var(--primary-color);
}
.button:hover {
  opacity: 1;
  background: var(--color-blue-gray);
  color: var(--color-white);
}
.button:hover::after {
  right: 4%;
  border-color: transparent transparent transparent var(--color-white);
}

.primary-box {
  border: 2px solid;
  padding: 3.5rem;
  background: var(--color-white);
  border-radius: 1.4rem;
}

/*==========================================
共通タイトル
===========================================*/
.title--primary {
  margin-bottom: 5rem;
}
.title--primary.align-center {
  text-align: center;
}
.title--primary .title-en {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  font-family: var(--font-secondary);
  letter-spacing: 0.2em;
  position: relative;
  padding-left: 3rem;
  text-transform: uppercase;
}
.title--primary .title-en::before {
  position: absolute;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--body-font-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.title--primary.color-white .title-en::before {
  background: var(--color-white);
}
.title--primary .title-ja {
  display: block;
  font-size: var(--font-size-54);
  font-weight: var(--font-weight-black);
  line-height: 1.7037037037;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

.title--secondary {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  line-height: 1.7142857143;
}

/*==========================================
header
===========================================*/
.logo {
  width: 22rem;
  display: block;
}

.l-header {
  width: 93.75%;
  margin: 0 auto;
  padding: 2rem 5rem 2.5rem;
  border-radius: 8rem;
  inset: 3rem 0 auto;
  z-index: 1001;
}
.l-header__logo {
  line-height: 2;
}
.l-header__info {
  gap: 1.7rem;
}
.l-header .c-sns__button-link {
  width: 15.4rem;
}
.l-header .c-sns__button-link::after {
  right: 13%;
}
.l-header__nav {
  margin-top: 0.5rem;
}
.l-header__nav-list {
  gap: 1.2rem 3rem;
}
.l-header__nav-link {
  font-size: var(--font-size-16);
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  display: block;
  position: relative;
}
.l-header__nav-link::before, .l-header__nav-link::after {
  content: "";
  width: 0;
  bottom: 0.2rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  display: block;
}
.l-header__nav-link::before {
  left: 25%;
}
.l-header__nav-link:after {
  right: 25%;
}
.l-header__nav-link:hover {
  color: var(--primary-color);
}
.l-header__nav-link:hover::before, .l-header__nav-link:hover::after {
  width: 25%;
  border-bottom: 1px solid var(--primary-color);
}
.l-header__nav-link.current {
  color: var(--primary-color);
}
.l-header__nav-link.current::before, .l-header__nav-link.current::after {
  border: none;
}
.l-header__nav-link.current:hover::before, .l-header__nav-link.current:hover::after {
  border: none;
}
.l-header__buttons {
  gap: 2.4rem;
}
.l-header__button {
  margin-top: 0.8rem;
}
.l-header__button-link {
  font-size: var(--font-size-16);
}

/*==========================================
mv
===========================================*/
.p-top__mv {
  height: 93rem;
  background: url(../img/top/mv_bg.jpg) center/cover no-repeat;
}
.p-top__mv-inner {
  inset: auto auto 20.5rem 7.2rem;
}
.p-top__mv-catch-label {
  width: 16rem;
  font-size: var(--font-size-26);
  padding: 0 1.5rem;
  margin: 0 2.5rem 0.5rem auto;
  text-align: center;
}
.p-top__mv-catch-main {
  letter-spacing: 0.1em;
  font-size: 5.8rem;
  line-height: 1.7413793103;
  text-shadow: 1px 3px 10px rgba(0, 0, 0, 0.15);
}
.p-top__mv-text {
  width: 51rem;
  text-align: center;
  font-size: var(--font-size-24);
  inset: 22rem -6.5rem auto auto;
}
.p-top__mv-text span {
  margin-bottom: 1.5rem;
  line-height: 2.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.p-top__mv-text span:last-child {
  margin-bottom: 0;
}

/*==========================================
footer
===========================================*/
.l-footer {
  padding: 7rem 0 8.5rem;
  border-top: 2px solid var(--primary-color);
}
.l-footer__left {
  width: 39.5rem;
}
.l-footer__logo {
  margin-bottom: 3.5rem;
}
.l-footer__address {
  gap: 3rem 2rem;
}
.l-footer__address-location {
  letter-spacing: 0;
  font-size: var(--font-size-16);
}
.l-footer__right {
  width: 40rem;
  gap: 3.4rem;
}
.l-footer .sns__button--tiktok .c-sns__button-link {
  background: var(--color-black);
}
.l-footer .sns__button--youtube .c-sns__button-link {
  background: var(--color-youtube);
}
.l-footer__nav {
  padding: 2rem 21.5rem 4.5rem;
  border-top: 1px solid var(--primary-color);
  margin-top: 5.5rem;
}
.l-footer__nav-list {
  gap: 0 2.8rem;
  line-height: 1.6;
}
.l-footer__nav-link {
  font-size: var(--font-size-16);
}
.l-footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  letter-spacing: 0;
}
#copyright small {
  font-size: var(--font-size-16);
}

/*==========================================
下層共通スタイル
===========================================*/
/*==========================================
sv
===========================================*/
.sv {
  height: 66rem;
}
.sv__title {
  width: 81.8rem;
  margin: 0 auto;
  inset: auto 0 17rem;
  text-align: center;
  padding: 1.5rem 0;
  font-size: var(--font-size-44);
  font-weight: var(--font-weight-black);
  line-height: 1.4;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.p-about__sv {
  background: url(../../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

.p-learning__sv {
  background: url(../../img/sv/learning-sv_bg.jpg) center/cover no-repeat;
}

.p-course__sv {
  background: url(../../img/sv/course-sv_bg.jpg) center/cover no-repeat;
}

.p-info__sv {
  background: url(../../img/sv/info-sv_bg.jpg) center/cover no-repeat;
}

.p-news__sv {
  background: url(../../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

.p-contact__sv {
  background: url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

.p-complete__sv {
  background: url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

.p-privacy__sv {
  background: url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

.p-site__sv {
  background: url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

.p-e404__sv {
  background: url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
.section-headline {
  position: relative;
}
.section-headline__text--en, .section-headline__text--chs {
  position: absolute;
}
.section-headline__text--chs {
  width: 41.8rem;
  inset: 9.8rem -2rem auto auto;
}
.section-headline__text--en {
  width: 87.6rem;
  inset: 39rem auto auto -19rem;
}
.section-headline.deco--circle-text::before {
  inset: 39.8rem -24.2rem auto auto;
}

.deco--circle-text {
  position: relative;
}
.deco--circle-text::before {
  position: absolute;
  content: "";
  width: 48.4rem;
  height: 48.4rem;
  -webkit-mask: url(../img/common/com_deco.svg) center/100% no-repeat;
          mask: url(../img/common/com_deco.svg) center/100% no-repeat;
}

/*
# p-top-worries
------------------------*/
.p-top-worries {
  padding: 12rem 0 13.5rem;
}
.p-top-worries.deco--circle-text::before {
  background: var(--color-mint-green);
  z-index: 1;
}
.p-top-worries.deco--circle-text::after {
  background: none;
}
.p-top-worries .bg-deco--circle::before {
  width: 27rem;
  height: 27rem;
  background: var(--color-blue-gray);
  inset: 25rem auto auto -13.5rem;
}
.p-top-worries__inbox {
  position: relative;
  z-index: 3;
}
.p-top-worries__image--rt {
  width: 42rem;
  position: absolute;
  inset: 4rem -6.2rem auto auto;
}
.p-top-worries__title {
  margin-bottom: 7.5rem;
}
.p-top-worries__list {
  gap: 4rem;
}
.p-top-worries__item {
  width: 52rem;
  font-size: var(--font-size-24);
  line-height: 1.4166666667;
  padding: 2.5rem 2.5rem 2.5rem 9rem;
}
.p-top-worries__item::before {
  width: 5rem;
  height: 5rem;
  background: var(--primary-color-light);
  border-radius: 50%;
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-35);
  inset: 0 auto 0 2.2rem;
}
.p-top-worries__image--lb {
  position: absolute;
  inset: auto auto -10.5rem 3rem;
  width: 48.5rem;
  z-index: 2;
}

/*
# p-top-about
------------------------*/
.p-top-about {
  padding: 21rem 0 19.5rem;
  background: url(../img/top/about_bg.jpg) center/cover no-repeat;
  z-index: 1;
}
.p-top-about::after {
  background: var(--body-background);
}
.p-top-about__subtitle {
  margin-bottom: 6.5rem;
}
.p-top-about__content {
  width: 82rem;
}
.p-top-about__images {
  width: 75rem;
  position: absolute;
  inset: 19rem 0 auto auto;
  z-index: -1;
}
.p-top-about__images .about__image--hero img {
  border-radius: 9.2rem 0 0 9.2rem;
}
.p-top-about__images .about__image--sub {
  width: 29rem;
  position: absolute;
  inset: auto auto -26.7rem 8.2rem;
}
.p-top-about__button {
  margin-top: 8rem;
}

/*
# p-top-flow
------------------------*/
.section-speak {
  position: relative;
  z-index: 1;
}
.section-speak__text--en, .section-speak__text--chs {
  position: absolute;
  z-index: -1;
}
.section-speak__text--en {
  width: 49.9rem;
  inset: 1.5rem -2.5rem auto auto;
}
.section-speak__text--chs {
  width: 46.4rem;
  inset: auto auto 37.8rem -0.5rem;
}

.p-top-flow {
  padding: 8.5rem 0 35.3rem;
  z-index: 1;
}
.p-top-flow.deco--circle-text::before {
  inset: -38.7rem auto auto -24.2rem;
  background: var(--color-beige);
}
.p-top-flow .section-speak__text--en {
  top: -10rem;
}
.p-top-flow .section-speak__text--chs {
  bottom: -15rem;
}
.p-top-flow .bg-deco--circle::before {
  width: 58rem;
  height: 58rem;
  background: var(--color-powder-blue);
  inset: auto auto -75.4rem -29rem;
}
.p-top-flow .bg-deco--circle::after {
  width: 27rem;
  height: 27rem;
  inset: auto -13.5rem 4.2rem auto;
  background: var(--color-salmon-glow);
}
.p-top-flow__img {
  position: absolute;
  inset: 8.5rem auto auto 0;
  width: 84rem;
}
.p-top-flow__img img {
  border-radius: 0 9.2rem 9.2rem 0;
}
.p-top-flow__subtitle {
  font-size: var(--font-size-31);
  margin-bottom: 3rem;
}
.p-top-flow__content {
  width: 57rem;
  margin-left: auto;
}
.p-top-flow__button {
  margin-top: 7rem;
}

/*
# p-top-pages
------------------------*/
.p-top-pages__item {
  width: 50%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.p-top-pages__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  margin: auto;
  transition: all 0.3s;
}
.p-top-pages__item:hover::before {
  transform: scale(1.05);
}
.p-top-pages__item.pages__item--course::before {
  background: url(../img/top/course_bg.jpg) center/cover no-repeat;
}
.p-top-pages__item.pages__item--instructor::before {
  background: url(../img/top/instructor_bg.jpg) center/cover no-repeat;
}
.p-top-pages__link {
  height: 50rem;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 0;
}
.p-top-pages__link::before, .p-top-pages__link::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.p-top-pages__link::before {
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
  background: rgba(76, 42, 14, 0.6);
}
.p-top-pages__link::after {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 1px solid var(--color-white);
  border-radius: 3rem;
}
.p-top-pages__link:hover::before {
  background: rgba(76, 42, 14, 0.3);
}
.p-top-pages__en {
  padding-left: 0;
  font-size: var(--font-size-26);
}
.p-top-pages__en::before {
  background: none !important;
}
.p-top-pages__ja {
  width: 58.6rem;
  margin-top: 3rem;
  text-align: center;
  font-size: var(--font-size-48) !important;
}
.p-top-pages__instructor-name {
  font-size: var(--font-size-19);
  margin-top: 1rem;
}

/*
# top-news
------------------------*/
.p-top-news {
  padding: 13rem 0;
}
.p-top-news.deco--circle-text::before {
  inset: auto -24.2rem 4.5rem auto;
  background: var(--color-lavender);
}
.p-top-news .news__title {
  margin-bottom: 0;
}
.p-top-news__post-list {
  gap: 4.5rem;
}
.p-top-news__post {
  width: 33rem;
}
.p-top-news__post-link {
  padding: 2.5rem 0;
}
.p-top-news__post-link:hover {
  transform: translateY(-1rem);
}
.p-top-news__post-link:hover .p-top-news__post-title {
  text-decoration: underline;
}
.p-top-news__post-thumb {
  width: 100%;
  height: 24rem;
}
.p-top-news__post:first-child .news__post-link {
  padding-top: 0;
}
.p-top-news__post-date {
  font-size: var(--font-size-16);
}
.p-top-news__post-tags {
  gap: 0.7rem;
}
.p-top-news__post-tag {
  font-size: var(--font-size-15);
  padding: 0 1.5rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}
.p-top-news__post-title {
  font-size: var(--font-size-16);
  line-height: 1.5;
}

/*==========================================
about
===========================================*/
/*
# p-about-section
------------------------*/
.p-about-section {
  padding-bottom: 26.5rem;
}
.p-about-section.deco--circle-text::before {
  inset: auto -28.4rem -24.2rem auto;
  background: var(--color-lavender);
  z-index: 2;
}
.p-about-section .bg-deco--circle::before {
  width: 27rem;
  height: 27rem;
  background: var(--color-blue-gray);
  inset: 12rem auto auto -13.5rem;
}
.p-about-section__img {
  width: 81rem;
  position: absolute;
  inset: 11.5rem 0 auto auto;
  z-index: 1;
}
.p-about-section__img img {
  border-radius: 9.2rem 0 0 9.2rem;
}
.p-about-section__content {
  width: 61.5rem;
  min-height: 49.1rem;
}
.p-about-section__text {
  position: relative;
  z-index: 2;
}

/*
# p-about-thought
------------------------*/
.p-about-thought {
  padding: 10.5rem 0 9.5rem;
}
.p-about-thought.bg-image-wave::before {
  background: none;
}
.p-about-thought.bg-image-wave::after {
  inset: -9.3rem 0 auto;
  background: var(--color-gray-light);
}
.p-about-thought__title {
  text-align: center;
  margin-bottom: 8rem;
}
.p-about-thought__list {
  gap: 4rem;
}
.p-about-thought__card {
  width: 52rem;
}
.p-about-thought__card:last-child {
  width: 100%;
}
.p-about-thought__card-title {
  text-align: center;
}
.p-about-thought__illust {
  width: 86rem;
  margin: -1.8rem auto 0;
}
.p-about-thought__illust-img {
  width: 20.1rem;
}
.p-about-thought__illust-text {
  width: 61rem;
  font-size: var(--font-size-22);
  line-height: 1.7272727273;
  padding: 3rem;
}
.p-about-thought__illust-text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1rem 0px 1.1rem 2.6rem;
  border-color: transparent transparent transparent var(--primary-color);
  inset: 0 -2.6rem 0 auto;
  margin: auto 0;
}

/*
# p-about-japanese
------------------------*/
.p-about-japanese {
  padding: 21rem 0 22rem;
  background: url(../img/about/japanese_bg.jpg) center/cover no-repeat;
}
.p-about-japanese.bg-image-wave::before {
  background: var(--color-gray-light);
}
.p-about-japanese.bg-image-wave::after {
  background: var(--body-background);
}
.p-about-japanese__title {
  margin-bottom: 8rem;
}
.p-about-japanese__text {
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-black);
  margin-bottom: 8rem;
}
.p-about-japanese__list {
  gap: 4rem;
}
.p-about-japanese__card {
  width: 52rem;
  overflow: hidden;
}
.p-about-japanese__card::before {
  position: absolute;
  width: 20.3rem;
  height: 20.3rem;
  background: var(--color-mint-green);
  inset: -10rem auto auto -10rem;
  border-radius: 50%;
  color: var(--color-white);
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-black);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0px 4rem 1.5rem;
}
.p-about-japanese__card:last-child {
  width: 100%;
}
.p-about-japanese__card-title {
  border-bottom: none;
  text-align: center;
  padding-bottom: 0;
}
.p-about-japanese__card-icon {
  width: 16.6rem;
  margin: 0 auto 2rem;
}
.p-about-japanese__card-text {
  line-height: 1.7777777778;
}

/*
# p-about-difference
------------------------*/
.p-about-difference {
  padding: 9rem 0 13.5rem;
}
.p-about-difference__title {
  text-align: center;
}
.p-about-difference__card {
  margin-bottom: 6.5rem;
  text-align: center;
}
.p-about-difference__card:not(:last-child)::before {
  position: absolute;
  inset: auto 0 -5.5rem;
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-46);
  line-height: 1;
}
.p-about-difference__card:last-child {
  margin-bottom: 0;
}
.p-about-difference__card:nth-child(1)::before {
  content: "+";
}
.p-about-difference__card:nth-child(2)::before {
  content: "=";
}

/*
# p-about-future
------------------------*/
.p-about-future {
  padding: 20rem 0 16rem;
}
.p-about-future::before {
  background: var(--body-background);
}
.p-about-future::after {
  background: none;
}
.p-about-future__img {
  width: 81rem;
  position: absolute;
  inset: 22rem 0 auto auto;
  z-index: 1;
  min-height: 51.4rem;
}
.p-about-future__img img {
  border-radius: 9.2rem 0 0 9.2rem;
}
.p-about-future__content {
  width: 59rem;
  min-height: 51.4rem;
}

/*
# c-page__list
------------------------*/
.c-page__list {
  padding: 6rem 0;
  background: rgba(var(--primary-color-light-rgb), 0.8);
  gap: 6rem;
}
.c-page__list .c-page__link {
  width: 51rem;
  min-height: 10rem;
  font-size: var(--font-size-28);
  justify-content: center;
}
.c-page__list .c-page__link::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  width: calc(100% - 0.75rem);
  height: calc(100% - 0.75rem);
  border: 1px solid var(--color-white);
  border-radius: 1.4rem;
  z-index: 1;
}

/*==========================================
learning
===========================================*/
/*
# p-learning-express
------------------------*/
.p-learning-express {
  padding-bottom: 15rem;
}
.p-learning-express .bg-deco--circle::before {
  width: 27rem;
  height: 27rem;
  background: var(--color-blue-gray);
  inset: 12rem auto auto -13.5rem;
}
.p-learning-express.deco--circle-text::before {
  inset: auto -29rem 0 auto;
  background: var(--color-lavender);
  z-index: 1;
}
.p-learning-express__img {
  position: absolute;
  inset: auto 0 0 auto;
  width: 45.9375%;
}
.p-learning-express__img img {
  border-radius: 9.2rem 0 0 9.2rem;
}
.p-learning-express__content {
  width: 58rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.p-learning-express__content:last-child {
  margin-bottom: 0;
}
.p-learning-express__content-title {
  border-bottom: none;
  padding-bottom: 0;
  font-weight: var(--font-weight-black);
  margin-bottom: 1rem;
}

/*
# p-learning-flow
------------------------*/
.p-learning-flow {
  padding: 20rem 0 22rem;
  background: url(../img/learning/flow_bg.jpg) center/cover no-repeat;
}
.p-learning-flow.bg-image-wave::before {
  background: url(../img/common/com_bg.jpg);
}
.p-learning-flow.bg-image-wave::after {
  background: var(--body-background);
}
.p-learning-flow__list {
  gap: 2.5rem;
}
.p-learning-flow__item {
  width: 25rem;
  padding: 2rem;
}
.p-learning-flow__item-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-learning-flow__item-title-text {
  line-height: 1.2;
  font-size: var(--font-size-24);
}
.p-learning-flow__item-number {
  padding: 0 1rem;
  line-height: 1.4;
}
.p-learning-flow__item-icon {
  width: 15rem;
  height: 15rem;
  margin: 0 auto 1rem;
}
.p-learning-flow__item-icon img {
  width: 65%;
}

/*
# p-learning-important
------------------------*/
.p-learning-important {
  padding: 9rem 0 14.5rem;
}
.p-learning-important::before {
  inset: auto 0 -9.4rem;
  background: var(--body-background);
}
.p-learning-important::after {
  background: none;
}
.p-learning-important__img {
  position: absolute;
  inset: 10rem auto auto 0;
  width: 84rem;
}
.p-learning-important__img img {
  border-radius: 0 9.2rem 9.2rem 0;
}
.p-learning-important__content {
  width: 58rem;
  margin-left: auto;
}
.p-learning-important__box {
  margin-top: 5.5rem;
}
.p-learning-important__box-title {
  text-align: center;
  font-weight: var(--font-weight-black);
}

/*
# p-learning-story
------------------------*/
.p-learning-story {
  padding: 20rem 0 11.5rem;
}
.p-learning-story::before {
  background: var(--color-salmon-glow);
  inset: auto auto 5rem -24.2rem;
}
.p-learning-story::after {
  background: none;
}
.p-learning-story .bg-deco--circle::before {
  background: var(--color-mint-green);
  width: 27rem;
  height: 27rem;
  inset: 20.5rem -13.5rem auto auto;
}
.p-learning-story__img {
  width: 39.2rem;
}
.p-learning-story__img img {
  border-radius: 6.9rem;
}
.p-learning-story__content {
  width: 65.5rem;
}

/*==========================================
course
===========================================*/
.p-course {
  padding-bottom: 35.5rem;
}
.p-course::after {
  position: absolute;
  content: "";
  width: 58rem;
  height: 58rem;
  border-radius: 50%;
  background: var(--color-powder-blue);
  inset: auto auto -40rem -29rem;
}
.p-course.deco--circle-text::before {
  inset: 40.5rem -29rem auto auto;
  background: var(--color-mint-green);
  z-index: 1;
}
.p-course .bg-deco--circle::before {
  width: 27rem;
  height: 27rem;
  background: var(--color-blue-gray);
  inset: 12rem auto auto -13.5rem;
}
.p-course .bg-deco--circle::after {
  width: 27rem;
  height: 27rem;
  inset: auto -13.5rem 0 auto;
  background: var(--color-salmon-glow);
}
.p-course__list {
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.p-course__card {
  width: 52rem;
}
.p-course__card-title {
  font-size: var(--font-size-24);
  border-left: 3px solid var(--primary-color);
  line-height: 1.4166666667;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.p-course__card-img {
  width: 100%;
  height: 28.2rem;
  margin-bottom: 1.5rem;
}
.p-course__card-text {
  font-size: var(--font-size-16);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.p-course__card-details-item {
  border-bottom: 1px solid;
  padding: 1rem 0;
  gap: 1.5rem;
}
.p-course__card-details-item dt {
  font-size: var(--font-size-16);
  line-height: 1.6;
  width: 5.2rem;
  text-align: center;
}
.p-course__card-details-item dd {
  width: calc(100% - 6.5rem);
}

/*==========================================
info
===========================================*/
.p-info.deco--circle-text::before {
  inset: 40.5rem -29rem auto auto;
  background: var(--color-mint-green);
  z-index: 1;
}
.p-info .bg-deco--circle::before {
  width: 27rem;
  height: 27rem;
  background: var(--color-blue-gray);
  inset: 8em auto auto -13.5rem;
}
.p-info__table {
  width: 108rem;
  margin: 0 auto 10.5rem;
  position: relative;
  z-index: 1;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 4.5rem 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 9.5rem;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 11.5rem);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0.2rem 1rem;
  line-height: 1.8;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 1rem 0;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 21rem;
  height: 20rem;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 82rem;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 2rem;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 9.5rem;
  padding: 0.3rem 0;
}
.single__post-meta .category-label {
  width: calc(100% - 9.5rem);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 1rem;
}
.single__post-meta .category-label li a {
  padding: 0.3rem 1rem;
}

/*==========================================
  contact
  ===========================================*/
.p-contact__form {
  width: 98rem;
  margin: 0 auto 5.5rem;
}
.p-contact__form-item .p-contact__form-label .required {
  margin-left: 1rem;
}
.p-contact__form-item .p-contact__form-input {
  padding: 1.5rem 0;
}
.p-contact__form-item .p-contact__form-input .p-contact__form-list {
  gap: 1.5rem;
}
.p-contact__form-item.p-contact__form-privacy .p-contact__form-label {
  text-align: center;
}
.p-contact__form-value {
  padding: 2rem 1.5rem;
}
.p-contact__form-select {
  width: 20rem;
}
.p-contact__form-select::after {
  inset: 0 1.6rem 0 auto;
  width: 0.8rem;
  height: 0.8rem;
}
.p-contact__form-select select {
  padding: 1.5rem 3rem 1.5rem 1rem;
}
.p-contact__form #pc01,
.p-contact__form #pc02 {
  width: 15rem;
}
.p-contact__form #address {
  margin-top: 1.5rem;
}
.p-contact__form #date1,
.p-contact__form #date2,
.p-contact__form #date3 {
  width: 30rem;
}
.p-contact__form textarea {
  height: 26rem;
}
.p-contact__form .upload-item-wrap .thumb {
  width: 20rem;
  margin-right: 2.5rem;
}
.p-contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 13rem;
}
.p-contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
.p-contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
.p-contact input[type=button],
.p-contact input[type=submit],
.p-contact .p-contact__submits-wrap button {
  height: 7.5rem;
}
.p-contact .p-contact__submits-wrap {
  gap: 3.5rem;
}
.p-contact .p-contact__submits-wrap .p-contact__submits-check {
  width: 30.4rem;
}
.p-contact .p-contact__submits-wrap .p-contact__submits-back {
  width: 27rem;
}
.p-contact .p-contact__submits-wrap .p-contact__submits-send {
  width: 24rem;
}

/*==========================================
  privacy
  ===========================================*/
.p-privacy__content {
  margin-bottom: 7rem;
}
.p-privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
.p-sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/