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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

:root {
  --color-white: #ffffff;
  --font-color: #1c1c1c;
  --transition-duration: .3s;
  --move_deg: 17deg;
  --move_deg_reverse: -17deg;
}

body {
  font-family: "Zen Old Mincho", serif;
  background: url(../img/bg.webp) repeat center top;
  min-width: 1080px;
  color: var(--font-color);
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}
body.en p, body.en li, body.en dt, body.en dd, body.en th, body.en td, body.en h1, body.en h2, body.en h3, body.en h4, body.en h5, body.en h6 {
  letter-spacing: 0 !important;
}

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

p {
  font-size: 16px;
  color: var(--font-color);
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.--pointer_ignore:hover {
  cursor: default;
}

img {
  max-width: 100%;
}

.efc-fade {
  opacity: 0;
  transition: opacity 1s linear;
}
.efc-fade.--show {
  opacity: 1;
}

@keyframes line-top-in {
  0% {
    left: -3px;
    top: 1px;
    transform: rotate(var(--move_deg_reverse));
  }
  100% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes line-top-out {
  0% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    left: -3px;
    top: 1px;
    transform: rotate(var(--move_deg_reverse));
  }
}
@keyframes line-bot-in {
  0% {
    left: -3px;
    bottom: 1px;
    transform: rotate(var(--move_deg));
  }
  100% {
    left: 0;
    bottom: 0;
    transform: rotate(0deg);
  }
}
@keyframes line-bot-out {
  0% {
    left: 0;
    bottom: 0;
    transform: rotate(0deg);
  }
  100% {
    left: -3px;
    bottom: 1px;
    transform: rotate(var(--move_deg));
  }
}
@keyframes circle-in-out {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(3);
  }
  100% {
    opacity: 0;
    transform: scale(6);
  }
}
@media only screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp--di {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp--di {
    display: inline;
  }
}

.u-sp--db {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp--db {
    display: block;
  }
}

.l-container {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-container {
    width: 89.3%;
  }
}

.l-container02 {
  max-width: 1366px;
  padding: 0 18px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-container02 {
    width: 100%;
    padding: 0;
  }
}

.l-container03 {
  max-width: 830px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-container03 {
    width: 84%;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1080px;
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 44px 21px 51px;
  z-index: 500;
  box-sizing: border-box;
  transition: top var(--transition-duration) linear;
}
@media only screen and (max-width: 767px) {
  .l-header {
    min-width: 0;
    padding: 16px;
  }
}
.l-header.--hide {
  top: -200px;
}
.l-header.--menu-open {
  top: 0;
}
.l-header .l-header__l {
  display: flex;
  align-items: center;
}
.l-header .l-header__l .l-header__l_logo {
  width: 38px;
  margin-right: 26px;
}
@media only screen and (max-width: 767px) {
  .l-header .l-header__l .l-header__l_logo {
    width: 32px;
    margin-right: 15px;
  }
}
.l-header .l-header__r {
  display: flex;
  gap: 0 37px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l-header .l-header__r {
    gap: 0 20px;
  }
}

.l-footer {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 30px;
  }
}
.l-footer .l-footer__top {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.l-footer .l-footer__top figure {
  width: 39px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top figure {
    width: 33px;
    margin-bottom: 37px;
  }
}
.l-footer .l-footer__top .l-footer__top_l {
  width: 470px;
  padding-top: 15px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top_l {
    width: 94%;
  }
}
.l-footer .l-footer__top .l-footer__top_l.--en {
  width: 760px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top_l.--en {
    width: 94%;
  }
}
.l-footer .l-footer__top .l-footer__top_l.--en dl dt {
  width: 145px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top_l.--en dl dt {
    width: 100%;
  }
}
.l-footer .l-footer__top .l-footer__top_l.--en dl dd {
  margin-left: 160px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top_l.--en dl dd {
    margin-left: 0;
  }
}
.l-footer .l-footer__top .l-footer__top_l dl {
  margin-bottom: 30px;
}
.l-footer .l-footer__top .l-footer__top_l dl dt, .l-footer .l-footer__top .l-footer__top_l dl dd {
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.02em;
}
.l-footer .l-footer__top .l-footer__top_l dl dt {
  width: 100px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top_l dl dt {
    width: 100%;
    float: none;
  }
}
.l-footer .l-footer__top .l-footer__top_l dl dd {
  margin-left: 120px;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__top .l-footer__top_l dl dd {
    margin-left: 0;
  }
}
.l-footer .l-footer__top .l-footer__top_l p {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
}
.l-footer .l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 0;
  }
}
.l-footer .l-footer__bottom .l-footer__bottom__link {
  position: relative;
  top: -8px;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__bottom .l-footer__bottom__link {
    top: 0;
    text-align: center;
  }
}
.l-footer .l-footer__bottom .l-footer__bottom__link a {
  padding-bottom: 3px;
  border-bottom: #cccccc solid 1px;
}
.l-footer .l-footer__bottom .l-footer__bottom__link a:hover {
  text-decoration: none;
  border-bottom: none;
}
.l-footer .l-footer__bottom .l-footer__bottom__copy {
  font-size: 12px;
  line-height: 100%;
  color: #888888;
}
@media only screen and (max-width: 767px) {
  .l-footer .l-footer__bottom .l-footer__bottom__copy {
    text-align: center;
  }
}

