@charset "UTF-8";

/*
Theme Name: 桐生大学/桐生大学短期大学部
Theme URI: 
Description: 
Version: 1.0.0
Author: 朝日印刷工業
Author URI: 
*/
/* -----------------------------------------------

	Site: 
	Type: default styles
	URL: 
	Last Up Date: 
	Version: 1.0
	Author: 

	----------------------------------------------

	Contents

		1.

----------------------------------------------- */
/* --- 1.style reset --- */
/*要素のフォントサイズやマージン・パディング*/
:where(*) {
  font-weight: normal;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-style: normal;
}

/*スクロールバーを常に表示*/
html {
  overflow-y: scroll;
}

/*行の高さをフォントサイズと同じに*/
body {
  line-height: 1;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

/*引用符の表示が出ないように*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出ないように*/
img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  border: 0;
}

/*文字を太字に*/
strong {
  font-weight: bold;
}

/* --- 2.float --- */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
  zoom: 1;
  /* for IE6/7 */
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}

/* --- 3.link --- */
a {
  color: #808080;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#CntBox :where(a) {
  color: #0E57E9;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #0E57E9;
  transition: 0.5s;
  transition-property: text-decoration-color, opacity;
}

#CntBox :where(a:hover) {
  text-decoration-color: transparent;
}

#CntBox :where(a:has(img):hover) {
  opacity: 0.7;
}

#FooterBox :where(a) {
  color: #fff;
  text-decoration: none;
}

#FooterBox :where(a:hover) {
  text-decoration: underline;
}

a[href$=".pdf"] {
  background: url(images/icon_pdf.gif) no-repeat left;
  padding-left: 20px;
  overflow: hidden;
}

a[href$=".doc"] {
  background: url(images/icon_doc.gif) no-repeat left;
  padding-left: 20px;
  overflow: hidden;
}

a[href$=".xls"] {
  background: url(images/icon_xls.gif) no-repeat left;
  padding-left: 20px;
  overflow: hidden;
}

a[href$=".docx"] {
  background: url(images/icon_doc.gif) no-repeat left;
  padding-left: 20px;
  overflow: hidden;
}

a[href$=".xlsx"] {
  background: url(images/icon_xls.gif) no-repeat left;
  padding-left: 20px;
  overflow: hidden;
}

/* --- 4.text-align --- */
.to-left {
  text-align: left;
}

.to-center {
  text-align: center;
}

.to-right {
  text-align: right;
}

/* --- 5.common --- */
body {
  color: #808080;
}

#Container {
  width: 1280px;
  max-width: 100%;
  margin: 0px auto;
  overflow: hidden;
}

/* --- 6.header --- */
header {
  float: left;
  width: 200px;
  z-index: 1000;
  position: relative;
  position: fixed;
  top: 0;
  z-index: 2000;
}

/*
header {
	position: fixed;
	width: 200px;
	z-index: 1000;
}
*/
header h1,
header #title {
  text-align: center;
  background: #fff;
}

header h1 img,
header #title img {
  /* width:100%;
  max-width:400px;
  height:auto;
  margin-bottom:10px; */
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.cheer header #title img {
  max-width: 100%;
  margin-bottom: 0;
}

.cheer header {
  background-color: #30b9c4;
  height: 100%;
  padding-bottom: 32767px;
  margin-bottom: -32767px;
}

.cheer nav {
  border-bottom: solid 1px #fff;
}

#GNavi01,
#GNavi02,
#GNavi03,
#GNavi04,
#GNavi05,
#GNavi06,
#GNavi07 {
  cursor: pointer;
}

#ChildNav01,
#ChildNav02,
#ChildNav03,
#ChildNav04,
#ChildNav05,
#ChildNav06,
#ChildNav07 {
  /* position: absolute; */
  position: fixed;
  top: 0px;
  /* left: 200px; */
  transform: translate(200px);
  width: 240px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
  padding: 110px 0px 0px 0px;
}

#ChildNav01 li a,
#ChildNav02 li a,
#ChildNav03 li a,
#ChildNav04 li a,
#ChildNav05 li a,
#ChildNav06 li a,
#ChildNav07 li a {
  display: block;
}

