@charset "UTF-8";
/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
}

.font-sm {
  font-size: 8px;
}

.font-md {
  font-size: 17px;
}

.font-lr {
  font-size: 17px;
}

.font-lg {
  font-size: 25px;
}

.mb-sm {
  margin-bottom: 16px !important;
}

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

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}

.midashi-1 {
  color: #003e74;
  position: relative;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 20px;
  text-align: center;
}

.midashi-2 {
  color: #003e74;
  font-size: 22px;
  text-align: center;
  font-weight: bolder;
}

.midashi-3 {
  color: #003e74;
  font-size: 24px;
  text-align: center;
  font-weight: bolder;
}
.midashi-3::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: auto;
  background: #e60012;
}

.midashi-4 {
  color: white;
  font-size: 20px;
  text-align: center;
  font-weight: bolder;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0068b7;
}

.midashi-5 {
  color: white;
  font-size: 20px;
  text-align: center;
  font-weight: bolder;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e5d9f;
}

.midashi-6 {
  color: #003e74;
  position: relative;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 24px;
  text-align: center;
}

.midashi-7 {
  color: white;
  font-size: 20px;
  text-align: center;
  font-weight: bolder;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e5d9f;
}

.midashi-9 {
  color: white;
  font-size: 18px;
  text-align: center;
  font-weight: bolder;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: yellow;
  z-index: -1;
}

.header-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.omjlogo {
  width: 200px;
  height: auto;
}

p {
  color: #003e74;
  font-weight: 100;
}
p.line-md {
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.title {
  width: 100px;
  height: 50px;
}
.title > img {
  width: 190px;
  height: 50px;
}

.information {
  color: #003e74;
  text-align: center;
}

#container {
  position: relative;
  background-color: white;
  height: 100%;
  z-index: 2;
  transition: all 0.5s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0d62aa;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 10;
}
.header.triggered {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__nav {
  display: none;
}
.header__ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header__li {
  margin-left: 20px;
}
.header__li > a {
  color: black;
  text-decoration: none !important;
  text-transform: uppercase;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

#contents {
  padding-top: 80px;
  background-color: rgb(232, 232, 232);
}

.gnavi {
  display: none;
}

.sub-gnavi {
  display: none;
}

.grade__flex {
  display: none;
}

.grade__ko-su {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.grade__ko-su > ul {
  width: 60%;
}
.grade__main {
  width: 40%;
  font-size: 15px;
  background-color: #0068b7;
  color: white;
  text-align: center;
  border-bottom: solid 4px #627295;
  border-radius: 5px;
  cursor: pointer;
  padding: 20px 5px 20px 5px;
}
.grade__main:hover {
  transform: translateY(4px); /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2); /*影を小さく*/
  border-bottom: none;
}

.grade-li:hover::after {
  right: 0px;
}

.grade-li:hover {
  color: rgba(34, 34, 34, 0.4);
}

.yellow-bg {
  background-color: #0068b7;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 48px;
}

.blue-bg {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 32px;
}

.success {
  margin-top: 18px;
  margin-bottom: 24px;
}
.success__title {
  border-bottom: gray solid 1px;
  display: flex;
  align-items: center;
}
.success__title > div {
  margin-left: 20px;
}
.success__img {
  width: 60%;
  height: auto;
}
.success__main {
  color: #003e74;
  font-size: 26px;
}
.success__sub {
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #003e74;
}
.success__student {
  font-size: 20px;
  margin-top: 12px;
  margin-left: 12px;
  color: #003e74;
}
.success__student > span {
  font-size: 12px;
}
.success__student__voice {
  margin-top: 12px;
  margin-left: 12px;
  line-height: 24px;
}

.soudan {
  display: flex;
  justify-content: space-between;
}
.soudan__kengaku {
  position: relative;
  background-image: linear-gradient(180deg, #ff7133 0%, #d74100 100%);
  width: 48%;
  height: 70px;
  font-size: 20px;
  text-align: center;
  margin-top: 24px;
  border-radius: 5px;
}
.soudan__kengaku > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgb(255, 255, 255);
}

.tel-bg {
  border-radius: 5px;
  position: relative;
  background-color: #006098;
  padding: 10px 5px 10px 5px;
  margin-top: 16px;
}

.tel__number {
  color: white;
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}
.tel__number::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  font-size: 24px;
}

.uketsuke {
  color: white;
  font-size: 14px;
  text-align: center;
}

