@charset "utf-8";
/*-------------------------------------------------*/
/*(C) A.C.Planet Inc. All rights reserved.*/
/*--------------------------------------------------*/

/*default
----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--main-color:#001E6A;
	--sub-color01:#CB9F51;
	--sub-color02:#e7d7a9;
	--sub-color03:#015d6a;
	--sub-color04:#1f55ac;
	--bg-color01:#daeaf0;
	--bg-color02:#F2F2F2;
	--danger-color:#BC152F;
}
html{
	font-size: 100%;
}

html:has(body.font-large){
	font-size: 125%;
}
html:has(body.font-small){
	font-size: 90%;
}
body {
	font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック" , "Hiragino Sans" ,"Hiragino Kaku Gothic ProN" , "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*font-family: "BIZ UDGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	line-height: 1.5em;
	color: #333333;
	background-color: #FFFFFF;
	width: 100%;
}
@media screen and (max-width: 991px) {
	body.menu-open{
		overflow:hidden;
	}
}
@media screen and (max-width: 768px) {
	html{
		font-size: 14px;
	}
}
/*Link Config
----------------------------------------*/
a, a img, article {
	-webkit-transition: background 0.3s linear, color 0.3s linear, opacity 0.3s linear;
	transition: background 0.3s linear, color 0.3s linear, opacity 0.3s linear;
	outline: none;
}
a{
	word-break:break-word;
}
a:link {
	color: var(--main-color);
	text-decoration: underline;
}
a:visited {
	color: #666666;
}
a:active {
	color: #003399;
}
a:hover {
	color: var(--main-color);
	text-decoration: none;
}
a:hover img {
	filter: alpha(opacity=70); /* IE7以下用 */
	-ms-filter: “alpha(opacity=70)”; /* IE8用 */
	opacity: 0.7; /* Firefox 1.5以上, Opera, Safari用 */
}
table thead th a:link, table thead th a:visited {
	color: #FFF;
}
table thead th a:hover {
	text-decoration: none;
	color: #EFEFEF;
}
a:focus{
	outline: auto;
	outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
/*ClearFix
----------------------------------------*/
/* For modern browsers */
.clear:before, .clear:after {
	content: "";
	display: table;
}
.clear:after {
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.clear {
	zoom: 1;
}
.hidden {
	display: none;
}
.pc-hidden {
	display: none;
}
.sp-hidden {
	display: block;
}
 @media screen and (max-width: 768px) {
	.pc-hidden {
		display: block;
	}
	.sp-hidden {
		display: none;
	}
}
.block {
	display: block;
}
.inline {
	display: inline;
}

#hiddenlink {
	margin-right: auto;
	display: none;	padding-left:20px;
	padding-right: 20px;
}
header img,
footer img{
	max-width:100%;
	width:100%;
}
.container{
	width: 1200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
	padding-left:20px;
	padding-right: 20px;
}

/*ヘッダ
----------------------------------------*/
body > header{
	background: var(--main-color);
}
#headercontainer{
	background:var(--main-color);
	color:#ffffff;
	padding:16px 50px 0;
	position: relative;
	z-index: 100;
}
#headercontainer a{
	color:#ffffff;
	text-decoration: none;
	display:inline-flex;
}
#headercontainer a:hover{
	text-decoration: underline;
}
#headercontainer ul{
	list-style: none;
	margin: 0;
	padding:0;
}
#headercontainer img{
	max-width: 100%;
}
#headercontainer #logo{
	position: absolute;
	width:133px;
    top: 50%;
    transform: translateY(-50%);
	transition: .3s;
}
#headercontainer #logo a:hover img{
	opacity: 1;
}
#header-side{
	display: flex;
	flex-direction: column;
    align-items: flex-end;
	font-size: 0.875rem;
	gap:15px;
}
.headerbox{
	display:flex;
	gap:30px;
    line-height: 1em;
	align-items: center;
}
.headerbox .searchbox{
	display: flex;
    z-index: 1;
}
#pcmenu-sitesearch{
	display: flex;
	height: 22px;
	padding-right: 5px;
	box-sizing: content-box;
	overflow: hidden;
	transition: .3s;
	max-width: 13px;
	background: unset;
}
#pcmenu-sitesearch:hover,
.headerbox .searchbox.is-open #pcmenu-sitesearch{
	background: #ffffff;
	max-width: 200px;
	width: 200px;
}
#pcmenu-sitesearch form{
	border: unset;
	display: none;
	margin-bottom: 0;
}
#pcmenu-sitesearch:hover form,
.headerbox .searchbox.is-open #pcmenu-sitesearch form{
	display: flex;
}
.headerbox .searchbox.is-open #pcmenu-sitesearch form {
	margin-bottom: 0;
}
.headerbox .searchbox .closebtn{
	background: var(--sub-color02);
	width:22px;
	height: 22px;
	display: none;
	position: relative;
	font-size: 0;
	cursor: pointer;
    border: unset;
    padding: unset;
}
.headerbox .searchbox .closebtn:has(+.sitesearch:hover) ,
.headerbox .searchbox.is-open .closebtn{
	display: block;
}
.headerbox .searchbox .closebtn::before,
.headerbox .searchbox .closebtn::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
    left: calc(50% - 3px);
	height: 1px;
	width:17px;
	background: var(--main-color);
}
.headerbox .searchbox .closebtn::before{
	transform: rotate(45deg) translate(-50% ,-50%);
    top: calc(50% + 6px);
}
.headerbox .searchbox .closebtn::after{
	transform: rotate(-45deg) translate(-50% ,-50%);
    top: calc(50% - 6px);
}
#pcmenu-sitesearch input[type="text"]{
    border: unset;
}
#pcmenu-sitesearch input[type="image"],
#pcmenu-sitesearch img{
	width:13px;
    object-fit: contain;
}

#pcmenu-sitesearch .pcmenu-sitesearch-openbtn{
	background: unset;
	padding: 0;
	border: 0;
	flex:none;
}
#pcmenu-sitesearch:hover img,
.headerbox .searchbox.is-open .sitesearch img{
	display: none;
}

#___gcse_0 {
	width: 100%;
	display: flex;
	align-items: center;
}
#___gcse_0 .gsc-control-searchbox-only {
	width: 100%;
}
#___gcse_0 table.gsc-search-box {
	margin: 0;
    border: none;
	min-height: 27px;
}
#___gcse_0 table,
#___gcse_0 table td {
	border: none;
}
#___gcse_0 table.gsc-search-box td.gsc-input,
#___gcse_0 .gsib_b {
	padding: 0;
    border: none;
}
#___gcse_0 table.gsc-search-box td {
	padding: 0;
	border: none;
}
#___gcse_0 .gsc-input-box,
#___gcse_0 .gsc-input-box table{
	margin: 0;
    border: none;
}
#___gcse_0 .gsc-input {
    font-size: 1rem;
	background: #fff!important;
}
#___gcse_0 .gsib_a {
	border: none;
	padding: 5px;
}
#___gcse_0 .gsc-search-button-v2 {
	border: none;
    background: #fff;
    /*background-repeat: no-repeat;
    background-size: contain;*/
    padding: 0px;
    max-height: 100%;
}
#___gcse_0 .gsc-search-button-v2 svg {
	fill : #333;
}
#___gcse_0 .gsst_a .gscb_a {
	color: var(--main-color);
}
.gstl_50.gssb_c {
	top: 25px!important;
	/*left: auto!important;
	right: 590px!important;*/
	background-size: 100%!important;
}
.gstl_50.gssb_c img {
	width: auto;
	max-width: 100%!important;
}

/*　検索結果画面　*/