.l-index {
  margin-bottom: 155px;
}
@media only screen and (max-width: 767px) {
  .l-index {
    margin-bottom: 45px;
  }
}
.l-index .fade_imgs figure {
  opacity: 0;
  transition: opacity 0.6s linear;
}
.l-index .fade_imgs figure.--show {
  opacity: 1;
}

.l-tokushoho {
  padding-top: 180px;
  margin-bottom: 135px;
}
@media only screen and (max-width: 767px) {
  .l-tokushoho {
    padding-top: 135px;
    margin-bottom: 50px;
  }
}
.l-tokushoho .c-ttl01 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .l-tokushoho .c-ttl01 {
    margin-bottom: 25px;
  }
}

.c-btn01 {
  width: 170px;
  border: #b3b3b3 solid 1px;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  line-height: 120%;
  color: var(--font-color);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-btn01 {
    width: 145px;
  }
}
.c-btn01.--white {
  border-color: var(--color-white);
  color: var(--color-white);
}
.c-btn01.--white a span:after {
  border-right-color: var(--color-white);
  border-bottom-color: var(--color-white);
}
.c-btn01 a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 10px 0;
}
.c-btn01 a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #000000;
  opacity: 0.2;
  transition: all var(--transition-duration) linear;
  z-index: -1;
}
.c-btn01 a span {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .c-btn01 a span {
    padding-right: 17px;
  }
}
.c-btn01 a span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 7px;
  height: 7px;
  border-right: #b3b3b3 solid 1px;
  border-bottom: #b3b3b3 solid 1px;
  transform: rotate(-45deg) translate(0, -50%);
}
.c-btn01 a:hover:after {
  width: 100%;
}

.c-lang {
  display: flex;
  gap: 0 28px;
}
.c-lang.--white li {
  color: var(--color-white);
  font-size: 16px;
  opacity: 0.6;
}
.c-lang.--white li.c-lang--active {
  opacity: 1;
  color: var(--color-white);
  font-weight: bold;
}
.c-lang.--white li:not(:first-child):before {
  background: var(--color-white);
  opacity: 0.5;
}
.c-lang li {
  list-style: none;
  font-family: "Ibarra Real Nova", serif;
  font-size: 15px;
  font-weight: 600;
  color: #b3b3b3;
  line-height: 120%;
}
@media only screen and (max-width: 767px) {
  .c-lang li {
    font-size: 15px;
  }
}
.c-lang li.c-lang--active {
  color: var(--font-color);
}
.c-lang li:not(:first-child) {
  position: relative;
}
.c-lang li:not(:first-child):before {
  content: "";
  position: absolute;
  left: -20px;
  top: 40%;
  display: block;
  width: 1px;
  height: 15px;
  background: #b3b3b3;
  transform: rotate(45deg) translate(0, -50%);
}
.c-lang li a {
  color: inherit;
  text-decoration: none;
}
.c-lang li a:hover {
  text-decoration: underline;
}

.c-menu {
  display: flex;
  align-items: center;
  gap: 0 39px;
}
@media only screen and (max-width: 767px) {
  .c-menu {
    display: none;
  }
}
.c-menu.--white li {
  color: var(--color-white);
}
.c-menu li {
  list-style: none;
  font-size: 15px;
  line-height: 120%;
  color: var(--font-color);
  letter-spacing: 0.11em;
}
.c-menu li a {
  color: inherit;
  text-decoration: none;
}
.c-menu li a:hover {
  text-decoration: underline;
}
.c-menu li img {
  width: 20px;
}