#SNSBox {
  margin: 5px 0px 0px 0px;
  text-align: center;
  border: solid 5px #ccc;
  background-color: #fff;
}

#SNSBox p {
  margin: 8px 0px 0px 0px;
}

#SNSBox ul {
  font-size: 0px;
  margin: 10px 0px 13px 0px;
}

#SNSBox ul li {
  font-size: 12px;
  display: inline;
  padding: 0px 5px;
}

#SearchBox {
  margin: 5px;
}

.cheer #SearchBox {
  border-bottom: solid 1px #fff;
}

/* 検索用 */
.screen-reader-text {
  display: none;
}

#s {
  border: 0;
  font-size: 14px;
  padding: 3px;
  border: none;
  width: 140px;
}

.cheer #s {
  border: 0;
  font-size: 14px;
  padding: 3px;
  border: none;
  width: 140px;
  background-color: #30b9c4;
}

#searchsubmit {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(images/search-btn.png);
  background-color: #fff;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
  margin: 0px 3px 1px 0px;
}

.cheer #searchsubmit {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(images/c_search-btn.png);
  background-color: #30b9c4;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
  margin: 0px 3px 1px 0px;
}

#SearchBox input.gsc-search-button-v2 {
  padding: 6px;
}

#SearchBox .gsc-input {
  padding-right: 0px;
}

#SearchBox .gsc-control-cse {
  padding: 8px 3px 5px 3px;
}

#InstaBox {
  width: 200px;
  margin: 10px 0px 0px 0px;
}

#InstaBox .InstaPhoto {
  width: 196px;
  height: 196px;
  border: solid 2px #ccc;
  background-color: #ccc;
}

#InstaBox .slideshow_container img {
  position: absolute;
  /* --- 写真を中央に --- */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#Trust {
  width: 200px;
  height: 150px;
  margin: 10px 0px 0px 0px;
}

#Trust img {
  width: 100%;
  height: auto;
}

/* --- 7.contents --- */
#MainBox {
  float: right;
  width: 1080px;
  max-width: calc(100% - 200px);
  /*min-width: 1000px;
  margin: 0px 0px 0px 200px;*/
}

/* --- 8.sidebar --- */
/* --- 9.footer --- */
footer {
  clear: both;
}

#FooterNavi {
  font-size: 0px;
  padding: 20px 0px;
  background-color: #fff;
}

#FooterNavi li {
  font-size: 12px;
  display: inline;
  padding: 0px 20px;
  border-left: solid 1px #808080;
}

#FooterNavi li:first-child {
  border-left: none;
}

.SiteMapBox {
  float: left;
  width: 13.5%;
  margin: 0px 0.78% 30px 0px;
}

.SiteMapBox h2 {
  text-align: center;
  background-image: url(images/bg_footer_h2_off.png);
  padding: 5px;
}

.SiteMapBox h3 {
  font-size: 12px;
  margin: 15px 10px;
}

.SiteMapBox ul {
  margin: 15px 10px 25px 10px;
}

.SiteMapBox ul li {
  font-size: 11px;
  margin: 0px 0px 8px 0px;
}

#FooterBox {
  clear: both;
  background-color: #80cee2;
  color: #fff;
}

.cheer #FooterBox {
  background-color: #30b9c4;
}

#FooterBox .inner {
  width: 100%;
  max-width: 1080px;
  padding-inline: 20px;
  margin: 0px auto;
  box-sizing: border-box;
}

#FooterBox ul {
  float: right;
  width: 403px;
}

#FooterBox ul li {
  float: left;
  width: 200px;
  text-align: center;
  font-size: 14px;
  border-left: solid 1px #fff;
}

#FooterBox ul li.link01,
#FooterBox ul li.link02 {
  border-bottom: solid 1px #fff;
}

#FooterBox ul li.link02,
#FooterBox ul li.link04 {
  border-right: solid 1px #fff;
}

#FooterBox ul li a {
  display: block;
  padding: 36px 0px;
}

