@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-sitebg: calc(var(--zIndex) * 2);
  --zIndex-mv: calc(var(--zIndex) * 3);
  --zIndex-toTop: calc(var(--zIndex) * 4);
  --zIndex-header: calc(var(--zIndex) * 5);
  --zIndex-logo: calc(var(--zIndex) * 6);
  --zIndex-menu: calc(var(--zIndex) * 7);
  --zIndex-menuBtn: calc(var(--zIndex) * 8);
  --zIndex-cta: calc(var(--zIndex) * 9);
  --zIndex-overlay: calc(var(--zIndex) * 10);
  --color-main: #B8D200;
  --color-main-dark: #16943B;
  --color-accent: #EF834A;
  --color-accent02: #FFF100;
  --color-accent03: #FABE01;
  --color-accent04: #FFF2AD;
  --color-accent05: #FFDE00;
  --color-white: #fff;
  --color-black: #000;
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --fontFamily-roboto: "Roboto", sans-serif;
  --lineHeight-base: calc(24 / 14);
  --fontSize-base: 1.4rem;
  --fontWeight-base: 400;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontWeight-black: 900;
  --fontColor-base: #000;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 13rem;
}
@media (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.4285714286vw;
    scroll-padding-top: 14.5rem;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
  background: var(--color-white) url(../../assets/images/site_bg.png) repeat center top/1440px auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  height: 13rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--zIndex-header);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1430px) {
  .l-header {
    height: 14.5rem;
  }
}
.l-header.is_fixed {
  background-color: var(--color-main);
}
.l-header__inner {
  height: 100%;
  padding: 0 15.8rem 0 2.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.l-header__logoArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  position: relative;
  z-index: var(--zIndex-logo);
}
.l-header__logo {
  width: 20.3rem;
  position: relative;
  z-index: var(--zIndex-logo);
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 24rem;
  }
}
.l-header__logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 11.5rem;
  border-radius: 0 0 4rem 4rem;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -1.6rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-header__logo::before {
    height: 14.5rem;
  }
}
.l-header__logoLink {
  display: block;
  position: relative;
  z-index: 2;
}
.l-header__logoLink img {
  width: 16rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-header__logoLink img {
    width: 21.4rem;
  }
}
.l-header__name {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .l-header__name {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1280px) {
  .l-header__ctaArea {
    width: 100%;
    padding: 0 2.5rem 2.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--zIndex-cta);
  }
}
.l-header__ctaList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.l-header__ctaItem {
  width: 28.2rem;
  max-width: 100%;
}
@media screen and (max-width: 1280px) {
  .l-header__ctaItem {
    width: calc((100% - 1rem) / 2);
  }
}
.l-header__gnav {
  display: none;
}
.l-header__gnav.menu_isOpen {
  display: block;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(184, 210, 0, 0.42);
  z-index: var(--zIndex-menu);
}
.l-header__btn {
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  z-index: var(--zIndex-menuBtn);
}

/* l-footer */
.l-footer {
  color: var(--color-white);
  background-color: var(--color-main);
  padding: 2.4rem 0 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 5rem 0 20rem;
  }
}
.l-footer__inner {
  padding: 0 5rem 0 7rem;
}
.l-footer__logoArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer__logoArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 20.8rem;
  }
  .l-footer__logo img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__name {
    font-size: 2.5rem;
    margin-top: 2.5rem;
  }
}
.l-footer__copyright {
  font-size: 1.2rem;
  color: var(--color-black);
  font-weight: var(--fontWeight-bold);
  line-height: 2;
  letter-spacing: 0.025em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    text-align: left;
    margin-top: 2.5rem;
  }
}

/* l-inner */
.l-inner {
  width: 124rem;
  max-width: 100%;
  padding: 0 5rem;
  margin: auto;
}

/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.c-site__bg01 {
  width: 708px;
  height: 708px;
  position: absolute;
  top: -31rem;
  right: -11rem;
  z-index: var(--zIndex-sitebg);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .c-site__bg01 {
    display: none;
  }
}
.c-site__bg02 {
  width: 359px;
  height: 355px;
  position: absolute;
  top: -12rem;
  left: 10.7rem;
  z-index: var(--zIndex-sitebg);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .c-site__bg02 {
    width: 35.9rem;
    height: 35.9rem;
    top: -9rem;
    right: 17rem;
  }
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* c-gnav*/
.c-gnav {
  height: 100%;
  max-width: 60rem;
  margin: 0 0 0 auto;
  background-color: var(--color-main);
  padding: 9rem 8rem;
  border-radius: 6rem 0 0 6rem;
  position: fixed;
  top: 0;
  right: 0;
  overflow: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-gnav {
    height: initial;
    max-width: 100%;
    padding: 4rem 6rem 20rem;
    border-radius: 0;
    position: relative;
  }
}
.c-gnav__logo {
  width: 14.1rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__logo {
    width: 16.9rem;
  }
}
.c-gnav__logo img {
  width: 100%;
}
.c-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__list {
    display: block;
  }
}
.c-gnav__item {
  border-top: 1px solid var(--color-white);
}
.c-gnav__link {
  display: block;
  font-size: 2rem;
  color: var(--color-white);
  font-weight: var(--fontWeight-bold);
  line-height: 1.25;
  padding: 2.5rem 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-gnav__link {
    font-size: 2.8rem;
  }
}
.c-gnav__link::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 3rem;
  left: 0;
  background: url(../../assets/images/icon_menu.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .c-gnav__link::before {
    width: 1.8rem;
    height: 1.8rem;
    top: 3.2rem;
  }
}
.c-gnav__linkEn {
  display: block;
  font-family: var(--fontFamily-roboto);
  font-size: 1.2rem;
  color: var(--fontColor-base);
  font-weight: var(--fontWeight-medium);
  line-height: 2.0833333333;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__linkEn {
    font-size: 2rem;
  }
}