.success {
  margin-top: 18px;
  margin-bottom: 24px;
}
.success__title {
  border-bottom: gray solid 1px;
  display: flex;
  align-items: center;
}
.success__title > div {
  margin-left: 20px;
}
.success__main {
  color: #003e74;
  font-size: 26px;
}
.success__sub {
  margin-top: 16px;
  font-size: 20px;
  color: #003e74;
}
.success__student {
  font-size: 20px;
  margin-top: 12px;
  margin-left: 12px;
  color: #003e74;
}
.success__student > span {
  font-size: 12px;
}
.success__student__voice {
  margin-top: 12px;
  margin-left: 12px;
  line-height: 24px;
}

.kyousitu__name {
  text-align: center;
  margin-top: 8px;
  font-size: 20px;
}
.kyousitu .kyositu-img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .kyousitu .kyositu-img {
    width: 500px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.kyousitu__jusho {
  text-align: left;
  margin-bottom: 5px;
}

.dotted {
  width: 100%;
  border-bottom: dotted Blue 1px;
  margin: 16px 0;
}

.footer-contents {
  background-color: white;
  margin-top: 48px;
}
.footer-contents__menu {
  font-size: 16px;
  border-bottom: grey solid 0.3px;
  display: flex;
  padding: 18px 0;
  position: relative;
  width: 100%;
  transition: 0.5s;
  color: #003e74;
}
.footer-contents__menu > a {
  display: block;
  width: 100%;
}
.footer-contents__menu::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: transparent transparent orange orange;
  transform: rotate(-135deg);
  transition: 0.5s;
}

.footer-contents__menu:hover::after {
  right: 0px;
}

.footer-contents__menu:hover {
  color: #003e74;
}

.junior {
  margin-top: 32px;
  margin-bottom: 32px;
}
.junior > p {
  line-height: 1.5;
  margin-top: 16px;
}
.junior > img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.junior__text {
  text-align: center;
  font-size: 20px;
  border-bottom: 2px solid #ccede0;
  padding-bottom: 5px;
}
.junior__panel {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.junior__panel__title {
  width: 90%;
  font-size: 16px;
  margin-left: 8px;
}
.junior__panel__number-box {
  color: white;
  border-radius: 3px;
  height: 35px;
  width: 35px;
  text-align: center;
  font-size: 28px;
  background-color: #0068b7;
}
.junior__more {
  width: 100%;
  background-color: white;
  border: solid #f39800 0.3px;
  font-size: 18px;
  text-align: center;
  font-weight: bolder;
  margin: 24px auto 0 auto;
  position: relative;
}
.junior__more > a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.5s;
}
.junior__more::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: transparent transparent orange orange;
  transform: rotate(-135deg);
  transition: 0.5s;
}

.junior__more:hover::after {
  right: 10px;
}

.junior__more > a:hover {
  color: rgba(34, 34, 34, 0.4);
}

.desktop-slide {
  display: none;
}

.features-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.features {
  color: #003e74;
}
.features__flex {
  display: flex;
  align-items: center;
}
.features__number {
  font-size: 64px;
}
.features__contents {
  text-align: left;
  margin-left: 32px;
}
.features__contents__main {
  font-size: 20px;
  margin-bottom: 18px;
}
.features__text {
  margin-top: 32px;
  line-height: 40px;
  color: #003e74;
}

.about-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff100;
  border: #fff100 1px solid;
  margin-bottom: 18px;
}
.about-link > img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-link__text {
  color: #0068b7;
  width: 50%;
  text-align: center;
}
.about-link__text__sub {
  font-size: 15px;
  margin-bottom: 16px;
}
.about-link__text__main {
  font-size: 20px;
}

.entry-step {
  color: white;
  font-size: 20px;
  padding: 4px 0 4px 0;
  text-align: center;
  background-color: #0068b7;
  border-radius: 3px;
  margin-bottom: 24px;
}

.entry-title {
  font-size: 24px;
  margin-bottom: 18px;
  text-align: center;
}

.entry-contents {
  line-height: 32px;
}

.double-allow {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.double-allow::after {
  font-family: "Font Awesome 5 Free";
  font-size: 32px;
  content: "\f103";
  font-weight: 900;
  color: orange;
}

#login_theme {
  text-align: center;
  padding-top: 20px;
  font-size: 1.2rem;
}

.error_message {
  text-align: center;
  margin: 10px 30px;
}

.login_form {
  text-align: center;
  margin-top: 100px;
}
.login_form p {
  margin: 10px;
}
.login_form input {
  border: solid;
  border-width: 2px;
  border-radius: 4px;
}
.login_form input:nth-child(3) {
  border: none;
  background-color: rgba(3, 45, 65, 0.2);
  padding: 5px 5px;
}

.hawaii-bg {
  background-image: url("../images/bg_hawaii.jpg");
}