#___gcse_3 table.gsc-search-box td,
.gsc-above-wrapper-area-container td{
	border: none;
}
#___gcse_3 .gsc-input-box {
	min-height: 38px;
	border-radius: 0;
}
#___gcse_3 .gsc-input {
	border: none;
    margin: 10px;
	padding: 0;
}
.gsc-above-wrapper-area-container {
	border: none;
}
#___gcse_3 .gsst_b {
	padding: 0 15px;
}
#___gcse_3  td.gsc-search-button {
	padding: 0;
    background: var(--main-color);
	margin-left: 20px;
}
#___gcse_3 .gsc-search-button-v2,
.gsc-search-button-v2:hover{
    border-radius: 0!important;
    background: transparent!important;
    border: none!important;
}
#___gcse_3 .gsc-input {
	margin: 0;
}

#fontsize{
	display:flex;
	margin: 0;
    align-items: center;
}
#fontsize dt{
	font-weight: normal;
	border-right:1px solid #ffffff;
	padding-right: 10px;
	margin-right: 10px;
}
#fontsize dd{
	margin: 0;
}
#fontsize-cntents{
	display:flex;
	gap:5px;
}
#fontsize-cntents li a{
	height: 20px;
	width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.font-large #fontsize-cntents li a#fs1,
.font-normal #fontsize-cntents li a#fs2,
.font-small #fontsize-cntents li a#fs3{
	color:var(--main-color);
	background:#ffffff;
	border-radius: 50%;
}
#headerlink{
	display: flex;
	gap:30px;
}
.headersublink-list{
	display: flex;
	gap:5px;
}
.headersublink-list li a{
	border: 1px solid #ffffff;
	display: block;
	position: relative;
	padding: 5px 14px;
	padding-left: 30px;
	line-height: 1em;
}
.headersublink-list li a::before{
	content: "";
	width:6px;
	height:6px;
	border:1px solid var(--sub-color01);
	border-left: unset;
    border-bottom: unset;
    transform: rotate(45deg) translateX(-50%);
    display: block;
	position: absolute;
	left: 14px;
	top: calc(-1px + 50%);
	transition: .3s;
}
.headersublink-list li a::after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:transparent;
	z-index:-1;
}
.headersublink-list li a:hover{
	border-color: var(--sub-color02);
}

#headercontainer .headersublink-list li a:hover{
	text-decoration: none;
	color: var(--main-color);
}
.headersublink-list li a:hover::before{
	border-color:var(--main-color);
	left: 18px;
}
.headersublink-list li a:hover::after{
	animation-name:widthAnime;
	animation-fill-mode:forwards;
	animation-duration:.3s;
	animation-timing-function:ease-in-out;
	animation-direction:normal;
	background:var(--sub-color02);
}
#headercontainer .headersublink-list li.headersublink-item-note{
	background:var(--sub-color02);
}
#headercontainer .headersublink-list li.headersublink-item-note a{
	border-color: var(--sub-color02);
	padding-left: 14px;
	color:var(--main-color);
    position: relative;
    z-index: 1;
}
.headersublink-list li.headersublink-item-note a::before{
	display: none;
}
#headercontainer .headersublink-list li.headersublink-item-note a:hover{
	border-color: #ffffff;
}
.headersublink-list li.headersublink-item-note a::after{
	background:var(--sub-color02);
}
.headersublink-list li.headersublink-item-note a:hover::after{
	background:#ffffff;
}
/*PC表示*/
@media screen and (min-width: 992px){
	#headercontainer.is-fixed{
		padding-top: 0;
		position: fixed;
		width:100%;
		z-index: 100;
		top: 0;
	}
	#headercontainer:not(.Scroll){
		padding-top:16px;
	}
	#headercontainer.Scroll{
		top:0;
	}
	#headercontainer.Scroll #logo,
	#headercontainer.Scroll #header-side{
		display: none;
	}
}
@media screen and (min-width: 768px){
	
	body.is-pc #headercontainer.is-fixed{
		padding-top: 0;
		position: fixed;
		width:100%;
		z-index: 100;
		top: 0;
	}
	body.is-pc #headercontainer:not(.Scroll){
		padding-top:16px;
	}
	body.is-pc #headercontainer.Scroll{
		top:0;
	}
	body.is-pc #headercontainer.Scroll #logo,
	body.is-pc #headercontainer.Scroll #header-side{
		display: none;
	}
}
@media screen and (max-width: 1570px) and (min-width: 1025px){
	#headercontainer #logo,
	body.is-pc #headercontainer #logo{
		transform: unset;
		top: 10px;
        width: 90px;
	}
}
@media screen and (max-width: 1300px) and (min-width: 1199px){
	#headercontainer .menu-research a{
		margin-left: 30px!important;
	}
}
@media screen and (max-width: 1200px) and (min-width: 1025px){
	#headercontainer,
	body.is-pc #headercontainer{
		padding:calc(100vw / 1200 * 16) calc(100vw / 1200 * 10) 0;
	}
	#headercontainer li.menu-research{
		margin-left: -5px!important;
	}
	#headercontainer .menu-research a{
		margin-left: 20px!important;
	}
}
@media screen and (max-width: 1024px) and (min-width: 769px){
	#headercontainer li.menu-research{
		margin-left: 0!important;
	}
	#headercontainer,
	body.is-pc #headercontainer{
		padding:calc(100vw / 1024 * 16) calc(100vw / 1024 * 10) 0;
	}/*研究・教員NAV追加　調整*/
	#headercontainer #logo,
	body.is-pc #headercontainer #logo{
		transform: unset;
		top: calc(100vw/ 1024 * 10);
        width: calc(100vw/ 1024 * 90);
	}
	#header-side,
	body.is-pc #header-side{
		gap:calc(100vw / 1024 * 15);
		font-size: calc(100vw / 1024 * 14)
	}
	.headerbox,
	body.is-pc .headerbox{
		gap:calc(100vw / 1024 * 30);
	}
	#pcmenu-sitesearch,
	body.is-pc #pcmenu-sitesearch{
		height: calc(100vw / 1024 * 22);
		padding-right: calc(100vw / 1024 * 5);
		max-width: calc(100vw / 1024 * 13);
	}
	#pcmenu-sitesearch:hover,
	.headerbox .searchbox.is-open #pcmenu-sitesearch,
	body.is-pc #pcmenu-sitesearch:hover,
	body.is-pc .headerbox .searchbox.is-open #pcmenu-sitesearch{
		max-width: calc(100vw / 1024 * 200);
	}
	.headerbox .searchbox .closebtn,
	body.is-pc .headerbox .searchbox .closebtn{
		width:calc(100vw / 1024 * 22);
		height: calc(100vw / 1024 * 22);
	}
	.headerbox .searchbox .closebtn::before,
	.headerbox .searchbox .closebtn::after,
	body.is-pc .headerbox .searchbox .closebtn::before,
	body.is-pc .headerbox .searchbox .closebtn::after{
		left: calc(50% - (100vw / 1024 * 3));
		width:calc(100vw / 1024 * 17);
	}
	.headerbox .searchbox .closebtn::before,
	body.is-pc .headerbox .searchbox .closebtn::before{
		top: calc(50% + (100vw / 1024 * 6));
	}
	.headerbox .searchbox .closebtn::after,
	body.is-pc .headerbox .searchbox .closebtn::after{
		top: calc(50% - (100vw / 1024 * 6));
	}
	#pcmenu-sitesearch input[type="image"],
	#pcmenu-sitesearch img,
	body.is-pc #pcmenu-sitesearch input[type="image"],
	body.is-pc #pcmenu-sitesearch img{
		width:calc(100vw / 1024 * 13);
	}
	#fontsize dt,
	body.is-pc #fontsize dt{
		padding-right: calc(100vw / 1024 * 10);
		margin-right: calc(100vw / 1024 * 10);
	}
	#fontsize-cntents,
	body.is-pc #fontsize-cntents{
		gap:calc(100vw / 1024 * 5);
	}
	#fontsize-cntents li a,
	body.is-pc #fontsize-cntents li a{
		height: calc(100vw / 1024 * 20);
		width: calc(100vw / 1024 * 20);
	}
	#headerlink,
	body.is-pc #headerlink{
		gap:calc(100vw / 1024 * 30);
	}
	.headersublink-list,
	body.is-pc .headersublink-list{
		gap:calc(100vw / 1024 * 5);
	}
	.headersublink-list li a,
	body.is-pc .headersublink-list li a{
		padding: calc(100vw / 1024 * 5) calc(100vw / 1024 * 14);
		padding-left: calc(100vw / 1024 * 30);
	}
	.headersublink-list li a::before,
	body.is-pc .headersublink-list li a::before{
		width:calc(100vw / 1024 * 6);
		height:calc(100vw / 1024 * 6);
		left: calc(100vw / 1024 * 14);
	}
	.headersublink-list li a:hover::before,
	body.is-pc .headersublink-list li a:hover::before{
		left: calc(100vw / 1024 * 18);
	}
	#headercontainer .headersublink-list li.headersublink-item-note a,
	body.is-pc #headercontainer .headersublink-list li.headersublink-item-note a{
		padding-left: calc(100vw / 1024 * 14);
	}
	#headercontainer .menu-research a{
		gap: 8px!important;
	}
	.menu-research a{
		margin-left: 13px!important;
	}
}
@media screen and (max-width: 991px) and (min-width: 769px){

	body:not(.is-pc) #headercontainer{
		width:170px;
		height:150px;
		padding: 0;
		display: flex;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
	}
	body:not(.is-pc) #headercontainer #logo{
		padding:10px;
		width:auto;
        max-width: 133px;
		top: 50%;
		transform: translateY(-50%);
	}
	body:not(.is-pc) #header-side{
		display: none; 
	}
	body:not(.is-pc) #gnav{
		display: none; 
	}
	body:not(.is-pc) header{
		min-height: unset !important;
	}
}
@media screen and (max-width: 768px) {
	/*768px以下のis-pc用にmax-width:991pxを再設定*/
	#headercontainer{
		width:170px;
		height:150px;
		padding: 0;
		display: flex;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 100;
	}
	#headercontainer #logo{
		padding:10px;
		width:auto;
        max-width: 133px;
	}
	#header-side{
		display: none; 
	}
	#gnav{
		display: none; 
	}
	header{
		min-height: unset !important;
	}
	/*再設定:終了*/
}
@media screen and (max-width: 576px) {
	#headercontainer{
		width:110px;
		height:90px;
	}
	#headercontainer #logo {
        padding: 15px;
        width: auto;
        max-width: 133px;
    }
}

