html {
    scrollbar-gutter: stable;
}

@media screen and (min-width: 737px) {

  /* 既存PCグローバルメニューを非表示 */
  #header > .nav {
    display: none !important;
  }

  #header .content[pc] {
    display: none !important;
  }

  #header .header .body {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .pc-header-actions {
    display: flex !important;
    align-items: center;
    gap: 16px;
  }

  .pc-header-action,
  .pc-menu-trigger {
    width: 70px;
    height: 70px;
    border: 1px solid #777;
    border-radius: 50%;
    background: #fff;
    color: #777;
    font-size: 9px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    box-sizing: border-box;
	 transition:.25s;
  }
	
.pc-header-action:hover,
.pc-menu-trigger:hover{

    border-color:#dc1f71;
    color:#dc1f71;
	background:#fff3f8;
	text-decoration:none;

}

  .pc-menu-trigger {
    cursor: pointer;
  }


/*-----------------------------
    ヘッダーアイコン
-----------------------------*/

.pc-header-action-icon{
    display:block;
    width:24px;
    height:24px;
    margin:0 auto;
	margin-top:-2px;
}

.pc-header-action-icon img{
    display:block;
    width:100%;
    height:100%;
}

	
	

/* ACCESSだけ少し小さく */

.pc-header-action-access .pc-header-action-icon{

    width:30px;
    height:30px;

}

/* CONTACTだけ少し大きく */

.pc-header-action-contact .pc-header-action-icon{

    width:28px;
    height:28px;

}


/*-----------------------------
    MENU
-----------------------------*/

.pc-menu-trigger-icon{

    position:relative;

    display:block;

    width:30px;
    height:30px;

}


.pc-menu-trigger-icon img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    transition:.25s;

}


/* 初期状態 */

.icon-menu-open{

    opacity:1;

}

.icon-menu-close{

    opacity:0;

}


/* 開いた状態 */

.pc-menu-trigger.is-open .icon-menu-open{
	opacity:0;
}

.pc-menu-trigger.is-open .icon-menu-close{
	opacity:1;
}
	
	
	

  .pc-menu-panel {
    position: fixed;
  inset: 124px 0 0;
  z-index: 9990;
  overflow-y: auto;
  background: #2d2a27;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s ease;
  }

  .pc-menu-panel.is-open {
    opacity: 1;
    visibility: visible;
	  transform: translateY(0);
  }

  .pc-menu-inner {
    width: min(940px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 80px;
  }

  .pc-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .pc-menu-column h2 {
	  position:relative;
    margin: 0 0 20px;
    padding: 0 0 5px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border-bottom: 2px solid;
	  letter-spacing: .15em;
  }
	
.pc-menu-column h2::after{
	content:"";
	position:absolute;
	left:50%;
	bottom:-9px;
	width:12px;
	height:12px;
	margin-left:-6px;
	transform:rotate(45deg);
	background:#2d2a27;
}
	
.pc-menu-column-junior h2 {
  border-color: #d81d41;
  color: #d81d41;
}

.pc-menu-column-general h2 {
  border-color: #1f9ee5;
  color: #1f9ee5;
}

.pc-menu-column-music h2 {
  border-color: #76a900;
  color: #76a900;
}
	
.pc-menu-column h2 {
  color: #fff;
}

  .pc-menu-column-junior h2 {
    border-color: #d81d41;
  }

  .pc-menu-column-general h2 {
    border-color: #1f9ee5;
  }

  .pc-menu-column-music h2 {
    border-color: #76a900;
  }

  .pc-menu-feature {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    text-decoration: none;
  }
	
.pc-menu-feature:hover {
text-decoration: none;
}

  .pc-menu-feature img {
    display: block;
    width: 100%;
    height: 94px;
    object-fit: cover;
    object-position: center 20%;
	/* transition: transform .35s ease;　*/
  }

/*
.pc-menu-feature:hover img {
  transform: scale(1.04);
}
*/

  .pc-menu-feature-title,
  .pc-menu-feature-text {
	 position:relative;
    display: block;
	 text-align:center;
	font-size:16px;
	  font-weight:700;
	  letter-spacing:.03em;
    padding: 6px 10px;
	 font-weight:bold;
  }
	
.pc-menu-feature-title::before,
.pc-menu-feature-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
	
	
.pc-menu-feature-title::after {
  right: 17px;
}

/* 左側の矢印 */
.pc-menu-feature-title::before {
  right: 25px;
}	
	
  .pc-menu-feature-title {
    font-size: 18px;
    text-align: center;
  }

  .pc-menu-feature-text {
    padding-top: 0;
    font-size: 12px;
	  font-weight:400;
    line-height: 1.6;
    text-align: center;
  }

  .pc-menu-column-junior .pc-menu-feature {
    background: #a41520;
  }

  .pc-menu-column-general .pc-menu-feature {
    background: #3399ff;
  }

  .pc-menu-column-music .pc-menu-feature {
    background: #669900;
  }

  .pc-menu-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .pc-menu-column li {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  }

  .pc-menu-column li a {
    position: relative;
    display: block;
    padding: 10px 8px 10px 22px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }

  .pc-menu-column li a::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }
	
	
	.pc-menu-column-junior h2::after {
  border-right: 2px solid #d81d41;
  border-bottom: 2px solid #d81d41;
}

