@charset "utf-8";

/*----- フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/*-------------------------------
	変数設定
-------------------------------*/

:root{

	/*----- コンテンツ幅 */
	--maxwidth: 110rem;
	--widewidth: 130rem;

	/*----- 余白 */ 
	--padding-topbottom: 12rem; /*15rem;*/
	--padding-topbottom-wide: 15.2rem; /*19rem;*/
	--padding-leftright: 4rem;

	/*----- 文字 */
	/* 書体 */
	/*--font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
	--font-family:'YuGothic','Yu Gothic Medium', '游ゴシック Medium', '游ゴシック体',  'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; 
	--font-Mincho: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;;
	--en_font1: "EB Garamond", serif;
	--en_font2: "Bebas Neue", sans-serif;
	/*--impact-font: "Anton", sans-serif;*/
	--impact-font: "Oswald", sans-serif;
	--ntsans-font:'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	

	/* 文字サイズ */
	--font-main-size-number: 1.6; /*1.8;*/
	--font-main-size: calc(var(--font-main-size-number) * 1rem);

	/* 行間 */
	--letter-main-height: calc(2.8 / var(--font-main-size-number));

	/*----- 色設定 */
	--maincolor: #0070B8;
	--subcolor: #faa;
	--pinkcolor: #db7093;
	--blackcolor: #333;
	--graycolor: #9B9B9B;
	--gradcolor: linear-gradient(90deg, rgba(222,120,153,1) 0%, rgba(10,128,204,1) 100%);
	--gradcolor2: linear-gradient(180deg, rgba(222,120,153,1) 0%, rgba(10,128,204,1) 100%);
	--gradcolor3: linear-gradient(135deg, rgba(222,120,153,1) 0%, rgba(10,128,204,1) 100%);

	--bg-graycolor:#ECF2F7;
	--bg-bluecolor:#DFEDF8;


	/*----- その他設定 */
	--transition: .3s all cubic-bezier(0.1, 0.7, 0.4, 1);
	--transition-time: all 0.3s;
	--trans-hov-pop: translateY(-1rem);
	--opacity: .6;

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	:root{
			
		/*----- コンテンツ幅 */
		--maxwidth: 100%;

		/*----- 余白 */
		--padding-topbottom: 10rem;
		--padding-topbottom-wide: 19rem;
		--padding-leftright: 6rem;

		/* 文字サイズ */
		--font-main-size-number: 2.8;
		--font-main-size: calc(var(--font-main-size-number) * 1rem);

		/* 行間 */
		--letter-main-height: calc(2.8 / var(--font-main-size-number));

	}

}


