@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: auto;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: 100%;
  padding: 25px 80px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  will-change: opacity, transform;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.header.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  pointer-events: none;
}

.header.is-solid {
  background: #c1ad54;
}

.header .logo {
  width: 315px;
  position: relative;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .sp_menu {
  display: none;
}

.header .navigation_pc nav .navi {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navigation_pc nav .navi .navi_item {
  margin-right: 40px;
}

.header .navigation_pc nav .navi .navi_item:nth-child(3) {
  margin-right: 0;
}

.header .navigation_pc nav .navi .navi_item:last-child {
  margin-right: 0;
  margin-left: 60px;
  position: relative;
}

.header .navigation_pc nav .navi .navi_item:last-child::before {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .navigation_pc nav .navi .navi_item .link {
  text-decoration: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
}

.header .navigation_pc nav .navi .navi_item .link.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header .navigation_pc nav .navi .navi_item .link.contact .icon {
  width: 20px;
}

.header .navigation_sp {
  display: none;
}

@media (max-width: 767px) {
  .header {
    padding: 20px 20px 10px;
  }
  .header .logo {
    width: 210px;
  }
  .header .sp_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .header .sp_menu .icon {
    width: 30px;
    position: relative;
  }
  .header .sp_menu .icon .link {
    position: absolute;
    inset: 0;
  }
  .header .sp_menu .hamburger_menu {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    position: relative;
    cursor: pointer;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar {
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(1) {
    top: 0;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(2) {
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(3) {
    top: 20px;
  }
  .header .navigation_pc {
    display: none;
  }
  .header .navigation_sp {
    width: 100%;
    padding: 100px 20px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #c1ad54;
    display: block;
    position: fixed;
    top: -800%;
    left: 0;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header .navigation_sp.panelactive {
    top: 0;
  }
  .header .navigation_sp nav {
    width: 100%;
  }
  .header .navigation_sp nav .navi {
    width: 100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .header .navigation_sp nav .navi .navi_item .link {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
  }
  .header .navigation_sp nav .contact {
    margin: 100px auto 0;
    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: 12px;
    position: relative;
  }
  .header .navigation_sp nav .contact::before {
    content: '';
    width: 300px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .navigation_sp nav .contact .link {
    position: absolute;
    inset: 0;
  }
  .header .navigation_sp nav .contact .icon {
    width: 25px;
  }
  .header .navigation_sp nav .contact span {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
  }
  .header .navigation_sp nav .tel_link {
    display: block;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin: 15px auto 0;
    text-align: center;
  }
  .header .navigation_sp nav .tel_link span {
    font-size: 28px;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: #c1ad54;
  padding: 50px 0 20px;
}

.footer .logo {
  max-width: 315px;
  margin: auto;
}

.footer .icons {
  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: 20px;
  margin-top: 10px;
}

.footer .icons .icon {
  width: 30px;
  position: relative;
}

.footer .icons .icon .link {
  position: absolute;
  inset: 0;
}

.footer .copy {
  margin-top: 55px;
}

.footer .copy .copyRight {
  display: block;
  text-align: center;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .copy .copyRight {
    font-size: 10px;
  }
}

/* ---------------------------------------------------------
    mainvisual
--------------------------------------------------------- */
.main_visual {
  width: 100%;
  height: 100vh;
  background: url(../images/top/mainVisual.jpg) no-repeat center/cover;
  position: relative;
}

.main_visual .inner {
  height: 100%;
  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;
}

.main_visual .inner .logo {
  width: 335px;
}

.main_visual .notes {
  width: 230px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  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;
  position: absolute;
  bottom: 20px;
  right: 40px;
}

.main_visual .notes span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .main_visual {
    height: 90vh;
  }
  .main_visual .inner .logo {
    max-width: 330px;
    width: 100%;
  }
  .main_visual .notes {
    bottom: 25px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .main_visual .notes span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
}

/* ---------------------------------------------------------
    bunner_area
--------------------------------------------------------- */
.bunner_area {
  margin-top: 80px;
}

.bunner_area .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bunner_area .inner .bunner {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

.bunner_area .inner .bunner:hover .image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.bunner_area .inner .bunner::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.bunner_area .inner .bunner .link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.bunner_area .inner .bunner .image {
  width: 100%;
  height: 100%;
  max-height: 200px;
  aspect-ratio: 12 / 5;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.bunner_area .inner .bunner .text_content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.bunner_area .inner .bunner .text_content .link_title {
  font-size: 32px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  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;
  gap: 8px;
}

.bunner_area .inner .bunner .text_content .link_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.bunner_area .inner .bunner .notes {
  width: 230px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  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;
  position: absolute;
  bottom: 5px;
  right: 10px;
  z-index: 2;
}

.bunner_area .inner .bunner .notes span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .bunner_area {
    margin-top: 60px;
  }
  .bunner_area .inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .bunner_area .inner .bunner {
    max-width: 350px;
    margin: auto;
  }
  .bunner_area .inner .bunner .text_content .link_title {
    font-size: 28px;
  }
  .bunner_area .inner .bunner .text_content .link_title .en {
    font-size: 16px;
  }
  .bunner_area .inner .bunner .notes {
    width: 145px;
    height: 25px;
  }
  .bunner_area .inner .bunner .notes span {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
    page_title
--------------------------------------------------------- */
.page_title {
  width: 100%;
  margin-top: 80px;
}

.page_title .image.sp {
  display: none;
}

@media (max-width: 767px) {
  .page_title {
    margin-top: 60px;
  }
  .page_title .image.pc {
    display: none;
  }
  .page_title .image.sp {
    display: block;
  }
}

/* ---------------------------------------------------------
    campaign
--------------------------------------------------------- */
.sect_campaign {
  margin-top: 80px;
}

.sect_campaign .campaign .sect_title {
  font-size: 32px;
  font-weight: 500;
  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;
  gap: 8px;
}

.sect_campaign .campaign .sect_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.sect_campaign .campaign .posts {
  margin-top: 30px;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% calc(30% - 20px) calc(30% - 20px);
      grid-template-columns: 40% calc(30% - 20px) calc(30% - 20px);
  gap: 20px;
}

.sect_campaign .campaign .posts .post_item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.sect_campaign .campaign .posts .post_item:hover .thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sect_campaign .campaign .posts .post_item:first-child .text_content {
  padding: 30px 30px;
}

.sect_campaign .campaign .posts .post_item:first-child .text_content .post_title {
  font-size: 28px;
}

.sect_campaign .campaign .posts .post_item:first-child .text_content .sentence {
  font-size: 20px;
}

.sect_campaign .campaign .posts .post_item .link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sect_campaign .campaign .posts .post_item .thumbnail {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sect_campaign .campaign .posts .post_item .thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.sect_campaign .campaign .posts .post_item .thumbnail .notes {
  width: 230px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.sect_campaign .campaign .posts .post_item .thumbnail .notes span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.sect_campaign .campaign .posts .post_item .text_content {
  padding: 15px 20px 20px;
}

.sect_campaign .campaign .posts .post_item .text_content .post_title {
  font-size: 20px;
  font-weight: 500;
}

.sect_campaign .campaign .posts .post_item .text_content .sentence {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

@media (max-width: 1023px) {
  .sect_campaign .campaign .posts .post_item .thumbnail .notes {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
}

@media (max-width: 767px) {
  .sect_campaign {
    margin-top: 60px;
  }
  .sect_campaign .campaign .sect_title {
    font-size: 26px;
    gap: 5px;
  }
  .sect_campaign .campaign .sect_title .en {
    font-size: 18px;
  }
  .sect_campaign .campaign .posts {
    margin-top: 20px;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
        grid-template-areas: "box-1 box-1" "box-2 box-3";
  }
  .sect_campaign .campaign .posts .post_item {
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  .sect_campaign .campaign .posts .post_item:first-child {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: box-1;
  }
  .sect_campaign .campaign .posts .post_item:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: box-2;
  }
  .sect_campaign .campaign .posts .post_item:last-child {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: box-3;
  }
  .sect_campaign .campaign .posts .post_item:first-child .text_content {
    padding: 25px 10px 20px 25px;
  }
  .sect_campaign .campaign .posts .post_item:first-child .text_content .post_title {
    font-size: 24px;
  }
  .sect_campaign .campaign .posts .post_item:first-child .text_content .sentence {
    font-size: 16px;
  }
  .sect_campaign .campaign .posts .post_item .link {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .sect_campaign .campaign .posts .post_item .thumbnail .notes {
    width: 145px;
    height: 25px;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .sect_campaign .campaign .posts .post_item .thumbnail .notes span {
    font-size: 10px;
  }
  .sect_campaign .campaign .posts .post_item .text_content {
    padding: 10px 5px 10px 10px;
  }
  .sect_campaign .campaign .posts .post_item .text_content .post_title {
    font-size: 14px;
  }
  .sect_campaign .campaign .posts .post_item .text_content .sentence {
    font-size: 10px;
    margin-top: 5px;
  }
}

/* ---------------------------------------------------------
    menu
--------------------------------------------------------- */
.sect_menu {
  margin-top: 100px;
}

.sect_menu .sect_title {
  font-size: 32px;
  font-weight: 500;
  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;
  gap: 8px;
}

.sect_menu .sect_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.sect_menu .menu {
  margin-top: 30px;
  background: #ede7cf;
}

.sect_menu .menu .course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.sect_menu .menu .course:first-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sect_menu .menu .course:first-child .text_content {
  padding-right: 6.20vw;
  padding-left: 30px;
}

.sect_menu .menu .course:first-child .text_content .btn {
  background: #b5a563;
}

.sect_menu .menu .course:first-child .batch {
  right: 6.20vw;
}

.sect_menu .menu .course:first-child .batch .image {
  mix-blend-mode: multiply;
}

.sect_menu .menu .course .text_content {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 30px;
  padding-left: 6.20vw;
}

.sect_menu .menu .course .text_content .course_title {
  font-size: 24px;
  font-weight: 500;
}

.sect_menu .menu .course .text_content .sentence {
  line-height: 1.75;
  margin-top: 20px;
}

.sect_menu .menu .course .text_content .btn {
  position: relative;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #526e86;
  width: 250px;
  height: 40px;
  border-radius: 100px;
  border: 0;
  margin-top: 30px;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.sect_menu .menu .course .text_content .btn:hover {
  opacity: .7;
}

.sect_menu .menu .course .text_content .btn .arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: inline-block;
  width: 6.1px;
  height: 10.7px;
}

.sect_menu .menu .course .text_content .btn .arrow::before, .sect_menu .menu .course .text_content .btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.75px);
  right: 0;
  width: 8px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 0.75px) 50%;
          transform-origin: calc(100% - 0.75px) 50%;
}

.sect_menu .menu .course .text_content .btn .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sect_menu .menu .course .text_content .btn .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sect_menu .menu .course .text_content .btn .link {
  position: absolute;
  inset: 0;
}

.sect_menu .menu .course .batch {
  max-width: 165px;
  width: 10vw;
  position: absolute;
  top: 5px;
  right: calc(50vw + 30px);
}

.sect_menu .menu .course .batch .image {
  mix-blend-mode: multiply;
}

.sect_menu .menu .course .image_photo {
  width: 50%;
}

.sect_menu .menu .course .image_photo .sp {
  display: none;
}

@media (max-width: 1040px) {
  .sect_menu .menu .course:first-child .text_content {
    padding-right: 20px;
    padding-left: 30px;
  }
  .sect_menu .menu .course:first-child .batch {
    right: 20px;
  }
  .sect_menu .menu .course .text_content {
    padding-right: 30px;
    padding-left: 20px;
  }
}

@media (max-width: 1023px) {
  .sect_menu .menu {
    margin-top: 20px;
  }
  .sect_menu .menu .course {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sect_menu .menu .course:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sect_menu .menu .course:first-child .text_content {
    padding: 30px 20px 60px;
  }
  .sect_menu .menu .course:first-child .batch {
    top: 63vw;
    right: 20px;
  }
  .sect_menu .menu .course .text_content {
    width: 100%;
    padding: 30px 20px 60px;
  }
  .sect_menu .menu .course .text_content .sentence {
    margin-top: 25px;
  }
  .sect_menu .menu .course .batch {
    max-width: auto;
    width: 130px;
    position: absolute;
    top: 66vw;
    right: 20px;
  }
  .sect_menu .menu .course .image_photo {
    width: 100%;
  }
  .sect_menu .menu .course .image_photo .pc {
    display: none;
  }
  .sect_menu .menu .course .image_photo .sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .sect_menu {
    margin-top: 60px;
  }
  .sect_menu .sect_title {
    font-size: 26px;
    gap: 5px;
  }
  .sect_menu .sect_title .en {
    font-size: 18px;
  }
}

/* ---------------------------------------------------------
    parallax
--------------------------------------------------------- */
.parallax {
  overflow: hidden;
  height: 45vh;
  position: relative;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  background: #fff;
}

.parallax .scroll_photo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-image: url(../images/top/parallax.svg);
  background-position: 50% 50%;
}

/* ---------------------------------------------------------
    commitment
--------------------------------------------------------- */
.sect_commitment {
  margin-top: 80px;
}

.sect_commitment .commitment .sect_title {
  font-size: 32px;
  font-weight: 500;
  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;
  gap: 8px;
}

.sect_commitment .commitment .sect_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.sect_commitment .commitment .slider {
  list-style-type: none;
  margin: 30px auto 0;
  max-width: 670px;
}

.sect_commitment .commitment .slider .slider_item {
  background: #ede7cf;
  max-width: 670px;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sect_commitment .commitment .slider .slider_item .item_inner .image_photo {
  width: 100%;
  height: auto;
}

.sect_commitment .commitment .slider .slider_item .item_inner .text_content .item_title {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
}

.sect_commitment .commitment .slider .slider_item .item_inner .text_content .sentence {
  line-height: 1.75;
  margin-top: 10px;
}

.sect_commitment .commitment .slider .slider_item .item_inner .text_content .sentence span {
  font-weight: 600;
}

.sect_commitment .commitment .slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: opacity .15s ease, -webkit-transform .15s ease, -webkit-box-shadow .15s ease;
  transition: opacity .15s ease, -webkit-transform .15s ease, -webkit-box-shadow .15s ease;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease, -webkit-transform .15s ease, -webkit-box-shadow .15s ease;
}

.sect_commitment .commitment .slider .slick-arrow::before {
  content: '‹';
  font-size: 60px;
  line-height: 1;
}

.sect_commitment .commitment .slider .slick-arrow.slick-prev {
  left: -50px;
}

.sect_commitment .commitment .slider .slick-arrow.slick-prev::before {
  content: '‹';
  color: #000;
}

.sect_commitment .commitment .slider .slick-arrow.slick-next {
  right: -50px;
}

.sect_commitment .commitment .slider .slick-arrow.slick-next::before {
  content: '›';
  color: #000;
}

@media (max-width: 767px) {
  .sect_commitment {
    margin-top: 60px;
    overflow-x: hidden;
  }
  .sect_commitment .commitment .sect_title {
    font-size: 26px;
    gap: 5px;
  }
  .sect_commitment .commitment .sect_title .en {
    font-size: 18px;
  }
  .sect_commitment .commitment .slider {
    margin: 20px auto 0;
  }
  .sect_commitment .commitment .slider .slider_item {
    padding: 20px;
  }
  .sect_commitment .commitment .slider .slider_item .item_inner .text_content .item_title {
    font-size: 20px;
    margin-top: 15px;
  }
  .sect_commitment .commitment .slider .slick-arrow.slick-prev {
    left: -25px;
  }
  .sect_commitment .commitment .slider .slick-arrow.slick-next {
    right: -25px;
  }
}

/* ---------------------------------------------------------
    info
--------------------------------------------------------- */
.sect_news {
  margin-top: 80px;
}

.sect_news .news .sect_title {
  font-size: 32px;
  font-weight: 500;
  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;
  gap: 8px;
}

.sect_news .news .sect_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.sect_news .news .news_post {
  margin-top: 30px;
  list-style-type: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sect_news .news .news_post .post_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  border-bottom: 1.5px dotted #000;
  position: relative;
}

.sect_news .news .news_post .post_item:last-child {
  border: 0;
}

.sect_news .news .news_post .post_item .link {
  position: absolute;
  inset: 0;
}

.sect_news .news .news_post .post_item .wrap {
  display: contents;
}

.sect_news .news .news_post .post_item .wrap .date {
  font-size: 15px;
  white-space: nowrap;
  margin-right: 20px;
}

.sect_news .news .news_post .post_item .wrap .category {
  margin-right: 60px;
}

.sect_news .news .news_post .post_item .wrap .category .post-categories {
  list-style-type: none;
}

.sect_news .news .news_post .post_item .wrap .category .post-categories li {
  width: 130px;
  height: 30px;
  background: #c1ad54;
  border-radius: 100px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.sect_news .news .news_post .post_item .wrap .category .post-categories li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.sect_news .news .news_post .post_item .post_title {
  line-height: 1.75;
  font-weight: 400;
}

.sect_news .news .more_btn {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  padding: 0 60px 0 0;
  border: 0;
  margin: 20px 0 0 auto;
  font-size: 24px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  color: #000;
}

.sect_news .news .more_btn:hover::before, .sect_news .news .more_btn:hover::after {
  right: -10px;
}

.sect_news .news .more_btn .link {
  position: absolute;
  inset: 0;
}

.sect_news .news .more_btn::before {
  content: '';
  width: 50px;
  height: 1.5px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.sect_news .news .more_btn::after {
  content: '';
  width: 15px;
  height: 1.5px;
  background: #000;
  position: absolute;
  top: 37%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media (max-width: 767px) {
  .sect_news {
    margin-top: 60px;
  }
  .sect_news .news .sect_title {
    font-size: 26px;
    gap: 5px;
  }
  .sect_news .news .sect_title .en {
    font-size: 18px;
  }
  .sect_news .news .news_post {
    margin-top: 30px;
    list-style-type: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .sect_news .news .news_post .post_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sect_news .news .news_post .post_item .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sect_news .news .news_post .post_item .wrap .category {
    margin-right: 0;
  }
  .sect_news .news .more_btn {
    padding: 0 40px 0 0;
    margin: 15px 0 0 auto;
    font-size: 20px;
  }
  .sect_news .news .more_btn:hover::before, .sect_news .news .more_btn:hover::after {
    right: -5px;
  }
  .sect_news .news .more_btn::before {
    width: 30px;
    height: 1px;
  }
  .sect_news .news .more_btn::after {
    width: 10px;
    height: 1px;
    top: 39.5%;
  }
}

/* ---------------------------------------------------------
    info
--------------------------------------------------------- */
.sect_info {
  margin-top: 80px;
}

.sect_info .info .sect_title {
  font-size: 32px;
  font-weight: 500;
  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;
  gap: 8px;
}

.sect_info .info .sect_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.sect_info .info .f_wrap {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 350px;
      grid-template-columns: 1fr 350px;
  gap: 30px;
}

.sect_info .info .f_wrap .overflow {
  display: contents;
}

.sect_info .info .f_wrap .overflow .shop_info_table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1fr;
      grid-template-columns: 140px 1fr;
  border: 1px solid #c6c6c6;
  background: #fff;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row {
  display: contents;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row:first-child .shop_info_head, .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row:first-child .shop_info_body {
  border-top: 0;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_head, .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body {
  padding: 20px 20px;
  border-top: 1px solid #c6c6c6;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_head {
  padding: 20px 10px;
  background: #f6f6f6;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_head .shop_info_label_ja {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_head .shop_info_label_en {
  font-size: 14px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body p {
  margin: 0 0 8px;
  line-height: 1.5;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body p:last-child {
  margin-bottom: 0;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body p .shop_info_sub {
  font-size: 13px;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body p.shop_info_text_en {
  font-size: 14px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.45;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body .shop_info_bullets {
  margin: 4px 0 10px 1.2em;
  padding: 0;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 35px;
}

.sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body .shop_info_bullets li {
  margin: 2px 0;
}

.sect_info .info .f_wrap .shop_info_calendar .shop_image {
  width: 100%;
  position: relative;
}

.sect_info .info .f_wrap .shop_info_calendar .shop_image .notes {
  width: 230px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sect_info .info .f_wrap .shop_info_calendar .shop_image .notes span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar {
  width: 100%;
  max-width: 360px;
  margin: 40px auto 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars {
  padding: 15px;
  border: 2px solid #c5c5c5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar {
  margin: 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month {
  border: 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month caption .month-header {
  margin: 0 0 20px 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month caption .month-header .month-prev .nav-prev {
  border-color: #9fa0a6;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month caption .month-header .calendar-caption {
  font-size: 16px;
  color: #000;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month caption .month-header .month-next .nav-next {
  border-color: #9fa0a6;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month thead::after {
  content: "";
  height: 1px;
  width: 100%;
  padding: 3px 0;
  display: block;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month thead tr th {
  font-size: 12px;
  color: #000;
  border: 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td {
  border: 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td .other-month {
  width: 32px;
  height: 32px;
  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;
  border-radius: 3px;
  margin: 4px auto 0;
  background: transparent !important;
  color: #c5c5c5;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td .other-month.holiday-regular-day-off-regu {
  background: transparent !important;
  color: #c5c5c5;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td .other-month.holiday-pm {
  background: transparent !important;
  color: #c5c5c5;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td div {
  width: 32px;
  height: 32px;
  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;
  border-radius: 3px;
  margin: 4px auto 0;
  background: #efefef;
  color: #000;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td div.holiday-regular-day-off-regu, .sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td div.holiday-pm {
  color: #fff;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-dayname tbody .dayname td div.today {
  color: #000;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .calendars .calendar .xo-month tbody tr .month-week .month-event-space tbody tr td {
  border: 0;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .holiday-titles {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.sect_info .info .f_wrap .shop_info_calendar .calendar .xo-event-calendar .holiday-titles .holiday-title span {
  border: 0;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .sect_info {
    margin-top: 60px;
  }
  .sect_info .info .sect_title {
    font-size: 26px;
    gap: 5px;
  }
  .sect_info .info .sect_title .en {
    font-size: 18px;
  }
  .sect_info .info .f_wrap {
    margin-top: 20px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .sect_info .info .f_wrap .overflow .shop_info_table {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    border: 0;
    background: #fff;
  }
  .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row {
    display: contents;
  }
  .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row:first-child .shop_info_head {
    border-top: 1px solid #c6c6c6;
  }
  .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row:last-child .shop_info_body {
    border-bottom: 1px solid #c6c6c6;
  }
  .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_head, .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_body {
    padding: 20px 20px;
    border-top: 0;
  }
  .sect_info .info .f_wrap .overflow .shop_info_table .shop_info_row .shop_info_head {
    padding: 10px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    border-top: 1px solid #c6c6c6;
  }
  .sect_info .info .f_wrap .shop_info_calendar .shop_image .notes {
    width: 150px;
    height: 30px;
  }
  .sect_info .info .f_wrap .shop_info_calendar .shop_image .notes span {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
    map
--------------------------------------------------------- */
.map {
  margin-top: 80px;
  width: 100%;
}

.map iframe {
  width: 100%;
  height: 370px;
}

@media (max-width: 767px) {
  .map {
    margin-top: 60px;
  }
  .map iframe {
    height: 220px;
  }
}
/*# sourceMappingURL=top.css.map */