@charset "UTF-8";
/*
	File Name   : base.scss
	Description : 各ブロックのレイアウト
    Note：PC ONLY
*/
.smf-form .smf-text-control__control {
  width: 100%;
}

/* html setting
------------------------------------------------------------------------------------------------------------- */
html {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  border: 0;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1;
  font-family: sans-serif;
  text-decoration: none;
  word-spacing: 1px;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Body setting
------------------------------------------------------------------------------------------------------------- */
body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: #444;
  font-size: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* a setting
------------------------------------------------------------------------------------------------------------- */
a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

/* Header
------------------------------------------------------------------------------------------------------------- */
#header-wrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.8);
}

.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
}

#header-name {
  position: relative;
  margin-right: auto;
}
#header-name a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#header-name a > img.header-logo {
  width: 80px;
  height: 60px;
  margin-right: 20px;
  background-size: 100% 100%;
}
#header-name a > span.subheadline {
  color: #444;
  font-weight: 700;
  font-size: 14px;
}

#menu-toggle {
  display: none;
}

#m-menu-container {
  display: none;
}

/* top navi
------------------------------------------------------------------------------------------------------------- */
#navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#navigation > ul.pc {
  display: flex;
  align-items: flex-end;
  font-size: 1rem;
}
#navigation > ul.info-menu li a {
  display: table-cell;
  padding: 0 15px;
  color: #332d28;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  vertical-align: middle;
}
#navigation > ul.info-menu li a > p {
  margin: 0;
  padding-top: 4px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  line-height: 1;
  text-align: center;
}
#navigation > .contact-btn {
  margin-left: 15px;
  font-weight: 700 !important;
  font-size: 1rem;
}
#navigation > .contact-btn > a {
  padding: 0.8em 2em;
  border-radius: 9999px;
  background-color: #e28447;
  color: #fff;
}

/* main / box
------------------------------------------------------------------------------------------------------------- */
main.main {
  position: relative;
  margin: 0 auto;
  padding-top: 80px;
}

.inner {
  position: relative;
  margin: 0 auto;
}

/* footer contact
------------------------------------------------------------------------------------------------------------- */
.f-contact {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding-bottom: 30px;
  background-color: #f0dccd;
}

.f-contact_ttl {
  padding: 3rem 0 2rem;
  text-align: center;
}
.f-contact_ttl > .main {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  font-family: Futura, "Century Gothic", sans-serif;
}

.f-contact_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.f-contact_row > .f-contact_box {
  text-align: center;
}
.f-contact_row > .f-contact_box > a img.f-contact-btn {
  width: 65%;
  height: 65%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.f-contact_row .bg-image-l {
  width: 240;
  inset: 50px auto auto 0;
}
.f-contact_row .bg-image-r {
  width: 150;
  inset: 10 0 auto auto;
}
.f-contact_row .bg-image-r2 {
  width: 180;
  inset: auto 11% 10 auto;
}
.f-contact_row .bg-image-l, .f-contact_row .bg-image-r, .f-contact_row .bg-image-r2 {
  position: absolute;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.f-contact_row .bg-image-l::before {
  aspect-ratio: 365/327;
  background-image: url("../images/footer_contact_bgl.png");
}
.f-contact_row .bg-image-r::before {
  aspect-ratio: 238/361;
  background-image: url("../images/footer_contact_bgr.png");
}
.f-contact_row .bg-image-r2::before {
  aspect-ratio: 281/283;
  background-image: url("../images/footer_contact_bgr2.png");
}
.f-contact_row .bg-image-l::before, .f-contact_row .bg-image-r::before, .f-contact_row .bg-image-r2::before {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}

/* footer
------------------------------------------------------------------------------------------------------------- */
footer {
  position: relative;
  padding: 72px 0 30px;
  background: #f0dccd;
}
footer .footer-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/809;
  margin: 0;
  background-image: url("../images/footer.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto 0 -10vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.footer-info {
  z-index: 1;
  margin-top: 20px;
}
.footer-info > .footer-logo {
  margin-bottom: 10px;
}
.footer-info > .footer-logo > a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.footer-info > .footer-logo > a .logo-mini {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  background-size: 100% 100%;
}
.footer-info > .footer-logo > a span.subheadline {
  color: #444;
  font-weight: 700;
  font-size: 12px;
}
.footer-info address {
  margin-bottom: 30px;
  font-style: normal;
  font-size: 12px;
}
.footer-info .contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.footer-info .contact-info i {
  width: 35px;
  height: 35px;
  margin-right: 1em;
  border-radius: 9999px;
}
.footer-info .contact-info i img {
  width: 35px;
  height: 35px;
  margin-right: 0;
}
.footer-info .contact-info span {
  color: #444;
  font-weight: 700;
  font-family: Futura, "Century Gothic", sans-serif;
}
.footer-info .contact-btn {
  position: relative;
  width: 150px;
  padding: 10px 0;
  color: #444;
  font-weight: 700;
  font-family: Futura, "Century Gothic", sans-serif;
  text-align: center;
  cursor: pointer;
}
.footer-info .contact-btn a {
  color: #444;
}
.footer-info div.contact-btn::before, .footer-info div.contact-btn::after {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 35px;
  content: "";
}
.footer-info div.contact-btn::before {
  left: 0;
  background-image: url("../images/common/footer_contact_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-info div.contact-btn::after {
  left: 0;
  margin-left: 132px;
  background-image: url("../images/common/footer_contact_r.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-menu,
#m-navigation {
  z-index: 1;
  margin-top: 20px;
}
.footer-menu .column dl.item,
#m-navigation .column dl.item {
  display: -webkit-box;
  display: flexbox;
  display: flex;
  align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
}
.footer-menu .column dl.item dt.parent,
#m-navigation .column dl.item dt.parent {
  width: 6em;
  padding-top: 5px;
  line-height: 1;
}
.footer-menu .column dl.item dd div.child,
#m-navigation .column dl.item dd div.child {
  display: block;
  height: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.footer-menu .column dl.item dd div.childa,
#m-navigation .column dl.item dd div.childa {
  margin-left: 50px;
}
.footer-menu .column dl.item dd div.child a,
#m-navigation .column dl.item dd div.child a {
  position: relative;
  padding: 5px;
  color: #444;
  font-weight: 700;
  font-family: Futura, "Century Gothic", sans-serif;
}
.footer-menu .column dl.item dd div.child a::after,
#m-navigation .column dl.item dd div.child a::after {
  display: block;
  width: 0%;
  height: 1px;
  margin-left: auto;
  content: "";
  transition: all 0.3s ease-in-out;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1em;
  color: #444;
  font-weight: 700;
  font-size: 12px;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
.footer-bottom .copyright {
  z-index: 1;
}

.show-sp {
  display: none;
}
@media (max-width: 767px) {
  .show-sp {
    display: inline;
  }
}

@media (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}

.show-tab {
  display: none;
}
@media (max-width: 820px) {
  .show-tab {
    display: inline;
  }
}

@media (max-width: 820px) {
  .hide-tab {
    display: none;
  }
}

.show-pc {
  display: none;
}
@media (max-width: 1024px) {
  .show-pc {
    display: inline;
  }
}

@media (max-width: 1024px) {
  .hide-pc {
    display: none;
  }
}

.show-lg {
  display: none;
}
@media (max-width: 1140px) {
  .show-lg {
    display: inline;
  }
}

@media (max-width: 1140px) {
  .hide-lg {
    display: none;
  }
}

.show-wide {
  display: none;
}
@media (max-width: 1440px) {
  .show-wide {
    display: inline;
  }
}

