@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #242b35;
  --color-white: #ffffff;
  --color-lightblue: #8fabd4;
  --color-blue: #6a87ae;
  --color-darkblue: #4b6a98;
  --color-yellow: #fff600;
  --color-red: #cc3333;
  --color-beige:#ffedcb;
  --color-whitebeige: #fffcf7;
  --color-whiteblue:#d7e7ff;
  /*カレントカラー*/
  --color-current: #4b6a98;
  /*テキストリンクカラー*/
  --color-textlink:#4b6a98;
  /*必須ボタンカラー*/
  --color-required: #4b6a98;
  /*任意ボタンカラー*/
  --color-optional: #4b6a98;
  /*ラジオボタンカラー*/
  --color-radio: #4b6a98;
  /*チェックボタンカラー*/
  --color-check: #4b6a98;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Shippori Mincho B1", serif;
  /*本文*/
  --font-family-body: "Noto Sans JP", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #242b35;
  --color-white: #ffffff;
  --color-lightblue: #8fabd4;
  --color-blue: #6a87ae;
  --color-darkblue: #4b6a98;
  --color-yellow: #fff600;
  --color-red: #cc3333;
  --color-beige:#ffedcb;
  --color-whitebeige: #fffcf7;
  --color-whiteblue:#d7e7ff;
  /*カレントカラー*/
  --color-current: #4b6a98;
  /*テキストリンクカラー*/
  --color-textlink:#4b6a98;
  /*必須ボタンカラー*/
  --color-required: #4b6a98;
  /*任意ボタンカラー*/
  --color-optional: #4b6a98;
  /*ラジオボタンカラー*/
  --color-radio: #4b6a98;
  /*チェックボタンカラー*/
  --color-check: #4b6a98;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Shippori Mincho B1", serif;
  /*本文*/
  --font-family-body: "Noto Sans JP", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

a[href^="tel:"] {
  pointer-events: none;
}

