@charset "UTF-8";
/* CSS Document */


#top_img {
	height: 817px;
	overflow: hidden;
}
#top_img_ov {
	width: 1200px;
	height: auto;
	position: absolute;
	top: 339px;
	left: 50%;
	margin-left: -600px;
	z-index: 50;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.7;
	color: #FFF;
	text-align: center;
}
#top_img_ov img {
	width: 500px;
	height: auto;
	margin-bottom: 20px;
}

/* 効果をかけるためのスタイル設定 */
#slick-main .slick-slide{
	/* slickによってelement.styleで付けられるopacityを無効化 */
	opacity: 1 !important;
}
#slick-main .slideobject{
	/* フェード要素の初期設定 */
	opacity: 0;
	transition: 0s;
}
#slick-main .slick-active .slideobject{
	/* slick-active(効果開始)の際のフェード設定 */
	/* [重要]slick側の設定と同じdurationを取る */
	opacity: 1;
	transition: ease 8.0s;
}
#slick-main .slick-continue .slideobject{
	/* エフェクトの継続用に付与したslick-continueのフェード設定 */
	/* [重要]slick側の設定と同じdurationを取る */
	opacity: 0;
	transition: ease 8.0s;
}
#slick-main figure.image{
	/* 画像 ズーム要素の初期設定 */
	transform: scale(1.0, 1.0);
	transition: 0s;
}
#slick-main .slick-active figure.image{
	/* 画像　slick-active(効果開始) */
	/* ズームをかける要素には必ずフェードに対して大きめのtransition-durationを取る */
	transform: scale(1.1, 1.1);
	transition: ease 10.0s; 
}
#slick-main .slick-continue figure.image{
	/* 画像　slick-continue */
	/* ズームをかける要素には必ずフェードに対して大きめのtransition-durationを取る */
	transform: scale(1.4, 1.4);
	transition: ease 10.0s;
}

/* スライド周りの基本スタイル */
.slideobject{
	padding-top: 50%;
	position: relative;
	z-index: 10;
	overflow: hidden;
	height: 817px;
	vertical-align: bottom;
}
.slideobject figure.image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 100%;
	height: 817px;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
}

#header_carousel_wrap {
	height: 135px;
	overflow: hidden;
}
#header_carousel {
	width: 100%;
}
.carousel_item {
	cursor: pointer;
	width: 400px;
	height: 135px;
	background-color: #f5f5f3;
}
.carousel_item .flex {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: #737373;
}
.carousel_item div.img {
	width: 135px;
	height: 135px;
	position: relative;
	overflow: hidden;
}
.carousel_item div.img div {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 14px;
	line-height: 24px;
}
.carousel_item div.img div.c1 {
	background-color: #339900;
}
.carousel_item div.img div.c2 {
	background-color: #eb6100;
}
.carousel_item div.img div.c3 {
	background-color: #4c7ee1;
}
.carousel_item div.img img {
	width: auto;
	height: 100%;
	transition: 0.4s all;
}
.carousel_item:hover div.img img {
	transform: scale(1.1,1.1);
}
.carousel_item div.txt {
	width: 225px;
	padding: 20px;
}
.carousel_item strong {
	font-size: 17px;
	line-height: 1.3;
	display: -webkit-box;
    -webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    overflow: hidden;
    height: 44.2px;
}
.carousel_item p {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.5;
	display: -webkit-box;
    -webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 45px;
}
.carousel_item:hover strong,.carousel_item:hover p {
	color: #39aab4;
}

#ames {
	padding: 45px 0 0 0;
}
#ames_base {
	background-color: #d9d9d3;
	font-size: 16px;
	line-height: 1.6;
	color: #434343;
	padding: 12px 50px;
}
#ames_base a {
	text-decoration: none;
	color: #ff1121;
}

#inotice {
	padding: 32px 0;
}
#inotice .container > div {
	background-color: #eee;
	padding: 10px 40px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