#FooterBox ul li a:hover {
  background-image: url(images/bg_footer_link.png);
  text-decoration: none;
}

.cheer #FooterBox ul li a:hover {
  background-image: url(images/c_bg_footer_link.png);
  text-decoration: none;
}

#FooterBox h2 {
  font-size: 18px;
  padding: 30px 50px 15px 0px;
  line-height: 1.6;
}

#FooterBox h2 span {
  font-size: 12px;
}

#FooterBox p {
  font-size: 12px;
  line-height: 1.8;
}

#FooterBox p#Copyright {
  font-size: 12px;
  line-height: 1.8;
  padding: 0px 0px 30px 0px;
}

/* --- 10.etc --- */
.mt10 {
  margin-top: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.fnt_red {
  color: #f00;
}

/* プラグインを使わないページネーション用 */
.pagination {
  clear: both;
  float: right;
  font-size: 11px;
  line-height: 13px;
  padding: 20px 0 10px 0;
  text-align: center;
  position: relative;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #666;
  background: #eee;
}

.pagination a:hover {
  color: #fff;
  background-color: #534741;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #534741;
  color: #fff;
}

#PageTop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 200;
}

/* MetaSlider用 */
.metaslider .flexslider {
  margin: 0px !important;
}

@media only screen and (min-width: 768px) {
  #MainMenu {
    display: block !important;
  }
}

