@charset "UTF-8";


/*----------------------------------------
トップ：ローディング
----------------------------------------*/
#loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  background: #ffffff;
  transition: opacity 1.5s ease;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}


/*----------------------------------------
トップ：padding
----------------------------------------*/
@media screen and (min-width: 1200px) {
  #toppage_wrap {
    padding: 183px 0 0;
  }
}


/*----------------------------------------
トップ：メインビジュアル表示処理
----------------------------------------*/
#top_main_img_area, #top_main_ttl_wrap {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
body.is-loaded #top_main_img_area, body.is-loaded #top_main_ttl_wrap {
  opacity: 1;
  transform: translateY(0);
}
body.is-loaded #top_main_img_area {
  transition-delay: 1s;
}
body.is-loaded #top_main_ttl_wrap {
  transition-delay: 1.5s;
}


/*----------------------------------------
トップ：メインビジュアル
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_main {
    width: 100%;
    position: relative;
  }
  #top_main_ttl_wrap {
    width: 96%;
    max-width: 1440px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    z-index: 2;
  }
  #top_main_ttl_wrap div {
    width: 64%;
    max-width: 910px;
    background-color: rgba(255, 255, 255, 0.65);
    margin: 110px 0 0;
    padding: 30px;
  }
  #top_main_ttl_wrap div h2 {
    width: 100%;
    margin: 0 0 25px;
    line-height: 0;
  }
  #top_main_ttl_wrap div h3 {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
  }
  #top_main_img_wrap {
    width: 100%;
    padding: 0 0 0 40%;
  }
  #top_main_img_wrap .swiper-slide {
    width: 100% !important;
    line-height: 0;
  }
  #top_main_img_wrap_sp {
    display: none;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  #top_main_ttl_wrap div {
    padding: 30px 30px 30px 0;
  }
}

@media screen and (max-width: 999px) and (min-width: 768px) {
  #top_main_ttl_wrap div h3 {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 767px) {
  #top_main {
    width: 100%;
    position: relative;
    margin: 0 0 35px;
  }
  #top_main_ttl_wrap {
    width: 100%;
  }
  #top_main_ttl_wrap div {
    width: 100%;
    padding: 15px 0 0;
    text-align: center;
  }
  #top_main_ttl_wrap div h2 {
    width: 86%;
    margin: 0 auto 15px;
    line-height: 0;
  }
  #top_main_ttl_wrap div h3 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
  }
  #top_main_img_wrap_sp {
    width: 100%;
    margin: 0 0 5px;
  }
  #top_main_img_wrap_sp .swiper-slide {
    width: 100% !important;
    line-height: 0;
  }
  #top_main_img_wrap {
    display: none;
  }
}


/*----------------------------------------
トップ：見出し・テキスト
----------------------------------------*/
@media screen and (min-width: 768px) {
  .top_midashi h3 {
    font-family: "Kaisei Opti", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 4.375rem;
    line-height: 1.15;
    margin: 0 0 22px;
  }
  .top_midashi h4 {
    font-family: "Coiny", system-ui;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .top_p_txt {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .top_midashi h3 {
    font-size: 4.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .top_midashi h3 {
    font-family: "Kaisei Opti", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.15;
    margin: 0 0 7px;
  }
  .top_midashi h4 {
    font-family: "Coiny", system-ui;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
  }
  .top_p_txt {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
  }
}


/*----------------------------------------
トップ：ボタン
----------------------------------------*/
.top_btn {
  display: inline-block;
  min-width: 220px;
  height: 64px;
}
.top_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  border: 1px #000000 solid;
  border-radius: 50px;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.top_btn a .material-symbols-outlined {
  font-size: 24px !important;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24 !important;
}
.top_btn a:hover {
  text-decoration: none;
  background-color: var(--red);
  border: 1px var(--red) solid;
  color: #ffffff;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.top_btn_g20 a {
  gap: 20px;
}
.top_btn_g10 a {
  gap: 10px;
}
.top_btn_bg_black a, .top_btn_bg_red a {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.top_btn_bg_black a:hover, .top_btn_bg_red a:hover {
  background-color: #ffffff !important;
}
.top_btn_bg_black a:hover {
  color: #000000 !important;
}
.top_btn_bg_red a:hover {
  color: var(--red) !important;
}
.top_mini_btn {
  display: inline-block;
  height: 55px;
}
.top_mini_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #000000;
  padding: 0 25px;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.top_mini_btn a:hover {
  text-decoration: none;
  background-color: var(--red);
  border: 1px var(--red) solid;
  color: #ffffff;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.top_mini_btn a .material-symbols-outlined {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_mini_btn a {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    gap: 5px;
    border: 1px #bbbbbb solid;
    font-size: 1.0625rem;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .top_btn {
    height: 50px;
  }
  .top_btn a {
    font-weight: 500;
    font-size: 0.875rem;
  }
  .top_mini_btn {
    min-width: 220px;
    height: 50px;
  }
  .top_mini_btn a {
    gap: 20px;
    border: 1px #000000 solid;
    font-weight: 500;
    font-size: 0.875rem;
  }
}


/*----------------------------------------
トップ：若駒について
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_about {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    position: relative;
  }
  #top_about_bg {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -4%;
    background: url("../images/top/top_about_bg.svg") no-repeat right center;
    background-size: contain;
  }
  #top_about_inner {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  #top_about_img {
    width: 50%;
    line-height: 0;
    padding: 128px 4% 72px 0;
  }
  #top_about_cnt {
    width: 50%;
  }
  #top_about_cnt .top_p_txt {
    margin: 35px 0 40px;
  }
}

@media screen and (max-width: 999px) and (min-width: 768px) {
  #top_about {
    padding: 100px 0 0;
  }
  #top_about_bg {
    width: 40%;
  }
  #top_about_img {
    width: 40%;
    padding: 0px 4% 0 0;
  }
  #top_about_cnt {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  #top_about {
    width: 100%;
  }
  #top_about_bg {
    display: none;
  }
  #top_about_inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #top_about_img {
    width: 100%;
    margin: 0 0 15px;
    padding: 60px 0 20px;
    background: url("../images/top/top_about_bg.svg") no-repeat center top;
    background-size: contain;
    text-align: center;
    line-height: 0;
  }
  #top_about_img img {
    width: 64%;
  }
  #top_about_cnt {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_about_cnt .top_midashi {
    text-align: center;
  }
  #top_about_cnt .top_p_txt {
    margin: 10px 0 15px;
  }
}


/*----------------------------------------
トップ：お知らせ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_news {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 95px 0 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_news .top_midashi {
    text-align: center;
    margin: 0 0 20px;
  }
  #top_news_ul {
    width: 100%;
    margin: 0 0 25px;
  }
  #top_news_ul li {
    width: 100%;
    border-bottom: 1px #cccccc solid;
  }
  #top_news_ul li a {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  #top_news_ul li a > div {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  #top_news_ul li a > div time {
    flex-shrink: 0;
    color: #000000;
    font-size: 1rem;
    line-height: 1.8;
  }
  #top_news_ul li a > div div {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1;
    border-radius: 4px;
    padding: 8px 15px;
  }
  #top_news_ul li a > div p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.8;
  }
  #top_news_ul li a > div .material-symbols-outlined {
    color: #000000;
    flex-shrink: 0;
    font-size: 36px;
    font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 36 !important;
  }
  #top_news_ul li a > div:first-child {
    flex-shrink: 0;
    justify-content: flex-start;
  }
  #top_news_ul li a > div:last-child {
    flex-grow: 2;
    justify-content: space-between;
  }
  #top_news_ul li a:hover {
    text-decoration: none;
  }
  #top_news_ul li a:hover p {
    text-decoration: underline;
  }
}

@media screen and (max-width: 999px) and (min-width: 768px) {
  #top_news_ul li a {
    display: block;
  }
  #top_news_ul li a div:first-child {
    margin: 0 0 5px;
  }
}

@media screen and (max-width: 767px) {
  #top_news {
    width: 92%;
    margin: 0 auto;
    padding: 60px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_news .top_midashi {
    text-align: center;
    margin: 0 0 8px;
  }
  #top_news_ul {
    width: 100%;
    margin: 0 0 25px;
  }
  #top_news_ul li {
    width: 100%;
    border-bottom: 1px #cccccc solid;
  }
  #top_news_ul li a {
    width: 100%;
    padding: 15px 0 12px;
    display: block;
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  #top_news_ul li a > div {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #top_news_ul li a > div time {
    flex-shrink: 0;
    color: #000000;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  #top_news_ul li a > div div {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 4px;
    padding: 8px 15px;
  }
  #top_news_ul li a > div p {
    color: #000000;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  #top_news_ul li a > div .material-symbols-outlined {
    color: #000000;
    flex-shrink: 0;
    font-size: 24px;
    font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24 !important;
  }
  #top_news_ul li a > div:first-child {
    margin: 0 0 5px;
  }
  #top_news_ul li a > div:first-child {
    justify-content: flex-start;
  }
  #top_news_ul li a > div:last-child {
    justify-content: space-between;
  }
  #top_news_ul li a:hover {
    text-decoration: none;
  }
  #top_news_ul li a:hover p {
    text-decoration: underline;
  }
}


/*----------------------------------------
トップ：公演活動
----------------------------------------*/
#top_enentrpt_slider .swiper-slide {
  aspect-ratio: 400/560;
}
#top_enentrpt_slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top_enentrpt_slider .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}
#swiper-prevnext {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 3px 0;
}
#swiper-prevnext div {
  cursor: pointer;
  color: #ffffff;
}
#swiper-prevnext div .material-symbols-outlined {
  transition: 0.3s;
  font-size: 50px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 50 !important;
}
#swiper-prevnext div:hover .material-symbols-outlined {
  transition: 0.3s;
  font-size: 50px;
  line-height: 1;
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 50 !important;
}