#inotice .container > div > div {
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	font-feature-settings: "palt";
}
#inotice .container > div > div a {
	text-decoration: none;
	color: #F00;
}
#inotice .container > div > div:first-child {
	width: 135px;
}
#inotice .container > div > div:last-child {
	width: calc(100% - 135px);
}

#department .container > span {
	display: block;
	margin: 0 auto;
	padding: 0 0 65px;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 8px;
	text-align: center;
	font-weight: normal;
	color: #666;
}
#department .container > span span {
	font-family: 'Noto Serif JP';
}
#department .dep_base {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#department .dep_base > div:first-child {
	width: 550px;
}
#department .dep_base > div:first-child h1 {
	font-size: 50px;
	line-height: 1.57;
	font-weight: 700;
	color: #000;
	text-align: left;
	height: auto;
}
#department .dep_base > div:first-child p {
	font-size: 18px;
	line-height: 1.76;
	color: #333;
	text-align: justify;
	font-feature-settings: "palt";
}
#department .dep_base > div:last-child {
	width: 564px;
}
#department .dep_base > div:last-child strong {
	display: block;
	font-size: 23px;
	line-height: 1;
	font-weight: 200;
	color: #666;
	letter-spacing: 5px;
	padding-bottom: 22px;
	padding-top: 35px;
}
#department .dep_base > div:last-child strong:first-child {
	padding-top: 0;
}
#department .dep_base > div:last-child a {
	display: block;
	height: 117px;
	position: relative;
	margin-bottom: 10px;
	overflow: hidden;
	text-align: right;
}
#department .dep_base > div:last-child a span {
	display: block;
	position: absolute;
	z-index: 1;
	left: 48px;
	bottom: 12px;
	font-size: 27px;
	line-height: 1;
	color: #FFF;
	font-weight: 200;
}
#department .dep_base > div:last-child a::before {
	content: '';
	display: block;
	width: 19px;
	height: 117px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#department .dep_base > div:last-child a.dp1::before {
	background-color: #8ec41e;
}
#department .dep_base > div:last-child a.dp2::before {
	background-color: #f39800;
}
#department .dep_base > div:last-child a.dp3::before {
	background-color: #1eb9c0;
}
#department .dep_base > div:last-child a.dp4::before {
	background-color: #0778c0;
}
#department .dep_base > div:last-child a.dp5::before {
	background-color: #4058b6;
}
#department .dep_base > div:last-child a img {
	width: auto;
	height: 117px;
	transition: 0.4s all;
}
#department .dep_base > div:last-child a:hover img {
	transform: scale(1.1,1.1);
}

#about {
	padding: 85px 0;
}
#about .fblk {
	margin-top: 50px;
}
#about .fblk > div {
	width: 584px;
}
#about #movie img {
	width: 100%;
	height: auto;
}
#movie .mv img,#movie .mv iframe {
	width: 560px;
	height: 315px;
}
#about p {
	clear: both;
	font-size: 20px;
	font-weight: 250;
	line-height: 27px;
	color: #666;
	margin-top: 33px;
}
#about p:first-child {
	margin-top: 46px;
}
#about p img {
	width: 150px;
	height: auto;
	float: left;
	margin-right: 15px;
}

.linkblk {
	padding: 36px 0 70px;
}
.linkblk h1 + p {
	font-size: 19px;
	font-weight: 250;
	line-height: 2;
	color: #434343;
	text-align: center;
	padding: 40px 0 45px;
}
.linkblk .fblk > div {
	width: 381px;
	font-size: 17px;
	font-weight: 200;
	line-height: 1;
	color: #7d7d7d;
}
.linkblk .fblk > div a {
	text-decoration: none;
	font-size: 30px;
	font-weight: 250;
	line-height: 1;
	color: #434343;
}
.linkblk .fblk > div a:hover {
	color: #39aab4;
}
.linkblk .fblk > div a div {
	width: 381px;
	height: 249px;
	overflow: hidden;
	margin: 10px 0 0;
}
.linkblk .fblk > div a img {
	width: 100%;
	height: auto;
	transition: 0.4s all;
}
.linkblk .fblk > div a:hover img {
	transform: scale(1.1,1.1);
}