.datetime {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.member_title {
  font-size: 18px;
  text-align: center;
  color: #222222;
  margin-top: 8px;
  margin-bottom: 8px;
}
.member_title::after {
  content: "";
  display: block;
  height: 3px;
  margin: auto;
  background: #0068b7;
}

.member_article {
  margin: 0 auto;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-group-lg > .btn, .btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
  transition: 0.5s;
}
.btn-primary:hover {
  opacity: 0.4;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

div.button {
  text-align: center;
  margin-top: 16px;
}

.mailform {
  padding: 10px;
  max-width: 650px;
  margin: 0 auto;
}

#contact_p {
  line-height: 30px;
  margin: 20px 0;
  color: #003e74;
}

#contact_tel {
  margin: 20px 0;
}
#contact_tel h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 10px;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

table td {
  width: 100%;
  padding: 12px;
  display: block;
  word-break: break-all;
}

.ml {
  background-color: rgb(244, 247, 248);
  border-radius: 0.25rem;
}

#map {
  margin-top: 30px;
  position: relative;
  width: 100%;
  padding-top: 300px;
  overflow: hidden;
}

#map iframe {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 150px + 150px);
  pointer-events: none;
}

.flex_button {
  display: flex;
  margin-top: 15px;
  justify-content: center;
}

.edit_btn {
  margin-right: 15px;
  color: #fff;
  background-color: #fff100;
  cursor: pointer;
  transition: 0.5s;
}
.edit_btn:hover {
  opacity: 0.4;
}

.company-logo {
  text-align: center;
}
.company-logo img {
  width: 80px;
  height: 80px;
}

.company-overview {
  border-top: 1px solid #ddd;
  margin-bottom: 40px;
}

.company-overview .item {
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

footer {
  text-align: center;
  border-top: #e60012 solid 2px;
  padding: 26px 0;
}
footer p {
  color: #003e74;
}

.main-image img {
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  /* タブレットやPC用のスタイル */
  .main-image {
    margin: 0 auto; /* 必要に応じて中央揃え等 */
    height: auto;
  }
}
/* メインスタイル */
.category-button-wrapp {
  display: flex;
  justify-content: center;
}

.category-button-wrapp button {
  text-align: center;
  color: white;
  background-color: #007aff;
  width: 300px;
  padding: 20px 10px;
  margin: 0px 40px;
  border: none; /* ボーダーを削除 */
  border-radius: 5px; /* 角を丸める */
  transition: all 0.3s ease; /* トランジション効果を追加 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影を追加 */
  cursor: pointer; /* マウスオーバー時にカーソルを変更 */
  max-width: 200px; /* 最大幅を設定 */
}

/* ホバー時のスタイル */
.category-button-wrapp button:hover {
  background-color: #0066cc; /* 色を暗めにする */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* 影を大きくする */
}

/* アクティブ（クリック）時のスタイル */
.category-button-wrapp button:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 影を小さくし、凹んだように見せる */
  transform: translateY(2px); /* ボタンをわずかに下に移動 */
}

/* メディアクエリ：スマホや小さな画面用のスタイル */
@media (max-width: 769px) {
  .category-button-wrapp {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .category-button-wrapp button {
    padding: 20px 80px;
    margin: 20px 0px;
    width: 70%; /* 小さい画面ではボタンを画面幅いっぱいに */
    max-width: none; /* 小さい画面では最大幅の制限を解除 */
  }
}
.banar {
  width: 100%;
  height: auto;
}

.button-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 769px) {
  /* タブレットやPC用のスタイル */
  .winter-category {
    margin: 0 auto; /* 必要に応じて中央揃え等 */
    padding: 0 5%;
  }
}
@media (max-width: 769px) {
  .phone-image {
    width: 100%;
    height: 180px;
  }
}
/* テーブル全体のスタイル */
.price_list table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* .price_list 内のヘッダー行のスタイル */
.price_list th {
  background-color: #0068b7;
  color: white;
  padding: 8px 2px;
  border: 1px solid #ddd;
  text-align: center;
}

/* .price_list 内のデータ行とセルのスタイル */
.price_list tr {
  display: table-row; /* 明示的に行として表示 */
}

.price_list td {
  display: table-cell; /* 明示的にセルとして表示 */
  padding: 8px 2px;
  border: 1px solid #ddd;
  text-align: center;
}

/* .price_list 内の奇数行と偶数行の背景色の設定 */
.price_list tr:nth-child(even) {
  background-color: #f2f2f2;
}

.price_list tr:nth-child(odd) {
  background-color: #fff;
}