/*-------------------------------
	基本設定
-------------------------------*/

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: var(--letter-main-height);
	word-wrap: break-word;
}
html{
	font-size: 62.5%;
}
body{
	opacity: 0;
	width: 100%;
	font-size: var(--font-main-size);
	letter-spacing: .06em;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	color: var(--blackcolor);
	/* font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
	font-family: var(--font-family);
}

/*----- 画像関連 */
img{
	height: auto;
	vertical-align: bottom;
}
img.ofi__cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
img.ofi__contain{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.in__fit{
	width: 100%;
	height: 100%;
}
/* SVG表示されないとき */
.svg{
	line-height: 1;
	display: block;
}
.svg img{
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/*----- ホバー系 */
a,
.a{
	transition: var(--transition);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-topbottom);
	padding-bottom: var(--padding-topbottom);
}
.sec:first-child{
	padding-top: 11.7rem; /*13rem;*/
}
/* .sec:first-child{
	padding-top: 0;
} */
.sec02{
	padding-top: var(--padding-topbottom-wide);
	padding-bottom: var(--padding-topbottom-wide);
}
.sec02:first-child{
	padding-top: 13rem;
}
/* .sec02{
	padding-top: 0;
} */
.main{
	display: block;
}

body{
	overflow-x: hidden;
}
@media screen and (min-width:769px) , print{

	a[href^="tel:"]{
		pointer-events: none;
	}
	body{
		padding-top: 10.8rem;
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.maxwidth{
		width: 100%;
		max-width: calc(var(--maxwidth) + (var(--padding-leftright) * 2));
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.widewidth{
		width: 100%;
		max-width: calc(var(--widewidth) + (var(--padding-leftright) * 2));
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.innerwidth{
		width: 100%;
		max-width: calc(var(--maxwidth) + (var(--padding-leftright) * 2) - 10rem);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}

	/*----- pc sp切り替え-- */
	.sp__only{
		display: none !important;
	}

	/*----- br */
	br.br__pc{
		display: inline-block;
	}
	br.br__tabsp{
		display: none;
	}
	br.br__sp{
		display: none;
	}
}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	
	/*----- br */
	br.br__pc{
		display: none;
	}
	br.br__tabsp{
		display: inline-block;
	}
	br.br__sp{
		display: none;
	}
}
@media screen and (max-width:768px){

	html{
		font-size: 1.333333vw;
	}
	body{
		min-width: 100%;
		padding-top: 14.2rem;
		font-size: var(--font-main-size);
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.sp_widewidth{
		width: 100%;
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.sp_maxwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}

	.sec{
		padding-top: var(--padding-topbottom);
		padding-bottom: var(--padding-topbottom);
	}
	.sec:first-child{
		padding-top: 9.2rem;
	}

	/*----- pc sp切り替え-- */
	.pc__only{
		display: none !important;
	}
	
	/*----- br */
	br.br__pc{
		display: none;
	}
	br.br__tabsp{
		display: inline-block;
	}
	br.br__sp{
		display: inline-block;
	}
}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header{
	width: 100%;
	/*padding-top: 2.8rem;
	padding-bottom: 2.8rem;*/
	padding-block: 2rem;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9000;
	background: #fff;
}
.header__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 37rem;
}
.header-logo a{
	display: block;
}
.header-logo img{
	width: 100%;
}

/*----- グローバルナビ */
.header-nav{
	width: calc(100% - 37rem);
}
.header-nav__inner{
	width: 100%;
	display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header-nav__list__item{
	margin-right: 5rem;
	position: relative;
}
.header-nav__list__item a{
	line-height: 1;
	font-weight: 700;
	display: block;
	position: relative;
	opacity: 1 !important;
}
.header-nav__list__item a:hover{
	color: var(--maincolor);
}
.header-nav__list__item > a{
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.header-nav__list__item:has(.header-nav-child) > a::after{
	content: "";
	display: block;
	width: 1.2rem;
	height: .6rem;
	background-image: url(../images/common/icon_arrow--black.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(2rem,-50%);
}
.header-nav-child{
	transition: var(--transition);
	width: 22.8rem;
	padding: 2.4rem 2.2rem 3rem;
	border-radius: 1rem;
	box-shadow: 0 0 .6rem rgba(0,0,0,.16);
	background: #fff;
	position: absolute;
	left: 50%;
	top: calc(1em + 5rem);
	transform: translate(-50%,-1em);
	opacity: 0;
	visibility: hidden;
}
.header-nav-child__item:not(:last-child){
	margin-bottom: 2.6rem;
}
.header-nav-child__item a{
	line-height: 1;
	display: block;
}
.header-nav__list__item:has(.header-nav-child):hover .header-nav-child{
	transform: translate(-50%,0);
	opacity: 1;
	visibility: visible;
}
.header-nav__button{
	width: 22rem;
	/*height: 8rem;*/
	height: 6.4rem;
}
.header-nav__button a{
	border: 2px solid var(--maincolor);
	background: var(--maincolor);
	font-family: var(--en_font1);
	width: 100%;
	height: 100%;
	border-radius: 4rem;
	font-size: 2rem;
	letter-spacing: .01em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 1 !important;
}
.header-nav__button a:hover{
	color: var(--maincolor);
	background: #fff;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.header-logo{
		width: 25rem;
	}
	.header-nav{
		width: calc(100% - 25rem);
	}
	.header-nav__list__item{
		margin-right: 3rem;
	}
	.header-nav__list__item:has(.header-nav-child) > a::after{
		transform: translate(1.5rem,-50%);
	}
	.header-nav__button{
		width: 15rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.header{
		padding-top: 2.4rem;
		padding-bottom: 3rem;
	}
	.header-logo{
		width: 36rem;
	}
	.header-button{
		width: 19.5rem;
		height: 8.8rem;
	}
	.header-button a{
		background: var(--maincolor);
		font-family: var(--en_font1);
		width: 100%;
		height: 100%;
		border-radius: 4.4rem;
		font-size: 3rem;
		letter-spacing: .01em;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		opacity: 1 !important;
	}
	
	/*----- グローバルナビ */
	.header-nav{
		background: var(--maincolor);
		width: 100%;
		padding-top: 2.4rem;
		padding-bottom: 10.5rem;
		border-bottom-left-radius: 5rem;
		overflow: auto;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		display: none;
	}
	.header-nav__inner{
		flex-direction: column;
		align-items: flex-start;
	}
	.header-nav__logo{
		width: 36rem;
		height: 8.8rem;
	}
	.header-nav__logo img{
		width: 100%;
	}
	.header-nav__list{
		width: 100%;
		padding-left: 3rem;
		padding-right: 3rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.header-nav__list__item{
		width: 100%;
		margin-right: 0;
	}
	.header-nav__list__item > a{
		font-size: 4rem;
		padding-top: 3rem;
		padding-bottom: 2.2rem;
		border-bottom: 2px solid rgba(255,255,255,.5);
		color: #fff !important;
	}
	.header-nav__list__item:has(.header-nav-child) > a::after{
		display: none;
	}
	.header-nav-child{
		width: 100%;
		border-bottom: 2px solid rgba(255,255,255,.5);
		padding: 4.5rem 0 4.8rem;
		border-radius: 0;
		box-shadow: none;
		background: none;
		position: static;
		transform: translate(0,0) !important;
		opacity: 1;
		visibility: visible;
	}
	.header-nav-child__item:not(:last-child){
		margin-bottom: 5rem;
	}
	.header-nav-child__item a{
		font-size: 2.8rem;
		position: relative;
		color: #fff !important;
	}
	.header-nav-child__item a::after{
		content: "";
		display: block;
		width: 2.6rem;
		height: 2.7rem;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(0,-50%);
		background-image: url(../images/common/icon_arrow2--white.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.header-nav__button{
		width: 33rem;
		height: 8.8rem;
		margin-top: 8rem;
		margin-left: auto;
		margin-right: auto;
	}
	.header-nav__button a{
		color: var(--maincolor);
		border-radius: 4.4rem;
		font-size: 4rem;
		background: #fff;
		border: none;
	}
	.header-nav__button a:hover{
		color: var(--maincolor);
		background: #fff;
	}

	/*----- ハンバーガー */
	.menu-button {
		background: var(--blackcolor);
		width: 8.8rem;
		height: 8.8rem;
		padding: 2.8rem 2.4rem;
		border-radius: 50%;
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: .4rem;
		background: #fff;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: calc(50% - .2rem);
		border-radius: .2rem;
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: .4rem;
		border-radius: .2rem;
		background: #fff;
		position: absolute;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.3s !important;
		transition: all 0.3s !important;
	}
	.menu-button i:before{
		-webkit-transform: translateY(1.4rem);
		-ms-transform: translateY(1.4rem);
		transform: translateY(1.4rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-1.4rem);
		-ms-transform: translateY(-1.4rem);
		transform: translateY(-1.4rem);
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(0px) rotate(-45deg);
	}
	.is_open i:before{
		transform:translateY(0px) rotate(45deg);
	}

}



/*-------------------------------
	フッター
-------------------------------*/

.C-Entry + .footer{
	margin-top: -5rem;
	position: relative;
	z-index: 6000;
}

.footer{
	background: var(--blackcolor);
	padding-top: 8.8rem;
	border-top-left-radius: 5rem;
	border-top-right-radius: 5rem;
	color: #fff;
	position: relative;
	z-index: 5000;
}
.footer-top{
	margin-bottom: 6.5rem;
}
.footer-top__inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer__logo-nav{
	width: calc(100% - 33rem);
	padding-right: 10rem;
}
.footer-logo{
	width: 100%;
    max-width: 40rem; /*46.5rem;*/
	margin-bottom: 5rem; /*5.5rem;*/
}
.footer-logo img{
	width: 100%;
}

/*----- ナビ */
.footer-nav{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-nav__item{
	display: inline-block;
}
.footer-nav__item > a{
	font-size: 1.8rem; /*2rem;*/
	margin-bottom: 2.34rem; /*2.6rem;*/
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1;
	display: block;
}
.footer-nav-child__item:not(:last-child){
	margin-bottom: 2.34rem; /*2.6rem;*/
}
.footer-nav-child__item a{
	font-size: 1.5rem; /*1.7rem;*/
	padding-left: 1.8rem; /*2rem;*/
	font-weight: 500;
	letter-spacing: .01em;
	line-height: 1;
	display: block;
	position: relative;
}
.footer-nav-child__item a::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.17rem; /*1.3rem;*/
	height: 0.99rem; /*1.1rem;*/
	background-image: url(../images/common/icon_arrow2--white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.footer-nav-child__item a:hover::before{
	transform: translate(.2rem,-50%);
}

/*----- お問い合わせ */
.footer-contact{
	width: 29rem; /*33rem;*/
}
.footer-tel{
	border-bottom: 1px solid #fff;
	margin-bottom: 1.8rem; /*2rem;*/
	padding-bottom: 2.34rem; /*2.6rem;*/
}
.footer-tel__title{
	font-size: 1.5rem; /*1.7rem;*/
	margin-bottom: 1.5rem; /*1.7rem;*/
	font-weight: 500;
	letter-spacing: .01em;
	line-height: 1;
}
.footer-tel__number{
	margin-bottom: 1.98rem; /*2.2rem;*/
}
.footer-tel__number a{
	display: block;
}
.footer-tel__number img{
	width: 100%;
}
.footer-tel__time{
	font-size: 1.4rem; /*1.6rem;*/
	margin-bottom: .8rem;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 500;
}
.footer-tel__holiday{
	font-size: 1.4rem; /*1.6rem;*/
	line-height: 1;
	letter-spacing: 0;
	font-weight: 500;
}
.footer-mail__title{
	font-size: 1.4rem; /*1.6rem;*/
	padding-left: 1.08rem; /* 1.2rem;*/
	margin-bottom: 1.98rem; /* 2.2rem;*/
	font-weight: 500;
	letter-spacing: .01em;
	line-height: 1;
}
.footer-mail__button{
	width: 100%;
}
.footer-mail__button a{
	color: var(--blackcolor);
	width: 100%;
	height: 5.4rem; /*6rem;*/
	font-size: 1.8rem; /*2rem;*/
	font-weight: 700;
	letter-spacing: .06em;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(239,209,78);
	background: linear-gradient(180deg, rgba(239,209,78,1) 0%, rgba(242,149,56,1) 100%);
}

.footer-bottom{
	border-top: 1px solid #F4F4F4;
}
.footer-bottom__inner{
	height: 5.22rem; /*5.8rem;*/
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-nav2{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-nav2__item:not(:last-child){
	margin-right: 7.56rem; /*8.4rem;*/
}
.footer-nav2__item a{
	font-size: 1.3rem; /*1.4rem;*/
	letter-spacing: .02em;
	line-height: 1;
	display: block;
}
.footer-copyright{
	font-size: 1.3rem; /*1.4rem;*/
	letter-spacing: .02em;
	line-height: 1;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.footer__logo-nav{
		padding-right: 5rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.footer{
		padding-bottom: 2rem;
	}
	.footer-top__inner{
		flex-direction: column;
	}
	.footer__logo-nav{
		width: 100%;
		padding-right: 0;
	}
	.footer-logo{
		width: 46.5rem;
		max-width: unset;
		margin-bottom: 4rem;
		margin-left: auto;
		margin-right: auto;
	}
	
	/*----- ナビ */
	.footer-nav{
		display: none;
	}
	
	.footer-nav__item > a{
		font-size: 2rem;
		margin-bottom: 2.6rem;
	}
	.footer-nav-child__item:not(:last-child){
		margin-bottom: 2.6rem;
	}
	.footer-nav-child__item a{
		font-size: 1.7rem;
		padding-left: 2rem;
	}
	.footer-nav-child__item a::before{
		width: 1.3rem;
		height: 1.1rem;
	}

	/*----- お問い合わせ */
	.footer-contact{
		width: 100%;
		max-width: 57rem;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-tel{
		border-bottom: 2px solid #fff;
		margin-bottom: 2.5rem;
		padding-bottom: 3rem;
		text-align: center;
	}
	.footer-tel__title{
		font-size: 2.4rem;
		margin-bottom: 2.2rem;
		letter-spacing: 0;
	}
	.footer-tel__number{
		max-width: 53rem;
		margin-bottom: 2.2rem;
		margin-left: auto;
		margin-right: auto;
	}
	.footer-tel__time{
		font-size: 2.4rem;
		margin-bottom: 1.8rem;
	}
	.footer-tel__holiday{
		font-size: 2.4rem;
	}
	.footer-mail{
		padding-left: 6rem;
		padding-right: 6rem;
	}
	.footer-mail__title{
		width: calc(100% + 1em);
		font-size: 2.4rem;
		padding-left: 0;
		margin-bottom: 3rem;
		letter-spacing: 0;
	}
	.footer-mail__button a{
		height: 8.8rem;
		font-size: 3rem;
	}
	
	.footer-bottom{
		border-top: none;
	}
	.footer-bottom__inner{
		height: auto;
		flex-direction: column;
	}
	.footer-nav2{
		margin-bottom: 3rem;
	}
	.footer-nav2__item:not(:last-child){
		margin-right: 5rem;
	}
	.footer-nav2__item a{
		font-size: 2.4rem;
		text-decoration: underline;
	}
	.footer-copyright{
		width: calc(100% + (var(--padding-leftright) * 2));
		border-top: 2px solid #F4F4F4;
		font-size: 2rem;
		padding-top: 2rem;
		text-align: center;
	}

}



/*-------------------------------
	リンク
-------------------------------*/

.C-Link{
	padding-top: 8.55rem; /*9.5rem;*/
	padding-bottom: 7.65rem; /*8.5rem;*/
}
.C-Link__content{
	background: var(--gradcolor3);
	padding: 7.5rem 11rem;
	border-radius: 5rem;
	position: relative;
}
.C-Link__content::before{
	content: "";
	display: block;
	width: 10.26rem; /*11.4rem; */
	height: 10.26rem; /*11.4rem; */
	position: absolute;
	right: 4rem; /*5rem*/
	top: 4.23rem; /*4.7rem;*/
	background-image: url(../images/common/icon_c-link.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	mix-blend-mode: soft-light;
}
.C-Link__title{
	font-size: 2.7rem; /*2.7rem;*/
	margin-bottom: 5.8rem;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.C-Link__title span{
	padding-left: 8.8rem;
	padding-right: 8.8rem;
	line-height: 1.25;
	position: relative;
	display: inline-block;
}
.C-Link__title span::before,
.C-Link__title span::after{
	content: "";
	display: block;
	width: 2.2rem;
	height: 3.8rem;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.C-Link__title span::before{
	left: 0;
	background-image: url(../images/common/icon_c-link_title--left.svg);
}
.C-Link__title span::after{
	right: 0;
	background-image: url(../images/common/icon_c-link_title--right.svg);
}
.C-Link__button-wrap{
	width: 100%;
	display: flex;
	align-items: center;
	/*justify-content: space-between;*/
	justify-content: center;
	gap: 7rem;
}
.C-Link__button-wrap .C-Link__button{
	margin-left: unset;
	margin-right: unset;
}
.C-Link__button-wrap .C-Link__button:first-child{
	margin-right: 2.5rem;
}
.C-Link__button-wrap .C-Link__button:last-child{
	margin-left: 2.5rem;
}
.C-Link__button-wrap .C-Link__button + .C-Link__button{
	margin-top: 0;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){
	.C-Link__button-wrap{
		gap: 3rem;
	}

	.C-Link__title span{
		width: 80%;
		padding-left: 5rem;
		padding-right: 5rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){
	.C-Link__button-wrap{
		gap: 1.5rem;
	}

	.C-Link__content{
		padding: 7.5rem 5rem;
	}

}
@media screen and (max-width:768px){

	.C-Link{
		padding-top: 12rem;
		padding-bottom: 12rem;
	}
	.C-Link__content{
		padding: 2.8rem 6rem 8rem;
	}
	.C-Link__content::before{
		width: 8rem;
		height: 8rem;
		margin-bottom: 1.4rem;
		margin-left: auto;
		margin-right: auto;
		position: static;
		mix-blend-mode: normal;
	}
	.C-Link__title{
		font-size: 3.6rem;
		margin-bottom: 6rem;
	}
	.C-Link__title span{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		line-height: calc(4 / 3.6);
	}
	.C-Link__title span::before,
	.C-Link__title span::after{
		width: 4rem;
		height: 6.4rem;
		top: unset;
		bottom: 0;
	}
	.C-Link__title span::before{
		transform: translate(-1rem,0);
	}
	.C-Link__title span::after{
		transform: translate(1rem,0);
	}
	.C-Link__button-wrap{
		flex-direction: column;
		gap: 0;
	}
	.C-Link__button-wrap .C-Link__button{
		width: 100%;
	}
	.C-Link__button-wrap .C-Link__button:first-child{
		margin-right: 0;
	}
	.C-Link__button-wrap .C-Link__button:last-child{
		margin-left: 0;
	}
	.C-Link__button-wrap .C-Link__button + .C-Link__button{
		margin-top: 3.8rem;
	}

}



/*-------------------------------
	エントリー
-------------------------------*/

.C-Entry{
	padding-bottom: calc(var(--padding-topbottom) + 1rem);
	background-image: url(../images/common/bg_entry.jpg);
    background-image: image-set(url(../images/common/bg_entry.jpg) 1x, url(../images/common/bg_entry@2x.jpg) 2x);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 4000;
}
.C-Entry::before{
	background: var(--gradcolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	opacity: .69;
}
.C-Entry__inner{
	position: relative;
	z-index: 6000;
}
.C-Entry__title{
	margin-bottom: 6rem;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.C-Entry{
		padding-bottom: calc(var(--padding-topbottom) + 4rem);
	}
	.C-Entry::before{
		background: var(--gradcolor2);
	}

}



/*-------------------------------
	下層ベース
-------------------------------*/

/*----- キービジュアル */
.Keyvisual{
	border-radius: 5rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	z-index: 5000;
}
.Keyvisual::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	background: rgba(27,60,82,.3);
}
.Keyvisual__inner{
	height: 32rem; /*40rem;*/
	position: relative;
	z-index: 6000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.Keyvisual__title__jp{
	background: var(--gradcolor);
	/* padding-inline: 1.75em; */
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	padding-top: .2rem;
	min-width: 24.3rem;/*27rem;*/
		height: 4.05rem;/*4.5rem;*/
	font-size: 2.4rem;/*3rem;*/
		margin-bottom: 0.8rem;/*1rem;*/
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1;
	color: #fff;
	display: inline-block;
	text-align: center;
	line-height: 4.05rem;/*4.5rem;*/
	clip-path: polygon(0 0, 100% 0, 93.33333334% 100%, 0% 100%);
}
.Keyvisual__title__en{
	font-family: var(--en_font1);
	font-size: 7.2rem; /*9rem;*/
	letter-spacing: 0;
	line-height: 1;
	color: #fff;
	display: block;
}

/*----- ぱんくず */
.Breadclumb{
	margin-top: 1.5rem;
}
.Breadclumb-list{
	width: 100%;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.Breadclumb-list__item{
	font-size: 1.2rem;
	letter-spacing: 0;
}
.Breadclumb-list__item:last-child span{
	text-decoration: underline;
}
.Breadclumb-list__item a::after{
	margin-left: .5em;
	margin-right: .5em;
	content: ">";
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	/*----- キービジュアル */
	.Keyvisual__inner{
		height: 49.2rem;
	}
	.Keyvisual__title__jp{
		min-width: 27rem;
		height: 4.5rem;
		font-size: 3rem;
		margin-bottom: 1rem;
		line-height: 4.5rem;
	}
	.Keyvisual__title__en{
		font-size: 9rem;
	}

	/*----- ぱんくず */
	.Breadclumb{
		display: none;
	}

}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.C-title-index{
	margin-bottom: 4.5rem; /*5rem*/
}
.C-title-index__jp{
	background: var(--gradcolor);
	width: 21.6rem; /*27rem;*/
	height: 3.6rem; /* 4.5rem;*/
	font-size: 2.4rem; /*3rem;*/
	margin-bottom: 1.2rem; /*1.5rem;*/
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 93.33333334% 100%, 0% 100%);
}
.C-title-index__en{
	font-family: var(--en_font1);
	font-size: 7.2rem; /*9rem*/
	line-height: 1;
	color: #fff;
	display: block;
}
.C-title-index.-center{
	text-align: center;
}
.C-title-index.-center .C-title-index__jp{
	margin-left: auto;
	margin-right: auto;
}

/* 大見出し */
.C-title{
	width: 100%;
	margin-bottom: 7.68rem; /*9.6rem;*/
	text-align: center;
}
.C-title__jp{
	color: var(--maincolor);
	font-size: 5rem; /*6rem;*/
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
	display: block;
}
.C-title__en{
	font-family: var(--en_font1);
	font-size: 2.3rem; /*3.3rem;*/
	margin-top: 1.44rem; /*1.8rem;*/
	line-height: 1;
	letter-spacing: .05em;
	display: block;
}

/* 中見出し */
.C-sub-title{
	margin-bottom: 9.2rem; /*11.5rem;*/
	text-align: center;
}
.C-sub-title::before{
	background: var(--gradcolor);
	content: "";
	display: block;
	width: 2rem; /*2.6rem;*/
	height: 2rem; /*2.6rem;*/
	margin-bottom: 1rem; /*1.4rem;*/
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	transform: rotate(45deg);
}
	.C-sub-title.not_maru::before{
		display: none;
	}
.C-sub-title__jp{
	font-size: 2.4rem; /*3rem;*/
	font-weight: 700;
	letter-spacing: .05em;
	/*line-height: 1;*/
	line-height: 1.3;
	display: block;
}
.C-sub-title__en{
	font-family: var(--en_font1);
	font-size: 1.6rem; /*1.8rem;*/
	margin-top: 1.6rem; /*1.8rem;*/
	line-height: 1;
	letter-spacing: .05em;
	display: block;
}

/*----- ボタン */
.C-button{
	width: 30rem; /*35.2rem;*/
	margin-left: auto;
	margin-right: auto;
}
.C-button + .C-button{
	margin-top: 2.5rem;
}
.C-button a{
	background: var(--maincolor);
	width: 100%;
	height: 5.2rem; /*6rem;*/
	border-radius: 2.4rem; /*3rem;*/
	font-weight: 700;
	font-size: 1.8rem; /*2rem;*/
	letter-spacing: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
	position: relative;
	opacity: 1 !important;
}
.C-button a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.5rem; /*1.8rem;*/
	height: 2.5rem; /*2rem*/
	position: absolute;
	right: 2.2rem;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../images/common/icon_arrow2--white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.C-button span{
	transition: var(--transition);
	width: calc(100% - .4rem);
	height: calc(100% - .4rem);
	border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.C-button a:hover{
	color: var(--maincolor);
}
.C-button a:hover span{
	background: #fff;
}
.C-button a:hover::after{
	transform: translate(.5rem,-50%);
	background-image: url(../images/common/icon_arrow2.svg);
}
/* カミングスーン（ホバー無効） */
.C-button.-comingsoon a{
	pointer-events: none;
}
	.C-button.-comingsoon a::before{
		content: "COMING SOON";	
		width: 100%;
		height: 100%;
		border-radius: 9999px;
		font-size: 1.8rem;
			line-height: 1;
			color: #fff;
			font-weight: 700;		
		background: rgba(0, 0, 0, .25);
		position: absolute;
			left: 0;
			top: 0;
		display: flex;
			align-items: center;
			justify-content: center;
	}
/* （枠線無し） */
.C-button.-noborder a:hover{
	background: #fff;
}

/* 白色 */
.C-button.-white a{
	color: var(--maincolor);
	background: #fff;
}
.C-button.-white a::after{
	background-image: url(../images/common/icon_arrow2.svg);
}
.C-button.-white span{
	background: #fff;
}
.C-button.-white a:hover{
	color: #fff;
}
.C-button.-white a:hover span{
	background: var(--maincolor);
}
.C-button.-white a:hover::after{
	background-image: url(../images/common/icon_arrow2--white.svg);
}
/* 白色（枠線無し） */
.C-button.-white.-noborder a:hover{
	background: var(--maincolor);
}

/* 黒色 */
.C-button.-black a{
	background: var(--blackcolor);
}
.C-button.-black a:hover{
	color: var(--blackcolor);
}
.C-button.-black a:hover::after{
	background-image: url(../images/common/icon_arrow2--black.svg);
}
/* 黒色（枠線無し） */
.C-button.-black.-noborder a:hover{
	background: #fff;
}
/* グラデーション */
.C-button.-grad a{
	background: var(--gradcolor);
}
/* サイズ違い */
.C-button.-small{
	width: 18rem; /*20rem;*/
}
.C-button.-small a{
	height: 4.14rem; /*4.6rem;*/
	border-radius: 2.07rem; /*2.3rem;*/
	font-size: 1.6rem; /*1.8rem;*/
}
.C-button.-small a::after{
	width: 1.26rem; /*1.4rem;*/
	height: 1.35rem; /*1.5rem;*/
	right: 1.62rem; /* 1.8rem;*/
}
.C-button.-small span{
	padding-right: 1.62rem; /*1.5rem*/
}
/* 別タブ */
.C-button:not(.-not) a[target="_blank"]{
	background: var(--blackcolor);
}
.C-button:not(.-not)  a[target="_blank"]::after{
	width: 1.9rem;
	height: 2.1rem;
	background-image: url(../images/common/icon_blank--white.svg);
}
.C-button:not(.-not)  a[target="_blank"]:hover{
	color: var(--blackcolor);
}
.C-button:not(.-not) a[target="_blank"]:hover::after{
	background-image: url(../images/common/icon_blank--black.svg);
}
/* 別タブ 青色*/
.C-button.-blank__blue a[target="_blank"]{
	background: var(--maincolor);
}
.C-button.-blank__blue a[target="_blank"]::after{
	width: 1.9rem;
	height: 2.1rem;
	background-image: url(../images/common/icon_blank--white.svg);
}
.C-button.-blank__blue a[target="_blank"]:hover{
	color: var(--maincolor);
}
.C-button.-blank__blue a[target="_blank"]:hover::after{
	background-image: url(../images/common/icon_blank--blue.svg);
}
/* 別タブ 青色（縁取り）*/
.C-button.-blank__blue.-border a[target="_blank"]{
	color: var(--maincolor);
	background: var(--maincolor);
}
.C-button.-blank__blue.-border a[target="_blank"]::after{
	background-image: url(../images/common/icon_blank--blue.svg);
}
.C-button.-blank__blue.-border a[target="_blank"] span{
	background: #fff;
}
.C-button.-blank__blue.-border a[target="_blank"]:hover{
	color: #fff;
}
.C-button.-blank__blue.-border a[target="_blank"]:hover::after{
	background-image: url(../images/common/icon_blank--white.svg);
}
.C-button.-blank__blue.-border a[target="_blank"]:hover span{
	background: var(--maincolor);
}

/*----- テキスト */
.C-text{

}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	/*----- 見出し */
	.C-title-index{
		margin-bottom: 5rem;
	}
	/* 大見出し */
	.C-title{
		width: 100%;
		margin-bottom: 15.2rem;
	}
	.C-title-index__jp{
		width: 27rem;
		height: 4.5rem;
		font-size: 3rem;
		margin-bottom: 1.5rem;
	}
	.C-title__jp{
		font-size: 6rem;
	}
	.C-title__en{
		/*font-size: 9rem;*/
		font-size: 3.3rem;
		margin-top: 1rem;
	}

	/* 中見出し */
	.C-sub-title{
		margin-bottom: 6.5rem;
		text-align: center;
	}
	.C-sub-title::before{
		width: 3.2rem;
		height: 3.2rem;
		margin-bottom: 2rem;
	}
	.C-sub-title__jp{
		font-size: 4rem;
	}
	.C-sub-title__en{
		font-size: 2.4rem;
		margin-top: 1.5rem;
	}

	/*----- ボタン */
	.C-button{
		width: 45rem;
	}
	.C-button + .C-button{
		margin-top: 3.8rem;
	}
	.C-button a{
		height: 8.8rem;
		border-radius: 4.4rem;
		font-size: 3rem;
	}
	.C-button a::after{
		width: 3rem;
		height: 3.2rem;
		right: 3rem;
	}
	/* カミングスーン（ホバー無効） */
		.C-button.-comingsoon a::before{
			font-size: 3rem;
		}

	.C-button span{
		border-radius: 4.4rem;
	}
	/* サイズ違い */
	.C-button.-small{
		width: 36rem;
	}
	.C-button.-small a{
		height: 8.8rem;
		border-radius: 4.4rem;
		font-size: 3rem;
	}
	.C-button.-small a::after{
		width: 3rem;
		height: 3.2rem;
		right: 2.4rem;
	}
	/* 別タブ */
	.C-button a[target="_blank"]::after{
		width: 2.9rem;
		height: 3.2rem;
	}

}



/*-------------------------------
	BGパーツ
-------------------------------*/
.bg__circle{
	width: 54rem; /*60rem;*/
	height: 54rem; /*60rem;*/
	border-radius: 50%;
	display: block;
	opacity: 0.16;
	position: absolute;
	z-index: -1;
}
.bg__circle-mini{
	width: 40.5rem; /*45rem;*/
	height: 40.5rem; /*45rem;*/
	border-radius: 50%;
	display: block;
	opacity: 0.16;
	position: absolute;
	z-index: -1;
}
.c-blue{
	background-image: radial-gradient(#00C4FF 0%, transparent 70%);
}
.c-pink{
	background-image: radial-gradient(#DB7093 0%, transparent 70%);
}
.c-orange{
	background-image: radial-gradient(#F0641E 0%, transparent 50%);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.bg__circle{
		width: 60rem;
		height: 60rem;
	}
	.bg__circle-mini{
		width: 45rem;
		height: 45rem;
	}
}


/*-------------------------------
	人を知る　MEMBER
-------------------------------*/
.member{
	padding-top: 16rem; /*20rem;*/
	padding-bottom: 12.5rem; /*15.5rem;*/
		background: #fff;
	position: relative;
	overflow: hidden;
}
	.member::after{
		width: 100%;
		height: 100%;
			background: var(--maincolor);
			border-top-left-radius: 5rem;
		position: absolute;
			left: 0;
			bottom: 0;
		display: block;
		content: "";
		z-index: 1;
	}
	.member::before{
		font-size: 20.8rem; /*26rem;*/
			color: rgba(255,255,255,0.05);
			font-family: var(--en_font1);
			line-height: 1;
			font-weight: 400;
		position: absolute;
			left: 0;
			top: -0.18em;
		display: block;
		content: "Interview";
		z-index: 1000;
	}
.member__container
.member__inner{
	overflow: visible;
	position: relative;
	z-index: 1000;
}
.member__inner .Contvisual__title{
	margin-bottom: 6rem;
}

/* ---member__swiper --- */
.member__swiper {
    width: 100%;
	margin-bottom: 5.1rem;
    overflow: visible;
}
.member__swiper .swiper-wrapper{
	align-items: center;
}

.member__swiper .swiper-slide {
    overflow: hidden;  /* スライドが外にはみ出さないように隠す */
    /* transform: scale(0.88); */
}
/* -----------Swiperのナビゲーションボタン--- */
	.member__swiper .swiper-button-prev, 
	.member__swiper .swiper-button-next {
		z-index: 10; /* ナビゲーションボタンが画像の上に来る */
		top: -10rem;
		width: 5rem;
		height: 5rem;
			border-radius: 50%;
			border: 1px solid #fff;
			background: var(--maincolor);
		transition: var(--transition);
	}
	.member__swiper .swiper-button-prev{    
		left: auto;
		right: 6.8rem;
	} 
	.member__swiper .swiper-button-next {    
		left: auto;
		right: 0;
	}
		.member__swiper .swiper-button-prev::after,
		.member__swiper .swiper-button-next::after{
			width: 1.8rem;
			height: 1.8rem;
			content: "";
			background-image: url(../images/common/icon_arrow2--white.svg);
			background-size: contain;
				background-repeat: no-repeat;
				background-position: center center;
		}
		.member__swiper .swiper-button-prev::after{
			transform: rotate(-180deg);
		}	
		/*------hover---*/
		.member__swiper .swiper-button-prev:hover, 
		.member__swiper .swiper-button-next:hover{		
			background: #fff;
		}
		.member__swiper .swiper-button-prev:hover::after, 
		.member__swiper .swiper-button-next:hover::after{	
			background-image: url(../images/common/icon_arrow2.svg);
		}
		
.member__swiper .swiper-slide {
	width: 31rem;
	/*margin-left: 4.3rem;
	margin-right: 4.3rem;*/
	height: auto;
}
.member__swiper .swiper-slide-item {
	height: 100%;
}
/* ---member__swiper --- */
.member__swiper-slide{
	/*width: 31rem;
	margin-right: 8.6rem;*/
	overflow: visible !important;
}
.member__swiper-slide a{
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
    display: block;
	position: relative;
	transition: var(--transition);
}
	/*-----hover----*/
	.member__swiper-slide a:hover{
		opacity: 1;
	}
.member__swiper-slide .member__img{
	width: 100%;
	height: 30.5rem; /*33.5rem; 0.9*/
	/* height: auto;
	aspect-ratio: 310 / 336; */
	position: relative;
	z-index: 2000;
	overflow: hidden;
}
	.member__swiper-slide .member__img img.ofi__cover {
		object-position: top;
		transition: var(--transition);
	}		
	/*-----hover----*/
	.member__swiper-slide a:hover .member__img img{
		transform: scale(1.05);
	}
.member__swiper-slide .member__text{
	width: 100%;
	background: #fff;
	padding: 2.5rem;
	position: relative;
	z-index: 3000;
}
.member__text .member__mds{
	width: 100%;
	padding-bottom: 0.72105263157em;
	margin-bottom: 0.763157894736em;
	font-size: 1.7rem; /*1.9rem*/
		color: var(--maincolor);
		letter-spacing: 0.01em;
		line-height: 1.578947368;
		font-weight: 700;
	position: relative;
}
	.member__text .member__mds::after{
		width: 100%;
		height: 1px;
		border-bottom: 1px dotted var(--maincolor);
		position: absolute;
			left: 0;
			bottom: 0;
		display: block;
		content: "";
	}
.member__text .member__affiliation{
	margin-bottom: 1rem;
	display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		gap: 1rem;
}
.member__text .member__affiliation li{
	padding: 0.25em 0.833333em;
		border-radius: 9999px;
	background: #DFEDF8;
	font-size: 1.2rem; /*1.2rem;*/
		line-height: 1;
		color: #0053A9;
		font-weight: 500;
		letter-spacing: 0.01em;
}
.member__text .member__name{
	font-size: 1.4rem; /*1.5rem;*/
		line-height: 1;
		color: var(--maincolor);
		font-weight: 500;
		letter-spacing: 0.01em;
}
/* 中央のスライドを拡大 */
.member__swiper .swiper-slide-active {
	/* width: 35rem; */
    /* transform: scale(1); *//* 中央に来たスライドはそのまま */
}
.member__swiper .swiper-slide-active a{
	width: calc(100% + 4rem);
	margin-left: -2rem;
}
.member__swiper .swiper-slide-active .member__img{
	height: 34.2rem; /*38rem;*/
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.member{
		padding-top: 21rem;
		padding-bottom: 15rem;
	}
		.member::before{
			font-size: 20rem;
				top: 0;
		}
		
	/* -----------Swiperのナビゲーションボタン--- */
		.member__swiper .swiper-button-prev, 
		.member__swiper .swiper-button-next {
			top: -12rem;
			width: 8rem;
			height: 8rem;
		}
		.member__swiper .swiper-button-prev{    
			left: auto;
			right: 1.5rem;
		} 
		.member__swiper .swiper-button-next {    
			left: auto;
			right: -9.8rem;
		}
			.member__swiper .swiper-button-prev::after,
			.member__swiper .swiper-button-next::after{
				width: 2.8rem;
				height: 2.8rem;
			}
	/* ---member__swiper --- */
	.member__swiper-slide{
		border-radius: 2rem;
	}
	.member__swiper-slide .member__img{
	}
	.member__swiper-slide .member__text{
		width: 100%;
		background: #fff;
		padding: 4.2rem 3.6rem 3.6rem 3.6rem;
	}
	.member__text .member__mds{
		font-size: 2.5rem;
	}
		.member__text .member__mds::after{
			height: 0.3rem;
			border-bottom: 0.3rem dotted var(--maincolor);
		}
	.member__text .member__affiliation{
		margin-bottom: 1.2rem;
			gap: 1rem;
	}
	.member__text .member__affiliation li{
		font-size: 2rem;
	}
	.member__text .member__name{
		font-size: 2.4rem;
	}
}
@media screen and (max-width:768px){
	
	.member{
		padding-top: 21rem;
		padding-bottom: 15rem;
	}
		.member::before{
			font-size: 20rem;
				top: 0;
		}
		
	/* -----------Swiperのナビゲーションボタン--- */
		.member__swiper .swiper-button-prev, 
		.member__swiper .swiper-button-next {
			top: -12rem;
			width: 8rem;
			height: 8rem;
		}
		.member__swiper .swiper-button-prev{    
			left: auto;
			right: 10.8rem;
		} 
		.member__swiper .swiper-button-next {    
			left: auto;
			right: 0;
		}
			.member__swiper .swiper-button-prev::after,
			.member__swiper .swiper-button-next::after{
				width: 2.8rem;
				height: 2.8rem;
			}
	/* ---member__swiper --- */
	.member__swiper .swiper-slide{
		width: 39.5rem;
		/*margin-left: 2.8rem;
		margin-right: 2.8rem;*/
	}
	.member__swiper .swiper-slide a{
		border-radius: 2rem;
	}
	.member__swiper-slide .member__img{
		height: 42.5rem;
	}
	.member__swiper-slide .member__text{
		width: 100%;
		background: #fff;
		padding: 4.2rem 3rem 3.6rem;
	}
	.member__text .member__mds{
		font-size: 2.1rem; /*2.4rem;*/
		padding-bottom: 2.7rem;
        margin-bottom: 1.8rem;
	}
		.member__text .member__mds::after{
			height: 0.3rem;
			border-bottom: 0.3rem dotted var(--maincolor);
		}
	.member__text .member__affiliation{
		margin-bottom: 1.2rem;
			gap: 1rem;
	}
	.member__text .member__affiliation li{
		font-size: 2rem;
		letter-spacing: -.1em;
	}
	.member__text .member__name{
		font-size: 2.4rem;
	}
	.member__swiper .swiper-slide-active .member__img{
		height: 48.2rem;
	}
}