/* c-btnMenu*/
.c-btnMenu {
  width: 11.8rem;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-accent03);
  border: 1rem solid var(--color-white);
  padding: 0;
  border-radius: 5rem;
}
.c-btnMenu span {
  display: inline-block;
  width: 33.8983050847%;
  background-color: transparent;
  position: relative;
}
.c-btnMenu span::before, .c-btnMenu span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.3rem;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu span::before {
  top: 0.4rem;
}
.c-btnMenu span::after {
  top: -0.4rem;
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn {
  border: none;
}
.c-btnMenu.btnMenu_isOn span {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn span::before, .c-btnMenu.btnMenu_isOn span::after {
  top: 0;
}
.c-btnMenu.btnMenu_isOn span::before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.c-btnMenu.btnMenu_isOn span::after {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

/* c-ttl*/
.c-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.c-ttl--point .c-ttl__icon {
  width: 10rem;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--point .c-ttl__icon {
    width: 7.7rem;
    height: 7.7rem;
  }
}
.c-ttl--voice .c-ttl__icon {
  width: 7.2rem;
  height: 6.7rem;
}
.c-ttl--observation {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-ttl--observation .c-ttl__icon {
  width: 10.6rem;
  height: 7.5rem;
}
.c-ttl--observation .c-ttl__en {
  text-align: left;
}
.c-ttl--faq .c-ttl__icon {
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--faq .c-ttl__icon {
    width: 7.7rem;
    height: 7.7rem;
  }
}
.c-ttl--campus .c-ttl__icon {
  width: 4.7rem;
  height: 3.8rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--campus .c-ttl__icon {
    width: 4.9rem;
    height: 4rem;
  }
}
.c-ttl__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-ttl__ja {
  font-size: 4.2rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.1428571429;
}
.c-ttl__en {
  font-family: var(--fontFamily-roboto);
  font-size: 1.7rem;
  font-weight: var(--fontWeight-black);
  letter-spacing: 0.025em;
  line-height: 1.3529411765;
  margin-top: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ttl__en {
    font-size: 2rem;
  }
}

/* c-btn */
.c-btn {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-accent);
  text-align: center;
  border-radius: 99px;
  border: 1rem solid;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn {
    height: 15.5rem;
  }
}
.c-btn::before {
  content: "";
  display: block;
  width: 5rem;
  height: 0.6rem;
  background-color: var(--color-white);
  border-radius: 1rem 1rem 0 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-btn__lead {
  display: block;
  color: var(--color-accent02);
  font-size: 1.4rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-btn__lead {
    font-size: 2rem;
  }
}
.c-btn__txt {
  display: block;
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-btn__txt {
    font-size: 2.6rem;
  }
}

/* c-cardFeature */
.c-cardFeature {
  background-color: var(--color-white);
  border: 0.4rem solid;
  border-radius: 4rem;
  position: relative;
}
.c-cardFeature--05 .c-cardFeature__txtWrap::before {
  height: 110%;
}
@media screen and (max-width: 768px) {
  .c-cardFeature--05 .c-cardFeature__txtWrap::before {
    height: 100%;
  }
}
.c-cardFeature--05 .c-cardFeature__circle {
  bottom: -2.5rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature--05 .c-cardFeature__circle {
    bottom: 0;
  }
}
.c-cardFeature--05 .c-cardFeature__imgArea::before {
  content: "";
  display: block;
  width: 2px;
  height: 8rem;
  background-color: var(--color-main);
  position: absolute;
  bottom: -7rem;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-cardFeature--05 .c-cardFeature__imgArea::before {
    display: none;
  }
}
.c-cardFeature__deco {
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  top: 2.4rem;
  left: calc(50% - 21rem);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__deco {
    width: 5rem;
    height: 5rem;
    top: 8rem;
    left: auto;
    right: 5rem;
  }
}
.c-cardFeature__deco img, .c-cardFeature__deco svg {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.c-cardFeature__deco img rect, .c-cardFeature__deco svg rect {
  fill: var(--color-main);
}
.c-cardFeature__inner {
  padding: 8rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__inner {
    padding: 12rem 5rem 5rem;
  }
}
.c-cardFeature__num {
  width: 32.3rem;
  height: 12.3rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  font-family: var(--fontFamily-roboto);
  font-size: 1.8rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: var(--fontWeight-black);
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
  background: url(../../assets/images/feature_num_bg.png) no-repeat center center/100% auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__num {
    height: 14rem;
    max-width: 38rem;
    font-size: 2.1rem;
    gap: 2.1rem;
  }
}
.c-cardFeature__numTxt {
  font-size: 5.4rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__numTxt {
    font-size: 6.5rem;
  }
}
.c-cardFeature__ttl {
  font-size: 3.2rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__ttl {
    font-size: 3.6rem;
    line-height: 1.5;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.c-cardFeature__ttl span {
  color: var(--color-main);
}
.c-cardFeature__imgArea {
  width: 52.5rem;
  max-width: calc(100% - 45.7rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__imgArea {
    width: 100%;
    max-width: 100%;
    margin-top: 3.5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.c-cardFeature__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.c-cardFeature__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__txtArea {
    display: contents;
  }
}
.c-cardFeature__txtWrap {
  line-height: 1.5;
  margin-top: 2.6rem;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__txtWrap {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    padding: 5rem 0;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.c-cardFeature__txtWrap::before {
  content: "";
  display: block;
  width: 114rem;
  height: 100%;
  background-color: var(--color-main);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: -8rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__txtWrap::before {
    width: 65rem;
    height: calc(100% + 18rem);
    top: auto;
    bottom: 0;
  }
}
.c-cardFeature__txtWrap p {
  max-width: 38rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.025em;
  font-weight: var(--fontWeight-regular);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__txtWrap p {
    max-width: 100%;
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}
.c-cardFeature__circle {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__circle {
    width: 3.8rem;
    height: 3.8rem;
    left: auto;
    right: 0rem;
  }
}
.c-cardFeature__circle svg {
  width: 100%;
}
.c-cardFeature__circle svg path {
  stroke: var(--color-main);
}
.c-cardFeature__listArea {
  margin-top: 4rem;
}
.c-cardFeature__listTtl {
  font-size: 2.4rem;
  letter-spacing: 0.025em;
  line-height: 2;
  font-weight: var(--fontWeight-bold);
  color: var(--color-white);
  background-color: var(--color-main);
  text-align: center;
  border-radius: 2.7rem;
  padding: 0.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__listTtl {
    font-size: 2.8rem;
    padding: 0.4rem;
  }
}
.c-cardFeature__listTtl::before, .c-cardFeature__listTtl::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  background: url(../../assets/images/icon_plus.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-cardFeature__listTtl::before {
  left: 3rem;
}
.c-cardFeature__listTtl::after {
  right: 3rem;
}
.c-cardFeature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.1224489796%;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-cardFeature__itemHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.c-cardFeature__itemIcon {
  width: 7.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__itemIcon {
    width: 9rem;
  }
}
.c-cardFeature__itemIcon img {
  width: 100%;
}
.c-cardFeature__itemTtl {
  font-size: 2.4rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__itemTtl {
    font-size: 2.8rem;
  }
}
.c-cardFeature__itemTxt {
  line-height: 1.7142857143;
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__itemTxt {
    font-size: 2.4rem;
  }
}
.c-cardFeature__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  padding: 2.5rem 4rem;
  border-radius: 20px;
  border: 2px solid var(--color-main);
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__note {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    padding: 4rem 4rem 6.8rem;
  }
}
.c-cardFeature__noteIcon {
  width: 7.2rem;
}
@media screen and (max-width: 768px) {
  .c-cardFeature__noteIcon {
    width: 9rem;
  }
}
.c-cardFeature__noteTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.025em;
  font-weight: var(--fontWeight-regular);
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-cardFeature__noteTxt {
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}

/* c-cardVoice */
.c-cardVoice {
  height: 100%;
  padding: 8rem 10.9090909091%;
  background-color: var(--color-accent04);
  -webkit-box-shadow: 10px 10px 0 0 var(--color-black);
          box-shadow: 10px 10px 0 0 var(--color-black);
  border-radius: 52px;
  border: 3px solid var(--color-black);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .c-cardVoice {
    padding: 5rem;
    -webkit-box-shadow: 1.2rem 1rem 0 0 var(--color-black);
            box-shadow: 1.2rem 1rem 0 0 var(--color-black);
  }
}
.c-cardVoice__img {
  width: 21.4rem;
  height: 21.4rem;
  position: absolute;
  top: -3rem;
  right: 6rem;
  border-radius: 50%;
  -webkit-box-shadow: 10px 10px 0 0 var(--color-black);
          box-shadow: 10px 10px 0 0 var(--color-black);
}
@media screen and (max-width: 768px) {
  .c-cardVoice__img {
    width: 22.5rem;
    height: 22.5rem;
    -webkit-box-shadow: 1.2rem 1rem 0 0 var(--color-black);
            box-shadow: 1.2rem 1rem 0 0 var(--color-black);
  }
}
.c-cardVoice__img img {
  width: 100%;
  height: 100%;
}
.c-cardVoice__header {
  max-width: 17rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__header {
    max-width: 24rem;
  }
}
.c-cardVoice__age {
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__age {
    font-size: 2.4rem;
  }
}
.c-cardVoice__age span {
  width: 5rem;
  display: inline-block;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-main-dark);
  border-radius: 5px;
  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__age span {
    width: 7.8rem;
    padding: 0.6rem;
  }
}
.c-cardVoice__name {
  font-size: 1.6rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.25;
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__name {
    font-size: 2.6rem;
    margin-top: 2.5rem;
  }
}
.c-cardVoice__ttlArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5.5rem 0 2rem;
  border-bottom: 1px solid var(--color-main-dark);
}
.c-cardVoice__ttl {
  color: var(--color-main-dark);
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__ttl {
    font-size: 3.2rem;
  }
}
.c-cardVoice__txtArea {
  padding-top: 3rem;
}
.c-cardVoice__txt {
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .c-cardVoice__txt {
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}

/* c-cardObservation */
.c-cardObservation {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-white);
  border: 0.4rem solid;
  border-radius: 30px;
  padding: 6.2rem 11.7647058824%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardObservation {
    padding: 8.7rem 4.2rem;
  }
}
.c-cardObservation__num {
  position: absolute;
  width: 6.1rem;
  height: 6.1rem;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-cardObservation__num {
    width: 13.7rem;
    height: 13.7rem;
    top: -3.6rem;
    left: auto;
    right: 5rem;
    -webkit-transform: none;
            transform: none;
  }
}
.c-cardObservation__num img {
  width: 100%;
}
.c-cardObservation__header {
  min-height: 19rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__header {
    min-height: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.6rem;
    text-align: left;
  }
}
.c-cardObservation__icon {
  min-height: 10.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__icon {
    width: 11.2rem;
    min-height: initial;
  }
}
@media screen and (max-width: 768px) {
  .c-cardObservation__icon--03 {
    width: 9.5rem;
  }
}
.c-cardObservation__icon img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__icon img {
    margin: initial;
  }
}
@media screen and (max-width: 768px) {
  .c-cardObservation__ttlArea {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.c-cardObservation__ttl {
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 2;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__ttl {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
.c-cardObservation__ttl span {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fontWeight-base);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__ttl span {
    font-size: 2rem;
  }
}
.c-cardObservation__en {
  color: #AAA893;
  font-size: 1.7rem;
  font-family: var(--fontFamily-roboto);
  font-weight: var(--fontWeight-black);
  line-height: 1.4117647059;
  letter-spacing: 0.025em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__en {
    font-size: 2.4rem;
  }
}
.c-cardObservation__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 2rem;
  border-top: 3px solid #FFF400;
  margin-top: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c-cardObservation__txtArea {
    font-size: 2.4rem;
    padding-top: 3rem;
    margin-top: 3.2rem;
  }
}

/* c-boxToggle */
.c-boxToggle {
  border: 3px solid;
  background-color: var(--color-main);
  border-radius: 50px;
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .c-boxToggle {
    border-radius: 20px;
  }
}
.c-boxToggle__trigger {
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--color-white);
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 2.6666666667;
  padding: 2.2rem 2rem 2.2rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    padding: 3.2rem 3.2rem 3.2rem 0;
  }
}
.c-boxToggle__trigger::before, .c-boxToggle__trigger::after {
  content: "";
  width: 2rem;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-boxToggle__trigger::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.c-boxToggle__trigger h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-boxToggle__triggerCircle {
  width: 1.5rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__triggerCircle {
    width: 2.6rem;
    height: 2.6rem;
    margin-top: 1rem;
  }
}
.c-boxToggle__triggerCircle svg {
  width: 100%;
  height: 100%;
}
.c-boxToggle__triggerCircle svg g {
  stroke: var(--color-white);
}
.c-boxToggle__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.c-boxToggle__contentTxt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__contentTxt {
    font-size: 2.4rem;
    letter-spacing: 0.025em;
    line-height: 1.6666666667;
  }
}
.c-boxToggle__contentTxt a {
  color: var(--fontColor-base);
  text-decoration: underline;
}
.c-boxToggle__contentTxt a:hover {
  text-decoration: none;
}
.c-boxToggle.is-active .c-boxToggle__trigger::before {
  background-color: transparent;
}
.c-boxToggle.is-active .c-boxToggle__content {
  padding: 4rem 0 3.5rem;
  line-height: normal;
  height: auto;
  opacity: 1;
  border-top: 1px solid var(--color-white);
}

/* c-campus*/
.c-campus {
  padding: 5rem 0;
}
.c-campus:not(:first-child) {
  border-top: 1px solid var(--color-main);
}
.c-campus__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-campus__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-campus__txtArea {
  width: calc(100% - 65rem);
}
@media screen and (max-width: 768px) {
  .c-campus__txtArea {
    width: 100%;
  }
}
.c-campus__txtAreaTtlInner {
  padding-left: 3.2rem;
  border-left: 3px solid #FFF302;
}
.c-campus__ttl {
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7777777778;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .c-campus__ttl {
    font-size: 2.6rem;
    line-height: 1.6153846154;
  }
}
.c-campus__address {
  line-height: 1.7142857143;
  letter-spacing: 0.025em;
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .c-campus__address {
    font-size: 2.4rem;
    line-height: 2;
  }
}
.c-campus__tel {
  display: block;
  color: var(--color-main);
  font-family: var(--fontFamily-roboto);
  font-size: 3.2rem;
  font-weight: var(--fontWeight-black);
  line-height: 1.34375;
  letter-spacing: 0.025em;
  margin-top: 2.2rem;
  padding-left: 3.7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-campus__tel {
    font-size: 4.2rem;
    line-height: 1.3095238095;
    padding-left: 5.2rem;
  }
}
.c-campus__tel::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 4.4rem;
  background: url(../../assets/images/icon_tel.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-campus__tel::before {
    width: 3.1rem;
    height: 5.3rem;
  }
}
.c-campus__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 65/40;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-campus__img {
    aspect-ratio: 600/369;
  }
}
.c-campus__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-campus__btnArea {
  margin-top: 3rem;
  max-width: 35rem;
}
@media screen and (max-width: 768px) {
  .c-campus__btnArea {
    max-width: 100%;
    margin-top: 4rem;
  }
}
.c-campus__btn {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  line-height: 2;
  color: var(--fontColor-base);
  font-weight: var(--fontWeight-bold);
  background-color: #FFF302;
  text-align: center;
  padding: 2.2rem;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-campus__btn {
    font-size: 2.6rem;
    padding: 4rem;
  }
}
.c-campus__btn::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 2.4rem;
  background: url(../../assets/images/icon_btn_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-campus__btn::before {
    width: 2.1rem;
    height: 4rem;
    right: 4.5rem;
  }
}
.c-campus__btn::after {
  content: "";
  display: block;
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-campus__btn::after {
    width: calc(100% - 0.7rem);
    height: calc(100% - 0.7rem);
  }
}
.c-campus__btnTxt {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-campus__map {
    margin-top: 4.5rem;
  }
}
.c-campus__mapTtl {
  color: var(--color-main);
  font-size: 3.2rem;
  font-family: var(--fontFamily-roboto);
  font-weight: var(--fontWeight-black);
  line-height: 1.34375;
  letter-spacing: 0.025em;
  padding-left: 5.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-campus__mapTtl {
    font-size: 3.8rem;
    padding-left: 6.7rem;
  }
}
.c-campus__mapTtl::before {
  content: "";
  display: block;
  width: 4.4rem;
  height: 3.8rem;
  background: url(../../assets/images/icon_access.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-campus__mapTtl::before {
    width: 5.2rem;
    height: 4.5rem;
  }
}
.c-campus__mapArea {
  aspect-ratio: 1140/373;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .c-campus__mapArea {
    margin-top: 3rem;
    aspect-ratio: 600/339;
  }
}
.c-campus__mapArea iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* c-pageTop */
.c-pageTop {
  width: 10.1rem;
  height: 9.9rem;
  position: fixed;
  bottom: 6rem;
  right: 5rem;
  z-index: var(--zIndex-toTop);
}
@media screen and (max-width: 768px) {
  .c-pageTop {
    width: 15rem;
    height: 15rem;
    bottom: 20rem;
  }
}
.c-pageTop:hover {
  opacity: 0.8;
}
.c-pageTop img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* p-mv */
.p-mv {
  background-color: var(--color-main);
  position: relative;
  padding-top: 13rem;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding-top: 17rem;
  }
}
.p-mv__inner {
  max-width: 143rem;
  padding: 0 2.5rem;
  margin: 0 auto;
  position: relative;
}
.p-mv__badgeList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  position: absolute;
  top: 2rem;
  left: 5.5rem;
  z-index: var(--zIndex-mv);
}
@media screen and (max-width: 768px) {
  .p-mv__badgeList {
    width: 100%;
    padding-right: 6rem;
    gap: 0.5rem;
    top: -1.67rem;
    left: 2.5rem;
  }
}
.p-mv__badgeItem {
  width: 56rem;
}
@media screen and (max-width: 768px) {
  .p-mv__badgeItem {
    width: 58.6rem;
    margin: 0 auto;
  }
}
.p-mv__badgeItem img {
  width: 100%;
}
.p-mv__lead {
  width: 41.6rem;
}
@media screen and (max-width: 1430px) {
  .p-mv__lead {
    width: 29.0909090909vw;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__lead {
    width: 41.6rem;
  }
}
.p-mv__copyArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 53rem;
  position: absolute;
  bottom: 7rem;
  right: 13rem;
  z-index: var(--zIndex-mv);
}
@media screen and (max-width: 1430px) {
  .p-mv__copyArea {
    width: 37.0629370629vw;
    gap: 2.0979020979vw;
    bottom: 6.2237762238vw;
    right: 9.7902097902vw;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__copyArea {
    width: 47.7rem;
    gap: 2.8rem;
    bottom: 5.8rem;
    right: auto;
    left: 8rem;
  }
}
.p-mv__bg {
  aspect-ratio: 1380/740;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: var(--zIndex-mv);
}
@media screen and (max-width: 768px) {
  .p-mv__bg {
    aspect-ratio: 650/830;
    border-radius: 44px;
  }
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* p-mv */
.p-about {
  padding: 10rem 0 12rem;
  background-color: var(--color-main);
  border-radius: 0 0 10rem 10rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 13.6rem 0 12.3rem;
  }
}
.p-about__plus01 {
  width: 4.4rem;
  height: 4.3rem;
  position: absolute;
  bottom: 2.8rem;
  left: calc(50% - 46rem);
  z-index: 1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-about__plus01 {
    display: none;
  }
}
.p-about__plus01 svg {
  width: 100%;
}
.p-about__plus02 {
  width: 7.7rem;
  height: 7.7rem;
  position: absolute;
  bottom: 4.3rem;
  left: calc(50% + 46rem);
  z-index: 1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-about__plus02 {
    bottom: 3.5rem;
    left: auto;
    right: 12.5rem;
  }
}
.p-about__plus02 svg {
  width: 100%;
}
.p-about__deco01 {
  width: 13rem;
  height: 13rem;
  position: absolute;
  top: -6rem;
  left: calc(50% - 65rem);
  z-index: 1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-about__deco01 {
    width: 18.6rem;
    height: 18.6rem;
    top: -9.3rem;
    left: auto;
    right: 5rem;
  }
}
.p-about__deco01 img {
  width: 100%;
}
.p-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about__en {
  width: 37.3rem;
  font-family: var(--fontFamily-roboto);
  font-size: 7.5rem;
  letter-spacing: 0.025em;
  font-weight: var(--fontWeight-black);
  line-height: 1;
  -webkit-text-stroke: 1px var(--color-white);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__en {
    font-size: 35.8rem;
  }
}
.p-about__en img {
  width: 100%;
}
.p-about__deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin: 4.7rem 0 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-about__deco {
    gap: 1rem;
    margin: 4rem 0;
  }
}
.p-about__deco span {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-black);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-about__deco span {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.p-about__deco span:nth-child(1) {
  background-color: var(--color-white);
}
.p-about__deco span:nth-child(2) {
  background-color: #A9A893;
}
.p-about__ttl {
  font-size: 3.2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .p-about__ttl {
    font-size: 4.2rem;
    line-height: 1.4761904762;
  }
}
.p-about__ttl span {
  color: var(--color-white);
}
.p-about__txt {
  line-height: 1.3571428571;
  letter-spacing: 0.025em;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-about__txt {
    font-size: 2.6rem;
    line-height: 1.6153846154;
    margin-top: 4.6rem;
  }
}
.p-about__imgArea {
  width: 52.5rem;
  border: 0.4rem solid;
  border-radius: 6.4rem;
  aspect-ratio: 525/344;
  -webkit-box-shadow: 1rem 1rem 0 #000;
          box-shadow: 1rem 1rem 0 #000;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about__imgArea {
    width: 100%;
  }
}
.p-about__imgArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* p-feature */
.p-feature {
  padding-top: 14rem;
  position: relative;
}
.p-feature__en {
  position: absolute;
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-feature__en {
    width: 52.6rem;
    top: -4.4rem;
  }
  .p-feature__en img {
    width: 100%;
  }
}
.p-feature__ttl {
  max-width: 63rem;
  margin: 0 auto;
  font-size: 2.6rem;
  text-align: center;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.8461538462;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-feature__ttl {
    line-height: 1.6153846154;
    max-width: 44.4rem;
  }
}
.p-feature__ttl::before, .p-feature__ttl::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../../assets/images/icon_circle.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-feature__ttl::before, .p-feature__ttl::after {
    top: auto;
    bottom: 0;
  }
}
.p-feature__ttl::before {
  left: 0;
}
.p-feature__ttl::after {
  right: 0;
}
.p-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10.5rem;
  margin-top: 12rem;
}

/* p-point */
.p-point {
  padding: 10rem 0 8.2rem;
  position: relative;
}
.p-point__bg {
  width: 2080px;
  height: 2079px;
  position: absolute;
  top: -31rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-point__bg {
    top: -24rem;
    width: 2510px;
    height: 2510px;
  }
}
.p-point__bg img {
  width: 100%;
}
.p-point__deco {
  width: 6.2rem;
  height: 6.2rem;
  position: absolute;
  top: 7rem;
  left: calc(50% + 44rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-point__deco {
    display: none;
  }
}
.p-point__deco svg {
  width: 100%;
  height: 100%;
}
.p-point__deco svg rect {
  fill: var(--color-main);
}
.p-point__deco02 {
  width: 8.7rem;
  height: 8.7rem;
  position: absolute;
  top: 81rem;
  left: calc(50% + 50rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-point__deco02 {
    width: 14.1rem;
    height: 14.1rem;
    top: 210rem;
    left: auto;
    right: -2rem;
  }
}
.p-point__deco02 svg {
  width: 100%;
  height: 100%;
}
.p-point__deco02 svg rect {
  fill: var(--color-main);
}
.p-point__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.3rem;
  padding-top: 4.6rem;
  border-top: 0.4rem solid;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-point__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 8rem;
    margin-top: 4rem;
  }
}
.p-point__list::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: var(--fontColor-base);
  position: absolute;
  top: -0.8rem;
  left: 0;
}
.p-point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-point__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-point__item:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 29rem;
  background-color: var(--fontColor-base);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-point__item:not(:last-child)::before {
    display: none;
  }
}
.p-point__itemIcon {
  width: 14rem;
  height: 14.2rem;
}
.p-point__itemIcon svg {
  width: 100%;
  height: 100%;
}
.p-point__itemTxtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-point__itemTxtArea {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    padding-left: 4rem;
    margin-top: 0;
  }
}
.p-point__itemTxt {
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-point__itemTxt {
    font-size: 3.2rem;
    letter-spacing: initial;
    line-height: 1.3125;
  }
}
.p-point__itemNote {
  line-height: 2.5714285714;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-point__itemNote {
    font-size: 2rem;
    line-height: 1.8;
  }
}
.p-point__itemImg {
  margin-top: 5rem;
  border-radius: 24px;
  border: 0.4rem solid;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-point__itemImg {
    width: 100%;
    border-radius: 20px;
    margin-top: 3rem;
  }
}
.p-point__itemImg img {
  width: 100%;
}

/* p-voice */
.p-voice {
  padding-top: 11.2rem;
  position: relative;
}
.p-voice__deco {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 7.5rem;
  left: calc(50% - 50rem);
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.p-voice__deco svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-voice__deco svg rect {
  fill: var(--color-main);
}
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 7rem;
  }
}

/* p-flow */
.p-flow {
  position: relative;
}
.p-flow__deco03 {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  top: 26rem;
  left: calc(50% - 41rem);
  mix-blend-mode: multiply;
}
.p-flow__deco03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-flow__bg {
  width: 1840px;
  height: 1840px;
  position: absolute;
  top: 11rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.p-flow__bg img {
  width: 100%;
}
.p-flow__ttl {
  width: 47.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-flow__ttl {
    width: 55rem;
  }
}
.p-flow__ttl img {
  width: 100%;
}
.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.8rem;
  margin-top: -12.5rem;
}
@media screen and (max-width: 768px) {
  .p-flow__list {
    margin-top: -1.6rem;
    gap: 13.8rem;
  }
}
.p-flow__item {
  min-height: 23.5rem;
  background-color: #FEECD2;
  border-radius: 50px;
  border: 4px solid var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.8rem 0;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-flow__item {
    padding-top: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    padding: 0 4.8rem 4.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-flow__item--option {
  background-color: #FFF100;
}
.p-flow__item:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 5.6rem);
  background-color: var(--color-black);
  position: absolute;
  top: 50%;
  left: 17.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-flow__item:before {
    display: none;
  }
}
.p-flow__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 5.2rem;
  background: url(../../assets/images/flow_dots.svg) no-repeat top center/contain;
  position: absolute;
  bottom: -6.2rem;
  left: 9.8rem;
}
@media screen and (max-width: 768px) {
  .p-flow__item:not(:last-child)::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -8.2rem;
  }
}
.p-flow__itemImg {
  width: 37.1rem;
  max-width: 32.5438596491vw;
  position: absolute;
  top: -4.2rem;
  right: 7rem;
}
@media screen and (max-width: 768px) {
  .p-flow__itemImg {
    width: 100%;
    max-width: 100%;
    position: initial;
    margin-top: -6.5rem;
  }
}
.p-flow__itemImg img {
  width: 100%;
}
.p-flow__itemTime {
  width: 17.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--fontFamily-roboto);
  font-size: 2.8rem;
  font-weight: var(--fontWeight-black);
  font-style: italic;
  line-height: 1.3214285714;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTime {
    font-size: 3.6rem;
    width: 100%;
    border-right: none;
    padding: 1.4rem 0 1.6rem;
    border-bottom: 1px solid var(--color-black);
  }
}
.p-flow__itemTime--option {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTime--option {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-flow__itemTime--option span {
  display: block;
}
.p-flow__itemTime--option span:nth-child(2) {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTime--option span:nth-child(2) {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
}
.p-flow__itemTxtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 5rem;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTxtArea {
    padding: 3rem 0 0;
  }
}
.p-flow__itemttlArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.p-flow__itemttlIcon {
  width: 2.6rem;
  height: 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-flow__itemttlIcon svg {
  width: 100%;
  height: 100%;
}
.p-flow__itemTtl {
  font-size: 3.2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5357142857;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTtl {
    font-size: 3.6rem;
    line-height: 1.3333333333;
  }
}
.p-flow__itemTtl span {
  font-size: 1.6rem;
  line-height: 1.3125;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTtl span {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}
.p-flow__itemTxt {
  max-width: 38rem;
  font-size: 1.6rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.75;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-flow__itemTxt {
    max-width: 100%;
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}

/* p-events */
.p-events {
  padding: 15.8rem 0 0;
  position: relative;
}
.p-events--course {
  padding-bottom: 12rem;
}
.p-events--course .p-events__tabContentItemTxtArea {
  border-top: none;
  padding-top: 1.6rem;
  margin-top: 0;
}
.p-events--course .p-events__tabContentItemTxtArea h4 {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  padding-left: 2.8rem;
  margin-top: 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-events--course .p-events__tabContentItemTxtArea h4 {
    font-size: 3.2rem;
    line-height: 1.34375;
    padding-left: 4.6rem;
  }
}
.p-events--course .p-events__tabContentItemTxtArea h4::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../assets/images/icon_circle_course.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-events--course .p-events__tabContentItemTxtArea h4::before {
    width: 3.1rem;
    height: 3.1rem;
  }
}
.p-events--course .p-events__tabContentItemTxtArea h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-events--course .p-events__tabContentItemTxtArea h4.time::after {
  width: calc(100% - 12rem);
}
@media screen and (max-width: 768px) {
  .p-events--course .p-events__tabContentItemTxtArea h4.time::after {
    width: calc(100% - 20rem);
  }
}
.p-events--course .p-events__tabContentItemTxtArea h4.summary::after {
  width: calc(100% - 8rem);
}
@media screen and (max-width: 768px) {
  .p-events--course .p-events__tabContentItemTxtArea h4.summary::after {
    width: calc(100% - 14rem);
  }
}
@media screen and (max-width: 768px) {
  .p-events--course .p-events__tabContentItemTxtArea p {
    margin-top: 2.6erm;
  }
}
.p-events--course .p-events__deco03 {
  bottom: auto;
  top: 28rem;
  left: calc(50% - 64rem);
}
.p-events--course .p-events__deco02 {
  top: auto;
  bottom: 10rem;
  left: calc(50% + 64rem);
}
.p-events__deco01 {
  width: 8.7rem;
  height: 8.7rem;
  position: absolute;
  top: 0;
  left: calc(50% + 66rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-events__deco01 {
    left: auto;
    right: -4rem;
    top: 22rem;
  }
}
.p-events__deco01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-events__deco02 {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  top: 60rem;
  left: calc(50% - 68rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-events__deco02 {
    top: 1.2rem;
    left: 0;
  }
}
.p-events__deco02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-events__deco03 {
  width: 16.5rem;
  height: 16.5rem;
  position: absolute;
  bottom: 5rem;
  left: calc(50% + 46rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-events__deco03 {
    left: auto;
    bottom: 4rem;
    right: 1rem;
  }
}
.p-events__deco03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-events__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-events__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-events__headerTtlArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 5.0877192982%;
  text-align: center;
}
.p-events__en {
  font-family: var(--fontFamily-roboto);
  font-weight: var(--fontWeight-black);
  font-size: 14.2rem;
  letter-spacing: 0.025em;
  line-height: 1;
  color: var(--color-main);
}
.p-events__en span {
  color: var(--color-accent05);
}
.p-events__ttl {
  font-size: 1.8rem;
  font-weight: var(--fontWeight-bold);
  line-height: 2.6666666667;
  margin-top: -2rem;
}
@media screen and (max-width: 768px) {
  .p-events__ttl {
    font-size: 2.6rem;
  }
}
.p-events__headerTxtArea {
  width: 54rem;
  letter-spacing: 0.025em;
  padding-left: 5.0877192982%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-events__headerTxtArea {
    width: 100%;
    font-size: 2.4rem;
    line-height: 1.6666666667;
    padding-left: 0;
    padding-top: 4rem;
    margin-top: 5.6rem;
    border-top: 1px solid var(--color-black);
  }
}
.p-events__headerTxtArea::before {
  content: "";
  display: block;
  width: 1px;
  height: 11rem;
  background-color: var(--color-black);
  position: absolute;
  top: 2rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-events__headerTxtArea::before {
    display: none;
  }
}
.p-events__content {
  border: 4px solid var(--color-black);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-events__content {
    margin-top: 7.4rem;
  }
}
.p-events__tabList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-events__tabItem {
  min-height: 9rem;
  border-bottom: 4px solid var(--color-black);
}
.p-events__tabItem:not(:nth-child(3n)) {
  border-right: 4px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-events__tabItem {
    min-height: 10rem;
  }
  .p-events__tabItem:nth-child(2n) {
    border-right: none;
  }
}
.p-events__tabItem button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.3;
  background-color: #AAA893;
  padding: 1.8rem 1rem;
  border: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-events__tabItem button {
    font-size: 2.3rem;
    padding: 0.8rem 0;
  }
}
.p-events__tabItem button.active {
  color: var(--color-white);
  background-color: var(--color-main);
}
.p-events__tabItem button::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-white);
  border-radius: 50%;
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
}
.p-events__tabItem button span {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-events__tabItem button span {
    font-size: 2.2rem;
  }
}
.p-events__tabContentItem {
  min-height: 45.5rem;
  display: none;
  padding: 6rem 7.0175438596%;
  position: relative;
  background: #fff repeating-linear-gradient(90deg, rgba(184, 210, 0, 0.1) 0, rgba(184, 210, 0, 0.1) 2.5rem, transparent 2.5rem, transparent 5rem);
}
@media screen and (max-width: 768px) {
  .p-events__tabContentItem {
    min-height: initial;
  }
}
.p-events__tabContentItem.show {
  display: block;
}
.p-events__tabContentItemTtl {
  font-size: 3.2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-events__tabContentItemTtl {
    font-size: 4.2rem;
  }
}
.p-events__tabContentItemTtl .note {
  font-size: 2rem;
  font-weight: var(--fontWeight-medium);
}
@media screen and (max-width: 768px) {
  .p-events__tabContentItemTtl .note {
    display: block;
    font-size: 2.4rem;
    margin-top: 2rem;
  }
}
.p-events__tabContentItemTtl .color {
  color: var(--color-main);
}
.p-events__tabContentItemTxtArea {
  max-width: 45rem;
  font-size: 1.6rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  line-height: 1.75;
  padding-top: 4rem;
  margin-top: 4.6rem;
  border-top: 2px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-events__tabContentItemTxtArea {
    max-width: 100%;
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}
.p-events__tabContentItemTxtArea p {
  margin-top: 1rem;
}
.p-events__tabContentItemImg {
  width: 46.8rem;
  aspect-ratio: 46.8/31.7;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--color-black);
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
.p-events__tabContentItemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-events__tabContentItemImgArea {
  position: absolute;
  top: 5.2rem;
  right: 4rem;
}
@media screen and (max-width: 768px) {
  .p-events__tabContentItemImgArea {
    width: 100%;
    position: relative;
    top: initial;
    right: initial;
    margin-top: 3.6rem;
  }
}
.p-events__tabContentItemPin {
  display: block;
  width: 4rem;
  height: 5rem;
  background: url(../../assets/images/icon_pin.svg) no-repeat center center/contain;
  position: absolute;
  top: -4.4rem;
  right: -1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-events__tabContentItemPin {
    top: -4rem;
    right: 2.4rem;
  }
}
.p-events__toggleItem {
  border-bottom: 4px solid var(--color-black);
}
.p-events__toggleItem:last-child {
  border-bottom: none;
}
.p-events__toggleItem.is-active .p-events__toggleTrigger {
  color: var(--color-black);
  background-color: var(--color-main);
}
.p-events__toggleItem.is-active .p-events__toggleTrigger::before {
  background-color: transparent;
}
.p-events__toggleItem.is-active .p-events__toggleContentItem {
  padding: 6rem 7.0175438596%;
  line-height: normal;
  height: auto;
  opacity: 1;
}
.p-events__toggleTrigger {
  cursor: pointer;
  min-height: 8.2rem;
  width: 100%;
  font-size: 2.3rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.3;
  color: var(--color-white);
  background-color: #AAA893;
  padding: 0.8rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  position: relative;
}
.p-events__toggleTrigger::before, .p-events__toggleTrigger::after {
  content: "";
  width: 2.2rem;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-events__toggleTrigger::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-events__toggleTrigger span {
  display: block;
}
.p-events__toggleContentItem {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  padding: 0 7.0175438596%;
  background: #fff repeating-linear-gradient(90deg, rgba(184, 210, 0, 0.1) 0, rgba(184, 210, 0, 0.1) 2.5rem, transparent 2.5rem, transparent 5rem);
}

/* p-observation */
.p-observation {
  padding: 11.5rem 0 10rem;
  background: var(--color-main) url(../../assets/images/observation_bg.png) no-repeat center top/cover;
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .p-observation {
    padding: 9.2rem 0 8rem;
  }
}
.p-observation__header {
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-observation__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }
}
.p-observation__headerTtlArea {
  width: 56.2rem;
}
@media screen and (max-width: 768px) {
  .p-observation__headerTtlArea {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-observation__headerTxt {
    font-size: 2.4rem;
    letter-spacing: 0.025em;
    line-height: 1.6666666667;
  }
}
.p-observation__body {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-observation__body {
    margin-top: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-observation__item {
  width: calc((100% - 4rem - 8rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-observation__item {
    width: 100%;
  }
}
.p-observation__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-observation__arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-observation__arrow img {
  margin: auto;
  width: 4rem;
  height: 4rem;
}

/* p-faq */
.p-faq {
  padding: 10rem 0;
}
.p-faq__body {
  margin-top: 4.2rem;
}
.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__list {
    gap: 1rem;
  }
}

/* p-campus */
.p-campus {
  padding: 9.2rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .p-campus {
    padding: 9.2rem 0 8rem;
  }
}
.p-campus__body {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-campus__body {
    margin-top: 3rem;
  }
}
.p-campus__tabList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-campus__tabList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.p-campus__tabItem button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: var(--color-black);
  font-weight: var(--fontWeight-bold);
  line-height: 2.6666666667;
  background-color: #AAA893;
  padding: 1.2rem 1rem;
  border: 4px solid var(--color-black);
  position: relative;
  border-radius: 99px;
}
@media screen and (max-width: 768px) {
  .p-campus__tabItem button {
    font-size: 2.6rem;
    padding: 0.4rem;
    border: 0.4rem solid var(--color-black);
  }
}
.p-campus__tabItem button.active {
  background-color: var(--color-main);
}
.p-campus__tabItem button::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../assets/images/icon_circlew.svg) no-repeat center center/contain;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-campus__tabContentItem {
  display: none;
}
.p-campus__tabContentItem.show {
  display: block;
}

/* p-option */
.p-option {
  padding: 10rem 0 8.2rem;
  position: relative;
}
.p-option__deco01 {
  width: 8.7rem;
  height: 8.7rem;
  position: absolute;
  top: 0;
  left: calc(50% - 62rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-option__deco01 {
    left: -4rem;
    top: 42rem;
  }
}
.p-option__deco01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-option__deco02 {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  top: 6.5rem;
  left: calc(50% + 46rem);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-option__deco02 {
    left: auto;
    right: 5rem;
    top: 2rem;
  }
}
.p-option__deco02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-option__ttl {
  max-width: 67.3rem;
  margin: 0 auto;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .p-option__ttl {
    max-width: 55rem;
  }
}
.p-option__ttl img {
  width: 100%;
}
.p-option__box {
  padding: 12rem 1.6rem 8rem;
  background-color: var(--color-white);
  border-radius: 40px;
  border: 3px solid var(--color-main);
}
@media screen and (max-width: 768px) {
  .p-option__box {
    padding: 6rem 5rem 4rem;
    border-radius: 34px;
  }
}
.p-option__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .p-option__list {
    grid-template-columns: 1fr;
    gap: 8.2rem;
  }
}
.p-option__item {
  padding: 0 11.6363636364%;
}
@media screen and (max-width: 768px) {
  .p-option__item {
    padding: 4.2rem 0;
  }
}
.p-option__item:nth-child(2n) {
  border-left: 1px solid #A3A3A3;
}
@media screen and (max-width: 768px) {
  .p-option__item:nth-child(2n) {
    border-left: none;
    border-top: 1px solid #A3A3A3;
  }
}
.p-option__item--pink .p-option__subttl::before {
  background-image: url(../../assets/images/circle_pink.svg);
}
.p-option__item--pink .p-option__time span {
  background-color: #E50165;
}
.p-option__item--pink .p-option__detailItem::before {
  color: #E50165;
}
.p-option__item--blue .p-option__subttl::before {
  background-image: url(../../assets/images/circle_blue.svg);
}
.p-option__item--blue .p-option__time span {
  background-color: #0086C9;
}
.p-option__item--blue .p-option__detailItem::before {
  color: #0086C9;
}
.p-option__subttl {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: var(--fontWeight-bold);
  padding-left: 3.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-option__subttl {
    font-size: 3.2rem;
    line-height: 1.34375;
  }
}
.p-option__subttl::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-option__subttl::before {
    width: 3.1rem;
    height: 3.1rem;
  }
}
.p-option__time {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-option__time {
    text-align: center;
    margin-top: 2.6rem;
  }
}
.p-option__time span {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  color: var(--color-white);
  border-radius: 50px;
  padding: 0.7rem 2rem 0.7rem 2rem;
  background-color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .p-option__time span {
    display: block;
    width: 100%;
    font-size: 2.4rem;
    line-height: 1.3333333333;
    padding: 0.8rem 2.4rem;
  }
}
.p-option__detailList {
  margin-top: 2.6rem;
}
@media screen and (max-width: 768px) {
  .p-option__detailList {
    margin-top: 4rem;
  }
}
.p-option__detailItem {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.025em;
  color: var(--color-black);
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-option__detailItem {
    font-size: 2.6rem;
    line-height: 1.6153846154;
  }
}
.p-option__detailItem::before {
  content: "●";
  display: block;
  color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-option__detailItem::before {
    font-size: 1.6rem;
    top: 1.2rem;
  }
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}