/*.gnav-list*/
#headercontainer .gnav-list{
	display: flex;
	max-width: 1300px;
	justify-content: space-evenly;
	margin: 0 auto;
}
.gnav-list > li{
	text-align: center;
	margin-top: 40px;
}

.gnav-list > li > a{
	font-size: 1.1rem;
	/*margin:40px 25px 30px;*/
	display: block;
	position: relative;
	margin-bottom: 30px;
}
#headercontainer .gnav-list li > a:hover{
	color:var(--sub-color02);
	text-decoration: none;
}
#headercontainer .gnav-list > li > a::after{
	content: "";
    width: 2px;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 11px);
    display: block;
    position: absolute;
    background: var(--sub-color02);
    z-index: 101;
	transition: .3s;
}
/*#headercontainer .gnav-list > li:hover > a::after{*/
#headercontainer .gnav-list > li.is-hover > a::after{
    height: 40px;
}
#headercontainer .gnav-list > li.is-current > a{
	color:var(--bs-white);
}
#headercontainer .gnav-list > li.is-current > a:hover{
	color:var(--sub-color02);
}
.gnav-list > li.is-current > a::before{
	content: "";
	display: block;
	position: absolute;
	width:10px;
	height: 10px;
	border-radius: 50%;
	background: var(--sub-color02);
	top:-20px;
	left: 50%;
	transform: translateX(-50%);
}
.megamenu{
	position: absolute;
    width: 100%;
    z-index: 100;
    background: var(--main-color);
    left: 0;
	text-align: left;
	padding:70px 50px;
}
.megamenu::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	height: 1px;
    width: calc(100vw - 100px);
    left: 50%;
    /* z-index: 101; */
    background: #ffffff;
    transform: translateX(-50%);
}
.megamenu-inner a:hover{
	text-decoration:none !important;
}
.megamenu .container{
	display: flex;
}
.megamenu h2,
.megamenu .megamenu-title{
	font-size: 1.5625rem;
	display: inline-flex;
	flex-direction: column;
	gap:5px;
	position: relative;
    align-items: flex-start;
	line-height:1.2;
}
.megamenu h2 .title,
.megamenu .megamenu-title .title{
	position: relative;
	padding-bottom: 8px;
}
.megamenu h2 .title::after,
.megamenu .megamenu-title .title::after{
	content: "";
	height: 2px;
	width:100%;
	position: absolute;
	bottom:0;
	background: var(--sub-color02);
	display: block;
}
.megamenu h2:hover,
.megamenu .megamenu-title:hover{
	color:var(--sub-color02);
}
.megamenu h2:hover  .title::after,
.megamenu .megamenu-title:hover  .title::after{
	animation-name: widthAnime;
	animation-fill-mode:forwards;
	animation-duration:.3s;
	animation-timing-function:ease;
	animation-direction:normal;
}
@keyframes widthAnime{
  0% {
    width:0;
  }

  100% {
    width: 100%;
  }
}
.megamenu h2 .sub-title,
.megamenu .megamenu-title .sub-title{
	color:var(--sub-color02);
	font-size: 0.875rem;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
}
.megamenu h2 .title:first-letter,
.megamenu .megamenu-title .title:first-letter{
	color:var(--sub-color02);
}
.megamenu-inner{
	width: 320px;
	padding-right: 1em;
}
.megamenu-link{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
}
.megamenu-link li{
	width: calc(100% / 3);
	padding-right: 1em;
}
.megamenu-link li a{
	position: relative;
	display: inline-block;
	padding-left: 35px;
}
.megamenu-link li a::before{
	content: "";
	position: absolute;
	width:23px;
	height: 23px;
	border-radius: 50%;
	background: var(--sub-color02);
	top: 1px;
	left: 0;
	transition: .3s;
}