#feature .container > h1 {
	padding: 40px 0 60px;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 8px;
	text-align: center;
	font-weight: normal;
	color: #666;
}
#feature .container > h1 span {
	font-family: 'Noto Serif JP';
}
#feature .dep_base {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#feature .dep_base > div:first-child {
	width: 636px;
}
#feature .dep_base > div:first-child h1 {
	font-size: 50px;
	line-height: 1.57;
	font-weight: 700;
	color: #000;
	text-align: left;
	height: auto;
}
#feature .dep_base > div:first-child p {
	width: 552px;
	font-size: 18px;
	line-height: 1.76;
	color: #333;
	text-align: justify;
	font-feature-settings: "palt";
}
#feature .dep_base > div:last-child {
	width: 564px;
}
#feature .dep_base > div:last-child a {
	display: block;
	height: 316px;
	position: relative;
	margin-bottom: 10px;
	overflow: hidden;
	text-decoration: none;
	color: #FFF;
}
#feature .dep_base > div:last-child a span {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	background-color: #8a8989;
	font-size: 24px;
	line-height: 58px;
	padding-left: 23px;
	box-sizing: border-box;
	mix-blend-mode: multiply;
}
#feature .dep_base > div:last-child a strong {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	font-size: 24px;
	line-height: 58px;
	padding-left: 23px;
	box-sizing: border-box;
	color: #FFF;
}
#feature .dep_base > div:last-child a img {
	width: 100%;
	height: auto;
	transition: 0.4s all;
}
#feature .dep_base > div:last-child a:hover img {
	transform: scale(1.1,1.1);
}

#other {
	padding-bottom: 30px;
}
#other h1 {
	margin-bottom: 50px;
}
#other h1 {
	padding: 40px 0 0;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 8px;
	text-align: center;
	font-weight: normal;
	color: #666;
}
#other h1 span {
	font-family: 'Noto Serif JP';
}
#other .fblk {
	flex-wrap: wrap;
}
#other .fblk > a {
	text-decoration: none;
	display: block;
	width: 277px;
	margin-bottom: 55px;
	transition: 0.3s ease;
}
#other .fblk > a img {
	width: 100%;
	height: auto;
}
#other .fblk > a:hover {
	opacity: 0.7;
}

#research .container > h1 {
	padding: 40px 0 60px;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 8px;
	text-align: center;
	font-weight: normal;
	color: #666;
}
#research .container > h1 span {
	font-family: 'Noto Serif JP';
}
#research .dep_base {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#research .dep_base > div:first-child {
	width: 636px;
}
#research .dep_base > div:first-child h1 {
	font-size: 50px;
	line-height: 1.57;
	font-weight: 700;
	color: #000;
	text-align: left;
	height: auto;
}
#research .dep_base > div:first-child p {
	width: 552px;
	font-size: 18px;
	line-height: 1.76;
	color: #333;
	text-align: justify;
	font-feature-settings: "palt";
}
#research .dep_base > div:last-child {
	width: 564px;
}
#research .dep_base > div:last-child > strong {
	display: block;
	font-family: 'Noto Serif JP';
	font-size: 22px;
	line-height: 1;
	color: #666;
	padding-bottom: 25px;
}
#research .dep_base > div:last-child .newarraival {
	padding-bottom: 40px;
}
#research .dep_base > div:last-child .newarraival a {
	text-decoration: none;
	display: block;
}
#research .dep_base > div:last-child .newarraival strong {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
#research .dep_base > div:last-child .newarraival strong span {
	display: inline-block;
	font-size: 17px;
	line-height: 27px;
	color: #FFF;
	padding: 0 5px;
}
#research .dep_base > div:last-child .newarraival b {
	display: block;
	height: 180px;
	overflow: hidden;
}
#research .dep_base > div:last-child .newarraival img {
	width: 100%;
	height: auto;
	transition: 0.4s all;
}
#research .dep_base > div:last-child .newarraival a:hover img {
	transform: scale(1.1,1.1);
}
#research .dep_base > div:last-child .newarraival h3 {
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: #000;
	padding-top: 10px;
}
#research .dep_base > div:last-child .newarraival h3 span {
	font-size: 18px;
	line-height: 2em;
	color: #333;
}
#research .dep_base > div:last-child .backnumber > div {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px;
}
#research .dep_base > div:last-child .backnumber > div > div:first-child {
	width: 205px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	font-size: 0;
	line-height: 0;
}
#research .dep_base > div:last-child .backnumber > div > div:first-child span {
	display: block;
	color: #FFF;
	font-size: 17px;
	line-height: 27px;
	text-align: center;
	flex: 1;
}
#research .dep_base > div:last-child .backnumber > div > div:last-child {
	width: calc(100% - 220px);
	font-size: 17px;
	line-height: 1.3;
	color: #495475;
}
#research .dep_base > div:last-child .backnumber > div > div:last-child a {
	text-decoration: none;
	color: #495475;
	transition-duration: 0.3s;
	font-feature-settings: "palt";
}
#research .dep_base > div:last-child .backnumber > div > div:last-child a:hover {
	opacity: 0.7;
}