@media (max-width: 1440px) {
  .hide-wide {
    display: none;
  }
}

/*
	File Name   : parts.scss
	Description : パーツ用のスタイル
    Note：PC ONLY
*/
/* common style
------------------------------------------------------------------------------------------------------------- */
.wrapper {
  width: calc(50vw + 200px);
  margin: 0 auto;
  padding: 0 16px;
}

li {
  list-style: none;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding: 0 35px;
}

a {
  color: #444;
  cursor: pointer;
  transition: 0.32s all ease 0s;
}

a:hover {
  color: #e36a46;
}

.posi-rl {
  position: relative;
  height: auto;
}

.pt-img::before {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* top page
// ------------------------------------------------------------------------------------------------------------- */
.t-wrapper {
  padding-top: 1rem;
  padding-bottom: clamp(2.5rem, 6vw, 7rem);
}

.t-key-icon {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.t-section-header {
  display: flex;
  flex-direction: column;
  margin: 4rem 0 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .t-section-header {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.t-section-header .t-ttl01 {
  display: inline-block;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: relative;
  margin: 36px 0 0;
  margin-top: 1em;
  padding-left: 15%;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  margin-block-start: 1em;
  margin-inline: 0;
}
.t-section-header .t-ttl01 .main {
  position: relative;
  transform: translateY(0.2em);
  font-weight: 700;
  font-size: calc(3vw + 20px);
  line-height: 1;
  font-family: Futura, "Century Gothic", sans-serif;
}
.t-section-header .t-ttl01 .main::before {
  display: block;
  opacity: 1;
  position: absolute;
  bottom: -1px;
  left: -8px;
  z-index: -1;
  width: 110%;
  height: 10px;
  border-radius: 1px;
  background-color: #e28447;
  content: "";
  transition: 0.48s all ease 0.25s;
}
@media (max-width: 767px) {
  .t-section-header .t-ttl01 .main::before {
    width: 110%;
  }
}
.t-section-header .t-ttl01 .sub {
  margin-left: calc(2vw + 10px);
  color: #635851;
  font-size: calc(0.5vw + 10px);
}
.t-section-header .t-ttl02 {
  display: flex;
  align-items: baseline;
  width: calc(20vw + 300px);
  margin-bottom: calc(1.5vw + 10px);
  padding: 1rem 1rem 1rem 8em;
  border-radius: 0 3px 3px 0;
  background-color: #e28447;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  margin-block-start: 1em;
  margin-inline: 0;
}
@media (max-width: 767px) {
  .t-section-header .t-ttl02 {
    width: 90%;
    padding: 0.5rem;
    padding-left: 1rem;
  }
}
.t-section-header .t-ttl02 .main {
  position: relative;
  color: #faf9f7;
  font-weight: 700;
  font-size: calc(3vw + 20px);
  line-height: 1;
  font-family: Futura, "Century Gothic", sans-serif;
}
.t-section-header .t-ttl02 .sub {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 1.5vw;
  color: #faf9f7;
  font-size: calc(0.5vw + 10px);
}
.t-section-header .subttl {
  margin-bottom: 1em;
  padding-left: 7em;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .t-section-header .subttl {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.more-link {
  display: block;
  position: absolute;
  right: calc(8vw + 50px);
  bottom: 50px;
  width: 72px;
  height: 21px;
}
.more-link a {
  display: block;
  position: relative;
  padding: 0 6px;
  color: #e36a46;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  font-family: Futura, "Century Gothic", sans-serif;
}

.more-link a::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background-color: #e36a46;
  content: "";
  transition: 0.16s all ease;
}

.more-link a::after {
  display: block;
  position: absolute;
  right: -2px;
  bottom: 4px;
  transform: rotate(45deg);
  width: 12px;
  height: 1px;
  background-color: #e36a46;
  content: "";
  transition: 0.16s all ease;
}

.f-schools-container {
  padding: 0 !important;
}

.swiper-container {
  text-align: center;
}
.swiper-container .slide_select {
  display: none;
}

.swiper-container::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.swiper-container::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #1bb4d3), to(#1bd8d3));
  background: #aeaeae;
}

.swiper-container::-webkit-scrollbar-track {
  background: #dcdcdc;
}

.t-o-bgcolor {
  position: relative;
  background-color: rgba(240, 220, 205, 0.6980392157);
}

.stick-image-l {
  position: absolute;
  margin: 0;
  padding: 0;
  inset: 20% auto auto 0;
}

.stick-image-r {
  position: absolute;
  margin: 0;
  padding: 0;
  inset: 20% 0 auto auto;
}

.stick-image-l::before,
.stick-image-r::before {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/75;
  background-image: url("../images/top_stick_img.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}

.main .b-arrow {
  display: inline-block;
  position: relative;
  width: 60%;
  height: 2px;
  background-color: #e36a46;
  vertical-align: middle;
}
.main .b-arrow::before, .main .b-arrow::after {
  display: block;
  position: absolute;
  right: -3px;
  width: 14px;
  height: 2px;
  background-color: #e36a46;
  content: "";
}
.main .b-arrow::before {
  top: -4px;
  transform: rotate(35deg);
}
.main .b-arrow::after {
  bottom: -4px;
  transform: rotate(-35deg);
}

/* text-style
// ------------------------------------------------------------------------------------------------------------- */
.t-orange {
  color: #e36a46 !important;
}

/* slick slider
// ------------------------------------------------------------------------------------------------------------- */
.slider {
  margin-bottom: 4rem;
}
.slider .slick-slide {
  margin-right: clamp(0.5rem, 2vw, 4vw);
  margin-left: clamp(0.5rem, 2vw, 4vw);
  padding-bottom: 2rem;
}
.slider img {
  box-shadow: 10px 10px 15px rgba(51, 51, 51, 0.3);
}

@media only screen and (width <= 1190px) {
  #header-wrap {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: #fff;
  }
  #header-name {
    position: relative;
  }
  #header-name a > span.subheadline {
    display: none;
  }
  #header-menu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  #header-menu #hamburger-menu::after {
    display: none !important;
  }
  #header-menu #hamburger-menu .menu-btn {
    display: block;
    width: 40px;
    height: 40px;
    margin: 5px 0 0 0.5rem;
    border: none;
    background-image: url("../../images/common/hamburger_ico.png");
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    appearance: none;
  }
  /* メニュートグルがチェックされた場合のメニューの表示アニメーション */
  #menu-toggle:checked ~ #m-menu-container {
    left: 0; /* メニューを表示させるために left を 0 に変更 */
  }
  #navigation {
    display: none;
  }
  /* hamburger menu
    ------------------------------------------------------------------------------------------------------------- */
  #m-menu-container {
    display: block;
    position: fixed;
    top: 0;
    left: -100%; /* 変更: メニューを左からスライドインさせるために left に設定 */
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: #e28447;
    transition: 0.4s;
  }
  #m-menu-container #m-navigation {
    position: relative;
  }
  #m-menu-container #m-navigation .logo-mini {
    position: relative;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    cursor: pointer;
  }
  #m-menu-container #m-navigation .logo-mini .menu-close-btn {
    position: absolute;
    right: 20px;
    cursor: pointer;
  }
  #m-menu-container #m-navigation .logo-mini .menu-close-btn .bar {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  #m-menu-container #m-navigation .logo-mini .menu-close-btn .bar::before, #m-menu-container #m-navigation .logo-mini .menu-close-btn .bar::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 32px;
    background-color: #fff;
    content: "";
    transition: 0.4s;
  }
  #m-menu-container #m-navigation .logo-mini .menu-close-btn .bar::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #m-menu-container #m-navigation .logo-mini .menu-close-btn .bar::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #m-menu-container #m-navigation .logo-mini .logo-mini-img {
    width: 50px;
    height: 50px;
  }
  #m-menu-container #m-navigation .m-navi-flx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
  }
  .wrapper {
    width: 100% !important;
  }
  .container {
    padding: 0 24px;
  }
  .main .b-arrow {
    width: 100% !important;
  }
  /* top
    ------------------------------------------------------------------------------------------------------------- */
  /* about
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_about .t-index_about__rowo {
    flex-wrap: wrap-reverse !important;
    justify-content: center !important;
    width: 100%;
    margin: 10px auto !important;
  }
  .t-index_about .t-index_about__rowo .picrc {
    width: calc(30vw + 200px) !important;
    height: 100% !important;
    margin-right: 0 !important;
  }
  .t-index_about .t-index_about__rowo .picrc .pic-center {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: auto;
    margin-bottom: 3rem !important;
  }
  .t-index_about .t-index_about__rowo .textarea-l {
    width: 80% !important;
  }
  /* cases
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_cases .t-index_cases__inner .cases_box_row {
    flex-direction: row;
    width: 100%;
  }
  .t-index_cases .t-index_cases__inner .cases_box_row .cases_box {
    width: 45% !important;
    margin-right: auto;
    margin-left: auto;
    padding: 0 !important;
  }
  .t-index_cases .t-cases-bg {
    top: 0 !important;
    right: 0;
    bottom: 0 !important;
    left: 0;
    width: 100% !important;
    height: auto !important;
    margin: auto !important;
  }
  /* news
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_news .t-index_news__row ul.t-news_list li time {
    margin-left: calc(15vw - 1px - 8px - 24px - 40px) !important;
  }
}
@media only screen and (width <= 840px) {
  .flx-wreverse {
    flex-wrap: wrap-reverse !important;
  }
  /* top
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_kv .t-index_kv__pic .t-key-bg {
    width: calc(20vw + 320px) !important;
    object-fit: cover;
    object-position: left 0;
  }
  /* concept
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_concept .t-index_concept__row .textarea,
  .t-index_concept .t-index_about__rowl .textarea {
    width: 80% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .t-index_concept .stick-image-r {
    top: calc(14rem - 1vw) !important;
    right: calc(0.5vw + 30px) !important;
    bottom: auto !important;
  }
  /* about
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_about .about-content {
    padding-top: 0 !important;
  }
  .t-index_about .t-index_about__row,
  .t-index_about .index_about__rowl {
    width: 100%;
    margin: 10px auto !important;
  }
  .t-index_about .t-index_about__row .pic, .t-index_about .t-index_about__row .pic-center,
  .t-index_about .index_about__rowl .pic,
  .t-index_about .index_about__rowl .pic-center {
    margin-bottom: 3rem !important;
  }
  .t-index_about .t-index_about__row .picl,
  .t-index_about .index_about__rowl .picl {
    margin-left: 0 !important;
  }
  .t-index_about .t-index_about__row .picr,
  .t-index_about .index_about__rowl .picr {
    margin-right: 0 !important;
  }
  .t-index_about .t-index_about__row .textarea, .t-index_about .t-index_about__row .textarea-l,
  .t-index_about .index_about__rowl .textarea,
  .t-index_about .index_about__rowl .textarea-l {
    width: 80% !important;
  }
  /* consultants
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_consultants__inner .t-index_consultants__row {
    flex-direction: column !important;
  }
  .t-index_consultants__inner .t-index_consultants__row .profs_box_row {
    width: 100% !important;
  }
  .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box {
    padding: 0 !important;
  }
  .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .prof-icon {
    width: 40% !important;
  }
  .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea {
    width: auto !important;
    margin-top: 30px;
  }
  .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea .text::after {
    width: 100% !important;
  }
  /* news
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_news .t-index_news__row ul.t-news_list {
    padding-left: 0 !important;
  }
  .t-index_news .t-index_news__row ul.t-news_list li time {
    margin-left: 0 !important;
  }
  /* schools page
    ------------------------------------------------------------------------------------------------------------- */
  .schools-items a {
    flex-flow: column wrap;
    align-content: center;
    align-items: center;
    margin: 1.5rem 0 !important;
  }
  .schools-items .schools_head {
    width: 90% !important;
  }
  .schools-items .schools_body {
    width: 90% !important;
    margin: 1.2rem 0 0 !important;
  }
}
@media only screen and (width <= 767px) {
  /* top
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_kv .t-index_kv__pic .t-key-icon {
    display: none !important;
  }
  .t-index_kv2 .t-key-icon {
    display: block !important;
  }
  .more-link {
    right: calc(1.5vw + 20px);
  }
  .books-items .books-item {
    width: 90% !important;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .footer-inner .footer-info {
    margin-bottom: 20px;
    padding-left: 3rem;
  }
  .footer-inner .footer-menu .column dl.item {
    justify-content: flex-start;
  }
  .footer-inner .footer-menu .column dl.item dt.parent {
    width: 0;
  }
}
@media only screen and (width <= 567px) {
  /* common style
    ------------------------------------------------------------------------------------------------------------- */
  .wrapper {
    width: 100% !important;
  }
  .container {
    padding: 0 24px;
  }
  .main .b-arrow {
    width: 100%;
  }
  /* cases
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_cases .t-index_cases__inner .cases_box_row {
    flex-direction: column;
    width: 100%;
  }
  .t-index_cases .t-index_cases__inner .cases_box_row .cases_box {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
    padding: 0 !important;
  }
  .t-index_cases .t-cases-bg {
    top: 0 !important;
    right: 0;
    bottom: 0 !important;
    left: 0;
    width: 100% !important;
    height: auto !important;
    margin: auto !important;
  }
  /* books
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_books .bg-image-l {
    display: none !important;
  }
  .t-index_books .book-content {
    background-image: none !important;
  }
  /* news
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_news .container {
    margin-left: 0 !important;
  }
  .t-index_news .t-index_news__row ul.t-news_list li {
    flex-wrap: wrap;
  }
  .t-index_news .t-index_news__row ul.t-news_list li .news-ttl {
    width: 100% !important;
    margin: 10px 0 !important;
  }
  .service-items {
    gap: 1.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .service-items .item {
    width: 85% !important;
  }
  .tbl-res {
    width: 85%;
  }
  .tbl-res th,
  .tbl-res td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .tbl-res td {
    font-size: 0.9rem !important;
  }
  /* banner
    ------------------------------------------------------------------------------------------------------------- */
  .t-index_banner .t-index_body_row .btn-banner .btn-banner-item {
    width: 100% !important;
  }
  /* f-contact
    ------------------------------------------------------------------------------------------------------------- */
  .f-contact {
    padding-bottom: 0 !important;
  }
  .f-contact_row > .f-contact_box > a img.f-contact-btn {
    width: 95%;
    height: 95%;
  }
  .case-item {
    width: 95% !important;
  }
  /* page: consultants
    ------------------------------------------------------------------------------------------------------------- */
  .consultants-item_head .photo {
    width: 100% !important;
  }
  .consultants-item_head .names-icons {
    width: 100% !important;
  }
  .consultants-item_body {
    flex-wrap: wrap !important;
  }
  .books {
    padding: 1rem !important; /* パディングも調整可能 */
  }
  /* page: books
    ------------------------------------------------------------------------------------------------------------- */
  .books-items .books-item {
    flex-flow: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
  }
}
/*
	File Name   : page.scss
	Description : 各ページのレイアウト
    Note：PC ONLY
*/
/* === top ============================================== */
/* key viduale
------------------------------------------------------------------------------------------------------------- */
.t-index_kv {
  position: relative;
  padding: 7vw 0 3rem 4vw;
}
.t-index_kv .t-index_kv__copy {
  position: relative;
  z-index: 2;
  margin-bottom: 4.125vw;
}
.t-index_kv .t-index_kv__copy .main {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: calc(1.95918vw + 16.65306px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.t-index_kv .t-index_kv__copy .sub {
  width: 50%;
  line-height: 1.5;
}
.t-index_kv .t-index_kv__copy .en {
  transform: translateY(0.2em);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.t-index_kv .t-index_kv__contact {
  position: relative;
  z-index: 3;
  margin-left: 3%;
  padding-top: 50px;
}
.t-index_kv .t-index_kv__contact .t-cotact-link {
  position: relative;
}
.t-index_kv .t-index_kv__contact .t-contact-btn {
  position: relative;
  z-index: 3;
  width: calc(15vw + 100px);
  height: auto;
  aspect-ratio: 388/207;
}
.t-index_kv .t-index_kv__contact .t-arrow-btn {
  position: absolute;
  z-index: 1;
  width: calc(5vw + 50px);
  height: auto;
  aspect-ratio: 178/129;
  inset: calc(1.3vw + 5px) auto auto calc(14vw + 70px);
}
.t-index_kv .t-index_kv__contact .t-contact-pop {
  position: absolute;
  z-index: 1;
  width: calc(15vw + 80px);
  height: auto;
  aspect-ratio: 207/106;
  inset: auto auto calc(5.5vw + 50px) 5px;
}
.t-index_kv .t-index_kv__pic .t-key-bg {
  display: inline-block;
  opacity: 1;
  position: absolute;
  top: calc(-3.26531vw - 27.7551px);
  right: calc(-3.26531vw - 27.7551px);
  width: calc(30vw + 341px);
  height: calc(29.5vw + 335.7px);
}
.t-index_kv .t-index_kv__pic .t-key-icon {
  display: inline-block;
  opacity: 2;
  position: absolute;
  top: calc(0.26531vw + 75px);
  right: 5.3552083333vw;
  width: calc(27vw + 200px);
  height: calc(26vw + 214.2px);
}
.t-index_kv .t-back-str {
  display: inline-block;
  position: absolute;
  top: 3vw;
  left: calc(1.5vw + 10px);
  width: 56%;
  color: rgba(64, 64, 64, 0.05);
  font-weight: bold;
  font-size: 5.6rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.t-index_kv2 {
  position: relative;
  margin-bottom: 4.125vw;
}
.t-index_kv2 .t-key-icon {
  display: none;
}
.t-index_kv2 .container {
  width: 65%;
}

/* study
------------------------------------------------------------------------------------------------------------- */
.t-index_study {
  position: relative;
  margin-bottom: 3rem;
  padding-top: calc(3vw + 50px);
}
.t-index_study .container {
  padding-right: 0;
}
.t-index_study .t-study-o-bg {
  position: relative;
  width: 100%;
  height: 250px;
  aspect-ratio: 75/19;
  padding: 0;
  background-image: url("../images/top_study_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.t-index_study .t-index_study__inner {
  padding: 2rem 0;
}

/* concept
------------------------------------------------------------------------------------------------------------- */
.t-index_concept {
  position: relative;
  margin-bottom: 3rem;
}
.t-index_concept .about-content {
  padding-top: 5rem;
}
.t-index_concept .t-index_concept__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  margin-left: 0;
  padding-bottom: 4rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
}
.t-index_concept .t-index_concept__row .pic {
  position: relative;
  width: calc(20vw + 200px);
  height: calc(20vw + 100px);
  margin: 0;
  text-align: right;
}
.t-index_concept .t-index_concept__row .pic .img-book {
  position: absolute;
  right: auto;
  bottom: auto;
  left: 40px;
  z-index: 1;
  width: 50%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.t-index_concept .t-index_concept__row .pic .img-price {
  position: absolute;
  bottom: -1rem;
  left: 7rem;
  z-index: 1;
  width: 80%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.t-index_concept .t-index_concept__row .pic .img-bg {
  position: absolute;
  top: 30;
  right: 0;
  left: 10;
  z-index: -2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.t-index_concept .t-index_concept__row .pic .img-book::before {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 839/1251;
  background-image: url("../images/top_concept_book.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}
.t-index_concept .t-index_concept__row .pic .img-price::before {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 341/223;
  background-image: url("../images/top_concept_price.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}
.t-index_concept .t-index_concept__row .pic .img-bg::before {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 842/660;
  background-image: url("../images/top_concept_bg.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}
.t-index_concept .t-index_concept__row .textarea {
  position: relative;
  width: 40%;
  margin-right: calc(1.5vw + 30px);
}
.t-index_concept .t-index_concept__row .textarea .en {
  transform: translateY(0.2em);
  margin-bottom: calc(1.22449vw + 0.54082rem);
  color: #635851;
  font-weight: 700;
  font-size: calc(0.5vw + 0.6rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.t-index_concept .t-index_concept__row .textarea .main {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: calc(0.5vw + 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.t-index_concept .t-index_concept__row .textarea .text {
  line-height: 1.7;
}
.t-index_concept .stick-image-l {
  z-index: -1;
  width: calc(0.5vw + 40px);
  inset: 0 auto auto calc(0.5vw + 30px);
}
.t-index_concept .stick-image-r {
  z-index: -2;
  width: calc(0.5vw + 40px);
  inset: auto calc(0.5vw + 70px) 0 auto;
}
.t-index_concept .bg-image-r {
  position: absolute;
  z-index: 1;
  width: calc(0.5vw + 250px);
  margin: 0;
  padding: 0;
  inset: calc(0.5vw + 60px) calc(0.5vw + 50px) auto auto;
}
.t-index_concept .bg-image-r::before {
  display: inline-block;
  position: relative;
  aspect-ratio: 842/660;
  background-image: url("../images/top_concept_bgr.png");
  vertical-align: middle;
  content: "";
}

/* cases
------------------------------------------------------------------------------------------------------------- */
.t-index_cases {
  position: relative;
  z-index: -1;
  background-color: #f2ede7;
}
.t-index_cases .t-index_cases__inner {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}
.t-index_cases .t-index_cases__inner .t-index_cases__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.t-index_cases .t-index_cases__inner .cases_box_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
}
.t-index_cases .t-index_cases__inner .cases_box_row .cases_box {
  width: calc(33.3333333333% - 2rem);
  padding: 1rem;
}
.t-index_cases .t-index_cases__inner .cases_box_row .cases_box .main {
  line-height: 1.5;
}
.t-index_cases .t-index_cases__inner .cases_box_row .cases_box .main .cat {
  display: flex;
  flex-direction: row;
}
.t-index_cases .t-index_cases__inner .cases_box_row .cases_box .main .cat .icon {
  margin-right: 1.3rem;
  line-height: 1;
}
.t-index_cases .t-index_cases__inner .cases_box_row .cases_box .main .cat .text {
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 700;
  font-size: 13px;
}
.t-index_cases .t-cases-bg {
  opacity: 0.75;
  position: absolute;
  top: -4rem;
  right: 0;
  left: 0;
  z-index: -1;
  width: 60%;
  aspect-ratio: 1100/733;
  margin: 0 auto;
  background-image: url("../images/top_case_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* consultants
------------------------------------------------------------------------------------------------------------- */
.t-index_consultants {
  position: relative;
  z-index: -1;
  background-color: #f2ede7;
}
.t-index_consultants .t-index_consultants__inner {
  position: relative;
  margin-bottom: 2rem;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: clamp(307.8px, 90vw, 1190px);
  margin: 0 auto;
  margin-bottom: 2rem;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row {
  width: 50%;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .prof-icon {
  width: 30%;
  height: auto;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea {
  width: 65%;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea .text {
  position: relative;
  margin-top: auto;
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea .text small {
  margin-left: 20px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea .dl {
  font-size: 0.9rem;
  line-height: 1.4;
}
.t-index_consultants .t-index_consultants__inner .t-index_consultants__row .profs_box_row .profs_box .textarea .text::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  border-bottom: 1px solid #e36a46;
  content: "";
}
.t-index_consultants .bg-image-r {
  position: absolute;
  z-index: 2;
  width: calc(0.5vw + 170px);
  margin: 0;
  padding: 0;
  inset: auto 0 calc(0.5vw - 60px) auto;
}
.t-index_consultants .bg-image-r::before {
  display: inline-block;
  position: relative;
  aspect-ratio: 309/275;
  background-image: url("../images/top_consultant_bgr.png");
  vertical-align: middle;
  content: "";
}

/* books
------------------------------------------------------------------------------------------------------------- */
.t-index_books {
  position: relative;
  margin-bottom: 3rem;
  background-color: #f2ede7;
}
.t-index_books .t-index_books__inner {
  position: relative;
}
.t-index_books .t-index_books__inner .t-index_books__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.t-index_books .t-index_books__inner .t-index_books__row .book-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 40px;
  width: clamp(356px, 80vw, 956px);
  margin: 0 auto;
}
.t-index_books .t-index_books__inner .t-index_books__row .book-content img {
  height: auto;
  aspect-ratio: 140px/200px;
  border-radius: 3px;
}
.t-index_books .bg-image-l {
  position: absolute;
  right: auto;
  bottom: calc(1vw + 40px);
  left: 0;
  z-index: 2;
  width: calc(0.5vw + 170px);
  margin: 0;
  padding: 0;
}
.t-index_books .bg-image-l::before {
  display: inline-block;
  position: relative;
  aspect-ratio: 241/268;
  background-image: url("../images/top_book_bgl.png");
  vertical-align: middle;
  content: "";
}

/* news
------------------------------------------------------------------------------------------------------------- */
.t-index_news {
  position: relative;
  margin-bottom: 3rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.t-index_news .t-o-bgcolor {
  margin-right: 15%;
  border-radius: 3px;
  background-color: #f2ede7;
}
.t-index_news .t-index_news__row {
  position: relative;
  margin-bottom: 2rem;
}
.t-index_news .t-index_news__row ul.t-news_list {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.t-index_news .t-index_news__row ul.t-news_list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  margin: 0 0 25px;
  color: #444;
}
.t-index_news .t-index_news__row ul.t-news_list li time {
  width: 80px;
  margin-right: 20px;
  margin-left: calc(15vw - 1px - 8px - 35px - 40px);
  color: #444;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.75;
}
.t-index_news .t-index_news__row ul.t-news_list li .cat {
  width: 90px;
  height: 20px;
  margin-right: 25px;
  border: 1px solid #000;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}
.t-index_news .t-index_news__row ul.t-news_list li .news-ttl {
  width: 70%;
  margin: auto 0;
  font-weight: 700;
  line-height: 1.4;
}

/* single
------------------------------------------------------------------------------------------------------------- */
/* banner
------------------------------------------------------------------------------------------------------------- */
.t-index_banner {
  position: relative;
  margin-bottom: 3rem;
}
.t-index_banner > .container {
  max-width: 900px;
}
.t-index_banner .bg-image-l {
  position: absolute;
  z-index: -2;
  width: calc(0.5vw + 160px);
  height: calc(0.5vw + 220px);
  margin: 0;
  padding: 0;
  inset: calc(1vw - 50px) auto auto 0;
}
.t-index_banner .bg-image-r {
  position: absolute;
  z-index: -2;
  width: calc(0.5vw + 160px);
  height: calc(0.5vw + 190px);
  margin: 0;
  padding: 0;
  inset: auto 0 calc(1vw - 50px) auto;
}
.t-index_banner .bg-image-r::before {
  display: inline-block;
  position: relative;
  background-image: url("../images/banner_img_bg1.png");
  vertical-align: middle;
  content: "";
}
.t-index_banner .bg-image-l::before {
  display: inline-block;
  position: relative;
  background-image: url("../images/banner_img_bg2.png");
  vertical-align: middle;
  content: "";
}
.t-index_banner .t-index_body_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
}
.t-index_banner .t-index_body_row .btn-banner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 3px solid #e36a46;
  border-radius: 12px;
  background-image: url("../images/banner/banner_bg.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
}
.t-index_banner .t-index_body_row .btn-banner > .btn-banner-item {
  width: 45%;
  height: 65%;
  padding: 5px 10px;
}
.t-index_banner .t-index_body_row .btn-banner > .btn-banner-item img {
  position: relative;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* page
------------------------------------------------------------------------------------------------------------- */
.p-kv_ttl {
  z-index: 3;
}
.p-kv_ttl .main {
  transform: translateY(0.2em);
  margin-bottom: calc(2vw + 1rem);
  font-size: calc(2.4vw + 1.5rem);
  font-family: Futura, "Century Gothic", sans-serif;
  text-transform: uppercase;
}
.p-kv_ttl .sub {
  font-size: calc(0.16vw + 1.2rem);
}

.p_kv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  height: calc(25vw + 112px);
  margin-bottom: calc(1.22449vw + 10.40816px);
  background-color: #f0dccd;
  text-align: center;
}
.p_kv .p-kv_img-l {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateY(0.4em);
  width: calc(18vw + 38px);
  aspect-ratio: 285/268;
}
.p_kv .p-kv_img-l::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/p_kv_img_l.png");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p_kv .p-kv_img-r {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(-0.8em);
  width: calc(20vw + 50px);
  aspect-ratio: 307/260;
}
.p_kv .p-kv_img-r::before {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/p_kv_img_r.png");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p_kv .p-kv_img-r2 {
  position: absolute;
  right: 0;
  bottom: 0.3em;
  z-index: 2;
  transform: translateX(-1.5em);
  width: calc(18vw + 50px);
  aspect-ratio: 285/222;
}
.p_kv .p-kv_img-r2::before {
  position: absolute;
  right: 3.4vw;
  width: 100%;
  height: 100%;
  background-image: url("../images/p_kv_img_r2.png");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.p-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 calc(1.63265vw + 13.87755px);
  font-size: 0.9375rem;
  line-height: 1.875rem;
}
.p-container .privacy-wapper li {
  list-style-type: decimal;
}
.p-container h2 {
  display: inline;
  position: relative;
  font-size: 1.8rem;
}
.p-container h2::before {
  display: block;
  opacity: 1;
  position: absolute;
  bottom: -3.5px;
  left: -8px;
  z-index: -1;
  width: 110%;
  height: 8px;
  border-radius: 1px;
  background-color: #e28447;
  content: "";
  transition: 0.48s all ease 0.25s;
}
.p-container h3 {
  position: relative;
  margin: 64px 0 24px;
  padding-left: 12px;
  font-size: 1.5rem;
}
.p-container h3::before {
  display: block;
  position: absolute;
  left: 0;
  width: 8px;
  height: 100%;
  border-radius: 1px;
  background-color: #e28447;
  content: "";
}
.p-container table {
  width: 80%;
  margin: 36px auto;
}
.p-container table p {
  line-height: 0.1px;
}
.p-container table span {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.5rem;
}
.p-container table th {
  padding: 10px;
  border: solid 1px #ccc;
  background: #f2ede7;
  color: #444;
}
.p-container table td {
  padding: 10px;
  border: solid 1px #ccc;
}

.flow-list {
  position: relative;
  margin: 36px 0 42px;
  counter-reset: term-flow;
  padding-inline-start: 6px;
}
.flow-list::before {
  display: block;
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 45px;
  width: 6px;
  margin-left: -1px;
  background-color: #e4a047;
  content: "";
}
.flow-list .flow-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  counter-increment: term-flow;
}
.flow-list .flow-item_head {
  flex: 0 0 80px;
  position: relative;
  width: 100%;
  max-width: 80px;
  color: #fff;
  text-align: center;
}
.flow-list .flow-item_head::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.flow-list .flow-item_head .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 100px;
  background-color: #e4a047;
  inset: 8px;
}
.flow-list .flow-item_head .inner .step {
  margin-top: -5px;
  font-size: 0.8rem;
  font-family: Futura, "Century Gothic", sans-serif;
}
.flow-list .flow-item_head .inner .step::after {
  display: block;
  margin-top: -8px;
  font-size: 1.4rem;
  content: "0" counter(term-flow);
}
.flow-list .flow-item_body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: calc(1vw + 14px);
}
.flow-list .flow-item_body h4 {
  display: block;
  color: #e28447;
  font-weight: bold;
  font-size: 1.2em;
  unicode-bidi: isolate;
  margin-block: 0;
}
.flow-list .flow-item_body p {
  display: block;
  unicode-bidi: isolate;
  margin-block: 0.2rem 0;
}

.toc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc .toc-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-top: 0;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: #e3a046;
  color: #332d28;
  font-weight: 700;
  font-size: 1.325rem;
  font-family: Futura, "Century Gothic", sans-serif;
  text-align: center;
}
.toc .toc-ttl {
  margin: 0 0 13px;
  font-weight: bold;
  font-size: 1rem;
}

.case-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1.5vw;
  margin-top: clamp(24px, 6vw, 54px);
  padding: 1.5vw 0;
}
.case-items h3 {
  margin: 0;
  padding-left: 0;
  font-size: 1.2rem;
}
.case-items h3::before {
  width: 0;
}
.case-items .case-item {
  display: flex;
  align-items: center;
  width: 45%;
}
.case-items .case-item .case-item_head {
  display: flex;
  align-items: center;
  width: clamp(70px, 8vw, 80px);
  height: auto;
  aspect-ratio: 1/1;
}
.case-items .case-item .case-item_head img {
  width: 100%;
  height: 100%;
}
.case-items .case-item .case-item_body {
  width: 70%;
  height: 90%;
  margin: 12px 12px 12px 24px;
}
.case-items .case-item .case-item_body .pref {
  margin: 0.2rem 0;
}
.case-items .case-item .case-item_body .txt {
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.schools-items {
  padding: 0;
}
.schools-items li.schools-item {
  display: flex;
  margin-bottom: 50px;
  overflow: hidden;
  border-radius: 1ch;
  box-shadow: 2px 2px 4px lightgray;
  transition: color 0.25s ease;
}
.schools-items li.schools-item a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 1ch;
}
.schools-items li.schools-item a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border-radius: 1ch;
  background-color: #f2ede7;
  content: "";
}
.schools-items li.schools-item a:hover {
  opacity: 1;
  color: #444;
  text-decoration: none;
}
.schools-items li.schools-item a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0, 1);
  width: 100%;
  height: 100%;
  border-radius: 1ch;
  background-color: #f0dccd;
  content: "";
  transition: transform 0.25s ease;
  transition-property: transform;
  transform-origin: right;
}
.schools-items li.schools-item a:hover::before {
  transform: scale(1, 1);
  transform-origin: left;
}
.schools-items .schools_head {
  z-index: 1;
  width: 40%;
}
.schools-items .schools_head img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.schools-items .schools_body {
  width: 60%;
  margin: 0.5rem 0 0 2rem;
}
.schools-items .schools_body .ttl {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.8rem;
}
.schools-items .schools_body .datetime {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.schools-items .schools_body .datetime .date {
  font-weight: bold;
  font-size: 1.2rem;
}
.schools-items .schools_body .datetime .time {
  margin-left: 1rem;
  font-size: 1.2rem;
}
.schools-items .schools_body .datetime .time span {
  font-family: Futura, "Century Gothic", sans-serif;
}
.schools-items .schools_body .location {
  margin-bottom: 0.8rem;
  font-weight: bold;
  font-size: 1rem;
}
.schools-items .schools_body p {
  margin-block: 0 0.2rem;
}
.schools-items .schools_body .txt {
  color: #4a4a4a;
}
.schools-items .tags {
  display: flex;
  align-items: center;
  margin: 0 0 0.7rem;
}
.schools-items .tags .tag_icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background-color: #e28447;
}
.schools-items .tags .tag {
  color: #e28447;
  font-weight: bold;
  font-size: 0.9rem;
}

.consultants-items {
  margin-top: 64px;
  padding: 0;
}
.consultants-items .consultants-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.consultants-items .consultants-item .consultants-item_head {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.consultants-items .consultants-item .consultants-item_head .photo {
  width: 35%;
}
.consultants-items .consultants-item .consultants-item_head .photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.consultants-items .consultants-item .consultants-item_head .names-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  height: auto;
  font-weight: bold;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .prof {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1rem;
  margin-left: 3rem;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .post {
  font-size: 1.1rem;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .names {
  display: flex;
  position: relative;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .names .name {
  margin-right: 1.2rem;
  font-size: 2rem;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .names .furi {
  padding-top: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .ttl {
  margin-top: 0.6rem;
  font-size: 1.3rem;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .sns_icons {
  height: auto;
  margin-left: 3rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.consultants-items .consultants-item .consultants-item_head .names-icons .sns_icons a img {
  width: 50px;
  aspect-ratio: 90/90;
  margin-right: 1.2rem;
}
.consultants-items .consultants-item .consultants-item_body {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 2rem;
}
.consultants-items .consultants-item .consultants-item_body .txts {
  max-width: 540px;
  height: auto;
}
.consultants-items .consultants-item .consultants-item_body .chronolofy table {
  width: 90%;
  line-height: 1rem;
}
.consultants-items .consultants-item .consultants-item_body .chronolofy table th {
  border: none;
}
.consultants-items .consultants-item .consultants-item_body .chronolofy table td {
  border: none;
}
.consultants-items .consultants-item .consultants-item_body .supported .ttl {
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.consultants-items .consultants-item .consultants-item_body .books {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0;
  width: 100%;
  height: auto;
  padding: 1.5rem;
}
.consultants-items .consultants-item .consultants-item_body .books .book-item {
  width: 80px;
  aspect-ratio: 140/200;
}

.service-wrapper ul {
  list-style-type: none;
}
.service-wrapper li {
  position: relative;
  line-height: 1.8;
}
.service-wrapper li::after {
  display: block;
  position: absolute;
  top: 0.5em;
  left: -1.5em;
  transform: rotate(-45deg);
  width: 10px;
  height: 5px;
  border-bottom: 3px solid #9c9c9c;
  border-left: 3px solid #9c9c9c;
  content: "";
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1.5vw;
  padding: 1.5vw 0;
}
.service-items h4 {
  margin-block: 0;
}
.service-items p {
  margin-block: 0;
}
.service-items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px lightgray;
  background-color: #f2ede7;
}
.service-items .item .item-ttl {
  margin-bottom: 0.8rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.service-items .item .item-txt {
  height: 3.8rem;
  margin-bottom: 0.8rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  line-height: 1.2rem;
}
.service-items .item .item-pr {
  margin-bottom: -0.5rem;
  font-size: 0.7rem;
}
.service-items .item .item-pr .txt-pr {
  margin-right: 0.2rem;
  font-size: 1.2rem;
  font-family: Futura, "Century Gothic", sans-serif;
}
.service-items .item .item-note {
  margin-bottom: -1rem;
  margin-left: 0.2rem;
  font-size: 0.7rem;
}

.l-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  margin: 72px 0 64px;
}
.l-container a {
  position: relative;
  width: 200px;
  padding: 8px;
  border: solid 1.5px #e28447;
  border-radius: 50px;
  color: #e28447;
  font-weight: 600;
  text-align: center;
}
.l-container a::after {
  position: absolute;
  right: 30px;
  bottom: 14.8px;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon/img_icon_arrow_r_or.png");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.tR {
  text-align: right;
}

.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: calc(1.63265vw + 13.87755px) 0;
  margin-left: 0;
  padding-left: 0;
  color: #444;
  font-size: 0.875rem;
  line-height: 3.2;
}
.c-breadcrumbs li:not(:last-of-type)::after {
  display: inline-block;
  margin: 0 0.5em;
  content: ">";
}

.books-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3rem 0;
  margin-top: 2rem;
}
.books-items .books-item {
  display: flex;
  width: 46%;
}
.books-items .books-item img {
  max-width: 110px;
  height: auto;
  aspect-ratio: 140/200;
}
.books-items .books-item .books-item_body {
  max-width: 330px;
  margin-left: 1.8rem;
}
.books-items .books-item .books-item_body .ttl {
  font-weight: bold;
  font-size: 1.4rem;
}
.books-items .books-item .books-item_body .name {
  margin-top: 0.6rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.books-items .books-item .books-item_body p {
  margin-block-start: 0.6rem;
}

.news_nav {
  margin: 0;
  padding-top: 2.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #635851;
}
.news_nav a {
  display: inline-block;
  width: 100px;
  font-size: 0.95rem;
  text-align: center;
}

.news_list .news__row {
  margin: 2rem 0;
}
.news_list .news__row ul {
  padding-inline-start: 18px;
}
.news_list .news__row ul.news_list {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.news_list .news__row ul.news_list li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 0 25px;
  color: #444;
}
.news_list .news__row ul.news_list li time {
  width: 80px;
  margin-right: 20px;
  color: #444;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.75;
}
.news_list .news__row ul.news_list li .cat {
  width: 90px;
  height: 20px;
  margin-right: 25px;
  border: 1px solid #635851;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}
.news_list .news__row ul.news_list li .news-ttl {
  width: 70%;
  margin: auto 0;
  font-weight: 700;
  line-height: 1.4;
}

.company_container table {
  border-spacing: 0;
}
.company_container table th {
  border: none;
  border-bottom: 1px solid #aeaeae;
  background-color: white;
}
.company_container table td {
  border: none;
  border-bottom: 1px solid #aeaeae;
}
.company_container .access-map {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}
.company_container .access-map iframe {
  width: 70%;
}

/* 404
------------------------------------------------------------------------------------------------------------- */
.nf_kv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  height: calc(8vw + 112px);
  text-align: center;
}
.nf_kv .p-kv_ttl .main {
  color: #e36a46;
}

.cs-wapper {
  text-align: center;
}

.content-bg {
  padding: 1.5em;
  background-color: #f2ede7;
}

/*
	File Name   : module.scss
	Description : 共通モジュールcss
    Note：PC ONLY
*/
/* COMMON
------------------------------------------------------------------------------------------------------------- */
figure {
  line-height: 0;
}

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

th img,
td img {
  max-width: inherit;
  height: inherit;
}

.cl {
  clear: both !important;
}

/* All
------------------------------------------------------------------------------------------------------------- */
.align-r {
  text-align: right !important;
}

.align-c {
  text-align: center !important;
}

.align-l {
  text-align: left !important;
}

.fs9 {
  font-size: 9px !important;
}

.fs10 {
  font-size: 10px !important;
}

.fs11 {
  font-size: 11px !important;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs24 {
  font-size: 24px !important;
}

.fs28 {
  font-size: 28px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.w100p_max {
  max-width: 100% !important;
}

.w100p {
  width: 100% !important;
  max-width: 100% !important;
}

.w75p {
  width: 75% !important;
}

.w50p {
  width: 50% !important;
}

.w40p {
  width: 40% !important;
}

.w33p {
  width: 33.33% !important;
}

.w25p {
  width: 25% !important;
}

.w20p {
  width: 20% !important;
}

.w80 {
  width: 80px !important;
}

.w100 {
  width: 100px !important;
}

.w120 {
  width: 120px !important;
  min-width: 120px !important;
}

.w140 {
  width: 140px !important;
}

.w160 {
  width: 160px !important;
}

.w150 {
  width: 150px !important;
}

.w180 {
  width: 180px !important;
}

.w200 {
  width: 200px !important;
}

.w300 {
  width: 300px !important;
}

.w320 {
  width: 320px !important;
}

.w400 {
  width: 400px !important;
}

.w500 {
  width: 500px !important;
}

.h100 {
  height: 100px !important;
}

.h150 {
  height: 150px !important;
}

.h200 {
  height: 200px !important;
}

.h300 {
  height: 300px !important;
}

/* font */
.f-futura {
  font-family: Futura, "Century Gothic", sans-serif;
}

.noto-sans-jp-noto {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.f-keyvisual {
  display: flex;
  align-items: center;
  height: calc(100dvh - 76px);
  padding: 60px 0 80px;
}
@media (max-width: 767px) {
  .f-keyvisual {
    align-items: flex-start;
    min-height: 100dvh;
    padding: 32px 0;
  }
}
.f-keyvisual__inner {
  display: grid;
  align-items: start;
  gap: 2.2222222222rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  grid-template: "heading-group visual" auto "text          visual" auto "content       visual" 1fr/7fr 5fr;
}
@media (max-width: 1260px) {
  .f-keyvisual__inner {
    padding: 0 36px;
  }
}
@media (max-width: 767px) {
  .f-keyvisual__inner {
    gap: 24px;
    padding: 0 24px;
    grid-template: "heading-group" auto "visual" auto "text" auto "content" auto/1fr;
  }
}
.f-keyvisual__heading-group {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333rem;
  grid-area: heading-group;
}
@media (max-width: 767px) {
  .f-keyvisual__heading-group {
    gap: 1.3333333333rem;
  }
}
.f-keyvisual__heading {
  margin: 0;
  color: #332d28;
  font-feature-settings: "palt";
  font-weight: 800;
  font-size: 4.17vw;
  line-height: 1.35;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .f-keyvisual__heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}
.f-keyvisual__subheading {
  margin: 0;
  color: #413933;
  font-weight: 600;
  font-size: 1.1111111111rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .f-keyvisual__subheading {
    font-size: 1rem;
  }
}
.f-keyvisual__visual {
  padding-top: 4rem;
  grid-area: visual;
}
@media (max-width: 767px) {
  .f-keyvisual__visual {
    padding-top: 0;
  }
}
.f-keyvisual__content {
  display: flex;
  flex-direction: column;
  gap: 68px;
  grid-area: content;
}
@media (max-width: 767px) {
  .f-keyvisual__content {
    gap: 20px;
  }
}
.f-keyvisual__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8888888889rem;
  padding-top: 0.4444444444rem;
}
.f-keyvisual__btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.8888888889rem;
  width: 100%;
  max-width: 350px;
}
@media (max-width: 767px) {
  .f-keyvisual__btn-group {
    gap: re(8);
  }
}
.f-keyvisual__btn {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 1.4em 1.2em 1.4em 1.4em;
  border-radius: 16px;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px #e28447;
  background-color: #e28447;
  color: #fff;
  font-weight: 700;
  font-size: 0.9444444444rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .f-keyvisual__btn {
    font-size: 0.8333333333rem;
  }
}
.f-keyvisual__btn:hover {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 3px #e36a46;
  background-color: #e36a46;
  color: #fff;
}
.f-keyvisual__btn-arrow {
  display: block;
  flex-shrink: 0;
  width: 20px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .f-keyvisual__btn-arrow {
    width: 16px;
  }
}
.f-keyvisual__note {
  padding-left: 0.4444444444rem;
  color: #332d28;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.625;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  color: #413933;
  font-size: 0.8333333333rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .f-keyvisual__note {
    font-size: 0.7777777778rem;
    line-height: 1.8;
  }
}
.f-keyvisual__text {
  margin: 0;
  grid-area: text;
  color: #332d28;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.625;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  color: #413933;
}
@media (max-width: 767px) {
  .f-keyvisual__text {
    font-size: 0.7777777778rem;
    line-height: 1.8;
  }
}
.f-keyvisual__cards {
  position: relative;
  aspect-ratio: 3/4;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .f-keyvisual__cards {
    max-width: 90%;
    aspect-ratio: 4/3.5;
  }
}
.f-keyvisual__card {
  position: absolute;
  top: 50%;
  overflow: hidden;
  border-radius: 12px;
}
.f-keyvisual__card img {
  display: block;
  width: 100%;
  height: auto;
}
.f-keyvisual__card[data-card="1"] {
  left: 0;
  z-index: 3;
  transform: translateY(-50%);
  width: 72%;
}
@media (max-width: 767px) {
  .f-keyvisual__card[data-card="1"] {
    width: 55%;
  }
}
.f-keyvisual__card[data-card="2"] {
  left: 50%;
  z-index: 2;
  transform: translateX(-45%) translateY(-50%);
  width: 65%;
}
@media (max-width: 767px) {
  .f-keyvisual__card[data-card="2"] {
    width: 50%;
  }
}
.f-keyvisual__card[data-card="3"] {
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
  width: 58%;
}
@media (max-width: 767px) {
  .f-keyvisual__card[data-card="3"] {
    width: 45%;
  }
}

/* schools
------------------------------------------------------------------------------------------------------------- */
.t-index_schools {
  position: relative;
  background-color: #f2ede7;
}
.t-index_schools__inner {
  position: relative;
  margin-bottom: 2rem;
}
.t-index_schools__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 70%;
  margin: 0 auto;
  margin-bottom: clamp(1.5rem, 1.5rem + 4vw, 6rem);
}
@media (max-width: 1199px) {
  .t-index_schools__row {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .t-index_schools__row {
    width: 90%;
  }
}
.t-index_schools__row img {
  box-shadow: 10px 10px 15px rgba(51, 51, 51, 0.3);
}
.t-index_schools .bg-image-l {
  position: absolute;
  right: auto;
  bottom: 30%;
  left: 0;
  z-index: -2;
  width: calc(0.5vw + 170px);
  margin: 0;
  padding: 0;
}
.t-index_schools .bg-image-l::before {
  display: inline-block;
  position: relative;
  aspect-ratio: 119/134;
  background-image: url("../images/top_school_img_bgl.png");
  vertical-align: middle;
  content: "";
}
.t-index_schools .bg-image-r {
  position: absolute;
  z-index: -2;
  width: calc(0.5vw + 200px);
  margin: 0;
  padding: 0;
  inset: calc(1vw + 50px) 0 auto auto;
}
.t-index_schools .bg-image-r::before {
  display: inline-block;
  position: relative;
  aspect-ratio: 309/275;
  background-image: url("../images/top_school_img_bgr.png");
  vertical-align: middle;
  content: "";
}

.f-about {
  padding-top: 6.6666666667rem;
}
.f-about__inner {
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 1260px) {
  .f-about__inner {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .f-about__inner {
    padding: 0 1.3333333333rem;
  }
}
.f-about__header {
  display: flex;
  flex-direction: column;
  gap: 0.4444444444rem;
  width: fit-content;
  margin-bottom: 6.6666666667rem;
}
@media (max-width: 767px) {
  .f-about__header {
    margin-bottom: 1.7777777778rem;
  }
}
.f-about__label {
  display: flex;
  align-items: center;
  gap: 0.5555555556rem;
  padding-left: 0.4444444444rem;
  color: #413933;
  font-weight: 500;
  font-size: re(14);
  font-family: "Noto Sans JP", sans-serif;
}
.f-about__label::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #666;
  content: "";
}
.f-about__title {
  position: relative;
  font-size: 3.8888888889rem;
  line-height: normal;
  font-family: futura, "Century Gothic", sans-serif;
}
@media (max-width: 767px) {
  .f-about__title {
    font-size: 3rem;
  }
}
.f-about__title::after {
  display: block;
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: calc(100% + 4px);
  height: 0.25em;
  border-radius: 2px;
  background-color: #e28447;
  content: "";
}
.f-about__row {
  display: grid;
  align-items: center;
  margin-bottom: 8.8888888889rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .f-about__row {
    display: flex;
    flex-direction: column;
    gap: 1.7777777778rem;
    margin-bottom: 3.5555555556rem;
  }
  .f-about__row .f-about__content {
    order: 1;
  }
  .f-about__row .f-about__image-wrapper {
    order: 2;
  }
}
.f-about__row .f-about__image-wrapper {
  display: flex;
  justify-content: flex-start;
}
.f-about__row--reverse .f-about__image-wrapper {
  justify-content: center;
}
.f-about__image-wrapper--concept {
  position: relative;
  margin: 0 auto;
}
.f-about__image {
  max-width: 380px;
  max-height: 380px;
}
@media (max-width: 767px) {
  .f-about__image {
    max-width: 280px;
    max-height: 280px;
  }
}
.f-about__image--last {
  max-width: none;
  max-height: 350px;
}
@media (max-width: 767px) {
  .f-about__image--last {
    max-width: 100%;
    max-height: auto;
  }
}
.f-about__image--price {
  position: absolute;
  right: -100px;
  bottom: 0;
  content: "";
}
@media (max-width: 767px) {
  .f-about__image--price {
    right: -60px;
  }
}
.f-about__content {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667rem;
}
@media (max-width: 767px) {
  .f-about__content {
    gap: 1.7777777778rem;
  }
}
.f-about__heading {
  font-weight: 700;
  font-size: 1.7777777778rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .f-about__heading {
    font-size: 1.1111111111rem;
  }
}
.f-about__text {
  padding-bottom: 0.6666666667rem;
  color: #413933;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.625;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .f-about__text {
    padding-bottom: 0.2222222222rem;
    font-size: 0.8888888889rem;
  }
}

/*# sourceMappingURL=main.css.map */