.megamenu-link li a::after{
	content: "";
	left:8px;
	background: url('../../imgs/base/ic_arrow_blue.png') no-repeat center;
	width:7px;
	height: 7px;
	background-size: cover;
	display: inline-block;
    position: absolute;
    top: 9px;
	transition: .3s;
}
.megamenu-link li a:hover::before{
	left: 5px;
}
.megamenu-link li a:hover::after{
	left: 13px;
}
/*.gnav-list > li > a + .megamenu,
.UpMove .gnav-list > li:hover > a + .megamenu{*/
.gnav-list > li > a + .megamenu,
.UpMove .gnav-list > li.is-hover > a + .megamenu{
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	 /*アニメーション設定*/
	transition: all .3s;
	overflow: hidden;
	transition-delay: .1s;
}
/*.gnav-list > li:hover > a + .megamenu*/
.gnav-list > li.is-hover > a + .megamenu{
	visibility: visible;
	opacity: 1;
	max-height: unset;
}
/*2026/7月　研究・教員NAV追加*/
.menu-research:before{
    content:"|";
	position: absolute;
}
.menu-research a{
    margin-left: 20px;
}
.menu-research img{
	width: 30px;
	margin-left: 10px;
}
.research-search-icon {
width: 20px;
height: 20px;
/*color: #E7D7A9;  通常時の色（元のベージュ） */
transition: color 0.3s ease; /* なめらかに変化 */
fill: currentColor;
/*.research-search-icon:hover {
color: #c0392b;  ホバー時の色（好みで変更） */
}
#headercontainer li.menu-research{
	margin-left: -10px;
}
#headercontainer .menu-research a{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color:var(--sub-color02);
	transition:  color 0.3s ease;
	margin-left: 35px;
}
#headercontainer .menu-research a:hover{
	text-decoration: underline!important;
}
#headercontainer .menu-research a:hover svg.research-search-icon * {
  fill: currentColor;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
	.menu-research img{
	width: 25px;
	margin-left: 0;
}
	#headercontainer .gnav-list{
		max-width: calc(100vw / 1024 * 1300);
	}
	.gnav-list > li{
		margin-top: calc(100vw / 1024 * 40);
	}

	.gnav-list > li > a{
		margin-bottom: calc(100vw / 1024 * 30);
		font-size: calc(100vw/ 1024 * 17.6);
	}
	#headercontainer .gnav-list > li > a::after{
		width: calc(100vw / 1024 * 2);
		top: calc(100% + (100vw / 1024 * 11));
	}
	/*#headercontainer .gnav-list > li:hover > a::after*/
	#headercontainer .gnav-list > li.is-hover > a::after{
		height: calc(100vw / 1024 * 40);
	}
	.gnav-list > li.is-current > a::before{
		width:calc(100vw / 1024 * 10);
		height: calc(100vw / 1024 * 10);
		top:-calc(100vw / 1024 * 20);
	}
	.megamenu{
		padding:calc(100vw / 1024 * 70) calc(100vw / 1024 * 50);
	}
	.megamenu::before{
		width: calc(100vw - (100vw / 1024 * 100));
	}
	.megamenu h2,
	.megamenu .megamenu-title{
		gap:calc(100vw / 1024 * 5);
		font-size: calc(100vw /1024 * 25);
	}
	.megamenu h2 .title,
	.megamenu .megamenu-title .title{
		padding-bottom: calc(100vw / 1024 * 8);
	}
	.megamenu-inner{
		/*width: calc(100vw / 1024 * 320);*/
		width: calc(100% / 4);
	}
	.megamenu-link{
		gap: calc(100vw / 1024 * 20) 0;
		font-size: calc(100vw/1024 * 16);
	}
	.megamenu-link li a{
		padding-left: calc(100vw / 1024 * 35);
	}
	.megamenu-link li a::before{
		width:calc(100vw / 1024 * 23);
		height: calc(100vw / 1024 * 23);
		top: calc(100vw / 1024 * 1);
	}

	.megamenu-link li a::after{
		left:calc(100vw / 1024 * 8);
		width:calc(100vw / 1024 * 7);
		height: calc(100vw / 1024 * 7);
		top: calc(100vw / 1024 * 9);
	}
	.megamenu-link li a:hover::before{
		left: calc(100vw / 1024 * 5);
	}
	.megamenu-link li a:hover::after{
		left: calc(100vw / 1024 * 13);
	}	
}