.pc-none {
  display: none !important;
}

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 1.5rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
}
.breadcrumb__item {
  display: flex;
  line-height: 1;
  font-size: 1.6rem;
}
.breadcrumb__item::after {
  content: "＞";
  font-size: 1.5rem;
  margin-left: 1em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*共通ボタン*/
.com-btn {
  width: 32rem;
  height: 6rem;
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.com-btn:hover::after {
  background: url(../img/common/arw_b.png) top left/contain no-repeat;
}

.link-btn {
  transition: all 0.3s;
}
.link-btn::after {
  transition: all 0.3s;
}
.link-btn:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.link-btn:hover::after {
  background: url(../img/common/arw_b.png) top left/contain no-repeat;
}

.line-btn,
.mail-btn {
  transition: all 0.3s;
}
.line-btn::before,
.mail-btn::before {
  transition: all 0.3s;
}
.line-btn:hover,
.mail-btn:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.mail-btn:hover::before {
  background: url(../img/common/icon_mail_w.png) top left/contain no-repeat;
}

.secret-btn,
.info-btn {
  transition: all 0.3s;
}
.secret-btn:hover,
.info-btn:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.gnav__item a {
  transition: all 0.3s;
}
.gnav__item a:hover {
  transition: opacity 0.3s;
}
.gnav__item a:hover:hover {
  opacity: 0.5;
}

.header .util__item a {
  transition: all 0.3s;
}
.header .util__item a:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*ページネーション*/
.paginated__link:hover {
  opacity: 0.5;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn a.to-top {
  transition: all 0.3s;
}
.follow_btn a.to-top:hover {
  opacity: 0.5;
  bottom: 2rem;
}
.follow_btn a.to-mail {
  transition: all 0.3s;
}
.follow_btn a.to-mail::before {
  transition: all 0.3s;
}
.follow_btn a.to-mail:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.follow_btn a.to-mail:hover::before {
  background: url(../img/common/icon_mail_b.png) top left/contain no-repeat;
}

/*コース紹介*/
.com-course-section__item a {
  transition: all 0.3s;
}
.com-course-section__item a:hover {
  opacity: 0.5;
}

/*フッターナビ*/
.footer .util__item a {
  transition: all 0.3s;
}
.footer .util__item a::after {
  transition: all 0.3s;
}
.footer .util__item a:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.footer .util__item a:hover::after {
  background: url(../img/common/arw_b.png) top left/contain no-repeat;
}
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  padding: 1.5rem 2.4rem 2.4rem 3.5rem;
}
.header .util__list {
  margin-bottom: 2rem;
}
.header .util__item a {
  width: 13rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .gnav__list {
  gap: 0.75em;
}
.header .gnav__item {
  display: flex;
  align-items: center;
  line-height: 1;
}
.header .gnav__item::after {
  content: "|";
  font-size: 1.6rem;
  color: var(--color-lightblue);
  margin-left: 0.75em;
}
.header .gnav__item:last-child::after {
  display: none;
}

/*==============================
    共通ボタン
==============================*/
.mail-btn {
  width: 32rem;
  height: 7rem;
}

.line-btn {
  width: 32rem;
  height: 7rem;
}

/*==============================
    その他共通デザイン
==============================*/
/*下線*/
.intro {
  width: 96rem;
  margin-inline: auto;
}

/*チェックリスト*/
.com-check__title {
  white-space: nowrap;
}

/*==============================
    TOP
==============================*/
/*未来につながる力をここから*/
.top-intro {
  padding-block: 15.4rem 14rem;
}
.top-intro .intro {
  width: 92rem;
}

/*こんなお悩みありませんか*/
.top-worry {
  padding-block: 14rem;
  overflow: hidden;
}
.top-worry .com-title01 {
  gap: 2.8rem;
}
.top-worry .com-title01 .ja {
  font-size: 4.6rem;
}
.top-worry .com-title01 .en {
  font-size: 2.2rem;
}
.top-worry .com-check__box {
  width: 85.6rem;
  margin-inline: auto;
}
.top-worry .com-btn {
  width: 48rem;
}

/*維新ゼミについて*/
.top-about {
  padding-block: 14rem;
}
.top-about .com-title01 {
  align-items: flex-start;
}
.top-about .com-table tr th {
  width: 16rem;
}
.top-about .map {
  aspect-ratio: 434/536;
  width: 43.4rem;
  flex-shrink: 0;
}
.top-about .com-btn {
  width: 48rem;
}

/*新着情報*/
.top-blog {
  padding-block: 14rem;
}
.top-blog .com-inbox {
  position: relative;
  gap: 9rem;
}
.top-blog .com-title01 {
  flex-direction: row;
  gap: 2.7rem;
  padding-left: 7.4rem;
  align-items: flex-start;
}
.top-blog .com-title01 .ja {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 4.6rem;
}
.top-blog .com-title01 .en {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 2.4rem;
}
.top-blog .com-blog__list {
  min-height: 37.4rem;
}
.top-blog .com-btn {
  position: absolute;
  width: 22.6rem;
  height: 5.4rem;
  left: 0;
  bottom: 5.7rem;
}

/*==============================
    点数が上がる秘密
==============================*/
/*維新ゼミではなぜ結果がでるのか*/
.secret-how {
  padding-block: 8.7rem 14rem;
}
.secret-how__image {
  width: 50rem;
  aspect-ratio: 500/359;
  flex-shrink: 0;
}

/*その悩み、維新ゼミが変えます*/
.secret-change__item-image {
  width: 50rem;
  flex-shrink: 0;
  aspect-ratio: 500/320;
}

/*==============================
    小学生コース
==============================*/
.elementary-section {
  padding-block: 9rem 12rem;
}

/*==============================
    中学生コース
==============================*/
.junior-section {
  padding-block: 9rem 12rem;
}

/*==============================
    小中学生コース共通部分
==============================*/
.timetable tr th, .timetable tr td {
  height: 8rem;
}

/*==============================
    維新ゼミについて
==============================*/
/*講師挨拶*/
.about-greeting {
  padding-block: 9rem 7.5rem;
}
.about-greeting__wrap {
  margin-top: -1.6rem;
}
.about-greeting__image {
  flex-shrink: 0;
  margin-right: -2rem;
}

/*講師プロフィール*/
.about-profile {
  width: 90rem;
}
.about-profile__title {
  width: 50rem;
}

/*教室情報*/
.about-info {
  padding-block: 14rem;
}
.about-info .com-title01 {
  align-items: flex-start;
}

/*==============================
    授業の雰囲気や学びのポイントは
    YouTubeTikTokInstagramでも
    発信中
==============================*/
.com-sns-section {
  padding-block: 14rem;
}
.com-sns-section .intro {
  width: 92rem;
  margin-inline: auto;
}
.com-sns-section__title > span:last-child {
  margin-right: -1em;
}
.com-sns-section__item {
  width: 32rem;
}

/*==============================
    コース紹介
==============================*/
.com-course-section {
  padding-block: 14rem 0;
}
.com-course-section .com-title01 {
  margin-bottom: clamp(93px, 7.29vw, 140px);
}

/*==============================
    共通お問い合わせセクション
==============================*/
.com-contact-section {
  padding-block: 15.5rem;
}
.com-contact-section .mail-btn {
  width: 34rem;
}

/*==============================
    お知らせ一覧
==============================*/
.blog {
  padding-block: 9rem 14rem;
}
.blog .com-title01 {
  margin-bottom: 5.7rem;
}

/*お知らせ共通部分*/
.com-blog__item a:hover {
  transition: opacity 0.3s;
}
.com-blog__item a:hover:hover {
  opacity: 0.5;
}
.com-blog__image {
  flex-shrink: 0;
  width: 39rem;
}

.blog .com-blog__item a:has(.com-blog__image) .com-blog__text {
  width: calc(100% - 39rem - 4rem);
}
.blog .com-blog__item a:has(.com-blog__image) time {
  padding-top: 1.5rem;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.blog-detail {
  padding-block: 10rem;
}
.blog-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 35%;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 30rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 10rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 10rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 10rem;
}
/*==============================
    フッター
==============================*/
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  padding-block: 8.6rem;
}
.footer .util__item a {
  width: 13rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.8rem;
}
.footer-nav__item {
  display: flex;
  align-items: center;
  line-height: 1;
}
.footer-nav__item::after {
  content: "|";
  font-size: 1.6rem;
  color: var(--color-lightblue);
  margin-left: 0.75em;
}
.footer-nav__item.nav-item--recruitment, .footer-nav__item.nav-item--contact, .footer-nav__item.nav-item--blog, .footer-nav__item.nav-item--privacy, .footer-nav__item.nav-item--site {
  display: none;
}
.footer-nav__list {
  display: flex;
  gap: 0.75em;
}
.footer-nav__list .footer-nav__item:last-child::after, .footer-nav__list .footer-nav__item:nth-child(5)::after {
  display: none;
}