.pc-menu-column-general h2::after {
  border-right: 2px solid #1f9ee5;
  border-bottom: 2px solid #1f9ee5;
}

.pc-menu-column-music h2::after {
  border-right: 2px solid #76a900;
  border-bottom: 2px solid #76a900;
}

  .pc-menu-column-junior li a {
    color: #fff;
  }

  .pc-menu-column-junior li a::before {
    color: #d81d41;
  }

  .pc-menu-column-general li a::before {
    color: #1f9ee5;
  }

  .pc-menu-column-music li a::before {
    color: #76a900;
  }

  .pc-menu-subnav {
    margin-top: 34px;
  }

  .pc-menu-subnav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
  }

  .pc-menu-subnav li {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }

  .pc-menu-subnav li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }

  .pc-menu-subnav a {
    display: block;
    padding: 2px 16px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
  }

  body.pc-menu-open {
    overflow: hidden;
  }
	
/* 下層メニューのホバー */
.pc-menu-column li a {
  transition:
    color .2s ease,
    background-color .2s ease,
    padding-left .2s ease;
}

.pc-menu-column li a:hover {
  color: #fff4b0;
  background: rgba(255, 255, 255, .04);
  padding-left: 27px;
  text-decoration: none;
}
}


.pc-menu-column li a::before {
  transition:
    left .2s ease,
    transform .2s ease;
}

.pc-menu-column li a:hover::before {
  left: 11px;
}


.pc-menu-feature-title::before,
.pc-menu-feature-title::after {
  transition: right .2s ease;
}

.pc-menu-feature:hover .pc-menu-feature-title::before {
  right: 21px;
}

.pc-menu-feature:hover .pc-menu-feature-title::after {
  right: 13px;
}


.pc-menu-feature {
  overflow: hidden;
  /*　transition:
    filter .2s ease,
    transform .2s ease;　*/
}


.pc-menu-feature:hover {
  /*　transform: translateY(-1px);　*/
  text-decoration: none;
}



.pc-menu-subnav a{
    transition:
        color .2s ease,
        background-color .2s ease;
}

.pc-menu-subnav a:hover{
    color:#fff4b0;
    background:rgba(255,255,255,.04);
    text-decoration:none;
}



/* ==================================================
   スマホメニュー：PC版風デザイン
================================================== */
@media screen and (max-width: 736px) {

	
/* ==============================================
   スマホメニュー下部：ACCESS・CONTACT
============================================== */

#sp-nav .sp-nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  width: 100%;
  margin: 20px 0 10px !important;
  padding: 0;

  border: 0;
}

#sp-nav .sp-nav-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;

  flex: 0 0 70px;   /* ←これを追加 */

  margin: 0;
  padding: 0;

  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;

  background: #fff;
  color: #777;

  font-size: 9px;
  line-height: 1;
  text-align: center;
  text-decoration: none;

  box-sizing: border-box;
}
	
	
#sp-nav .sp-nav-action,
#sp-nav .sp-nav-exam{
    -webkit-tap-highlight-color: transparent;
}	
	

#sp-nav .sp-nav-action-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 0 4px;
}

#sp-nav .sp-nav-action-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sp-nav .sp-nav-action-access .sp-nav-action-icon {
  width: 28px;
  height: 28px;
  margin-top: -2px;
}

#sp-nav .sp-nav-action-contact .sp-nav-action-icon {
  width: 26px;
  height: 26px;
}

#sp-nav .sp-nav-action-label {
  display: block;
  color: #777;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0;
}


	
	
	

/* 下部2列メニューを常時表示 */
#sp-nav .sp-nav-subnav-wrap {
  display: flex !important;
  width: 100%;
}