/*SPヘッダー*/
@media screen and (max-width: 991px){
	body:not(.is-pc) header{
		padding-top: 0!important;
	}
	.sp-header{
		background:var(--main-color);
		color:#ffffff;
		font-size: 1rem;
		position: fixed;
		bottom: 0;
		padding: calc(100vw / 991 * 15) calc(100vw / 991 * 10);
		width:100%;
		left: 0;
		display: flex;
		align-items: center;
        justify-content: space-between;
        gap: calc(100vw / 991* 30);
	}
	
	body.is-pc .sp-header{
		display: none !important;
	}
	.sp-header-box{
		display: flex;
		align-items: center;
		gap:calc(100vw / 991 * 30);
	}
	.sp-header-menubtn{
		display: flex;
		align-items: center;
		gap:calc(100vw / 991 * 8);
		cursor: pointer;
	}
	.sp-header-menubtn-icon{
		width:calc(100vw / 991 * 19);
		height:calc(100vw / 991 * 10);
		position: relative;
		display: block;
	}
	.sp-header-menubtn-icon span{
		width:100%;
		height: 1px;
		background: #ffffff;
		display: block;
		position: absolute;
		top: 0;
	}
	.sp-header-menubtn-icon span:nth-child(2){
		top: 50%;
		transform: translateY(-50%);
	}
	.sp-header-menubtn-icon span:last-child{
		top: unset;
		bottom:0;
	}
	.sp-header-langbtn{
		display: flex;
		align-items: center;
		gap:calc(100vw / 991 * 8);
	}
	.sp-header-langbtn-icon{
		width:calc(100vw / 991 * 17);
	}
	#spheader-sitesearch{
		/*width: 160px;*/
		height: 25px;
        background: #ffffff;
        display: flex;
        align-items: center;
		padding-left: calc(100vw / 991 * 5);
		padding-right: calc(100vw / 991 * 5);
        padding-top: 2px;
        padding-bottom: 2px;
	}
	#spheader-sitesearch input[type="text"]{
		background: unset;
		border: none;
		height: 100%;
		padding: 0;
        /*flex: 1;*/
        width:90%;
	}
	#spheader-sitesearch input:focus{
		border:none;
		outline:none;
		background: none;
	}
	
	#spheader-sitesearch input[type="image"]{
		width: calc(100vw / 991 * 13);
		height: calc(100vw / 991 * 13);
		object-fit: cover;
	}
	
}
@media screen and (max-width: 991px) and (min-width: 769px){
	body:not(.is-pc) #___gcse_1 {
		padding: 3px 8px;
    	background: #fff;
    	display: flex;
    	align-items: center;
		position: absolute;
    	top: 50%;
    	transform: translateY(-50%);
    	width: 100%;
	}
	body:not(.is-pc) #___gcse_1 .gsc-control-searchbox-only {
		width: 100%;
	}
	body:not(.is-pc) #___gcse_1 .gsc-search-box {
		margin-bottom: 0;
	}
	body:not(.is-pc) #___gcse_1 .gsc-search-box {
		margin: 0;
	}
	body:not(.is-pc) #___gcse_1 table,
	body:not(.is-pc) #___gcse_1 table td {
		border: none;
	}
	body:not(.is-pc) #___gcse_1 table.gsc-search-box td {
		padding: 0;
	}
	body:not(.is-pc) #___gcse_1 .gsc-input-box {
		border: none;
	}
	body:not(.is-pc) #___gcse_1 .gsc-input {
		margin: 0;
		padding: 0;
		font-size: 0.75rem;
		background: #fff!important;
	}
	body:not(.is-pc) #___gcse_1 .gsc-search-button{
		padding: 0 8px;
    	background: #fff;
	}
	body:not(.is-pc) #___gcse_1 .gsc-search-button-v2 {
		border: none;
    	background: #fff;
    	padding: 0;
    	border-radius: 0;
    	margin: 0;
	}
	body:not(.is-pc) #___gcse_1 .gsc-search-button-v2 svg {
		fill: var(--main-color);
	}
	body:not(.is-pc) #___gcse_1 .gsst_a .gscb_a {
		color:  var(--main-color);
	}
	
	body:not(.is-pc) #___gcse_2 {
		background: var(--bg-color02)!important;
		height: 40px;
		margin: 15px 0;
		padding: 5px 10px;
		display: flex;
		align-items: center;
	}
	body:not(.is-pc) #___gcse_2 .gsc-control-searchbox-only {
		width: 100%;
	}
	body:not(.is-pc) #___gcse_2 .gsc-search-box {
		margin: 0;
	}
	body:not(.is-pc) #___gcse_2 .gsc-input-box {
		border: none;
		background: var(--bg-color02)!important;
	}
	body:not(.is-pc) #___gcse_2 .gsc-input {
		margin: 0;
		font-size: 0.875rem;
		background: var(--bg-color02)!important;
	}
	body:not(.is-pc) #___gcse_2 table,
	body:not(.is-pc) #___gcse_2 table td {
		border: none;
	}
	body:not(.is-pc) #___gcse_2 table.gsc-search-box td {
		padding: 0;
	}
	body:not(.is-pc) #___gcse_2 .gsc-search-button-v2 {
		margin: 0;
    	border: none;
    	background: url(/assets/imgs/base/bt_search_gy.png);
    	border-radius: 0;
    	padding: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
		background-position: center;
    	width: 15px;
	}
	body:not(.is-pc) #___gcse_2 .gsc-search-button-v2 svg {
		opacity: 0;
	}
	body:not(.is-pc) #___gcse_2 .gsst_a .gscb_a {
		color: var(--main-color);
	}
	
	body:not(.is-pc) .gstl_51.gssb_c {
		position: fixed!important;
		top: auto!important;
		bottom: 50px!important;
		left: auto!important;
		right: 13px!important;
	}
	body:not(.is-pc) .gstl_51.gssb_c img {
		width: auto;
		max-width: 100%!important;
	}
	body:not(.is-pc) .gstl_52.gssb_c img {
		width: auto;
		max-width: 100%!important;
	}
}
@media screen and (max-width: 768px) {
	header{
		padding-top: 0!important;
	}
	body.is-pc .sp-header{
		display: flex !important;
	}
	.sp-header{
		padding: calc(100vw / 768 * 15) calc(100vw / 768 * 10);
		gap: calc(100vw / 768* 16);
	}
	.sp-header-box{
		gap:calc(100vw / 768 * 16);
	}
	.sp-header-menubtn{
		gap:calc(100vw / 768 * 8);
	}
	.sp-header-menubtn-icon{
		width:calc(100vw / 768 * 19);
		height:calc(100vw / 768 * 10);
	}
	.sp-header-langbtn{
		gap:calc(100vw / 768 * 8);
	}
	.sp-header-langbtn-icon{
		width:calc(100vw / 768 * 17);
	}
	#spheader-sitesearch{
		width: calc(100vw / 768 * 160);
	}
	#spheader-sitesearch input[type="image"]{
		width: calc(100vw / 768 * 13);
		height: calc(100vw / 768 * 13);
	}
	.sp-header-searchbox {
		width: 200px;
		height: 27px;
        overflow: hidden;
		position: relative;
	}
	#___gcse_1 {
		padding: 3px 8px;
    	background: #fff;
    	display: flex;
    	align-items: center;
		position: absolute;
    	top: 50%;
    	transform: translateY(-50%);
    	width: 100%;
	}
	#___gcse_1 .gsc-control-searchbox-only {
		width: 100%;
	}
	#___gcse_1 .gsc-search-box {
		margin-bottom: 0;
	}
	#___gcse_1 .gsc-search-box {
		margin: 0;
	}
	#___gcse_1 table,
	#___gcse_1 table td {
		border: none;
	}
	#___gcse_1 table.gsc-search-box td {
		padding: 0;
		line-height: normal; 
	}
	#___gcse_1 .gsc-input-box {
		border: none;
	}
	#___gcse_1 .gsc-input {
		margin: 0;
		padding: 0;
		font-size:1.15rem;
		background: #fff!important;
		height:50px !important;
	}
	#___gcse_1 .gsc-search-button{
		padding: 0 8px;
    	background: #fff;
	}
	#___gcse_1 .gsc-search-button-v2 {
		border: none;
    	background: #fff;
    	padding: 0;
    	border-radius: 0;
    	margin: 0;
	}
	#___gcse_1 .gsc-search-button-v2 svg {
		fill: var(--main-color);
	}
	#___gcse_1 .gsst_a .gscb_a {
		color:  var(--main-color);
	}
	
	/*#spmenu-sitesearch {
		background: var(--bg-color02)!important;
	}*/
	#___gcse_2 {
		background: var(--bg-color02)!important;
		height: 40px;
		margin: 15px 0;
		padding: 5px 10px;
		display: flex;
		align-items: center;
	}
	#___gcse_2 .gsc-control-searchbox-only {
		width: 100%;
	}
	#___gcse_2 .gsc-search-box {
		margin: 0;
	}
	#___gcse_2 .gsc-input-box {
		border: none;
		background: var(--bg-color02)!important;
	}
	#___gcse_2 .gsc-input {
		margin: 0;
		font-size: 0.875rem;
		background: var(--bg-color02)!important;
	}
	#___gcse_2 table,
	#___gcse_2 table td {
		border: none;
	}
	#___gcse_2 table.gsc-search-box td {
		padding: 0;
	}
	#___gcse_2 .gsc-search-button-v2 {
		margin: 0;
    	border: none;
    	background: url(/assets/imgs/base/bt_search_gy.png);
    	border-radius: 0;
    	padding: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
		background-position: center;
    	width: 15px;
	}
	#___gcse_2 .gsc-search-button-v2 svg {
		opacity: 0;
	}
	#___gcse_2 .gsst_a .gscb_a {
		color: var(--main-color);
	}
	
	.gstl_51.gssb_c {
		position: fixed!important;
		top: auto!important;
		bottom: 50px!important;
		left: auto!important;
		right: 13px!important;
	}
	.gstl_51.gssb_c img {
		width: auto;
		max-width: 100%!important;
	}
	.gstl_52.gssb_c img {
		width: auto;
		max-width: 100%!important;
	}
}
@media screen and (max-width: 575px) {
	.sp-header{
		padding: calc(100vw / 375 * 15) calc(100vw / 375 * 10);
		gap: calc(100vw / 375* 16);
	}
	.sp-header-box{
		gap:calc(100vw / 375 * 16);
	}
	.sp-header-menubtn{
		gap:calc(100vw / 375 * 8);
	}
	.sp-header-menubtn-icon{
		width:calc(100vw / 375 * 19);
		height:calc(100vw / 375 * 10);
	}
	.sp-header-langbtn{
		gap:calc(100vw / 375 * 8);
	}
	.sp-header-langbtn-icon{
		width:calc(100vw / 375 * 17);
	}
	#spheader-sitesearch{
		width: calc(100vw / 375 * 165);
	}
	#spheader-sitesearch input[type="image"]{
		width: calc(100vw / 375 * 13);
		height: calc(100vw / 375 * 13);
		right: 0;
        position: relative;
	}
	.sp-header-searchbox {
		width: 150px;
	}
}
/*　スマホ版メニュー　*/
#spmenu{
	display: none;
}
@media screen and (max-width: 1199px) {
	#spmenu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background: rgba(255, 255, 255, 0.8);
		overflow-y: scroll;
		z-index: 999999;
		transition: all .3s ease;
		display: block;
	}
	#spmenu.close {
		opacity: 0;
		pointer-events: none;
	}
	#spmenu-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: var(--main-color);
		padding: 15px 20px;
	}
	#spmenu-logo {
		width: 70px;
	}
	#spmenu .spmenu-btn-close {
		display: block;
		/*font-size: 0.63rem;*/
        font-size: 0.875rem;
		position: relative;
		padding-left: 30px;
		cursor: pointer;
	}
	#spmenu .spmenu-btn-close span {
		width: 24px;
		height: 1px;
		position: absolute;
		top: 10px;
		left: 0;
		background: #fff;
	}
	#spmenu .spmenu-btn-close span:first-child {
		transform: rotate(25deg);
	}
	#spmenu .spmenu-btn-close span:last-child {
		transform: rotate(-25deg);
	}
	#spmenu-gnav {
		background: var(--main-color);
		padding: 10px 0px;
		margin-top: -1px;
	}
	.spmenu-gnav-list .spmenu-parent {
		display: inline-block;
		font-size: 1.125rem;
		font-weight: bold;
		padding: 10px 50px 10px 20px;
		position: relative;
		cursor: pointer;
        margin-bottom: .5rem;
	}
	.spmenu-gnav-list .spmenu-parent::before, .spmenu-gnav-list .spmenu-parent::after {
		content: '';
		display: block;
		width: 18px;
		height: 2px;
		background: var(--sub-color01);
		position: absolute;
		top: 50%;
		right: 15px;
		transition: all .3s ease;
	}
	.spmenu-gnav-list .spmenu-parent::after {
		transform: rotate(90deg);
	}
	.spmenu-gnav-list .spmenu-parent.open::before {
		display: none;
	}
	.spmenu-gnav-list .spmenu-parent.open::after {
		transform: rotate(180deg);
	}
	.spmenu-child {
		display: none;
		padding: 0 20px 25px;
	}
	.spmenu-child-link {
		display: flex;
		flex-wrap: wrap;
	}
	.spmenu-child-link li{
		margin-top:10px;
	}
	.spmenu-child-link li:has( + li){
        padding-right: 30px;
	}
	
	.spmenu-child-link li a {
		font-size: 0.875rem;
		position: relative;
		display: inline-block;
		padding: 0px 0px 0px 40px;
		margin-top:10px;
		line-height: 1.2em;
	}
	.spmenu-child-link li a::before {
		content: "";
		position: absolute;
		width: 23px;
		height: 23px;
		border-radius: 50%;
		background: var(--sub-color02);
		top: 50%;
		left: 0;
		transform: translateY(-50%)
	}
	.spmenu-child-link li a::after {
		content: "";
		left: 8px;
		background: url('../../imgs/base/ic_arrow_blue.png') no-repeat center;
		width: 7px;
		height: 7px;
		background-size: cover;
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	#spmenu-side {
		padding: 15px 20px;
		background:#ffffff;
	}
	#spmenu-side a {
		color: #333;
		font-size: 0.875rem;
        display: block;
        height: 100%;
	}
	.spmenu-sublink-list {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 5px 1%;
	}
	.spmenu-sublink-list li {
		border: 1px solid #333;
		width: 100%;
	}
	.spmenu-sublink-list li:not(.spmenu-sublink-item-note) {
		padding: 0 10px;
	}
	.spmenu-sublink-list a {
		display: block;
		text-align: center;
	}
	.spmenu-sublink-list a span {
		display: inline-flex;
		/*padding: 2px 5px 2px 11px;*/
		padding: 5px 5px 5px 11px;
		position: relative;
        align-items: center;
		height:100%;
        line-height: 1.2em;
	}
	.spmenu-sublink-list a span::before {
		content: "";
		width: 5px;
		height: 5px;
		border: 1px solid var(--sub-color03);
		border-left: unset;
		border-bottom: unset;
		transform: rotate(45deg) translateX(-50%);
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
	}
	#spmenu-side .spmenu-sublink-item-note {
		border: 1px solid var(--sub-color03);
	}
	#spmenu-side .spmenu-sublink-item-note a {
		color: #fff;
		background: var(--sub-color03);
		padding: 2px 5px;
	}
	.spmenu-sitesearch {
		display: flex;
		margin: 15px 0;
		padding: 3px 15px;
		width: 100%;
		background: #E6E6E6;
	}
	.spmenu-sitesearch dt {
		display: none;
	}
	.spmenu-sitesearch dt:first-child + dd {
		width: 100%;
		margin: 0;
	}
	.spmenu-sitesearch .q {
		border: none;
		font-size: 0.875rem;
		width: 100%;
		background: transparent;
		padding: 0;
		color: #333;
	}
	.spmenu-sitesearch dd:last-child {
		/*margin: 0 0 0 10px;*/
		margin:5px 0 -3px 10px;
	}
	.spmenu-sitesearch input[type="text"]:focus {
		outline: none;
	}
	.spmenu-sitesearch input[type="image"] {
		width: 15px;
	}
	#spmenu-link {
		display: flex;
		justify-content: center;
		flex-wrap:wrap;
	}
	#spmenu-link li a {
		display: block;
		font-size: 0.875rem;
		padding: 3px 10px;
	}
}