@media only screen and (min-width: 768px) {
  .fix_sp {
    display: none !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .fix_pc {
    display: none !important;
  }
}

.cheer header nav ul li a img[src$="c_gnavi10_on.png"] {
  opacity: 0 !important;
}

.cheer header nav ul li a img[src$="c_gnavi10_off.png"] {
  opacity: 1 !important;
}

.cheer header nav ul li:has(img[src$="c_gnavi10_on.png"]) {
  background-color: #ffe23b;
}

.cheer header nav ul li a:has(img[src$="c_gnavi10_on.png"]) {
  transition: opacity .5s ease;
}

.cheer header nav ul li a:has(img[src$="c_gnavi10_on.png"]):hover {
  opacity: 0.6;
}

@media only screen and (max-width: 767.98px) {
  /* --- 6.header --- */
  header {
    width: 100%;
    height: auto;
    left: 0;
    background: #fff;
    z-index: 9999;
  }

  header h1,
  header #title {
    text-align: left;
  }

  header #title {
    padding: 5px 0 5px 10px;
  }

  header h1 img,
  header #title img {
    width: 55%;
  }

  header h1 {
    padding: 5px 0 5px 10px;
  }

  #Container {
    max-width: 100%;
  }

  .cheer header {
    height: auto;
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    /*	background-color: #30b9c4;
    height: 100%;*/
  }

  .cheer header #title img {
    max-width: 100px;
  }

  #MenuBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
  }

  #MainMenu {
    display: none;
    width: 100%;
    background: #fff;
    /*	z-index: 9900;*/
    padding-top: 70px;
  }

  .cheer #MainMenu {
    background-color: #30b9c4;
  }

  #Toggle {
    position: absolute;
    top: 10px;
    right: 5px;
    display: block;
    cursor: pointer;
    /*	z-index: 9999;*/
  }

  #GNavi01,
  #GNavi02,
  #GNavi03,
  #GNavi04,
  #GNavi05,
  #GNavi06,
  #GNavi07 {
    font-size: 16px;
    padding: 10px 0px 8px 0px;
    border-top: solid 1px #ccc;
    cursor: pointer;
  }

  #GNavi08,
  #GNavi09,
  #GNavi10,
  #GNavi11 {
    font-size: 16px;
    border-top: solid 1px #ccc;
  }

  #GNavi10 {
    background-color: #b5e4ea;
  }

  #GNavi08 {
    background-color: #ff0;
  }

  #GNavi09 {
    background-color: #30bac5;
    border-bottom: solid 1px #ccc;
  }

  #GNavi08 a,
  #GNavi09 a,
  #GNavi10 a,
  #GNavi11 a {
    display: block;
    padding: 10px 0px 8px 20px;
  }

  #GNavi09 a {
    color: #fff;
  }

  #GNavi01 span,
  #GNavi02 span,
  #GNavi03 span,
  #GNavi04 span,
  #GNavi05 span,
  #GNavi06 span,
  #GNavi07 span {
    padding: 0px 0px 0px 20px;
  }

  #GNavi01 span:after,
  #GNavi02 span:after,
  #GNavi03 span:after,
  #GNavi04 span:after,
  #GNavi05 span:after {
    content: " ▼";
  }

  #ChildNav01,
  #ChildNav02,
  #ChildNav03,
  #ChildNav04,
  #ChildNav05,
  #ChildNav06,
  #ChildNav07 {
    display: none;
    width: 100%;
    height: auto;
    margin: 9px 0px -8px 0px;
    position: relative;
    left: 0;
    transform: none;
    background-color: transparent;
    padding: 0;
  }

  #ChildNav01 li,
  #ChildNav02 li,
  #ChildNav03 li,
  #ChildNav04 li,
  #ChildNav05 li,
  #ChildNav06 li,
  #ChildNav07 li {
    font-size: 16px;
    background-color: #efefef;
    border-top: solid 1px #fff;
  }

  #ChildNav01 li a,
  #ChildNav02 li a,
  #ChildNav03 li a,
  #ChildNav04 li a,
  #ChildNav05 li a,
  #ChildNav06 li a,
  #ChildNav07 li a {
    padding: 10px 20px 8px 30px;
  }

  .cheer header nav ul {
    background-color: #30b9c4;
  }

  .cheer header nav ul li {
    font-size: 16px;
    color: #fff;
    border-top: solid 1px #fff;
  }

  .cheer header nav ul li a {
    display: block;
    padding: 10px 20px 8px 30px;
    color: #fff;
    text-decoration: none;
  }

  .cheer header nav ul li#CNavi01 a {
    background-color: #ff0;
    color: #666;
  }

  .cheer header nav ul li#CNavi02 a {
    background-color: #666;
  }

  .cheer header nav ul li#CNavi03 a {
    background-color: #06c;
  }

  .cheer header nav ul li#CNavi04 a {
    background-color: #b5e4ea;
    color: #666;
  }

  #SRBtn {
    position: fixed;
    top: 10px;
    right: 40px;
    width: 50px;
    height: 60px;
    z-index: 9999;
  }

  #OCBtn {
    position: fixed;
    top: 10px;
    right: 85px;
    width: 50px;
    height: 60px;
    z-index: 9999;
  }

  #SNSBox {
    margin-top: 0;
    padding: 0px 0px 20px 0px;
    border: 0;
  }

  #SNSBox p {
    margin-top: 0;
    padding: 0px 0px 5px 0px;
  }

  #SNSBox p:last-child {
    padding-top: 10px;
    padding-bottom: 0;
  }

  #SNSBox ul {
    margin: 5px 0px 0px 0px;
  }

  #SearchBox {
    margin: 0px 20px 20px 20px;
    text-align: center;
  }

  .cheer #SearchBox {
    border-bottom: 0;
  }

  #SearchSns {
    background-color: #fff;
  }

  /* 検索用 */
  #s {
    width: 80%;
    border-bottom: solid 1px #808080;
  }

  /* --- 7.contents --- */
  #MainBox {
    width: 100%;
    max-width: 100%;
  }

  .cheer #MainBox {
    /* padding-top: 70px; */
    padding-top: 40px;
    float: none;
  }

  .EngPage #MainBox {
    padding-top: 140px;
  }

  /* --- 8.sidebar --- */
  /* --- 9.footer --- */
  #FooterNavi li {
    display: inline-block;
    margin: 0px 0px 10px 0px;
    border-left: 0;
    border-right: solid 1px #808080;
  }

  #FooterNavi li:last-child {
    border-right: none;
  }

  #FooterBox .inner {
    padding: 20px;
  }

  #FooterBox ul li {
    display: inline-block;
    margin: 0px 0px 10px 0px;
  }

  #FooterBox ul li a {
    padding: 0px 15px;
  }

  #FooterBox h2 {
    padding: 0 50px 15px 0;
  }

  #FooterBox p#Copyright {
    padding: 0;
  }

  /* --- 10.etc --- */
  /* プラグインを使わないページネーション用 */
  /* MetaSlider用 */
}

