@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@500&display=swap');

.font01 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
.font02 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.font03 {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
}
.font04 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
}
/* ----------------------------------------
  base
---------------------------------------- */
html {
    font-size: 62.5%;
}
body {
    color: #000000;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    background-color: #ffffff;
    font-size: 15px;
    font-size: 1.5rem;
    text-align: center;
    margin: 0 auto;
}
p {
    line-height: 1.7;
}
.wrapper, .wrapper2, .wrapper3, .wrapper4 {
    overflow: hidden;
    box-sizing: border-box;
    text-align: left;
    margin: 0 auto;
    padding: 0 15px;
}
.wrapper {
    width: 100%;
    max-width: 1200px;
}
.wrapper2 {
    width: 100%;
    max-width: 1600px;
}
.wrapper3 {
    width: 100%;
    max-width: 900px;
}
.wrapper4 {
    width: 100%;
    max-width: 1000px;
}
.wrapper p, .wrapper2 p, .wrapper3 p, .wrapper4 p {
    line-height: 1.7;
}
.deco01 a {
    text-decoration: none;
}
/* ----------------------------------------
  head
---------------------------------------- */
#head {
position: fixed;
width: 100%;
min-height: 55px;
background-color: rgba(255,255,255,0.8);
z-index: 1000;
}
#head h1 {
float: left;
width: 267px;
padding: 15px 0;
}
#head h1 img {
    display: block;
}
/* ----------------------------------------
  gnav
---------------------------------------- */
#gnav {
    float: right;
    text-align: right;
    padding: 15px 0 10px 0;
}
#gnav li {
    display: inline-block;
	position: relative;
}

#gnav li a {
    display: block;
    box-sizing: border-box;
    font-size: 1.5rem;
    line-height: 1.1;
    text-align: center;
    padding: 0 14px 10px 14px;
    transition: 0.1s ease-in-out;
}

#gnav li:last-child a::before{
content: "";
display: inline-block;
position: relative;
width: 19px;
height: 14px;
    background: url("../images/cmn-images/mail-icon.png") 0 50% no-repeat;
	background-size: 19px auto;
	margin-right: 5px;
	top: 2px;
}

#gnav li::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #767b7f;
  transition: all 0.3s ease 0s;
}
#gnav li:hover::after {
  width: 100%;
  left: 0;
}
/* ----------------------------------------
  sp btn
---------------------------------------- */
#panel-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 150000;
    width: 50px;
    height: 50px;
    text-align: center;
}
#panel-btn-txt {
    display: block;
    width: 50px;
    font-size: 1rem;
    text-align: center;
    position: absolute;
    top: 40px;
    left: 0;
}
#panel-btn-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 30px;
    height: 2px;
    margin: -1px 0 0 0;
    background: #006bb6;
    transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #006bb6;
    transition: .3s;
}
#panel-btn-icon:before {
    margin-top: -10px;
}
#panel-btn-icon:after {
    margin-top: 9px;
}
#panel-btn .close-btn {
    background: transparent;
}
#panel-btn .close-btn:before, #panel-btn .close-btn:after {
    background: #006bb6;
    margin-top: 0;
}
#panel-btn .close-btn:before {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
#panel-btn .close-btn:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
/* ----------------------------------------
  sp nav
---------------------------------------- */
#sp-nav {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: fixed;
    z-index: 1500;
    overflow-y: scroll;
    left: 0;
    top: 0;
    display: none;
    background-color: #006bb6;
    padding: 70px 0 0 0;
    text-align: center;
}
#sp-nav ul {
    margin-bottom: 20px;
    padding: 10px 10px 0 10px;
}
#sp-nav ul li {
    border-bottom: 1px solid #6396c9;
}
#sp-nav ul li:last-child {
    border-bottom: none;
}
#sp-nav ul li a {
    display: block;
    color: #fff;
    font-size: 1.7rem;
    line-height: 10vh;
    text-decoration: none;
}
/* ----------------------------------------
  page-title
---------------------------------------- */
#page-title{
width: 100%;
background: url("../images/cmn-images/page-title.jpg") 0 0 no-repeat;
padding: 120px 0 100px 0;
}
#page-title h1{
color: #006bb6;
font-size: 3.5rem;
line-height: 1;
}
#page-title h1 span{
display: block;
color: #99c6f5;
font-size: 1.6rem;
margin-bottom: 15px;
}
.breadcrumb{
background-color: #f8f8f8;
padding: 10px;
}
.breadcrumb p{
font-size: 1.2rem;
text-align: left;
margin: 0;
}
/* ----------------------------------------
  section
---------------------------------------- */
section {
    clear: both;
    overflow: hidden;
}
section p {
    margin-bottom: 10px;
}
/* ----------------------------------------
  cmn-box
---------------------------------------- */
.cmn-box01 {
    padding: 60px 0;
}
.cmn-box02 {
    padding-bottom: 60px;
}
/* ----------------------------------------
  cmn-title
---------------------------------------- */
.cmn-title01 {
font-size: 2.4rem;
text-align: center;
margin-bottom: 20px;
}
.cmn-title01 span{
display: block;
color: #006bb6;
font-size: 1.5rem;
margin-bottom: 10px;
}

