@charset "utf-8";
@font-face {
  font-family: "Bavista";
  src: url("../fonts/Bavista_Soulare.ttf") format("truetype");
}
/*=====================================

layout.css

=====================================*/

/*-------------------------------------
 setting
-------------------------------------*/
html,
body {
  margin: 0;
  padding: 0;
}
html::-webkit-scrollbar{
	display: none;
}
html{
	font-size: 10px;
	scroll-behavior: smooth;
}
body {
	position: relative;
	color: #000;
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.7;
	background: #4C2A1D;
	-webkit-text-size-adjust: 100%;
}
.background {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    width: calc(100% + 800px) !important;
    height: calc(100% + 600px) !important;
    margin-left: -400px;
    margin-top: -300px;
}

a {
	color: #000;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
strong {
	font-weight: bold;
}
em {
	font-style: normal;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
h1,h2{
	font-family: 'Bavista';
}
h1,h2,h3,h4,h5{
	font-weight: bold;
	
}
h2{
	font-size: 4rem;
	margin-bottom: 20px;
	letter-spacing: 2px;
}

.forPC { display: block; }
img.forPC, br.forPC { display: inline-block }
.forSP { display: none; }


/*-------------------------------------
 layout
-------------------------------------*/
#wrapper {
    position: relative;
    overflow: hidden;
    height: auto;
    margin: 0 auto;
    min-height: 100dvh;
}
.inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
.inner::after,
section::after {
	clear: both;
	display: block;
	content: "";
}
















/*-------------------------------------------------------------------
 Media Queries
-------------------------------------------------------------------*/

/* SP layout
-------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {

.forPC { display: none !important; }
.forSP { display: block; }
img.forSP, br.forSP { display: inline-block }

}







/* PC layout
-------------------------------------------------------------------*/
@media screen and (min-width: 1025px) {

body {
	/*min-width: 1120px;*/
}

a img,
.hover,
.headerLogin ul li a,
.headerLink ul li a,
.gNav a,
.megaMenu .ttl a,
.pagetop a {
	transition: opacity 0.2s linear;
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	backface-visibility: hidden;
}
a:hover img,
.hover:hover,
.headerLogin ul li a:hover,
.headerLink ul li a:hover,
.gNav a:hover,
.megaMenu .ttl a:hover,
.pagetop a:hover {
	opacity: 0.8;
}




}


.home header{
	opacity: 0;
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
	backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
	background: rgba(76,42,29,0.7);
    border: none;
	height: 61px;
}



/*-------------------------------------
 header
-------------------------------------*/
header .headerLogo {
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
header .headerLogo img {
    max-width: 45px;
}
.headerListUpper{
	position: absolute;
	right: 0;
	top: 0;
	display: grid;
	grid-template-columns: 110px 200px 150px;
	z-index: 3;
}
.accessibleLink{
	padding: 15px 15px 5px 15px;
}
.accessibleLink a{
	padding-left: 17px;
    background-image: url(../images/ico_arrow_gray.svg);
    background-position: left center;
    background-repeat: no-repeat;
	display: inline-block;
}
.headerLinks a{
	display: inline-block;
	padding-left: 17px;
    background-image: url(../images/ico_arrow_gray.svg);
    background-position: left center;
    background-repeat: no-repeat;
	margin-right: 20px;
}

.languageSelect{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2px;
}
.languageSelect > div {
    padding-left: 15px;
    padding-right: 15px;
	background-color: #FFF;
	color: #dcdcdc;
}
.languageSelect > div a{
	color: #8a8a8a;
	text-align: center;
}
.languageSelect > div.current{
	color: #FFF;
	background-color: #000;
}
.languageSelect > div.current a{
	color: #fff;
	pointer-events: none;
	cursor: default;
}
.languageSelect > div a{
	display: block;
}

/* headerSp
-------------------------------------*/

.headerSpBtn.open{
	
}
.headerSpBtn a{
	height: 100%;
	width: 100%;
	display: block;
}
.headerSpBtn,
.headerSpBtn span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.headerSpBtn span {
	position: absolute;
	width: 53%;
	height: 1px;
	background-color: #FFFFFF;
}

.headerSpBtn span:nth-of-type(1) {
    top: 21px;
	transform: rotate(-27deg);
}
.headerSpBtn span:nth-of-type(2) {
    top: 26px;
    transform: rotate(-27deg);
    right: 15px;
	display: none;
}
.headerSpBtn span:nth-of-type(3) {
    top: 33px;
	transform: rotate(-27deg);
}
.headerSpBtn.open span:nth-of-type(1) {
	top: 28px;
	transform: rotate(45deg);
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.headerSpBtn.open span:nth-of-type(2) {
	opacity: 0;
}
.headerSpBtn.open span:nth-of-type(3) {
	top: 28px;
	transform: rotate(-45deg);
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.headerSpBtn .menuTitle{
	font-weight: 300;
	position: absolute;
	text-align: center;
	top: 34px;
	font-size: 1rem;
	width: 110%;
}
.headerSpBtn.open .menuTitle{
	color: #FFFFFF;
}

.headerSpBtn .menuTitle {
    font-family: 'Noto Sans JP';
    font-weight: 300;
    position: absolute;
    text-align: center;
    top: 42px;
    font-size: 1rem;
    width: 100%;
    color: #ffffff;
    left: 1px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.headerSpBtn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 30px;
    height: 27px;
    cursor: pointer;
    padding: 17px 20px 17px 15px;
    box-sizing: content-box;
    background-color: #000;
}

.gNav {
    position: absolute;
    right: 83px;
    top: 0;
    background-color: transparent;
    height: 61px;
	box-sizing: border-box;
	font-family: 'Bavista';
}
.gNav .inner{
	width: auto;
}
.gNav .gNavLinkList{
	display: flex;
	width: 100%;
	font-size: 1.6rem;
}
.gNav .gNavLinkList li a.current{
	border-bottom: 2px #FFF solid;
}
.gNav li {
width: 100%;
    text-align: center;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1.6rem;
    word-break: keep-all;
    padding-top: 15px;
    letter-spacing: 1px;
}
.gNav a{
	color: #FFF;
	display: block;
	padding: 7px;
	position: relative;
	z-index: 2;
	line-height: 1.3;
}
.gNav a:hover{
	text-decoration: none;
}
.gNav ul.gNavLinkList > li:last-child .child{
	right: 7px;
	left: auto;
}
.gNav .child {
    background-color: #FFF;
    padding: 15px;
    position: absolute;
    z-index: 2;
    left: 7px;
    margin-top: 0;
    display: none;
    box-sizing: border-box;
    margin-top: 0;
    width: 320px;
}
.gNav .child a {
    display: block;
    text-align: left;
    font-size: 1.2rem;
    background-image: url(../images/ico_arrow_white_mini.svg);
    padding: 0px 0px 0px 16px;
    background-repeat: no-repeat;
    background-position: left center;
}


.gNav a.parent > span {
	padding-top: 1px;
    padding-bottom: 3px;
	box-sizing: border-box;
	display: block;
}
.gNav a.parent.active > span {
    background-color: #000;
    display: block;
    border-radius: 3px;
}


.gNav a.parent.active > span:before {
	content: '';
    position: absolute;
    top: 33px;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 8px solid #000;
}


.gNav .child li {
    border-left: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: #ffffff solid 1px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 18px;
}
.gNav .child li:last-child{
	border-right: none;
	border-bottom: none;
	margin-bottom:0;
	padding-bottom: 10px;
}
.footerBannerWrapper{
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #EFF7FC;
}
.footerLogo{
	width: 80px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}


.footerBanner ul {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    column-gap: 2%;
    row-gap: 30px;
}

#pagetop{
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 2;
}
.footerLinkBox{
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
}
.footerContentsBox{
	padding-top: 60px;
	padding-bottom: 60px;
	    background-color: #4C2A1D;
}

.footerContentsBox a{
	color: #FFFFFF;
}
.footerLinkHome a{
	padding-left: 30px;
}
.footerLinkHome a{
	background-image: url(../images/ico_home_white.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px;
}
.footerInformationBox {
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
}
.footerContentsBox .inner{
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.footerLinkHome {
	grid-column: span 2;
	margin-bottom: 10px;
}


.footerLinkList{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
}
.footerLinkList a{
	padding-left: 17px;
    background-image: url(../images/ico_arrow_white_mini.svg);
    background-position: left center;
    background-repeat: no-repeat;
	display: inline-block;
}
.footerLinkList li{
	margin-bottom: 10px;
}

.footerBtn a {
    display: block;
    background-color: #FFFFFF;
    padding: 10px 40px;
	min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    background-repeat: no-repeat;
    background-position: left 15px center;
    color: #000;
	border-radius: 3px;
    font-weight: bold;
}
.footerBtn a:hover{
	text-decoration: none;
}
.footerBtnBox{
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 30px;
	text-align: center;
	column-gap: 4%;
}
.footerBtn a.contact {
    background-image: url(../images/ico_mail.svg);
    background-size: 20px;
}
.footerBtn a.access{
	background-image: url(../images/ico_geo_pin.svg);
	background-size: 17px;
}
.footerBtn a.pdf {
    background-image: url(../images/icon_pdf_white.svg);
    background-size: 17px;
    background-color: #000;
    border: solid 2px #FFF;
    color: #FFF;
    font-size: 1.2rem;
}
.footerSnsBox{
	margin-bottom: 30px;
}
.footerSnsBox ul{
	display: flex;
	text-align: center;
	width: 100%;
}
.footerSnsBox ul li{
	width: 100%;
}
.footerSnsBox a img{
	width: 32px;
    vertical-align: -webkit-baseline-middle;
}
.footerInformationBox {
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footerOtherLinkBox li{
	display: inline-block;
	margin-left: 30px;
}
.footerOtherLinkBox a{
	padding-left: 17px;
    background-image: url(../images/ico_arrow_white_mini.svg);
    background-position: left center;
    background-repeat: no-repeat;

}
.footerInformationInner{
	width: 100%;
}
.footerUniversityBox{
	padding-top: 30px;
	padding-bottom: 30px;
}
.footerUniversityBox ul{
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.footerUniversityBox ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.footerUniversityBox ul li{
	border-right: #000 solid 1px;
}
.footerUniversityBox ul li:first-child{
	border-left: #000 solid 1px;
}
.footerUniversityBox a{
	text-align: center;
}
.footerUniversityBox ul li img{
	max-width: 80%;
}
.footerCopyright{
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
	color: #FFF;
}


.megaMenuPC {
    display: block;
    background-color: #000;
	width: 33%;
    right: -33%;
    position: absolute;
    max-height: calc(100vh - 67px);
    padding: 30px;
	overflow: auto;
	transition: 0.5s ease-in-out;
	margin-top: -7px;
}
.megaMenuPC::-webkit-scrollbar{
	display: none;
}
.megaMenuPC.open{
	right: 0;
}
.megaMenuPC .inner{
	width: auto;
	min-width: none;
}
.megaMenuPC a:hover{
	text-decoration: none;
}
.megaMenuPC a {
	color: #FFFFFF;
	display: block;
	padding: 15px;
}
.megaMenuPC .gNavLinkList {
	display: grid;
    width: 100%;
    margin-top: 0px;
    font-size: 1.4rem;
    grid-template-columns: 1fr;
    column-gap: 4%;
}
.megaMenuPC .gNavLinkList > li > a{
	background-image: url(../images/ico_arrow_white_mini.svg);
	background-repeat: no-repeat;
	background-position: right 4% center;
}
.megaMenuPC li {
	width: 100%;
	text-align: left;
	border-left: none;
	border-bottom: solid 1px #FFF;
	padding-left: 0;
	padding-right: 0;
	border-top: solid 1px #FFF;
	margin-top: -1px;
}

.megaMenuPC li:last-child {
	border-right: none;
}
.megaMenuPC .gNavLinkList > li .child {
	padding-left: 4%;
	padding-right: 4%;
	display: block;
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	left: auto;
	margin-top: auto;
	width: auto;
	z-index: auto;
	background-color: transparent;
}
.megaMenuPC a.parent.active > span {
	background-color: transparent;
}

.megaMenuPC .gNavLinkList > li .child li{
	border-bottom: none;
	margin-bottom: 10px;
	padding-bottom: 0;
	border-top: none;
}

.megaMenuPC .gNavLinkList > li .child a {
	padding-top: 5px;
	padding-bottom: 5px;
	background-color:transparent;
	border-radius: 5px;
	background-image: url(../images/ico_arrow_white.svg);
	background-repeat: no-repeat;
	background-position: left 10px center;
	padding-left: 26px;
	font-size: 1.3rem;
	background-size: 10px;
}


/* fade */
.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.8s, transform 1s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}