@media screen and (min-width: 768px) {
  #top_enentrpt {
    width: 100%;
    background-color: #000000;
    padding: 100px 0 105px;
  }
  #top_enentrpt .top_midashi {
    color: #ffffff;
    margin: 0 0 35px;
  }
  #top_enentrpt #top_enentrpt_inner {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto 40px;
  }
  #top_enentrpt #top_enentrpt_txt_wrap {
    display: flex;
    gap: 50px;
  }
  #top_enentrpt .top_p_txt {
    color: #ffffff;
  }
  #top_enentrpt_slider_wrap {
    width: 100%;
  }
  #top_enentrpt_slider_wrap #top_enentrpt_slider {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
  }
  #top_enentrpt_slider_wrap .swiper {
    width: calc(100% + (100vw - 1280px) / 2);
    overflow: hidden;
  }
  #top_enentrpt_slider .swiper-slide {
    width: 400px;
  }
  #top_enentrpt_slider .swiper-slide a:hover img {
    transform: scale(1.05, 1.05);
    transition: transform 0.2s;
  }
  #swiper-prevnext {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1366px) and (min-width: 768px) {
  #top_enentrpt_slider_wrap #top_enentrpt_slider {
    width: 100% !important;
    max-width: none !important;
  }
  #top_enentrpt_slider_wrap .swiper {
    width: 98% !important;
    margin-left: 2%;
  }
  #swiper-prevnext {
    padding-left: 2%;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  #top_enentrpt_txt_wrap .top_p_txt br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #top_enentrpt {
    width: 100%;
    background-color: #000000;
    padding: 30px 0 20px;
  }
  #top_enentrpt .top_midashi {
    text-align: center;
    color: #ffffff;
    margin: 0 0 10px;
  }
  #top_enentrpt #top_enentrpt_inner {
    width: 92%;
    margin: 0 auto 22px;
  }
  #top_enentrpt #top_enentrpt_txt_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_enentrpt .top_p_txt {
    color: #ffffff;
    margin: 0 0 12px;
  }
  #top_enentrpt_slider_wrap {
    width: 100%;
  }
  #top_enentrpt_slider_wrap #top_enentrpt_slider {
    width: 100%;
  }
  #top_enentrpt_slider_wrap .swiper {
    width: 100%;
  }
  #top_enentrpt_slider .swiper-slide {
    width: 290px;
  }
  #swiper-prevnext {
    justify-content: center;
  }
}