/* .price_list 内のホバー時の行の背景色の変更 */
.price_list tr:hover {
  background-color: #ddd;
}

.price_list .additional-info {
  text-align: right;
  margin-top: 4px;
  font-size: 10px;
  color: #666;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  visibility: hidden;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.mobile-menu .logo {
  text-align: center;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.mobile-menu__btn > span {
  background-color: orange;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
  border-bottom: #f39800 solid 0.3px;
}

.main-title {
  font-weight: 600;
  font-size: 20px;
  display: flex;
}
.main-title::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: orange;
  margin-left: auto;
}

.sub-title {
  display: block;
  font-size: 14px;
  color: #535353;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__item:nth-child(6) {
  transition-delay: 0.42s;
}
.menu-open .mobile-menu__item:nth-child(7) {
  transition-delay: 0.49s;
}
.menu-open .mobile-menu__btn > span {
  background-color: orange;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

.logo {
  text-align: center;
}

@media (min-width: 600px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
  #home {
    transition: 0.5s;
  }
  #home:hover {
    opacity: 0.5;
  }
  .grade__main {
    width: 30%;
  }
  .grade__main ul {
    width: 50%;
  }
  .about-link {
    display: flex;
    width: 450px;
    height: 100px;
    align-items: center;
    border: initial;
    background-color: initial;
    margin-top: 48px;
    margin-bottom: 32px;
    transition: 0.5s;
  }
  .about-link:hover {
    opacity: 0.4;
  }
  .about-link > img {
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .about-link__text {
    background-color: #fff100;
    font-family: "Kameron", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
    color: #0068b7;
    width: 50%;
    height: 100%;
    padding: 20px 0;
    text-align: center;
  }
  .about-link__text__sub {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about-link__text__main {
    font-size: 24px;
  }
  .header-img {
    height: 300px;
  }
  .junior > img {
    height: 250px;
  }
  .junior__more {
    width: 70%;
  }
  .group__grade {
    margin-bottom: 32px;
  }
  .group__subject {
    margin-left: 24px;
  }
  .routine-exam {
    margin-top: 32px;
  }
  .routine-exam__li__inner {
    padding: 20px 10px 20px 10px;
  }
  label {
    transition: 0.5s;
  }
  label:hover {
    opacity: 0.4;
  }
  .study-group__li__inner {
    padding: 20px 10px 20px 10px;
  }
  .member_article {
    width: 70%;
    margin: 0 auto;
  }
  .member_title::after {
    width: 70%;
  }
}
@media (min-width: 960px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
  .header {
    height: 110px;
  }
  #contents {
    padding-top: 100px;
  }
  .font-sm {
    font-size: 16px;
  }
  .font-md {
    font-size: 19px;
  }
  .font-lr {
    font-size: 23px;
  }
  .font-lg {
    font-size: 36px;
  }
  .mb-lg {
    margin-bottom: 150px !important;
  }
  .pb-lg {
    padding-bottom: 150px !important;
  }
  .header__nav {
    display: block;
  }
  .mobile-menu {
    display: none;
  }
  .mobile-menu__btn {
    display: none;
  }
  .midashi-1 {
    font-size: 32px;
  }
  .midashi-2 {
    font-size: 22px;
    text-align: center;
    font-weight: bolder;
  }
  .midashi-3 {
    font-size: 24px;
  }
  .midashi-4 {
    font-size: 30px;
    font-weight: bolder;
  }
  .midashi-5 {
    font-size: 30px;
    font-weight: bolder;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .midashi-6 {
    position: relative;
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 32px;
  }
  .midashi-7 {
    font-size: 30px;
    font-weight: bolder;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .midashi-8 {
    font-size: 30px;
    font-weight: bolder;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .midashi-9 {
    font-size: 30px;
    font-weight: bolder;
  }
  .header {
    display: initial;
    padding-top: 20px;
  }
  .omjlogo {
    width: 300px;
    height: auto;
  }
  .gnavi {
    font-size: 14px;
    display: flex;
    list-style: none;
    margin-top: 4px;
    color: white;
    justify-content: space-between;
  }
  .gnavi li a {
    display: block;
    padding: 0px 25px 10px 25px;
    text-decoration: none;
  }
  .gnavi li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
  }
  .gnavi li.current a,
  .gnavi li a:hover {
    color: #ddaf29;
  }
  .gnavi li a::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background: #ddaf29;
    /*アニメーションの指定*/
    transition: all 0.3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: center top; /*上部中央基点*/
  }
  /*現在地とhoverの設定*/
  .gnavi li.current a::after,
  .gnavi li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
  .sub-gnavi {
    display: flex;
    align-items: center;
    text-align: right;
    height: 38px;
  }
  .sub-gnavi__tel {
    font-family: "Kameron", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
    font-size: 24px;
    color: white;
    margin-right: 18px;
  }
  .sub-gnavi__tel__uketuke {
    font-size: 10px;
    margin-right: 18px;
    color: white;
  }
  .sub-gnavi__tel::before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: 900;
    font-size: 20px;
    color: orange;
    margin-right: 8px;
  }
  .sub-gnavi__contact {
    width: 120px;
    background-color: #ff7f7f;
    border-radius: 3px;
    color: white;
    margin-right: 5px;
    transition: 0.5s;
  }
  .sub-gnavi__contact:hover {
    opacity: 0.4;
  }
  .sub-gnavi__contact__link {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    text-decoration: none;
  }
  .grade__ko-su {
    display: none;
  }
  .grade__flex {
    display: flex;
    justify-content: space-around;
  }
  .grade__menu {
    margin-top: 24px;
  }
  .grade__desktop {
    width: 30%;
  }
  .grade__main__desktop {
    font-size: 24px;
    padding: 24px 0;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #0068b7;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    border-bottom: 0.1875em solid #044a75;
    transition: all 0.3s ease 0s;
  }
  .grade__main__desktop:hover {
    border-bottom-color: transparent;
    transform: translateY(0.1875em);
  }
  .grade__btn {
    font-size: 20px;
    display: block;
    width: 100%;
    padding: 0 30px 10px 10px;
    margin-top: 10px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transition: 0.4s;
  }
  .grade__btn::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: transparent transparent orange orange;
    transform: rotate(-135deg);
    transition: 0.5s;
  }
  .grade__btn:hover::after {
    right: 10px;
  }
  .grade__btn:hover {
    color: rgba(34, 34, 34, 0.4);
  }
  .success__grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 32px;
  }
  .kyousitu__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .kyousitu__text-container {
    flex-grow: 1;
    margin-left: 70px; /* テキストと画像の間にスペースを追加 */
  }
  .kyousitu__name,
  .kyousitu__jusho {
    text-align: left;
    margin-top: 0;
    margin-bottom: 8px; /* あなたのmb-smクラスに合わせて調整 */
  }
  .dotted {
    display: none;
  }
  .junior {
    width: 45%;
  }
  .junior > img {
    margin: 18px 10px;
  }
  .junior__panel__title {
    height: 28px;
    font-size: 24px;
  }
  .junior__text {
    font-size: 24px;
    margin-top: 24px;
  }
  .junior__flex {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
  }
  .junior__more {
    width: 100%;
  }
  .group {
    display: flex;
    align-items: center;
  }
  .group__grade {
    width: 50%;
    text-align: center;
  }
  .group__flex {
    width: 50%;
  }
  .routine-exam {
    margin-top: 32px;
  }
  .routine-exam > ul {
    display: flex;
    justify-content: space-between;
  }
  .routine-exam__li {
    border-radius: 50%;
  }
  .routine-exam__li__inner {
    width: 265px;
    height: 265px;
  }
  .group__grade__elementary {
    width: 50%;
    text-align: center;
  }
  .group__flex {
    width: 50%;
  }
  .study-group__li {
    border-radius: 50%;
  }
  .study-group__li__inner {
    width: 265px;
    height: 265px;
  }
  .desktop-slide {
    display: block;
  }
  .sp-slide {
    display: none;
  }
  .midashi-6 {
    margin-top: 80px;
  }
  .features__contents {
    margin-left: 80px;
  }
  .features__contents__main {
    font-size: 24px;
  }
  .features__desktop {
    display: flex;
    justify-content: space-between;
  }
  .features__text {
    width: 55%;
    margin-top: 0;
  }
  .entry {
    width: 75%;
    margin: 0 auto;
  }
  .company-logo {
    text-align: center;
  }
  .company-logo img {
    width: 150px;
    height: 150px;
  }
  .company-overview {
    border-top: 1px solid #ddd;
    margin-bottom: 40px;
  }
  .company-overview .item {
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (min-width: 960px) and (min-width: 560px) {
  .company-overview .item {
    display: grid;
    /*項目名：名称の横幅比率*/
    grid-template-columns: 1fr 5fr;
    /*項目名：名称の間の余白*/
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
}
@media (min-width: 1280px) {
  /******************************************************************

  Stylesheet: 1280px以上のモニタで適用

  ******************************************************************/
}
@media print {
  /******************************************************************

  Stylesheet: プリンタのみに適用

  ******************************************************************/
}/*# sourceMappingURL=style.css.map */