.c-ttl01 {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-ttl01 {
    font-size: 25px;
  }
}

.c-ttl02 {
  background: #f5f5f5;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 12px 0;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .c-ttl02 {
    margin-bottom: 20px;
  }
}
.c-ttl02 span {
  display: block;
  border-left: #333333 solid 4px;
  padding-left: 30px;
}

.c-course_list .c-course_list__inner {
  padding-bottom: 20px;
  border-bottom: #e6e6e6 solid 1px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .c-course_list .c-course_list__inner {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.c-course_list .c-course_list__inner .c-course_list__txt01 {
  font-size: 18px;
  line-height: 186%;
  letter-spacing: 0.05em;
}
.c-course_list .c-course_list__inner .c-course_list__txt01 span {
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  color: #999999;
  margin: 0 10px 0 15px;
}
.c-course_list .c-course_list__inner .c-course_list__txt01 small {
  position: relative;
  top: -4px;
  font-size: 14px;
  vertical-align: middle;
}
.c-course_list .c-course_list__inner .c-course_list__txt02 {
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.05em;
}
.c-course_list .c-course_list__aside {
  font-size: 14px;
  line-height: 186%;
  letter-spacing: 0.05em;
  margin-top: -5px;
}

.c-border_box {
  border: #e6e6e6 solid 1px;
  padding: 18px 25px;
}
@media only screen and (max-width: 767px) {
  .c-border_box {
    padding: 18px 20px;
  }
}
.c-border_box p {
  font-size: 14px;
  line-height: 171%;
  letter-spacing: 0.02em;
}

.c-2col_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .c-2col_list {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.c-2col_list .c-2col_list__l {
  width: 180px;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.06em;
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  .c-2col_list .c-2col_list__l {
    width: 100%;
    text-align: center;
    margin: 0 0 15px 0;
  }
}
.c-2col_list .c-2col_list__r {
  width: 580px;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .c-2col_list .c-2col_list__r {
    width: 100%;
  }
}

.c-table {
  width: 100%;
  border-bottom: #e6e6e6 solid 1px;
}
.c-table tr {
  border-top: #e6e6e6 solid 1px;
}
.c-table th, .c-table td {
  font-size: 16px;
  font-weight: 400;
  line-height: 188%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .c-table th, .c-table td {
    display: block;
    padding: 25px 0;
  }
}
.c-table th {
  width: 200px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .c-table th {
    width: 100%;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .c-table td {
    padding-top: 0;
  }
}

.c-hover_btn {
  width: 495px;
  height: 205px;
  background: url(../img/index/btn_bg.jpg) no-repeat center center/contain;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin: 150px auto 0;
}
@media only screen and (max-width: 767px) {
  .c-hover_btn {
    width: 84%;
    height: 35vw;
    font-size: 17px;
    margin-top: 47px;
  }
}
.c-hover_btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.c-hover_btn a:after {
  content: "";
  display: block;
  background: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s linear;
  z-index: 2;
}
.c-hover_btn a:hover:after {
  opacity: 0.3;
}
.c-hover_btn a:hover span.c-hover_btn__main {
  transform: translate(-50%, -150%);
  opacity: 0;
}
.c-hover_btn a:hover span.c-hover_btn__sub {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.c-hover_btn a span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: #fff solid 1px;
}
.c-hover_btn a span.c-hover_btn__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: 0.6s;
}
.c-hover_btn a span.c-hover_btn__sub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 150%);
  z-index: 10;
  transition: 0.6s;
  opacity: 0;
}