/* 印刷ようcss追加 */

@media print {
  #header {
    position: absolute;
  }

  #Container #MainBox {
    margin-top: 170px;
    max-width: 100%;
  }

  #js-pageTop {
    display: none;
  }
}




/*for pages and contents special*/

@media only screen and (min-width: 768px) {
  img[src$="-sp.png"][class*="wp-image-"] {
    display: none !important;
  }

  img[src$="-sp.jpg"][class*="wp-image-"] {
    display: none !important;
  }
}

@media only screen and (max-width: 767.98px) {
  img[src$="-pc.png"][class*="wp-image-"] {
    display: none !important;
  }

  img[src$="-pc.jpg"][class*="wp-image-"] {
    display: none !important;
  }

  img[src$="-sp.png"][class*="wp-image-"] {
    max-width: min(100%, 500px) !important;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  img[src$="-sp.jpg"][class*="wp-image-"] {
    max-width: min(100%, 500px) !important;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

#CntBox a:has(img[src$="kpisheet.jpg"]),
#OcBox a:has(img[src$="kpisheet.jpg"]) {
  padding-left: 0 !important;
}

p:has(.wp-image-41219) img,
p:has(.wp-image-41225) img {
  margin: 0 auto;
}

p:has(.wp-image-41219),
p:has(.wp-image-41225) {
  max-width: 770px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  #MainBox[class="18876"] table {
    margin: 20px 40px 20px 40px;
  }

  p:has(.wp-image-41219),
  p:has(.wp-image-41225) {
    grid-template-columns: repeat(2, 1fr);
  }

}

#MainBox[class="102"] #CntBox p[style="text-align: center;"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

#MainBox[class="108"] #CntBox p[style="text-align: center;"] img:not(:last-child) {
  margin-right: 15px;
}

#MainBox[class="10496"] table {
  color: #333333;
}

#MainBox[class="9817"] #CntBox h3 {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 37px;
  background-color: unset;
  padding: 0;
  line-height: 1.4;
  margin: 0 0 1.2em 0;
}

#MainBox[class="9817"] #CntBox h2 {
  text-align: center;
}

#MainBox[class="18876"] table {
  min-width: max-content;
}

#MainBox[class="186"] table {
  min-width: max-content;
}

#MainBox[class="106"] h2 + .circle-grope {
  margin-top: 0;
}


@media screen and (max-width: 767px) {
  
  #MainBox[class="9817"] #CntBox h3 {
    font-size: 20px;
    /* text-align: left; */
  }

  #MainBox[class="108"] #CntBox p[style="text-align: center;"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0;
  }

  #MainBox[class="108"] #CntBox p[style="text-align: center;"] img:not(:last-child) {
    margin-right: 0;
  }

  #MainBox[class="102"] #CntBox p[style="text-align: center;"] {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  #MainBox .TeachersTobira, #MainBox .StudentsTobira, #MainBox .TitleLeft, #MainBox .ExaminationTobira, #MainBox .MoneyTobira, #MainBox .ClubTobira, #MainBox .GraduateTobira {
    /* display: none; */
    background-image:none;
    padding-top: 0;
  }
}

#CntBox .p-staff_report__item, #OcBox .p-staff_report__item {
  width: calc((100% - 80px) / 3);
  position: relative;
}
#MainBox #CntBox .p-staff_report__item-title-top, #MainBox #OcBox .p-staff_report__item-title-top {
  background-color: #0064c3;
  padding: 10px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

#MainBox #CntBox .p-staff_report__item-title-bottom,
#MainBox #OcBox .p-staff_report__item-title-bottom {
  font-size: 15px;
  line-height: 1;
  margin-top: 1em;
  /* background-color: #00B6DF; */
  padding: 0;
  border-radius: 50px;
  /* color: #fff; */
  line-height: 1.4;
  position: relative;
  display: block;
  margin-left: 0.4em;
  padding-right: 30px;
}