#sp-nav .sp-nav-subnav-column {
  display: block !important;
  width: 50%;
}
	
	
/* ==============================================
   下部共通メニュー：左右独立の2列
============================================== */

#sp-nav .sp-nav-subnav-wrap {
  position: relative;
  display: flex !important;
  align-items: flex-start;

  width: 100%;
  margin-top: 14px;
  padding-top: 18px;

  border: 0;
}

/* 左右の列 */
#sp-nav .sp-nav-subnav-column {
  display: block !important;
  width: 50%;
  margin: 0;
  list-style: none;
}

#sp-nav .sp-nav-subnav-column-left {
  padding-right: 12px;
  border-right: 0;
}

#sp-nav .sp-nav-subnav-column-right {
  padding-left: 12px;
}
	
/* 2列メニュー中央の縦線 */
#sp-nav .sp-nav-subnav-wrap {
  position: relative;
}

#sp-nav .sp-nav-subnav-wrap::after {
  content: "";
  position: absolute;

  top: 18px;
  bottom: 4px;
  left: 50%;

  width: 1px;
  background: rgba(255, 255, 255, .45);

  transform: translateX(-50%);
  pointer-events: none;
}

	
#sp-nav .sp-nav-subnav-column-left > li > a::after {
  right: 22px;
}
	
	
	
/* 各リンク */
#sp-nav .sp-nav-subnav-column > li {
  margin: 0;
  padding: 0;
  border: 0;
}

#sp-nav .sp-nav-subnav-column > li > a {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 42px;

  margin: 0;
  /* padding: 6px 28px 6px 10px; */
padding: 6px 19px 6px 10px;

  border: 0;
  background: transparent;
  color: #fff;

  /* font-size: 12px; */
font-size: 14px;
  line-height: 1.3;

  text-decoration: none;
}
	
	
#sp-nav .sp-nav-subnav-column > li:first-child {
    margin-top: 5px;
}

/* 右矢印 */
#sp-nav .sp-nav-subnav-column > li > a::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 11px;

  width: 7px;
  height: 7px;

  border-top: 1px solid #fff;
  border-right: 1px solid #fff;

  transform: translateY(-50%) rotate(45deg);
}

#sp-nav .sp-nav-subnav-column {
  display: block !important;
  width: 50%;
  /* margin: 5px; */
margin: 0px;
  padding: 0;
  list-style: none;
}

#sp-nav .sp-nav-subnav-column > li:last-child {
  margin-bottom: 0;
}
	
	
	
	

  /* ==============================================
     既存の右スライド式メニューを画面幅100%に変更
  ============================================== */

  #wrapper {
    left: 0 !important;
  }

  #wrapper.nav-active {
    left: 0 !important;
  }

  #sp-nav {
    position: fixed;
    top: 45px;
    right: -100%;
    bottom: 0;
    left: auto;

    z-index: 9998;

    display: block !important;
    width: 100%;
    height: auto;

    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    background: #2d2a27;
    color: #fff;

    transition: right .25s ease;
  }

  .nav-active #sp-nav {
    right: 0;
  }

  #sp-nav,
  #sp-nav * {
    box-sizing: border-box;
  }


  /* ==============================================
     リストの基本リセット
  ============================================== */

  #sp-nav ul,
  #sp-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #sp-nav > .sp-nav-main {
  width: 100%;
  margin: 0;
  padding: 12px 16px 20px;
  display: block;
  }

  #sp-nav > .sp-nav-main > li {
    margin: 0;
    padding: 0;
    border: 0;
  }


  /* ==============================================
     中学校・普通科・音楽科・学校概要の見出し
  ============================================== */

  #sp-nav .slide-button {
    position: relative;

    display: block;
    width: 100%;

    margin: 0;
    padding: 16px 48px 16px 14px;

    border: 0;
    border-top: 0;
    border-bottom: 2px solid rgba(255, 255, 255, .45);

    background: transparent;
    color: #fff;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .12em;

    text-align: left;
    text-decoration: none;

    cursor: pointer;
  }

  #sp-nav .sp-nav-junior > .slide-button {
    border-bottom-color: #d81d41;
  }

  #sp-nav .sp-nav-general > .slide-button {
    border-bottom-color: #1595df;
  }

  #sp-nav .sp-nav-music > .slide-button {
    border-bottom-color: #70a100;
  }





  /* ==============================================
     アコーディオン内
  ============================================== */

  #sp-nav .slide-content {
    display: none;

    width: 100%;
    margin: 0;
    padding: 16px 0 14px;

    background: transparent;
  }

  /*
   * jQueryがstyle属性へdisplay:blockを付けるため、
   * openクラスなどの追加は不要です。
   */

  #sp-nav .slide-content > li {
    width: 100%;

    margin: 0;
    padding: 0;

    border: 0;
    border-bottom: 1px dotted rgba(255, 255, 255, .24);

    background: transparent;
  }


  /* ==============================================
     画像付きカード
  ============================================== */

  #sp-nav .slide-content > .sp-menu-feature-wrap {
    margin: 0 0 10px;
    border: 0;
  }
	
	