.c-sp_btn {
  display: none;
  position: relative;
  height: 11px;
  width: 30px;
}
.c-sp_btn .line-top,
.c-sp_btn .line-middle,
.c-sp_btn .line-bottom {
  position: absolute;
  display: block;
  height: 1px;
  width: 30px;
  background: #000;
}
.c-sp_btn .line-top {
  top: 0;
  transform-origin: 29.5px 0.5px;
}
.c-sp_btn .line-middle {
  top: 5px;
  transition: opacity 100ms linear;
}
.c-sp_btn .line-bottom {
  bottom: 0;
  transform-origin: 29.5px 0.5px;
}
.c-sp_btn.is-open .line-top {
  animation: line-top-out 300ms linear normal;
  animation-fill-mode: forwards;
}
.c-sp_btn.is-open .line-middle {
  opacity: 0;
}
.c-sp_btn.is-open .line-bottom {
  animation: line-bot-out 300ms linear normal;
  animation-fill-mode: forwards;
}
.c-sp_btn.is-closed .line-top {
  animation: line-top-in 300ms linear normal;
  animation-fill-mode: forwards;
}
.c-sp_btn.is-closed .line-middle {
  transition-delay: 100ms;
}
.c-sp_btn.is-closed .line-bottom {
  animation: line-bot-in 300ms linear normal;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 767px) {
  .c-sp_btn {
    display: block;
  }
}
.c-sp_btn.--white {
  position: relative;
  height: 11px;
  width: 30px;
}
.c-sp_btn.--white .line-top,
.c-sp_btn.--white .line-middle,
.c-sp_btn.--white .line-bottom {
  position: absolute;
  display: block;
  height: 1px;
  width: 30px;
  background: var(--color-white);
}
.c-sp_btn.--white .line-top {
  top: 0;
  transform-origin: 29.5px 0.5px;
}
.c-sp_btn.--white .line-middle {
  top: 5px;
  transition: opacity 100ms linear;
}
.c-sp_btn.--white .line-bottom {
  bottom: 0;
  transform-origin: 29.5px 0.5px;
}
.c-sp_btn.--white.is-open .line-top {
  animation: line-top-out 300ms linear normal;
  animation-fill-mode: forwards;
}
.c-sp_btn.--white.is-open .line-middle {
  opacity: 0;
}
.c-sp_btn.--white.is-open .line-bottom {
  animation: line-bot-out 300ms linear normal;
  animation-fill-mode: forwards;
}
.c-sp_btn.--white.is-closed .line-top {
  animation: line-top-in 300ms linear normal;
  animation-fill-mode: forwards;
}
.c-sp_btn.--white.is-closed .line-middle {
  transition-delay: 100ms;
}
.c-sp_btn.--white.is-closed .line-bottom {
  animation: line-bot-in 300ms linear normal;
  animation-fill-mode: forwards;
}

.c-en_opening_table {
  display: table;
}
.c-en_opening_table .c-en_opening_table__row {
  display: table-row;
}
.c-en_opening_table .c-en_opening_table__cell {
  display: table-cell;
}
.c-en_opening_table .c-en_opening_table__cell:first-child {
  padding-right: 15px;
}

.p-index_slider {
  position: relative;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  aspect-ratio: 1366/748;
}
@media only screen and (max-width: 767px) {
  .p-index_slider {
    aspect-ratio: 375/600;
  }
}
.p-index_slider .p-index_slider__head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  z-index: 4;
  box-sizing: border-box;
  transition: all 0.5s linear;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider__head {
    min-width: 0;
    padding: 16px;
  }
}
.p-index_slider .p-index_slider__head.--show {
  opacity: 1;
}
.p-index_slider .p-index_slider__head .p-index_slider__head_r {
  display: flex;
  gap: 0 40px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider__head .p-index_slider__head_r {
    gap: 0 20px;
  }
}
.p-index_slider .p-index_slider__logo {
  position: absolute;
  left: 115px;
  top: 115px;
  width: 70px;
  z-index: 4;
  transition: all 0.5s linear;
  opacity: 0;
}
@media only screen and (max-width: 1200px) {
  .p-index_slider .p-index_slider__logo {
    top: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider__logo {
    top: 50%;
    left: 50%;
    width: 14.6%;
    transform: translate(-50%, -50%);
  }
}
.p-index_slider .p-index_slider__logo.--show {
  opacity: 1;
}
.p-index_slider .p-index_slider_nav__wrapper {
  position: absolute;
  right: 55px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 0 15px;
  z-index: 4;
  transition: all 0.5s linear;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider_nav__wrapper {
    right: 26px;
    bottom: 26px;
    width: 14px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
  }
}
.p-index_slider .p-index_slider_nav__wrapper.--show {
  opacity: 1;
}
.p-index_slider .p-index_slider_nav__wrapper .p-index_slider_nav {
  display: flex;
  gap: 0 10px;
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider_nav__wrapper .p-index_slider_nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 7px;
    gap: 9px 0;
  }
}
.p-index_slider .p-index_slider_nav__wrapper .p-index_slider_nav div {
  width: 7px;
  height: 7px;
  background: var(--color-white);
  opacity: 0.3;
}
.p-index_slider .p-index_slider_nav__wrapper .p-index_slider_nav div.current {
  opacity: 1;
}
.p-index_slider .p-index_slider_nav__wrapper .p-index_slider_nav__num {
  font-size: 14px;
  color: var(--color-white);
}
.p-index_slider .p-index_slider_inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.p-index_slider .p-index_slider_inner li {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: block !important;
  z-index: 1;
}
.p-index_slider .p-index_slider_inner li:nth-child(2n+1) img {
  transform-origin: left center;
}
.p-index_slider .p-index_slider_inner li:nth-child(2n) img {
  transform-origin: right center;
}
.p-index_slider .p-index_slider_inner li.current {
  position: relative;
  z-index: 2;
}
.p-index_slider .p-index_slider_inner li.current img {
  opacity: 1;
  filter: blur(0px) contrast(100%) grayscale(0%);
}
.p-index_slider .p-index_slider_inner li img {
  opacity: 0;
  filter: blur(10px) contrast(400%) grayscale(100%);
  transition: all 2.5s linear;
}
.p-index_slider .p-index_slider_inner .p-index_slider_nav {
  position: absolute;
  right: -27px;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider_inner .p-index_slider_nav {
    right: 0;
    bottom: -27px;
  }
}
.p-index_slider .p-index_slider_inner .p-index_slider_nav > div {
  background: #ffffff;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 767px) {
  .p-index_slider .p-index_slider_inner .p-index_slider_nav > div {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 9px;
  }
}
.p-index_slider .p-index_slider_inner .p-index_slider_nav > div.current {
  background: #000000;
}
.p-index_slider .p-index_slider_inner .p-index_slider_nav > div:last-child {
  margin-bottom: 0;
}