#MainBox #CntBox .p-staff_report__item-title-bottom::after,
#MainBox #OcBox .p-staff_report__item-title-bottom::after {
    content: "";
    width: 2em;
    height: 2em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(./assets/images/common/icon_next.svg);
    margin-left: 0.4em;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#MainBox #CntBox .p-staff_report__year,
#MainBox #OcBox .p-staff_report__year {
  background-color: #5EC4E3;
}

@media screen and (max-width: 767px) {
  #CntBox .p-staff_report__lists, #OcBox .p-staff_report__lists {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 40px;
    padding: 0 !important;
    column-gap: 40px;
    row-gap: 50px;
    margin-top: 40px;
}
}

@media screen and (min-width: 768px) {
  #MainBox:has(.p-staff_report) #OcBox {
    min-width: 100%;
  }
}



.p-staff_report img[src*="oc-report"] {
  display: table;
  margin: 0 auto;
}

#MainBox .AdmissionBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
}
#MainBox .AdmissionBtn br {
  display: none;
}
@media screen and (min-width: 768px) {
  
  #MainBox .AdmissionBtn {
    gap: 20px;
    flex-direction: row;
  }
  #MainBox[class="10496"] .ShopBox img {
    display: table;
    margin: 0 auto;
  }
  #MainBox .AdmissionBtn-banner01, 
  #MainBox .AdmissionBtn-banner02, 
  #MainBox .AdmissionBtn-banner03 {
    width: 100%;
  }
}
#MainBox .AdmissionBtn-banner01, 
#MainBox .AdmissionBtn-banner02, 
#MainBox .AdmissionBtn-banner03 {
  border-radius: 0 !important;
  padding: 0 !important;
  background: none !important;
  max-width: 360px;
  transition: opacity 0.5s ease;
  margin-top: 0;
}

#MainBox .p-faq dl dd {
  padding-right: 20px;
  padding-left: 20px;
}

#MainBox .u-mx0 {
  margin-left: 0;
  margin-right: 0;
}

#MainBox .p-faq dl dd p {
  padding-left: 0;
  padding-right: 0;
}


#CntBox #NavigationBox ul {
  margin: 0 auto;
}

#CntBox #NavigationBox li {
  margin: 0 30px;
}

@media screen and (max-width: 767px) {
  #CntBox #NavigationBox ul {
    padding: 7px 10% 15px 10%;
    text-align: left;
  }
}

#MainBox .c-grid-col2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: center;
}

#MainBox .c-grid-col2 > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

#MainBox .c-grid-col2 > * > p {
  padding-left: 0;
  padding-right: 0;
}

#MainBox .c-grid-col2 > * > p:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  #MainBox .c-list-px20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  #MainBox .c-grid-col2 {
    display: grid;
    grid-template-columns: repeat(2,auto);
    gap: 40px;
  }
}

#MainBox .c-list-pl20 {
  padding-left: 20px;
}

#MainBox .c-list-pl2 {
  padding-left: 2em;
}


#MainBox .c-dots-01 li {
  list-style-type: disc !important;
}


#MainBox .c-list-m0 {
  margin: 0;
}

#MainBox .c-list-m0 p {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#MainBox .c-list-reverse {
  display: flex;
  flex-direction: column-reverse;
}

#MainBox .c-list-reverse > li:first-child {
  margin-bottom: 0;
}


#MainBox .c-dots-none {
  list-style-type: none !important;
}

#MainBox .c-dots-none > li {
  list-style-type: none !important;
}

#MainBox .c-dots-02 {
  position: relative;
  padding-left: 1.5em;
}

#MainBox .c-dots-02::before {
  content: "○";
  font-size: 1em;
  position: absolute;
  left: 0;
}

#MainBox ul.c-dots-02 > li {
  list-style-type: none
}

#MainBox .u-center {
  max-width: max-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
#MainBox .u-px40-pc {
  padding-right: 20px;
  padding-left: 20px;
}