@media screen and (max-width: 767px) {
	.spmenu-child-link {
	    flex-wrap: nowrap;
	    flex-direction: column;
	}
	.spmenu-sublink-list {
	    flex-wrap: wrap;
	}
	.spmenu-sublink-list li:nth-child(1), .spmenu-sublink-list li:nth-child(2), .spmenu-sublink-list li:nth-child(3) {
	    width: 32.3%;
	    ;
	}
	.spmenu-sublink-list li:nth-child(4), .spmenu-sublink-list li:nth-child(5) {
	    width: 49.2%;
	}
	.spmenu-sublink-item-note {
	    width: 100%;
	}
}


@media screen and (min-width: 991px){
	/*　上に上がる動き　*/

	#headercontainer.UpMove{
	  animation: UpAnime 0.5s forwards;
		z-index:0 !important;
	}

	/*　下に下がる動き　*/

	#headercontainer.DownMove{
	  animation: DownAnime 0.5s forwards;
	}
}
@media screen and (max-width: 990px) and (min-width: 768px){
	
/*　上に上がる動き　*/

	body.is-pc #headercontainer.UpMove{
	  animation: UpAnime 0.5s forwards;
		z-index:0 !important;
	}

	/*　下に下がる動き　*/

	body.is-pc #headercontainer.DownMove{
	  animation: DownAnime 0.5s forwards;
	}

}
@keyframes UpAnime{
  from {
	opacity: 1;
  	transform: translateY(0);
  }
  to {
	opacity: 0;
  	transform: translateY(-100px);
  }
}
@keyframes DownAnime{
  from {
	opacity: 0;
  	transform: translateY(-100px);
  }
  to {
	opacity: 1;
  	transform: translateY(0);
  }
}
/*2026/7月　研究・教員NAV追加*/
.spmenu-research::before{
	content:"";
	width:80%;
	height:1px;
	display:block;
	background:#fff;
	margin:0 0 20px;
}
.spmenu-research{
        display: inline-block;
        font-size: 1.125rem;
        font-weight: bold;
        padding: 10px 50px 10px 20px;
        position: relative;
        cursor: pointer;
        margin-bottom: .5rem;
}
.spmenu-research .research-search-icon{
	margin-right: 8px;
}
#headercontainer .spmenu-research a{
	color:var(--sub-color02);
}
.spmenu-research img{
	width: 30px;
	padding-right: 10px;
}
/*フッタ
----------------------------------------*/

.footer-upper{
	background: var(--main-color);
	color: #ffffff;
	padding-top: 56px;
	padding-bottom: 56px;
	font-size: 0.875rem;
}
.footer-upper a{
	color:#ffffff;
	text-decoration: none;
}
.footer-upper a:hover{
	color: var(--sub-color02);
	text-decoration: underline;
}
.footer-upper ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-area01{
	display: flex;
    justify-content: space-between;
	margin-bottom: 50px;
}
.footer-link{
	display: flex;
	gap:80px;
}
.footer-link ul li{
	padding-bottom: 8px	;
}
.footer-sublink01 ul{
	gap: 8px;
	display: flex;
	flex-direction: column;
}
.footer-sublink01 li a{
	border: 1px solid #ffffff;
	padding: 7px 16px;
	display: block;
	position: relative;
	padding-left: 36px;
	transition: .3s;
    z-index: 1;
}
.footer-sublink01 li a::before{
	content: "";
	position: absolute;
	width:6px;
	height:6px;
	border:1px solid var(--sub-color01);
	border-left: unset;
    border-bottom: unset;
    transform: rotate(45deg) translateX(-50%);
    display: block;
	left: 20px;
	top:50%;
	transition: .3s;
}
.footer-sublink01 li a::after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:transparent;
	z-index:-1;
	transition: .3s;
}