.cmn-title02 {
font-size: 2.4rem;
text-align: center;
background: url("../images/cmn-images/title-icon01.png") 50% 100% no-repeat;
padding-bottom: 20px;
margin-bottom: 50px;
}
.cmn-title03 {
font-size: 2.0rem;
text-align: left;
background: url("../images/cmn-images/title-icon02.png") 15px 50% no-repeat;
border: 1px solid #959595;
padding:10px 10px 10px 45px;
margin-bottom: 30px;
}
.cmn-title04 {
font-size: 1.8rem;
text-align: left;
background: url("../images/cmn-images/title-icon02.png") 0 4px no-repeat;
padding:0 0 0 30px;
margin-bottom: 20px;
margin-left: 20px;
}
.cmn-title05 {
font-size: 2.0rem;
text-align: left;
border: 1px solid #959595;
padding:10px 10px 10px 20px;
margin-bottom: 30px;
}
/* ----------------------------------------
  cmn-btn
---------------------------------------- */
.cmn-btn01 a{
display: block;
position: relative;
font-size: 1.6rem;
text-align: center;
vertical-align: middle;
background-color: #f8f8f8;
padding: 20px 10px;
}
.cmn-btn01 a::after{
color: #006bb6;
display: inline-block;
font-family: 'FontAwesome';
content: "\f138";
margin-left: 20px;
}

.cmn-btn02 a{
display: block;
position: relative;
font-size: 1.6rem;
text-align: center;
vertical-align: middle;
border: 1px solid #959595;
background-color: #fff;
padding: 20px 10px;
}
.cmn-btn02 a::after{
color: #006bb6;
display: inline-block;
font-family: 'FontAwesome';
content: "\f138";
margin-left: 20px;
}

.cmn-btn03 a{
display: block;
position: relative;
font-size: 1.6rem;
text-align: center;
vertical-align: middle;
color: #fff;
background-color: #006bb6;
padding: 20px 10px;
}
.cmn-btn03 a::after{
display: inline-block;
content: "";
width: 25px;
height: 17px;
background: url("../images/scholarship-images/mail-icon.png") 0 0 no-repeat;
background-size: 25px auto;
margin-left: 20px;
}
/* ----------------------------------------
  youtube
---------------------------------------- */
.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
/* ----------------------------------------
  gmap
---------------------------------------- */
.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 30%;
    position: relative;
}
.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
/* ----------------------------------------
  side
---------------------------------------- */
.side{
position: fixed;
width: 92px;
top: 20%;
right: 0;
z-index: 999;
}
/* ----------------------------------------
  fnav
---------------------------------------- */
#fnav {
    position: relative;
    overflow: hidden;
    text-align: right;
	margin-bottom: 50px;
}
#fnav li {
    display: inline-block;
}
#fnav li:last-child {
    border-right: none;
}
#fnav li a {
    display: block;
    box-sizing: border-box;
    font-size: 1.5rem;
    line-height: 1.1;
    text-align: center;
    padding: 2px 6px;
    transition: 0.4s ease-in-out;
}
#fnav li a:hover {
    opacity: 0.4;
    filter: alpha(opacity=90);
}
/* ----------------------------------------
  foot
---------------------------------------- */
#foot{
color: #fff;
background-color: #006bb6;
}
#foot a{
color: #fff;
}
#foot .float-l {
width: 240px;
padding: 40px 0;
}
#foot .float-r {
width: 900px;
padding: 40px 0;
}
#foot .copy  {
font-size: 1.3rem;
    text-align: right;
}
#foot .copy i{
font-size: 1.0rem;
margin-left: 5px;
}
#foot .copy a{
    text-decoration: underline;
	margin-left: 20px;
}
#foot .copy span{
    color: #6396c9;
	margin-left: 15px;
}
/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
    body {
        min-width: 1200px;
        height: 100%;
    }
    .sp-only {
        display: none;
    }
    .tablet-only {
        display: none;
    }
    .pc-none {
        display: none;
    }
}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: none;
    }