#MainBox .u-pl4 {
  padding-left: 3em;
}

@media screen and (min-width: 768px) {
  #MainBox .u-px20-pc {
    padding-right: 20px;
    padding-left: 20px;
  }
  #MainBox .u-px40-pc {
    padding-left: 40px;
    padding-right: 40px;
  }
  #MainBox .u-pl4 {
    padding-left: 4em;
  }
}
#MainBox .u-w-contain {
  width: max-content;
}

#MainBox #CntBox .internet_filing .step-area, 
#MainBox #OcBox .internet_filing .step-area {
  padding: 0;
}

#CntBox .p-support ul > li >p {
  padding: 0 20px;
  margin-top: 20px !important;
}

#MainBox #CntBox .p-scholarship h4, 
#MainBox #OcBox .p-scholarship h4 {
  margin-top: 1em;
}

#CntBox .p-scholarship h2 ~ h2 {
  margin-top: 2.6em;
}

/* #MainBox[class="16188"] h1,
#MainBox[class="52105"] h1,
#MainBox[class="52112"] h1,
#MainBox[class="52114"] h1,
#MainBox[class="52116"] h1,
#MainBox[class="52118"] h1,
#MainBox[class="52120"] h1,
#MainBox[class="52122"] h1,
#MainBox[class="50676"] h1 {
  display: none;
} */

#MainBox[class="16188"] #NavigationBox,
#MainBox[class="52105"] #NavigationBox,
#MainBox[class="52112"] #NavigationBox,
#MainBox[class="52114"] #NavigationBox,
#MainBox[class="52116"] #NavigationBox,
#MainBox[class="52118"] #NavigationBox,
#MainBox[class="52120"] #NavigationBox,
#MainBox[class="52122"] #NavigationBox,
#MainBox[class="50676"] #NavigationBox {
  /* display: none; */
  margin-top: 3em;
}


#MainBox[class="159"] iframe {
  margin-right: auto;
  margin-left: auto;
  display: table;
}

#MainBox[class="159"] img {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

#MainBox[class="110"] #CntBox .p-support ul {
  padding-left: 0;
  padding-right: 0;
}

#MainBox[class="110"] #CntBox .p-support .c-btn-area {
  padding-left: 20px;
}

#MenuBox .l-pc-navmenu {
  display: none;
}

#title.header-eng-title {
  text-align: center;
}

#title.header-eng-title img {
  max-width: 200px;
  width: 100%;
}

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

  
  #title.header-eng-title img {
    max-width: 150px;
  }

  #MenuBox #Toggle {
    display: none;
  }

  #MenuBox .l-pc-navmenu {
    display: block;
  }

  #MainBox[class="110"] #CntBox .p-support ul {
    padding-left: 40px;
    padding-right: 40px;
  }
}

#MainBox[class="171"]  #ImgBox,
#MainBox[class="173"]  #ImgBox,
#MainBox[class="176"]  #ImgBox,
#MainBox[class="8991"]  #ImgBox,
#MainBox[class="18880"]  #ImgBox,
#MainBox[class="18876"]  #ImgBox,
#MainBox[class="11429"]  #ImgBox,
#MainBox[class="178"]  #ImgBox,
#MainBox[class="180"]  #ImgBox,
#MainBox[class="8607"]  #ImgBox,
#MainBox[class="729"]  #ImgBox,
#MainBox[class="27327"]  #ImgBox,
#MainBox[class="243"]  #ImgBox,
#MainBox[class="18881"]  #ImgBox,
#MainBox[class="53158"]  #ImgBox,
#MainBox[class="28452"]  #ImgBox,
#MainBox[class="51560"]  #ImgBox,
#MainBox[class="41677"]  #ImgBox,
#MainBox[class="15639"]  #ImgBox,
#MainBox[class="42268"]  #ImgBox,
#MainBox[class="42274"]  #ImgBox,
#MainBox[class="42276"]  #ImgBox,
#MainBox[class="42279"]  #ImgBox,
#MainBox[class="182"]  #ImgBox {
 display: none;
}