.footer-sublink01 li a:hover{
	color: var(--main-color);
	border-color: var(--sub-color02);
	text-decoration: none;
}
.footer-sublink01 li a:hover::before{
	border-color:  var(--main-color);
	left: 24px;
}
.footer-sublink01 li a:hover::after{
	background: var(--sub-color02);
	
	animation-name:widthAnime;
	animation-fill-mode:forwards;
	animation-duration:.3s;
	animation-timing-function:ease;
	animation-direction:normal;
}
.footer-sns{
	display: flex;
	gap: 15px;
	font-size: 0.875rem;
    flex-wrap: wrap;
}
.footer-sns a{
	background: #ffffff;
	width:250px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	color: #000000;
}
.footer-sns a:hover{
	color: #000000;
}
.footer-sns .footer-sns-x img{
	width:20.5px; 
}
.footer-sns .footer-sns-youtube img{
	width:31px; 
}
.footer-sns .footer-sns-insta img{
	width:28px; 
}
.footer-bottom{
	padding-top: 40px;
	padding-bottom: 15px;
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
	font-size: 0.875rem;
}
.footerbox .logo{
	width: 228px;
	padding-bottom: 12px;
	display: block;
}
.footerbox .logo img:hover{
	opacity:1;
}
.footer-address-text{
	padding-left: 1em;
}
.footerbox p:last-child{
	margin-bottom: 0;
}
.display-change{
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
	padding-bottom: 15px;
    justify-content: flex-end;
}
.display-change li a{
	border: 1px solid #333333;
	position: relative;
	display: flex;
    padding: 5px 10px;
	padding-left: 30px;
	text-decoration: none;
}
.display-change li a:hover,
.display-change li a.is-active{
	background: #333333;
	color: #ffffff;
}
.display-change li a::before{
	content: "";
	border:1px solid var(--sub-color03);
	border-left: unset;
	border-bottom: unset;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width:6px;
	height: 6px;
	display: block;
	position: absolute;
	left: 10px;
}
.display-change li a:hover::before,
.display-change li a.is-active::before{
	border-color: #ffffff;	
}
.display-change.mobileToPC{
    transform: scale(1.8) translateX(-61px);
}
.footer-sublink02{
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap:20px;
    justify-content: flex-end;
}
.footer-sublink02 a{
	text-decoration: none;
	color:#000000;
}
.footer-sublink02 a:hover{
	text-decoration: underline;
}
.copyright{
	border-top: 1px solid #B3B3B3;
	padding-top: 16px;
	color: #666666;
	font-size: 0.875rem;
	text-align: center;
}
.copyright p:last-child{
	margin-bottom: 15px;
}