/* タップ中 */

#sp-nav .sp-menu-feature{
    transition: filter .03s ease;
}

#sp-nav .sp-menu-feature:active{
    filter: brightness(.88);
}

  #sp-nav .sp-menu-feature {
    display: block;
    overflow: hidden;

    width: 100%;
    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    color: #fff;
    text-decoration: none;
  }

  #sp-nav .sp-menu-feature img {
    display: block;

    width: 100%;
    height: 115px;

    margin: 0;
    padding: 0;

    object-fit: cover;
	 object-position: center 10%;
  }

  #sp-nav .sp-menu-feature-title,
  #sp-nav .sp-menu-feature-text {
    position: relative;

    display: block;

    width: 100%;
    margin: 0;

    color: #fff;
    text-align: center;
  }

  #sp-nav .sp-menu-feature-title {
    padding: 9px 44px 4px 12px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .03em;
  }

  #sp-nav .sp-menu-feature-text {
    padding: 0 12px 10px;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
  }

  #sp-nav .sp-nav-junior .sp-menu-feature {
    background: #a41520;
  }

  #sp-nav .sp-nav-general .sp-menu-feature {
    background: #3399ff;
  }

  #sp-nav .sp-nav-music .sp-menu-feature {
    background: #669900;
  }


  /* カード右側の二重矢印 */

  #sp-nav .sp-menu-feature-title::before,
  #sp-nav .sp-menu-feature-title::after {
    content: "";

    position: absolute;
    top: 50%;

    display: block;

    width: 8px;
    height: 8px;

    margin-top: -5px;

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;

    background: transparent;

    transform: rotate(45deg);
  }

  #sp-nav .sp-menu-feature-title::before {
    right: 25px;
  }

  #sp-nav .sp-menu-feature-title::after {
    right: 17px;
  }


  /* ==============================================
     校種内の通常リンク
  ============================================== */

  #sp-nav .slide-content > li:not(.sp-menu-feature-wrap) > a {
    position: relative;

    display: block;
    width: 100%;

    margin: 0;
    padding: 12px 10px 12px 27px;

    border: 0;
    background: transparent;

    color: #fff;

    font-size: 15px;
    line-height: 1.5;

    text-decoration: none;
  }

  #sp-nav
  .slide-content
  > li:not(.sp-menu-feature-wrap)
  > a::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 9px;

    display: block;

    width: 7px;
    height: 7px;

    border-top: 1px solid;
    border-right: 1px solid;

    background: transparent;

    transform: translateY(-50%) rotate(45deg);
  }

  #sp-nav
  .sp-nav-junior
  .slide-content
  > li:not(.sp-menu-feature-wrap)
  > a::before {
    color: #d81d41;
  }

  #sp-nav
  .sp-nav-general
  .slide-content
  > li:not(.sp-menu-feature-wrap)
  > a::before {
    color: #1595df;
  }

  #sp-nav
  .sp-nav-music
  .slide-content
  > li:not(.sp-menu-feature-wrap)
  > a::before {
    color: #70a100;
  }

  #sp-nav
  .sp-nav-common
  .slide-content
  > li
  > a::before {
    color: #fff;
  }





  /* ==============================================
     既存のホバー背景を無効化
  ============================================== */

  #sp-nav ul li a:hover,
  #sp-nav ul li a:focus,
  #sp-nav ul li a:active {
    background: transparent;
    text-decoration: none;
  }


  /* ==============================================
     メニュー表示中は本文をスクロールさせない
  ============================================== */

  body:has(#wrapper.nav-active) {
    overflow: hidden;
  }

}




/* ==============================================
   アコーディオンの＋／−アイコン
   既存CSSとの競合を完全にリセット
============================================== */

#sp-nav ul li a.slide-button::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  background: none !important;
  transform: none !important;
}