@media print {
  /* header {
    position: absolute;
  }

  #MainBox {
    max-width: calc(100% - 200px);
  } */

  .l-footer__sp {
    display: none;
  }

  .l-footer .l-footer__bottom-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 72px;
    -moz-column-gap: 72px;
    column-gap: 72px;
    row-gap: 20px;
  }

  #js-pageTop {
    display: none;
  }
}

:where(iframe[src*="www.youtube.com"]) {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

@media print {
    .fix_sp {
        display: none !important;
    }
    body {
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    #MainBox {
        float: none;
        margin-left: auto;
        width: calc(100% - 200px);
    }
    #Container #MainBox {
        margin-top: 0 !important;
    }
    #CheerCntBox {
        break-after: page;
        page-break-after: page;
    }
    #InfoBox .InfoInner {
        width: 400px !important;
    } 
    .InfoSlider > li {
        display: flex;
    }
    #FooterBox .inner {
        padding-left: 40px !important;
    }
    #PageTop {
        display: none !important;
    }
    #FooterNavi li {
      padding: 0px 3%;
    }
    #SearchBox {
      display: none !important;
    }
    .cheer #MainBox {
        float: none;
        margin-left: auto;
        width: calc(100% - 200px);
    }
    .cheer #Container #MainBox {
        margin-top: 0 !important;
    }
    .cheer #CheerCntBox {
        break-after: page;
        page-break-after: page;
    }
    .cheer #InfoBox .InfoInner {
        width: 400px !important;
    } 
    .cheer .InfoSlider > li {
        display: flex;
    }
    .cheer #FooterBox .inner {
        padding-left: 40px !important;
    }
    .cheer #PageTop {
        display: none !important;
    }
    .cheer #FooterNavi li {
      padding: 0px 3%;
    }
    .cheer #SearchBox {
      display: none !important;
    }
    .cheer .TitleRight {
      height: auto !important;
      width: 100% !important;
      flex: 300px !important;
    }
    .cheer #TitleBox {
      flex-direction: row !important;
      flex-wrap: wrap !important;
    }
    .cheer .TitleLeft {
      flex: 300px !important;
      width: 100% !important;
      padding-bottom: 20px !important;
    }
    .cheer #CheerMenuBox {
      padding-top: 0 !important;
    }
    .cheer #CheerMenuBox ul {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
    }
    .cheer.shop .ShopBox .RightBox {
      width: 100% !important;
      display: flex !important;
      max-width: 100% !important;
      gap: 15px !important;
      float: none !important;
      flex-wrap: wrap !important;
    }
    .cheer.shop .ShopBox .RightBox > * {
      width: calc(100%/3 - 10px) !important;
      margin: 0 !important;
    }
    .cheer.shop .ShopBox .LeftBox {
      max-width: 100% !important;
      width: 100% !important;
    }
    .cheer.shop .ShopBox .LeftBox iframe {
      width: 100% !important;
    }
    .cheer.shop .ShopBox p {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
    .cheer.shop .ShopTobira {
      padding: 190px 0px 0px 0px !important;
      background-image: url(./images/c_bg_title.png) !important;
    }
    .cheer.club .ShopBox p {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
    .cheer.club .ShopBox table {
      margin-right: 0 !important;
      margin-left: 0 !important;
    }
    .cheer.club .ShopBox p img {
      display: table !important;
      margin-right: auto !important;
      margin-left: auto !important;
    } 
    .cheer .cheer_sub_page .cheer_graduate_single_bnr {
      padding-bottom: 40px !important;
    }
    .cheer #CntBox.bg_white {
      background-color: white !important;
      padding-left: 20px !important;
      padding-right: 20px !important;
      box-sizing: border-box !important;
    }

    .cheer #CntBox .cheer_post .cheer_post_link {
      flex-direction: row !important;
      background-color: rgba(255, 255, 255, 0.3) !important;
      background-image: none !important;
    }
    .cheer #CntBox .cheer_post:nth-child(even) .cheer_post_link {
      flex-direction: row-reverse !important;
    }
    .cheer .cheer_posts {
      padding: 0px 20px 40px !important;
    }
}