@media screen and (max-width: 991px) and (min-width: 769px){
	body:not(.is-pc) .footer-sns{
		flex-wrap: wrap;
	}
	body:not(.is-pc) .footer-link{
		display: none;
	}
	body:not(.is-pc) .footer-upper{
		padding-top: calc(100vw/ 991 * 30);
		padding-bottom: calc(100vw/ 991 * 30);
		font-size: 0.857rem;
	}
	body:not(.is-pc) .footer-area01{
		margin-bottom: calc(100vw/ 991 * 40);
	}
	body:not(.is-pc) .footer-link{
		gap:calc(100vw/ 991 * 80);
	}
	body:not(.is-pc) .footer-link ul li{
		padding-bottom: calc(100vw/ 991 * 8);
	}
	body:not(.is-pc) .footer-sublink01 ul{
		gap: calc(100vw/ 991 * 8);
        flex-direction: row;
        flex-wrap: wrap;
	}
	body:not(.is-pc) .footer-sublink01 ul li{
		width:calc(100vw/ 991 * 300);
	}
	body:not(.is-pc) .footer-sublink01 li a{
		padding: unset;
		padding-left: 15px;
		border: unset;
	}
	body:not(.is-pc) .footer-sublink01 li a::before{
		width:5px;
		height:5px;
		left: 0px;
        transform: rotate(45deg);
        top: 8px;
	}
	body:not(.is-pc) .footer-sublink01 li a:hover{
		background:unset;
		color:#ffffff;
		text-decoration:underline;
	}
	body:not(.is-pc) .footer-sublink01 li a:hover::before{
		left:3px;
		border-color: var(--sub-color01);
	}
	body:not(.is-pc) .footer-sublink01 li a::after{
		display:none;
	}
	body:not(.is-pc) .footer-sns{
		gap: calc(100vw/ 991 * 20);
		/*justify-content: center;*/
	}
	body:not(.is-pc) .footer-sns .footer-sns-x img{
		width:calc(100vw/ 991 * 20.5); 
	}
	body:not(.is-pc) .footer-sns .footer-sns-youtube img{
		width:calc(100vw/ 991 * 31); 
	}
	body:not(.is-pc) .footer-sns .footer-sns-insta img{
		width:calc(100vw/ 991 * 28); 
	}
	body:not(.is-pc) .footer-sns a{
		background: #ffffff;
		gap: calc(100vw/ 991 * 16);
	}
	body:not(.is-pc) .footer-bottom{
    	align-items: center;
		padding-top: calc(100vw/ 991 * 40);
		padding-bottom: calc(100vw/ 991 * 10);
		font-size: 0.857rem;
		flex-direction: column
	}
	body:not(.is-pc) .footerbox .logo{
		width: calc(100vw/ 991 * 228);
		padding-bottom: calc(100vw/ 991 * 14);
	}
	body:not(.is-pc) .footer-address{
		text-align: center;
	}
	body:not(.is-pc) .footer-address-text{
		padding-left: unset;
		display: block;
	}
	body:not(.is-pc) .footerbox02{
		padding-top: calc(100vw/ 991 * 25);
	}
	body:not(.is-pc) .display-change{
		justify-content: center;
		gap: calc(100vw/ 991 * 10);
		padding-bottom: calc(100vw/ 991 * 15);
	}
	body:not(.is-pc) .display-change li a{
		padding: calc(100vw/ 991 * 5) calc(100vw/ 991 * 10);
		padding-left: calc(100vw/ 991 * 30);
	}
	body:not(.is-pc) .display-change li a::before{
		width:calc(100vw/ 991 * 6);
		height: calc(100vw/ 991 * 6);
		left:calc(100vw/ 991 * 10);
	}
	body:not(.is-pc) .footer-sublink02{
		gap:calc(100vw/ 991 * 16);
        justify-content: center;
        flex-wrap: wrap;
	}
	body:not(.is-pc) .footer-sublink02 li{
		position: relative;
		display: flex;
        align-items: center;
		column-gap: calc(100vw/ 991 * 16);
	}
	body:not(.is-pc) .footer-sublink02 li:not(:last-child)::after{
		content: "";
		height: 1em;
		width:1px;
		background: #000000;
		display: block;
	}
	body:not(.is-pc) .copyright{
		padding-top: calc(100vw/ 991 * 20);
		font-size: 0.857rem;
		line-height: 1.54em;
	}
}
@media screen and (max-width: 768px) {
	/*768px以下のis-pc用にmax-width:991pxを再設定*/
	.footer-sns{
		flex-wrap: wrap;
	}
	.footer-link{
		display: none;
	}
	.footer-upper{
		font-size: 0.857rem;
	}
	.footer-sublink01 ul{
        flex-direction: row;
        flex-wrap: wrap;
	}
	.footer-sublink01 li a{
		padding: unset;
		padding-left: 15px;
		border: unset;
	}
	.footer-sublink01 li a::before{
		width:5px;
		height:5px;
		left: 0px;
        transform: rotate(45deg);
        top: 8px;
	}
	.footer-sublink01 li a:hover{
		background:unset;
		color:#ffffff;
		text-decoration:underline;
	}
	.footer-sublink01 li a:hover::before{
		left:3px;
		border-color: var(--sub-color01);
	}
	.footer-sublink01 li a::after{
		display:none;
	}
	/*.footer-sns{
		justify-content: center;
	}*/
	.footer-sns a{
		background: #ffffff;
		gap: calc(100vw/ 991 * 16);
	}
	.footer-bottom{
    	align-items: center;
		font-size: 0.857rem;
		flex-direction: column
	}
	.footer-address{
		text-align: center;
	}
	.footer-address-text{
		padding-left: unset;
		display: block;
	}
	.display-change{
		justify-content: center;
	}
	.footer-sublink02{
        justify-content: center;
        flex-wrap: wrap;
	}
	.footer-sublink02 li{
		position: relative;
		display: flex;
        align-items: center;
	}
	.footer-sublink02 li:not(:last-child)::after{
		content: "";
		height: 1em;
		width:1px;
		background: #000000;
		display: block;
	}
	/*再設定：終了*/
	
	.footer-upper{
		padding-top: calc(100vw/ 768 * 30);
		padding-bottom: calc(100vw/ 768 * 30);
	}
	.footer-area01{
		margin-bottom: calc(100vw/ 768 * 40);
	}
	.footer-link{
		gap:calc(100vw/ 768 * 80);
	}
	.footer-link ul li{
		padding-bottom: calc(100vw/ 768 * 8);
	}
	.footer-sublink01 ul{
		gap: calc(100vw/ 768 * 8);
	}
	.footer-sublink01 ul li{
		width:calc(100vw/ 768 * 230);
	}
	.footer-sublink01 li a{
		padding-left: calc(100vw/ 768 * 12);
	}
	.footer-sns{
		gap: calc(100vw/ 768 * 10);
	}
	.footer-sns .footer-sns-x img{
		width:calc(100vw/ 768 * 20.5); 
	}
	.footer-sns .footer-sns-youtube img{
		width:calc(100vw/ 768 * 31); 
	}
	.footer-sns .footer-sns-insta img{
		width:calc(100vw/ 768 * 28); 
	}
	.footer-sns a{
		width:calc(100vw/ 768 * 250);
		height: calc(100vw/ 768 * 60);
		gap: calc(100vw/ 768 * 16);
	}
	.footer-bottom{
		padding-top: calc(100vw/ 768 * 40);
		padding-bottom: calc(100vw/ 768 * 10);
	}
	.footerbox .logo{
		width: calc(100vw/ 768 * 228);
		padding-bottom: calc(100vw/ 768 * 14);
	}
	.footerbox02{
		padding-top: calc(100vw/ 768 * 25);
	}
	.display-change{
		gap: calc(100vw/ 768 * 10);
		padding-bottom: calc(100vw/ 768 * 15);
	}
	.display-change li a{
		padding: calc(100vw/ 768 * 5) calc(100vw/ 768 * 10);
		padding-left: calc(100vw/ 768 * 30);
	}
	.display-change li a::before{
		width:calc(100vw/ 768 * 6);
		height: calc(100vw/ 768 * 6);
		left:calc(100vw/ 768 * 10);
	}
	.footer-sublink02{
		gap:calc(100vw/ 768 * 16);
	}
	.footer-sublink02 li{
		column-gap: calc(100vw/ 768 * 16);
	}
	.copyright{
		padding-top: calc(100vw/ 768 * 20);
		font-size: 0.857rem;
		line-height: 1.54em;
	}
}
@media screen and (max-width: 575px) {
	.footer-upper{
		padding-top: calc(100vw/ 375 * 30);
		padding-bottom: calc(100vw/ 375 * 30);
	}
	.footer-area01{
		margin-bottom: calc(100vw/ 375 * 40);
	}
	.footer-link{
		gap:calc(100vw/ 375 * 80);
	}
	.footer-link ul li{
		padding-bottom: calc(100vw/ 375 * 8);
	}
	.footer-sublink01 ul{
		gap: calc(100vw/ 375 * 8);
	}
	.footer-sublink01 ul li{
		width:calc(100vw/ 375 * 155);
	}
	.footer-sublink01 li a{
		padding-left: calc(100vw/ 375 * 12);
	}
	.footer-sns{
		gap: calc(100vw/ 375 * 10);
        justify-content: center;
	}
	.footer-sns .footer-sns-x img{
		width:calc(100vw/ 375 * 20.5); 
	}
	.footer-sns .footer-sns-youtube img{
		width:calc(100vw/ 375 * 31); 
	}
	.footer-sns .footer-sns-insta img{
		width:calc(100vw/ 375 * 28); 
	}
	.footer-sns a{
		/*width:calc(100vw/ 375 * 250);
		height: calc(100vw/ 375 * 60);*/
		width: 270px;
		height: 75px;
		gap: calc(100vw/ 375 * 16);
	}
	.footer-bottom{
		padding-top: calc(100vw/ 375 * 40);
		padding-bottom: calc(100vw/ 375 * 10);
	}
	.footerbox .logo{
		/*width: calc(100vw/ 375 * 228);*/
		width:235px;
		padding-bottom: calc(100vw/ 375 * 14);
	}
	.footerbox02{
		padding-top: calc(100vw/ 375 * 25);
	}
	.display-change{
		gap: calc(100vw/ 375 * 10);
		padding-bottom: calc(100vw/ 375 * 15);
	}
	.display-change li a{
		padding: calc(100vw/ 375 * 5) calc(100vw/ 375 * 10);
		padding-left: calc(100vw/ 375 * 30);
	}
	.display-change li a::before{
		width:calc(100vw/ 375 * 6);
		height: calc(100vw/ 375 * 6);
		left:calc(100vw/ 375 * 10);
	}
	.footer-sublink02{
		gap:calc(100vw/ 375 * 16);
	}
	.footer-sublink02 li{
		column-gap: calc(100vw/ 375 * 16);
	}
	.copyright{
		padding-top: calc(100vw/ 375 * 20);
	}
}

/**
 * fade animation
 ************************************************************/
.scroll-fadein {
	opacity: 0;
	transform: translate(0,0);
	transition: all .7s;
	&.fadein-slow {
		transition: all 2.2s;
	}
	&.fadein-left {
		transform: translate(-50px,0);

	}
	&.fadein-right {
		transform: translate(50px,0);
	}
	&.fadein-up {
		transform: translate(0,-50px);
	}
	&.fadein-down {
		transform: translate(0, 50px);
	}
	&.delay0 {
		transition-delay: .1s;
	}
	&.delay1 {
		transition: all 1.1s;
	}
	&.delay2 {
		transition: all 1.5s;
	}
	&.delay3 {
		transition: all 1.9s;
	}
	&.delay4 {
		transition: all 2.3s;
	}
	&.fadein-delay {
		transition: all 1.7s;
	}
	&.scrollin {
		opacity: 1 !important;
		transform: translate(0, 0) !important;
	}
}

.news-morebtn{
    display: block;
	text-align: center;
	margin-top: 40px;
}
.news-morebtn a{
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	position: relative;
    text-decoration: none !important;
    margin: 0 auto;
    padding-left: 25px;
    padding-top: 5px;
	display: inline-block;
	transition: .3s;
	color: #333333;
}
.news-morebtn a::before,
.news-morebtn a::after{
	content: "";
	position: absolute;
	background:var(--sub-color03);
	width: 23px;
	display: block;
	height: 3px;
	left: 0;
	top:50%;
	transform: translateX(-50%);
	transition: .3s;
}
.news-morebtn a::after{
	transform: rotate(90deg);
	left: -11px;
}
.news-morebtn a:hover{
	transform: scale(1.1);
	color: #333333;
}
.news-morebtn a:hover::before{
	transform: translateX(-50%) rotate(360deg);
}
.news-morebtn a:hover::after{
	transform: rotate(450deg);
	left: -12px;
}