#sp-nav ul li a.slide-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;

  display: block;
  width: 18px;
  height: 18px;

  margin: 0;
  padding: 0;
  border: 0 !important;

  background:
    linear-gradient(#fff, #fff) center / 16px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 16px no-repeat;

  transform: translateY(-50%);
  transition: background-size .2s ease;
}

/* 開いた時は縦線を消し、−にする */
#sp-nav ul li a.slide-button.active::before {
  background-size:
    16px 2px,
    2px 0;
}




/* ==================================================
   受験をお考えの方へ
================================================== */

/* 共通パーツ */
.header-exam-icon {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #ff0060;
}

.header-exam-icon img{
    display:block;
    width:100%;
    height:100%;
}

.header-exam-text {
  display: block;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .05em;
  text-align: center;
}

.header-exam-arrow {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;

  transition: transform .2s ease;
}

.header-exam-arrow::before,
.header-exam-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.header-exam-arrow::before {
  right: 6px;
}

.header-exam-arrow::after {
  right: 0;
}


/* ==================================================
   PC：受験をお考えの方へ
================================================== */

@media screen and (min-width: 737px) {

  .pc-header-actions {
    gap: 14px;
  }

.pc-header-exam {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 3px;

  width: 180px;
  height: 70px;
  padding: 0 12px 4px;

  border: 1px solid #777;
  border-radius: 35px;

  background: #fff;
  color: #dc1f71;

  box-sizing: border-box;
  text-decoration: none;
}

.pc-header-exam .header-exam-icon {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
	margin-bottom: -4px;
}

.pc-header-exam .header-exam-text {
  flex: 0 0 auto;
  white-space: nowrap;

  color: #dc1f71;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .03em;
  text-align: center;
}

  .pc-header-exam .header-exam-arrow {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    color: #ff0060;
  }

  .pc-header-exam:hover {
    border-color: #dc1f71;
    background: #fff3f8;
    color: #dc1f71;
    text-decoration: none;
  }

/*
.pc-header-exam:hover .header-exam-arrow{
    transform: translateX(2px);
}
*/

  .pc-header-exam:hover .header-exam-text,
  .pc-header-exam:hover .header-exam-icon,
  .pc-header-exam:hover .header-exam-arrow {
    color: #dc1f71;
  }
}


/* ==================================================
   スマホ：受験をお考えの方へ
================================================== */

@media screen and (max-width: 736px) {

	
/* 受験・ACCESS・CONTACTの横並び */
#sp-nav > .sp-nav-main > li.sp-nav-bottom-buttons {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  margin-top: 36px !important;
  padding: 0 70px 0 0 !important;
  border: 0 !important;
}

  /* ボタン本体 */
  #sp-nav .sp-nav-exam {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 3px;

    width:150px;
    flex:0 0 150px;
    min-height: 70px;
    margin: 0;
    padding: 0 12px 4px;

    border: 1px solid #777;
    border-radius: 35px;

    background: #fff !important;
    color: #dc1f71;

    box-sizing: border-box;
    text-decoration: none;
  }

  /* 本のアイコン */
  #sp-nav .sp-nav-exam .header-exam-icon {
    display: block;
    flex: 0 0 auto;

    width: 35px;
    height: 35px;
    margin-bottom: -4px;
  }

  #sp-nav .sp-nav-exam .header-exam-icon img {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* 「受験をお考えの方へ」の文字 */
  #sp-nav .sp-nav-exam .header-exam-text {
    display: block;
    flex: 0 0 auto;

    white-space: nowrap;

    color: #dc1f71;
    font-size: 13px;
	 letter-spacing: .01em;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
  }

  /* タップ中の変化 */
  #sp-nav .sp-nav-exam:active {
    border-color: #dc1f71;
    background: #fff3f8 !important;
    transform: scale(.99);
  }
	



  /* ACCESS・CONTACTとの間隔 */
  #sp-nav .sp-nav-actions {
    margin-top: 24px !important;
  }

	
/* スマホ下部3ボタン：タップ・フォーカス時の表示を統一 */
#sp-nav .sp-nav-action:hover,
#sp-nav .sp-nav-action:focus,
#sp-nav .sp-nav-action:active,
#sp-nav .sp-nav-exam:hover,
#sp-nav .sp-nav-exam:focus,
#sp-nav .sp-nav-exam:active {
  background: #ffe4ef !important;
  border-color: #dc1f71 !important;
  outline: none;
  text-decoration: none;
}
	

#sp-nav .sp-nav-action:active,
#sp-nav .sp-nav-exam:active {
  transform: scale(.99);
}
	
}