@charset "utf-8";

@font-face {
  font-family: "Kokoro";
  src: url("/themes/main/font/Kokoro.otf") format("opentype")
}


/* ---------------------------------------------
 base modules
------------------------------------------------ */

.body {
  min-width: 1200px; /* コンテンツ幅に書き直す */
  clear:both;
}
.wrap{ clear:both; }

.inner {
  width: 1200px; /* コンテンツ幅に書き直す */
  margin: 0 auto;
  position: relative;
}

.pc { display: block; }
.sp { display: none !important; }

/* ---------------------------------------------
 header
------------------------------------------------ */

.header{
  width:100%;
  height:67px;
  margin:0 auto;
  position:relative;
  border-bottom: 1px solid #ddd;
}

.header .logo{
  position:absolute;
  top:20px;
  left:0;
}

.header .global-navigation{
  height: 67px;
  margin: 0 auto;
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}
.header .global-navigation ul{
  display: flex;
}
/*.header .global-navigation li {
  display: inline-block;
  height: 67px;
  line-height: 67px;
}*/
.header .global-navigation li.sns {
	width: 50px;
}
.header .global-navigation li.sns a{
	padding: 0 5px;
}
.header .global-navigation li.sns img{
	width: 100%;
}
.header .global-navigation li a{
  display: flex;
  align-items: center;
  width: 100%;
  height: 67px;
  padding: 0 12px;
  border-bottom: solid 5px #fff;
  font-family: "Yu Mincho", "YuMincho";
  font-weight: bold;
  font-size: 110%;
  text-decoration: none;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .global-navigation li.stay a,
.header .global-navigation li > a:hover{
  border-color: #fbbf57;
}

.header .global-navigation li.nest {
  position: relative;
}
.header .global-navigation li.nest a { padding-right: 35px; border: none; position: relative; }
.header .global-navigation li.nest > a::after {
 content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-right: solid 2px #ffbdbd;
  border-bottom: solid 2px #ffbdbd;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -6px;
  transform: rotate(45deg);
}
.header .global-navigation li.nest:hover > a { border: none; background: #ffe7e7; }
.header .global-navigation li.nest ul {
  display: none;
  width: 175px;
  background: #ffe7e7;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 100%);
  z-index: 999;
}
.header .global-navigation li.nest:hover ul {
  display: block;
}
.header .global-navigation li.nest ul li { width: 100%; }
.header .global-navigation li.nest ul li a {
  display: block;
  width: 100%;
  border: none;
  text-align: left;
  white-space: nowrap;
}
.header .global-navigation li.nest ul li a:hover { background: #ffbdbd; }

/* ---------------------------------------------
 container
------------------------------------------------ */

.container{
  width:1200px;
  margin:40px auto;
}

/* ------ title -------------------------------- */

.page-title {
  width: 100%;
  height: 300px;
  background: #fafbf7;
}
.page-title h1{
  width: 1200px;
  height: 300px;
  line-height: 250px;
  margin: 0 auto;
  background: #fafbf7;
  text-align: center;
  font-family: "Kokoro";
  font-size: 240%;
  font-weight: bold;
  color: #111;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
.page-title.about h1 { background: url(/themes/main/images/title_about.png) no-repeat center center; background-size: cover; }
.page-title.recruit h1 { background: url(/themes/main/images/title_recruit.png) no-repeat center center; background-size: cover; }
.page-title.facility h1 { background: url(/themes/main/images/title_facility.png) no-repeat center center; background-size: cover; }
.page-title.discloser h1 { background: url(/themes/main/images/title_discloser.png) no-repeat center center; background-size: cover; }
.page-title.contact h1 { background: url(/themes/main/images/title_contact.png) no-repeat center center; background-size: cover; }
.page-title.magazine h1 { background: url(/themes/main/images/title_magazine.png) no-repeat center center; background-size: cover; }

/* ------ topic-path --------------------------- */

.topic-path {
  width: 100%;
  height: 52px;
  line-height: 52px;
  background: #f9f5ec;
  text-align:left;
  margin:0;
  color:#333;
  list-style: none;
}
.topic-path ul {
  width: 1200px;
  margin: 0 auto;
}
.topic-path ul li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.topic-path ul li a::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 50%;
  right: -18px;
  margin-top: -3px;
  transform: rotate(45deg);
}

.topic-path a,
.topic-path a:link,
.topic-path a:hover,
.topic-path a:visited,
.topic-path a:active {
  color:#666666;
  text-decoration:none;
}

/* ------ pagetop ------------------------------ */

.pagetop{
  display: none;
  width: 1200px;
  margin: 10px auto;
  text-align:right;
  font-size:78%;
}

.pagetop a,
.pagetop a:link,
.pagetop a:hover,
.pagetop a:visited,
.pagetop a:active {
  text-decoration:none;
  color:#666;
  padding:5px 10px 5px 15px;
}

/* content
------------------------------------------------ */

.content {
  width:1200px;
  margin: 50px auto;
  text-align:left;
}
.content.narrow { width:980px; margin: 0 auto; float: none; }

.content.two-col {
  width:840px;
  float:left;
  text-align:left;
}

/* localnav
------------------------------------------------ */

.local-navigation {
  display: table;
  height: 60px;
  line-height: 30px;
  margin: 0 auto;
  border-radius: 10px;
  background: #fcfcdc;
}
.local-navigation li {
  display: inline-block;
  
}
.local-navigation li a {
  display: inline-block;
  margin: 15px 0;
  padding: 0 52px 0 40px;
  border-right: solid 1px #ddd;
  text-decoration: none;
  color: #333;
  position: relative;
}
.local-navigation li:last-child a {
  border: none;
}
.local-navigation li a:hover { text-decoration: underline; }
.local-navigation li a::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  margin-top: -3px;
  border-top: solid 1px #ed9d11;
  border-right: solid 1px #ed9d11;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg);
}

/* sidebar
------------------------------------------------ */

.sidebar{
  width:300px;
  float:right;
  text-align:left;
}


/* ------ local-navigation --------------------- */

.sidebar .local-navigation{
  border:1px solid #d4d4d4;
  margin-bottom:20px;
}

.sidebar .local-navigation h2{
  margin:0;
  background:#eee;
  padding:10px 15px;
  font-weight:bold;
}

.sidebar .local-navigation ul{
  margin:10px 15px;
}

.sidebar .local-navigation ul span{
  font-size:78%;
}

.sidebar .local-navigation ul li{
  padding:5px 0;
}

.sidebar .local-navigation li a{
  background:url(../images/icon_arrow01.png) no-repeat 0 0.4em;
  padding-left:15px;
  display:block;
  font-size:87%;
}

.sidebar .local-navigation li li a{
  background:url(../images/icon_arrow02.png) no-repeat 0 0.5em;
  padding-left:10px;
}


.sidebar .local-navigation li a:link,
.sidebar .local-navigation li a:visited,
.sidebar .local-navigation li a:hover,
.sidebar .local-navigation li a:active{
  text-decoration:none;
}

/* ------ banner ------------------------------- */

.sidebar .banner{
  margin-top:0;
}

.sidebar .banner li{
  margin-bottom:10px;
}



/* ---------------------------------------------
 footer
------------------------------------------------ */


.footer{
  background:#fdfcf9;
  clear:both;
}
.footer .inner {
  width: 1400px;
}

.footer a,
.footer a:link,
.footer a:hover,
.footer a:visited,
.footer a:active {
  color:#333;
  text-decoration:none;
}

.facility-navigation::after {
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}
.facility-navigation > div {
  float: left;
  width: 25%;
  height: 660px;
  padding: 30px 20px;
  background: #ffe7e7;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.facility-navigation > .keiai-school { background: #ecf2e0; }
.facility-navigation > .keiai-school h3 { background: #cadaad; }
.facility-navigation > .keiai-support { background: #fef2de; }
.facility-navigation > .keiai-support h3 { background: #fac47f; }
.facility-navigation > .hakucho { background: #e1f4f4; }
.facility-navigation > .hakucho h3 { background: #b0dfdf; }

.facility-navigation > div h3 {
  width: 100%;
  height: 53px;
  line-height: 50px;
  background: #ffbdbd;
  font-family: "Kokoro";
  font-size: 150%;
  color: #fff;
}
.facility-navigation h3 a {
  color: #fff !important;
}
.facility-navigation h3:hover a {
  text-decoration: underline;
}
.facility-navigation > div h3 span {
  display: block;
  font-size: 75%;
}
.facility-navigation > .keiai-support h3 {
  line-height: 22px;
}

.facility-navigation ul::after {
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}
.facility-navigation li {
  width: 100%;
  height: 38px;
  line-height: 39px;
  border-bottom: solid 1px #fff;
  text-align: left;
  font-size: 85%;
}
.facility-navigation .col2 li {
  float: left;
  width: 50%;
}
.facility-navigation .col2 li:nth-child(2n) a { padding: 0 10px 0 0; }
.facility-navigation .bg-white li {
  background: #fff;
  border-bottom: solid 1px #e1f4f4;
}
.facility-navigation li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.facility-navigation li.disable a {
  pointer-events: none;
  color: #999;
}
.facility-navigation li a:hover { text-decoration: underline; }
.facility-navigation li a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  transform: rotate(45deg);
}

.other-navigation{
  background: #eee;
  padding: 20px 0;
  text-align:center;
  font-size:0;
}
.other-navigation .general { display: none; margin-bottom: 20px; }

.other-navigation li{
  display:inline-block;
  width: 125px;
  padding:0 20px 0;
  font-size: 13px;
  text-align: center;
}
.other-navigation li:first-of-type { text-align: right; }
.other-navigation li:last-of-type { text-align: left; }
.other-navigation li:first-child{ border-right: solid 1px #555; }

address{
  padding: 20px 0;
  position: relative;
}
address .logo { float: left; margin-right: 50px; }
address .phone-number { margin-top: 3px; overflow: hidden; }
address .phone-number .tel,
address .phone-number .fax {
  float: left;
}
address .phone-number .fax { margin-left: 30px; }
address .contact-btn {
  position: absolute;
  top: 20px;
  right: 0;
}
address .contact-btn a {
  display: block;
  width: 300px;
  height: 50px;
  line-height: 50px;
  border: solid 1px #f1ae51;
  text-decoration: none;
  text-align: center;
  position: relative;
}
address .contact-btn a::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -3px;
  transform: rotate(45deg);
}
address .contact-btn a:hover {
  background: #f1ae51;
  color: #fff;
}
address .contact-btn a:hover::after {
  border-color: #fff;
}

.copyright{
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align:center;
  font-size:87%;
  color:#000;
  margin:25px 0 0;
  background: #ddd;
}

.pagenav{
  list-style: none;
  overflow: hidden;
}
.pagenav li{
  float: left;
  width: 50%;
  box-sizing: border-box;
}
.pagenav li+li{
  border-left: 1px solid #fff;
}
.pagenav li a{
  padding:20px 20px 20px 40px;
  display: block;
  background: #eee;
  color: #333;
  text-decoration: none;
  position: relative;
}
.pagenav li a:before{
  content: "";
  display: block;
  position: absolute;
  top: 46%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(135deg);
}
.pagenav li a:hover{
  background: #ddd;
}