.p-media01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 175px;
}
@media only screen and (max-width: 767px) {
  .p-media01 {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 77px;
  }
}
.p-media01 .p-media01__contents {
  width: 450px;
}
@media only screen and (max-width: 767px) {
  .p-media01 .p-media01__contents {
    width: 94%;
  }
}
.p-media01 .p-media01__ttl {
  font-weight: 500;
  font-size: 36px;
  line-height: 172%;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .p-media01 .p-media01__ttl {
    font-size: 30px;
    line-height: 160%;
    letter-spacing: 0.12em;
    margin-bottom: 35px;
  }
}
.p-media01 p {
  font-size: 17px;
  line-height: 212%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-media01 p {
    line-height: 200%;
    letter-spacing: 0.08em;
  }
}
.p-media01 .p-media01__img {
  width: 450px;
}
@media only screen and (max-width: 767px) {
  .p-media01 .p-media01__img {
    width: 100%;
    margin-top: 35px;
  }
}

.p-media02 {
  display: flex;
  flex-wrap: wrap;
  gap: 75px 0;
  margin-top: 175px;
}
@media only screen and (max-width: 767px) {
  .p-media02 {
    margin-top: 77px;
    gap: 45px 0;
  }
}
.p-media02 .p-media02__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-media02 .p-media02__item {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
  }
}
.p-media02 .p-media02__contents {
  width: 450px;
}
@media only screen and (max-width: 767px) {
  .p-media02 .p-media02__contents {
    width: 94%;
  }
}
.p-media02 .p-media02__ttl {
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .p-media02 .p-media02__ttl {
    margin-bottom: 26px;
  }
}
.p-media02 p {
  font-family: "Shippori Mincho B1", serif;
  font-size: 16px;
  line-height: 188%;
  letter-spacing: 0.02em;
}
.p-media02 .p-media02__img {
  width: 500px;
}
@media only screen and (max-width: 767px) {
  .p-media02 .p-media02__img {
    width: 100%;
    margin-top: 26px;
  }
}

.p-white_box {
  background: var(--color-white);
  margin-top: 165px;
}
@media only screen and (max-width: 767px) {
  .p-white_box {
    margin-top: 69px;
  }
}
.p-white_box .p-white_box__inner {
  padding: 85px 85px 60px;
}
@media only screen and (max-width: 767px) {
  .p-white_box .p-white_box__inner {
    padding: 55px 20px 30px;
  }
}
.p-white_box .p-white_box__img {
  display: flex;
  justify-content: center;
}
.p-white_box .c-ttl01 {
  margin-bottom: 35px;
}
.p-white_box .c-course_list + .c-ttl02 {
  margin-top: 45px;
}
.p-white_box .c-border_box {
  margin-top: 28px;
}
.p-white_box .c-2col_list {
  margin-top: 42px;
}