/*----------------------------------------
トップ：イベントをお考えの方へ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_forthose {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #top_forthose_cnt {
    width: 37%;
    max-width: 468px;
  }
  #top_forthose_cnt #top_forthose_illust {
    width: 86%;
    max-width: 400px;
    margin: 0 0 30px;
    line-height: 0;
  }
  #top_forthose_cnt .top_p_txt {
    margin: 35px 0 40px;
  }
  #top_forthose_img {
    width: 44%;
    max-width: 560px;
    padding: 63px 0 0;
    position: relative;
  }
  #top_forthose_img #top_forthose_img01 {
    width: 100%;
    line-height: 0;
  }
  #top_forthose_img #top_forthose_img02 {
    width: 72%;
    max-width: 400px;
    line-height: 0;
    position: absolute;
    right: 57%;
    bottom: -15%;
  }
  #top_forthose_img_sp {
    display: none;
  }
}

@media screen and (max-width: 1199px) and (min-width: 900px) {
  #top_forthose_cnt {
    width: 48% !important;
  }
  #top_forthose_img {
    width: 38%;
  }
}

@media screen and (max-width: 899px) and (min-width: 768px) {
  #top_forthose_cnt {
    width: 60% !important;
  }
  #top_forthose_img {
    width: 38%;
  }
  #top_forthose_img02 {
    width: 100% !important;
    position: relative !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 10px 0 0;
  }
}

@media screen and (max-width: 767px) {
  #top_forthose {
    width: 92%;
    margin: 0 auto;
    padding: 50px 0 0;
    display: flex;
    flex-direction: column;
  }
  #top_forthose_cnt {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_forthose_cnt #top_forthose_illust {
    width: 65%;
    margin: 0 0 5px;
    line-height: 0;
  }
  #top_forthose_cnt .top_midashi {
    text-align: center;
  }
  #top_forthose_cnt .top_p_txt {
    margin: 10px 0 15px;
  }
  #top_forthose_img {
    display: none;
  }
  #top_forthose_img_sp {
    order: 1;
    width: 100%;
    margin: 0 0 20px;
    line-height: 0;
  }
}


/*----------------------------------------
トップ：活動レポート
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_report {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 205px 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_report .top_midashi {
    text-align: center;
    margin: 0 0 40px;
  }
  #top_report_ul {
    width: 100%;
    display: flex;
    column-gap: 4%;
    margin: 0 0 40px;
  }
  #top_report_ul li {
    width: 22%;
    max-width: 260px;
  }
  #top_report_ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #top_report_ul li a div {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin: 0 0 9px;
    line-height: 0;
  }
  #top_report_ul li a div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
  }
  #top_report_ul li a time {
    display: block;
    color: #666666;
    font-size: 0.875rem;
    line-height: 1;
    margin: 0 0 7px;
  }
  #top_report_ul li a h5 {
    color: #000000;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  #top_report_ul li a:hover {
    text-decoration: none;
  }
  #top_report_ul li a:hover div img {
    transform: scale(1.1, 1.1);
    transition: transform 0.2s;
  }
  #top_report_ul li a:hover h5 {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  #top_report {
    width: 92%;
    margin: 0 auto;
    padding: 65px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top_report .top_midashi {
    text-align: center;
    margin: 0 0 20px;
  }
  #top_report_ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #top_report_ul li {
    width: 47.5%;
    margin: 0 0 30px;
  }
  #top_report_ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #top_report_ul li a div {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin: 0 0 9px;
    line-height: 0;
  }
  #top_report_ul li a div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
  }
  #top_report_ul li a time {
    display: block;
    color: #666666;
    font-size: 0.75rem;
    line-height: 1;
    margin: 0 0 6px;
  }
  #top_report_ul li a h5 {
    color: #000000;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  #top_report_ul li a:hover {
    text-decoration: none;
  }
  #top_report_ul li a:hover div img {
    transform: scale(1.1, 1.1);
    transition: transform 0.2s;
  }
  #top_report_ul li a:hover h5 {
    text-decoration: underline;
  }
}


/*----------------------------------------
トップ：スクール生募集
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_school {
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #top_school_bg {
    width: 100%;
    height: 800px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #top_school_bg .swiper-wrapper {
    height: 800px !important;
    transition-timing-function: linear;
  }
  #top_school_bg .swiper-slide {
    width: 640px !important;
    height: 800px !important;
    line-height: 0;
  }
  #top_school_bg .swiper-slide img {
    transform: scale(1.001);
  }
  #top_school_cnt {
    width: 480px;
    height: auto;
    background-color: var(--red);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  #top_school_cnt .top_midashi {
    color: #ffffff;
    text-align: center;
  }
  #top_school_cnt .top_p_txt {
    color: #ffffff;
    margin: 10px 0 40px;
  }
}

@media screen and (max-width: 767px) {
  #top_school {
    width: 100%;
  }
  #top_school_bg {
    width: 100%;
    height: 325px;
  }
  #top_school_bg .swiper-wrapper {
    height: 325px !important;
    transition-timing-function: linear;
  }
  #top_school_bg .swiper-slide {
    width: 260px !important;
    height: 325px !important;
    line-height: 0;
  }
  #top_school_bg .swiper-slide img {
    transform: scale(1.001);
  }
  #top_school_cnt {
    width: 100%;
    background-color: var(--red);
    padding: 20px 4% 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  #top_school_cnt .top_midashi {
    color: #ffffff;
    text-align: center;
  }
  #top_school_cnt .top_midashi br {
    display: none;
  }
  #top_school_cnt .top_p_txt {
    color: #ffffff;
    margin: 5px 0 15px;
  }
}


/*----------------------------------------
トップ：社用車
----------------------------------------*/
@media screen and (min-width: 1100px) {
  #top_car_txt .br_tbsp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  #top_car {
    padding: 100px 0 0;
  }
  #top_car_img {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 0;
  }
  #top_car_txt {
    text-align: center;
    font-size: 2.75rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 767px) {
  #top_car {
    width: 92%;
    margin: 0 auto;
    padding: 40px 0 0;
  }
  #top_car_img {
    width: 84%;
    margin: 0 auto -5px;
    line-height: 0;
  }
  #top_car_txt {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