@media screen and (max-width: 1199px) {
	#top_img_ov {
		width: 270px;
		height: auto;
		top: 111px;
		left: 0;
		right: 0;
		margin: auto;
		font-size: 14px;
		line-height: 1.8;
	}
	#top_img_ov img {
      	width: 100%;
     	height: auto;
		margin: 0 auto 15px;
	}
	#top_img {
		height: 358px;
	}
	#inotice {
		padding: 0;
	}
	#inotice .container > div {
		padding: 20px 25px;
		flex-direction: column;
		align-items: flex-start;
	}
	#inotice .container > div > div {
		font-size: 14px;
	}
	#inotice .container > div > div:first-child,#inotice .container > div > div:last-child {
		width: 100%;
		text-align: justify;
	}
	#inotice .container > div > div:first-child {
		padding-bottom: 5px;
	}
	.slideobject {
		height: 358px;
	}
	.slideobject figure.image {
		height: 358px;
	}
	.slideobject figure.image.bt {
        background-image: url(../../img/top_mimg5_sp.jpg) !important;
	}
	#slick-main .slideobject {
		height: 358px;
	}
	#header_carousel_wrap {
		height: 105px;
	}
	.carousel_item {
        width: 100%;
        height: 105px;
    }
    .carousel_item div.img {
        width: 105px;
        height: 105px;
    }
    .carousel_item div.img div {
        font-size: 11px;
        line-height: 20px;
    }
    .carousel_item div.txt {
        width: calc( 100vw - 105px );
        padding: 15px 18px;
		box-sizing: border-box;
    }
    .carousel_item strong {
        font-size: 14px;
        line-height: 1.4;
        height: 39px;
    }
    .carousel_item p {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.4;
        max-height: 33px;
    }
    #ames {
    	padding: 40px 25px 0;
    }
    #ames_base {
		font-size: 14px;
		padding: 8px 14px;
    }
	#renew {
		padding: 20px 12px;
	}
	#department .container > span {
		font-size: 14px;
		padding: 0 0 15px;
		letter-spacing: 4px;
	}
	#department .dep_base {
		flex-direction: column;
		flex-wrap: wrap;
	}
	#department .dep_base > div:first-child {
		width: auto;
	}
	#department .dep_base > div:first-child h1 {
		font-size: 29px;
	}
	#department .dep_base > div:first-child p {
		font-size: 14px;
		line-height: 1.8;
	}
	#department .dep_base > div:last-child {
		width: auto;
	}
	#department .dep_base > div:last-child strong {
		font-size: 21px;
		padding: 30px 0 15px;
	}
	#department .dep_base > div:last-child strong:first-child {
		padding-top: 30px;
	}
	#department .dep_base > div:last-child a {
		font-size: 0;
		height: auto;
	}
	#department .dep_base > div:last-child a::before {
		width: 12px;
	}
	#department .dep_base > div:last-child a img {
		width: 100%;
		height: auto;
	}
	#department .dep_base > div:last-child a span {
		font-size: 17px;
		left: 26px;
		bottom: 8px;
	}
	#about {
		padding: 47px 25px 40px;
	}
	#about .fblk {
		margin-top: 30px;
	}
	#about .fblk > div {
		width: 100%;
	}
	#about .fblk div#movie {
		max-width: 584px;
		margin: 0 auto;
	}
	#movie .mv {
		position: relative;
		width: 100%;
		padding-top: calc(9/16*100%);
	}
	#movie .mv.f43 {
		padding-top: calc(3/4*100%);
	}
	#movie .mv img,#movie .mv iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	#about p {
		text-align: center;
		font-size: 15px;
		line-height: 1.6;
		margin-top: 20px;
	}
	#about p:first-child {
		margin-top: 30px;
	}
	#about p img {
		display: block;
		width: 100px;
		float: none;
		margin: 0 auto 10px;
	}
	.linkblk {
		padding: 33px 25px 30px;
	}
	.linkblk h1 + p {
		text-align: center;
		font-size: 15px;
		line-height: 1.4;
		padding: 15px 0 5px;
	}
	.linkblk .fblk > div,#feature .fblk > div {
		width: 100%;
		max-width: 500px;
		font-size: 14px;
		margin-top: 25px;
		margin-left: auto;
		margin-right: auto;
	}
	.linkblk .fblk > div a {
		font-size: 20px;
	}
	.linkblk .fblk > div a div,#feature .fblk > div a div {
		width: 100%;
		max-width: 500px;
		height: calc( 100% / 325 * 212 );
		margin-bottom: 4px;
	}
	#other {
        padding: 40px 50px 35px;
    }
    #other h1 {
        font-size: 16px;
		letter-spacing: 4px;
		padding: 0 0 30px;
		margin: 0;
    }
	#other .fblk > a {
		width: auto;
		margin-bottom: 15px;
	}
	#feature .container > h1 {
		font-size: 16px;
		letter-spacing: 4px;
		padding: 7px 0 20px;
	}
	#feature .dep_base {
		flex-direction: column;
	}
	#feature .dep_base > div:first-child,#feature .dep_base > div:last-child {
		width: 100%;
	}
	#feature .dep_base > div:first-child h1 {
		font-size: 28px;
		font-feature-settings: "palt";
	}
	#feature .dep_base > div:first-child p {
		width: auto;
		font-size: 14px;
		line-height: 1.8;
		padding-bottom: 30px;
	}
	#feature .dep_base > div:last-child a {
		width: 325px;
		height: 182px;
		margin: 0 auto 10px;
	}
	#feature .dep_base > div:last-child a span {
		font-size: 14px;
		line-height: 33px;
		padding-left: 15px;
	}
	#feature .dep_base > div:last-child a strong {
		font-size: 14px;
		line-height: 33px;
		padding-left: 15px;
	}
	#research .container > h1 {
		font-size: 16px;
		letter-spacing: 4px;
		padding: 7px 0 20px;
	}
	#research .dep_base {
		flex-direction: column;
	}
	#research .dep_base > div:first-child,#research .dep_base > div:last-child {
		width: 100%;
	}
	#research .dep_base > div:first-child h1 {
		font-size: 29px;
		font-feature-settings: "palt";
	}
	#research .dep_base > div:first-child p {
		font-size: 14px;
		padding-bottom: 50px;
		width: auto;
	}
	#research .dep_base > div:last-child > strong {
		font-size: 16px;
		padding-bottom: 20px;
	}
	#research .dep_base > div:last-child .newarraival b {
		height: 216px;
	}
	#research .dep_base > div:last-child .newarraival h3 {
		line-height: 1.33;
		font-feature-settings: "palt";
	}
	#research .dep_base > div:last-child .backnumber > div {
		flex-direction: column;
		align-items: flex-start;
		margin: 0 0 15px;
	}
	#research .dep_base > div:last-child .backnumber > div > div:last-child {
		width: auto;
		text-align: justify;
		padding: 10px 0 0;
	}
}