/* ----------------------------------------
  head
---------------------------------------- */
/* ----------------------------------------
  gnav
---------------------------------------- */
/* ----------------------------------------
  gmap
---------------------------------------- */
    .gmap {
        padding-bottom: 50%;
    }
/* ----------------------------------------
  foot
---------------------------------------- */
#foot .float-l {
width: 20%;
}
#foot .float-r {
width: 76%;
}
}
/* =======================
  SP
======================== */
@media screen and (max-width: 699px) {
    body {
        font-size: 1.3rem;
    }
    .sp-only {
        display: block;
    }
    .sp-none {
        display: none;
    }
    .pctablet {
        display: none;
    }
    .tablet-only {
        display: none;
    }
    .wrapper, .wrapper2, .wrapper3, .wrapper4 {
        padding: 0 5%;
    }
/* ----------------------------------------
  head
---------------------------------------- */
    #head {
        width: 100%;
        min-height: 65px;
        position: fixed;
        background-color: #fff;
        z-index: 9999;
        top: 0;
    }
    #head h1{
	width: 240px;
        padding: 20px 0;
    }
/* ----------------------------------------
  page-title
---------------------------------------- */
#page-title{
background-size: cover;
padding: 35px 0 50px 0;
}
#page-title h1{
font-size: 2.4rem;
}
#page-title h1 span{
font-size: 1.6rem;
margin-bottom: 15px;
}
/* ----------------------------------------
  cmn-box
---------------------------------------- */
    .cmn-box01 {
        padding: 35px 0;
    }
    .cmn-box02 {
        padding-bottom: 35px;
    }
/* ----------------------------------------
  cmn-title
---------------------------------------- */
.cmn-title01 {
font-size: 2.0rem;
}
.cmn-title01 span{
font-size: 1.2rem;
}

.cmn-title02 {
font-size: 2.0rem;
padding-bottom: 15px;
margin-bottom: 40px;
}
.cmn-title03 {
font-size: 1.6rem;
background: url("../images/cmn-images/title-icon02.png") 15px 15px no-repeat;
background-size: 15px auto;
padding:10px 10px 10px 40px;
margin-bottom: 20px;
}

.cmn-title04 {
font-size: 1.6rem;
background: url("../images/cmn-images/title-icon02.png") 0 6px no-repeat;
background-size: 15px auto;
padding:0 0 0 25px;
margin-bottom: 20px;
margin-left: 0;
}
.cmn-title05 {
font-size: 1.6rem;
padding:10px 10px 10px 15px;
margin-bottom: 20px;
}
/* ----------------------------------------
  cmn-btn
---------------------------------------- */
.cmn-btn02 a{
font-size: 1.4rem;
padding: 20px 10px;
}
.cmn-btn02 a::after{
content: "\f138";
margin-left: 5px;
}

.cmn-btn03 a{
font-size: 1.4rem;
padding: 20px 10px;
}
.cmn-btn03 a::after{
width: 20px;
height: 14px;
background-size: 20px auto;
margin-left: 10px;
}
/* ----------------------------------------
  anker
---------------------------------------- */
    .page-head {
        padding-top: 65px;
    }
    .anker {
        margin-top: -70px;
        padding-top: 70px;
    }
/* ----------------------------------------
  fnav
---------------------------------------- */
#fnav {
    text-align: center;
	margin-bottom: 30px;
}
#fnav li {
    display: block;
}
#fnav li a {
font-size: 1.4rem;
    line-height: 1.1;
    text-align: center;
	border-bottom: 1px solid #6396c9;
    padding: 10px 10px;
    transition: 0.4s ease-in-out;
}
/* ----------------------------------------
  foot
---------------------------------------- */
#foot .float-l {
float: none;
width: 240px;
padding: 30px 0;
margin: 0 auto;
}
#foot .float-r {
float: none;
width: 100%;
padding: 0 0 20px 0;
}
#foot .copy  {
    text-align: center;
}
#foot .copy a{
display: block;
	margin-bottom: 10px;
	}
/* ----------------------------------------
  page-top
---------------------------------------- */
}