.p-img {
  margin-top: 150px;
}
@media only screen and (max-width: 767px) {
  .p-img {
    margin-top: 50px;
  }
}

.p-info {
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .p-info {
    margin-top: 58px;
  }
}
.p-info .c-ttl01 {
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .p-info .c-ttl01 {
    margin-bottom: 25px;
  }
}
.p-info .p-info__2col {
  display: flex;
  justify-content: space-between;
  margin-top: 85px;
}
@media only screen and (max-width: 767px) {
  .p-info .p-info__2col {
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 40px 0;
  }
}
.p-info .p-info__2col .p-info__2col_l {
  width: 345px;
}
@media only screen and (max-width: 767px) {
  .p-info .p-info__2col .p-info__2col_l {
    width: 100%;
  }
}
.p-info .p-info__2col .p-info__2col_l#business-calendar {
  width: 345px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .p-info .p-info__2col .p-info__2col_l#business-calendar {
    width: 100%;
  }
}
.p-info .p-info__2col .p-info__2col_l#business-calendar table {
  table-layout: fixed;
}
.p-info .p-info__2col .p-info__2col_l#business-calendar th, .p-info .p-info__2col .p-info__2col_l#business-calendar td {
  padding: 6px 0;
}
.p-info .p-info__2col .p-info__2col_map {
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .p-info .p-info__2col .p-info__2col_map {
    width: 100%;
  }
}

.p-map {
  margin-top: 85px;
}
@media only screen and (max-width: 767px) {
  .p-map {
    margin-top: 40px;
  }
}
.p-map iframe {
  width: 100%;
  height: 475px;
}
@media only screen and (max-width: 767px) {
  .p-map iframe {
    height: 370px;
  }
}

.p-footer_info {
  background: url(../img/footer_bg.webp) no-repeat center top/cover;
  padding: 120px 0 110px;
  margin-bottom: 85px;
}
@media only screen and (max-width: 767px) {
  .p-footer_info {
    background-size: cover;
    padding: 55px 0 60px;
    margin-bottom: 60px;
  }
}
.p-footer_info .p-footer_info__inner {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__inner {
    flex-wrap: wrap;
    justify-content: center;
    width: 84%;
    gap: 35px 0;
  }
}
.p-footer_info .p-footer_info__l {
  width: 371px;
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__l {
    width: 100%;
  }
}
.p-footer_info .p-footer_info__l p {
  font-size: 16px;
  line-height: 188%;
  letter-spacing: 0.02em;
  color: var(--color-white);
}
.p-footer_info .p-footer_info__l p.p-footer_info__l_ttl {
  font-size: 28px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 35px;
}
.p-footer_info .p-footer_info__r {
  width: 495px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__r {
    width: 100%;
  }
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn {
  width: 100%;
  border: #ffffff solid 1px;
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 140px;
  font-size: 22px;
  line-height: 125%;
  letter-spacing: 0.06em;
  color: var(--color-white);
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__r .p-footer_info__r_btn a {
    height: 117px;
    font-size: 20px;
  }
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a > span {
  position: relative;
  display: block;
  z-index: 2;
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #000000;
  opacity: 0.3;
  transition: all var(--transition-duration) linear;
  z-index: 1;
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a.--pointer_ignore:after {
  display: none !important;
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a:hover {
  text-decoration: none;
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a:hover:after {
  width: 100%;
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__r .p-footer_info__r_btn a small {
    font-size: 15px;
  }
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a strong {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__r .p-footer_info__r_btn a strong {
    font-size: 30px;
  }
}
.p-footer_info .p-footer_info__r .p-footer_info__r_btn a strong img {
  position: relative;
  top: -4px;
  width: 27px;
  vertical-align: middle;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .p-footer_info .p-footer_info__r .p-footer_info__r_btn a strong img {
    width: 22px;
  }
}

.p-sp_nav {
  display: none;
  background: var(--color-white);
  position: fixed;
  top: 0;
  left: auto;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  transition: all var(--transition-duration) linear;
}
@media only screen and (max-width: 767px) {
  .p-sp_nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.p-sp_nav.--open {
  z-index: 499;
  opacity: 1;
}
.p-sp_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 83px 0;
}
.p-sp_nav ul li {
  width: 100%;
  list-style: none;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.11em;
}
.p-sp_nav ul li a {
  color: inherit;
  text-decoration: none;
}
.p-sp_nav ul li a:hover {
  text-decoration: none;
}
.p-sp_nav ul li img {
  width: 33px;
}