@charset "utf-8";
/* basic layout */

/*全体の設定
---------------------------------------------------------------------------*/
body{
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, 'Verdana','Arial','Helvetica',Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	color: #000000;
}
@media screen and (max-width: 768px){
	body {
		/*background-image: url(../img/cmn/bg-cnts-sp.png);*/
		background-size: 100% auto;
		background-repeat: repeat-y;
	}
}
@supports (-ms-accelerator: true) {
	body {
		letter-spacing: -.03em;
	}
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img{
	max-width: 100%;
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
@media screen and (max-width:640px){
	img{
		max-width: 100%;
		height: auto;
		/*width /***//*:auto;*/
	}
}
input,textarea,select{
	/*font-size: .16em;*/
}
form{
	margin: 0px;
}
table{
	border-collapse:collapse;
	font-size: .16rem;
	border-spacing: 0;
}
@media screen and (max-width: 768px){
	html {
		font-size: 550%;
	}
}

h1, h2, h3, h4, h5, h6,
th {
	font-weight: 400;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
	transition-property: all;
	transition: 0.3s linear;
	color: inherit;
}
a:hover{
	cursor: pointer;
	opacity: 0.8;/* IE8 over, Opera, Safari, CSS3 over */
	transition-property: all;
	transition: 0.3s linear;
	text-decoration: none;
	color: inherit;
}
.trns {
	transition-property: all;
	transition: 0.3s linear;
}

/* 共通設定
---------------------------------------------------------------------------*/
#wrap{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
@media screen and (max-width: 768px){
	#wrap {
		margin-top: 0;
	}
}

/* clearfix */
.cf{
	zoom: 1
}
.cf:before, .cf:after{
	display: table;
	content: "";
}
.cf:after{
	clear: both;
}
.clear{
	clear: both;
}

/* flexbox */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.f-center{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.f-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.f-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.f-middle{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.f-bottom{
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.f-between{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.f-wrap{
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.f-column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.f-reverse{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.pc-bg-white {
	background: #FFFFFF;
	padding: 10px;
}
@media screen and (max-width: 768px){
	.sp-flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.sp-f-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.sp-f-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.sp-f-column{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.sp-f-column > *,
	.sp-f-column-reverse > * {
		width: 100%!important;
	}
	.sp-f-column-reverse {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.sp-f-wrap{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.sp-f-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.sp-f-middle {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.sp-f-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.sp-bg-white {
		background: #FFFFFF;
		padding: 10px;
	}

	.pc-bg-white {
		background: none;
		padding: 0px;
	}
}

/* 文字配置 */
.al-cnt {
	text-align: center;
}
.al-lft {
	text-align: left;
}
.al-rit {
	text-align: right;
}

/* フォント設定 */
.font-en {
	font-family: 'Franklin Gothic Medium', sans-serif;
}

/* レスポンシブ */
.view-sp,
.view-ssp {
	display: none;
}
@media screen and (max-width: 768px){
	.view-pc {
		display: none;
	}
	.view-sp {
		display: block;
	}
}
@media screen and (max-width: 480px){
	.view-ssp {
		display: block;
	}
}

/* position */
.pos-rel {
	position: relative;
}
.pos-abs {
	position: absolute;
}



/* inner
---------------------------------------------------------------------------*/
.inner-def {
	max-width: 1020px;
}
.inner-wide {
	max-width: 1390px;
}
.inner-def,
.inner-wide {
	width: 100%;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
}
@media screen and (max-width: 1019px){
	.inner-def,
	.inner-wide {
		padding-left: 2vw;
		padding-right: 2vw;
	}
}
@media screen and (max-width: 768px){
	.inner-def,
	.inner-wide {
		padding-left: 4vw;
		padding-right: 4vw;
	}
}

/* テキスト
---------------------------------------------------------------------------*/
/* 色 */
.clr-str {
	color: #809B09;
}
.clr-bright {
	color: #FFFFFF;
}
.clr-attr {
	color: #C93B28;
}

/* サイズ */
.tx-minimum {
	font-size: .1rem;
	line-height: 160%;
}
.tx-desc {
	font-size: .15rem;
	line-height: 160%;
}
.tx-def {
	font-size: .16rem;
	line-height: 160%;
}
.tx-minttl {
	font-size: .3rem;
	line-height: 160%;
}


/*

.tx-mmin {
	font-size: .14rem;
	line-height: 160%;
}

.tx-min,
.tx-date {
	font-size: .16rem;
	line-height: 160%;
}
.tx-lead,
.tx-addr {
	font-size: .18rem;
	line-height: 160%;
}
.tx-mminttl {
	font-size: .2rem;
	line-height: 160%;
}
.tx-minttl {
	font-size: .21rem;
	line-height: 160%;
}
.tx-defttl {
	font-size: .22rem;
	line-height: 160%;
}
.tx-minnames {
	font-size: .24rem;
	line-height: 160%;
}
.tx-names {
	font-size: .25rem;
	line-height: 160%;
}
.tx-catch {
	font-size: .27rem;
	line-height: 160%;
}
.tx-price {
	font-size: .3rem;
	line-height: 160%;
}
.tx-larcatch {
	font-size: .36rem;
	line-height: 160%;
}
.tx-larprice {
	font-size: .38rem;
	line-height: 160%;
}
.tx-bignum {
	font-size: .4rem;
	line-height: 160%;
}
.tx-bigprice {
	font-size: .45rem;
	line-height: 160%;
}*/
@media screen and (max-width: 768px){
	.tx-mmin {
		font-size: 2.3vw;
	}
	.tx-desc {
		font-size: 2.6vw;
		line-height: 160%;
	}
	.tx-def {
		font-size: 3.8vw;
		line-height: 160%;
	}
	.tx-minttl {
		font-size: 6vw;
		line-height: 160%;
	}
	
	/*.tx-min,
	.tx-date {
		font-size: 2.8vw;
		line-height: 160%;
	}
	.tx-lead,
	.tx-addr {
		font-size: 3.2vw;
		line-height: 160%;
	}
	.tx-mminttl {
		font-size: 3.8vw;
		line-height: 160%;
	}
	.tx-minttl {
		font-size: 4vw;
		line-height: 160%;
	}
	.tx-defttl {
		font-size: 4.2vw;
		line-height: 160%;
	}
	.tx-minnames {
		font-size: 4.5vw;
		line-height: 160%;
	}
	.tx-names {
		font-size: 4.7vw;
		line-height: 160%;
	}
	.tx-catch {
		font-size: 5vw;
		line-height: 160%;
	}
	.tx-larcatch {
		font-size: 5.5vw;
	}
	.tx-price,
	.tx-bigprice,
	.tx-larprice,
	.tx-bignum {
		font-size: 6vw;
		line-height: 160%;
	}*/
}
@media screen and (max-width: 480px){
	.tx-minimum {
		font-size: 3vw;
		line-height: 160%;
	}
	.tx-mmin {
		font-size: 3.3vw;
	}
	.tx-desc {
		font-size: 3.6vw;
		line-height: 160%;
	}
	.tx-min,
	.tx-date {
		font-size: 3.8vw;
		line-height: 160%;
	}
	.tx-lead,
	.tx-addr {
		font-size: 4.2vw;
		line-height: 160%;
	}
	.tx-mminttl {
		font-size: 4.8vw;
		line-height: 160%;
	}
	.tx-minttl {
		font-size: 5vw;
		line-height: 160%;
	}
	.tx-defttl {
		font-size: 5.2vw;
		line-height: 160%;
	}
	.tx-minnames {
		font-size: 5.5vw;
		line-height: 160%;
	}
	.tx-names {
		font-size: 5.7vw;
		line-height: 160%;
	}
	.tx-catch {
		font-size: 6vw;
		line-height: 160%;
	}
	.tx-larcatch {
		font-size: 6.5vw;
	}
	.tx-price,
	.tx-bigprice,
	.tx-larprice,
	.tx-bignum {
		font-size: 7vw;
		line-height: 160%;
	}
}



/* 飾り */
.tx-str {
	font-weight: 700;
}






/* ヘッダー
---------------------------------------------------------------------------*/
#hd .logo-hd {
	position: absolute;
	top: 35px;
	left: 35px;
	z-index: 90000;
}
#hd .logo-hd img {
	width: 280px;
}
#hd .menu-hd {
	position: fixed;
	top: 35px;
	right: 35px;
	z-index: 90000;
}


@media screen and (max-width: 768px){
	#hd .logo-hd {
		top: 2.5vw;
		left: 2.5vw;
	}
	#hd .menu-hd {
		top: 2.5vw;
		right: 2.5vw;
	}
	.logo-hd h1 img {
		display: block;
		width: 41.46vw;
	}
	.btn-menu img {
		width: 13.5vw;
	}
}


/* メニュー
---------------------------------------------------------------------------*/
.block-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #000000;
	overflow-y: scroll;
	z-index: -9000;
	opacity: 0;
	transition-property: all;
	transition: 0.3s linear;
}
.block-menu.active {
	top: 0;
	opacity: 1;
	z-index: 95000;
}
.inner-menu {
	padding: 35px;
	background-color: #FFFFFF;
}
.hd-menu {
}
.lst-menu {
	margin-top: 50px;
}
.lst-menu li {
	text-align: center;
	font-size: .3rem;
	line-height: 100%;
}
.lst-menu li + li {
	margin-top: 45px;
}
.lst-menu li.icon-insta {
}
.lst-menu li.icon-insta > * + * {
	margin-left: 10px;
}

.icon-sns {
	margin-top: 45px;
}
.icon-sns > * + * {
	margin-left: 10px;
}
.fb_iframe_widget > span {
	display: block!important;
}
.icon-insta {
	text-align: center;
	margin-top: 65px;
}
@media screen and (max-width: 768px){
	.inner-menu {
		padding: 2.5vw;
	}
	.lst-menu {
		margin-top: 10vw;
	}
	.lst-menu li {
		font-size: 5vw;
	}
	.lst-menu li + li {
		margin-top: 5vw;
	}
	.lst-menu li.icon-insta {
		margin-top: 12vw;
	}
	.lst-menu li.icon-insta img {
		width: 10vw;
	}
}


/* ボタン */
.btn-new a {
	width: 100%;
	height: 123px;
	background-color: #009ee2;
}
.btn-new,
.btn-career {
	font-size: .3rem;
	line-height: 100%;
	color: #FFFFFF;
}
.btn-new span {
	position: relative;
	padding-right: 10px;
}
.btn-new span::after {
	position: absolute;
	content: "";
	width: 44px;
	height: 37px;
	right: -50px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background-image: url(../img/cmn/btn-mv-arw.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.btn-career a {
	width: 100%;
	height: 123px;
	background-color: #164982;
}
.btn-career span {
	position: relative;
	padding-right: 10px;
}
.btn-career span::after {
	position: absolute;
	content: "";
	width: 44px;
	height: 37px;
	right: -50px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background-image: url(../img/cmn/btn-mv-arw.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
@media screen and (max-width: 768px){
	.btn-new a,
	.btn-career a {
		height: 10vw;
	}
	.btn-new,
	.btn-career {
		font-size: 3vw;
	}
	.btn-new span,
	.btn-career span {
		padding-right: 1vw;
	}
	.btn-new span::after,
	.btn-career span::after {
		width: 5vw;
		height: 5vw;
		right: -6vw;
	}
}


/* フッター
---------------------------------------------------------------------------*/
#ft {
	width: 100%;
	margin-top: 90px;
	padding-top: 60px;
	background-color: #e8e8e8;
}
.lst-icon-ft li + li {
	margin-left: 5px;
}
.lst-bana-ft {
	margin-top: 60px;
}
.lst-btm-ft {
	margin-top: 60px;
	padding: 0 30px 20px;
}
@media screen and (max-width: 768px){
	#ft {
		margin-top: 10vw;
		padding-top: 10vw;
	}
	.lst-icon-ft li {
		width: 8vw;
	}
	.lst-icon-ft li + li {
		margin-left: 1vw;
	}
	.lst-bana-ft {
		margin-top: 6vw;
	}
	.lst-bana-ft li:nth-of-type(1),
	.lst-bana-ft li:nth-of-type(2),
	.lst-bana-ft li:nth-of-type(3),
	.lst-bana-ft li:nth-of-type(4),
	.lst-bana-ft li:nth-of-type(5) {
		width: 40%;
		margin-left: 3vw;
		margin-right: 3vw;
	}
	.lst-btm-ft {
		margin-top: 8vw;
	}
	.lst-btm-ft li {
		text-align: center;
	}
	.lst-btm-ft li + li {
		margin-top: 5vw;
	}
	.lst-btm-ft li:first-of-type a {
		text-decoration: underline;
	}
}


/* 個人情報保護方針
---------------------------------------------------------------------------*/
#modal-main {
	display: none;
	width: 80%;
	height: 80vh;
	margin: 0;
	padding: 30px;
	background-color: #ffffff;
	position:fixed;
	z-index: 92000;
	overflow-y: scroll;
}
#modal-bg {
	display:none;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.7);
	position:fixed;
	top:0;
	left:0;
	z-index: 90000;
}
.ttl-privacy {
	margin-bottom: .3em;
	font-weight: 700;
}
.lead-privacy {
	line-height: 180%;
}
.lead-privacy + * {
	margin-top: 1em;
}
.lead-privacy dt {
	font-weight: 400;
}
.lead-privacy dd {
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.lead-privacy dd::before {
	content: "●";
	margin-right: .5em;
}
.lead-privacy .ind {
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.lead-privacy .ind::before {
	content: "■";
	margin-right: .5em;
}
.lead-privacy .ind2 {
	padding-left: 2.5em;
}

.btn-private {
	position: absolute;
	right: 30px;
	top: 30px;
}
@media screen and (max-width: 768px){
	.inner-modal {
		padding: 3vw;
	}
}

.intbl {
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 25px;
}
.tbl-pri {
	width: 100%;
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
}
.tbl-pri th,
.tbl-pri td {
	padding: 10px 10px;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
}
.lead-privacy a {
	color: #2b6bab;
	text-decoration: underline;
}


/* ページトップボタン
---------------------------------------------------------------------------*/
.block-pagetop {
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 94000;
}
@media screen and (max-width: 768px){
	.block-pagetop {
		right: 3vw;
		bottom: 3vw;
	}
	.block-pagetop img {
		width: 8.5vw;
	}
}



/* コンテンツ内共通パーツ
---------------------------------------------------------------------------*/
/* タイトル */
.ttl-cnts {
	margin-top: 90px;
	font-family: 'Franklin Gothic Medium', sans-serif;
	text-align: center;
	font-size: .48rem;
	line-height: 160%;
	letter-spacing: .05em;
}
.ttl-cnts-ja {
	margin-bottom: 40px;
	font-size: .18rem;
	line-height: 160%;
	text-align: center;
	font-weight: 700;
}
@media screen and (max-width: 768px){
	.ttl-cnts {
		margin-top: 10vw;
		font-size: 8vw;
		line-height: 100%;
	}
	.ttl-cnts-ja {
		margin-top: 2vw;
		margin-bottom: 6vw;
		font-size: 4vw;
		line-height: 100%;
	}
}

/* もっと見るボタン */
.btn-more {
	margin-top: 20px;
	text-align: right;
	font-size: .13rem;
	line-height: 100%;
}
.btn-more a {
	position: relative;
	padding-right: 25px;
}
.btn-more a::after {
	position: absolute;
	content: "";
	right: 0;
	top: 50%;
	width: 22px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url(../img/cmn/btn-more.png);
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);	
}
@media screen and (max-width: 768px){
	.btn-more {
		margin-top: 3vw;
		font-size: 3vw;
	}
	.btn-more a {
		padding-right: 6vw;
	}
	.btn-more a::after {
		width: 5vw;
		height: 4vw;
	}
}

/* ニュース */
.lst-news li {
	width: 32%;
	border: 1px solid #696969;
}
.lst-news li + li {
	margin-left: 2%;
}
.lst-news li a {
	display: block;
	width: 100%;
	height: 100%;
}
.fig-news {
	position: relative;
}
.icon-news {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	padding: 0 15px;
	font-size: .12rem;
	line-height: 24px;
	color: #FFFFFF;
	z-index: 10;
}
.icon-news {
	background-color: #009ee2;
}
.icon-new {
	background-color: #009ee2;
}
.icon-career {
	background-color: #164982;
}
.tx-news {
	padding: 15px;
}
.genre-news {
	display: inline-block;
	height: 20px;
	padding: 0 15px;
	background-color: #bfbfbf;
	font-size: .12rem;
	line-height: 20px;
	color: #5b5a5a;
}
.date-news {
	margin-top: 10px;
	color: #abaaaa;
	font-size: .1rem;
	line-height: 150%;
}
.lead-news {
	padding: 0 15px 15px;
	color: #5b5a5a;
	font-size: .13rem;
	line-height: 150%;
}
@media screen and (max-width: 768px){
	.icon-news,
	.genre-news {
		height: 4vw;
		padding: 0 2vw;
		font-size: 2.8vw;
		line-height: 4vw;
	}
	.date-news {
		margin-top: 2vw;
		font-size: 3vw;
	}
	.lst-news li a.sp-flex {
		display: flex;
	}
	.lst-news li a.sp-flex .fig-news {
		width: 45%;
	}
	.lst-news li a.sp-flex .tx-news {
		width: 48%;
		padding: 3vw;
	}
	.lst-news li a.sp-flex .tx-news + p {
		margin-top: 0;
		padding: 3vw;
	}
	.lst-news li + li {
		margin-left: 0;
		margin-top: 3vw;
	}
}

/* 社員インタビュー */
.lst-interview {
	margin-top: 40px;
}
.lst-interview li {
	width: 47.8%;
}
.lst-interview li a {
	position: relative;
	height: 177px;
	padding: 30px;
	border-radius: 6px;
	border-radius: 6px;
	background-color: #009ee2;
	color: #FFFFFF;
}
.lst-interview li + li {
	margin-top: 15px;
}
.lst-interview li:nth-of-type(2) {
	margin-top: 0;
}
.lst-interview li:nth-of-type(4n - 2) a,
.lst-interview li:nth-of-type(4n - 1) a {
	background-color: #164982;
}
.tx-interview {
	width: 45%;
	font-size: .13rem;
	line-height: 150%;
}
.years-interview {
	margin-bottom: 5px;
}
.department-interview {
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #FFFFFF;
}
.fig-interview {
	position: absolute;
	right: 20px;
	bottom: 0px;
	z-index: 1;
}
@media screen and (max-width: 768px){
	.lst-interview {
		margin-top: 8vw;
	}
	.lst-interview li + li,
	.lst-interview li:nth-of-type(2) {
		margin-top: 3vw;
	}
	.lst-interview li a {
		height: auto;
		padding: 5vw 3vw;
	}
	.fig-interview {
		right: 2vw;
	}
	.fig-interview img {
		width: 30vw;
	}
	.tx-interview {
		width: 65%;
	}
}

/* フッター前ボタン */
.block-ftbtn {
	margin-top: 100px;
}
@media screen and (max-width: 768px){
	.block-ftbtn {
		margin-top: 10vw;
	}
}

/* 下層メインビジュアル */
.block-mv-sec {
	position: relative;
	margin-bottom: 75px;
}
.ttl-mv-sec {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: .59rem;
	color: #006bb0;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	white-space: nowrap;
	text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
.fig-mv-sec img {
	width: 100%;
	height: 535px;
	object-fit: cover;
	object-position: center;
	font-family: "object-fit: cover; object-position: center;";
}
@media screen and (max-width: 768px){
	.block-mv-sec {
		margin-bottom: 8vw;
	}
	.ttl-mv-sec {
		width: 100%;
		padding: 0 3vw;
		font-size: 6.5vw;
	}
	.fig-mv-sec img {
		height: 60vw;
	}
}

/* staff
---------------------------------------------------------------------------*/
.block-staff .lst-interview li a {
	border-radius: 6px 6px 0 0;
	border: 1px solid #676767;
	border-bottom: 1px solid transparent;
}
.block-staff .lst-interview li.cur a {
	background-color: #fff;
	color: #000;
}
.block-staff .staffbox {
	padding: 40px 30px 50px;
}
.tab-cnts {
	border: 1px solid #515151;
	margin-top: -1px;
}
.profile-cmt + .profile-cmt {
	margin-top: 50px;
}
.profile-cmt .profile-txt {
	width: 48.64%;
}
.profile-cmt .profile-img {
	width: 48.4%;
	text-align: center;
}
.profile-cmt .profile-txt dt {
	font-size: .24rem;
	margin-bottom: 30px;
}
.profile-cmt .profile-txt dd {
	font-size: .16rem;
	margin-top: 20px;
}
.schedule {
	margin-top: 55px;
}
.schedule .schedule-txt {
	width: 49%;
	border-left: 2px solid #b5b5b5;
}
.schedule .schedule-txt dl {
}
.schedule .schedule-txt dl.row2 {
	margin-top: 15px;
}
.schedule .schedule-txt dl.row3 {
	margin-top: 40px;
}
.schedule .schedule-txt dl.row4 {
	margin-top: 60px;
}

.schedule .schedule-txt dl dt {
	position: relative;
	padding-left: 55px;
	margin-right: 25px;
}
.schedule .schedule-txt dl dt::before {
	content: "";
	display: block;
	width: 28px;
	height: 3px;
	background: #000;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	left: 0;
}
.schedule .schedule-img {
	width: 48.4%;
	text-align: center;
}


@media screen and (max-width: 768px){
	.lst-interview li a {
		border-bottom: 1px solid #676767;
		border-radius: 6px;
	}
	.tab-cnts {
		margin-top: 3vw;
	}
	.staffbox {
		padding: 5vw 3vw;
	}
	.block-profile .profile-cmt {
		margin-top: 10vw;
		padding: 0;
	}
	.block-profile .profile-cmt.odd .profile-txt {
		float: none;
		width: 100%;
		margin-top: 20px;
	}
	.profile-img {
		margin-bottom: 5vw;
	}
	.profile-cmt .profile-txt dt {
		margin-bottom: 0;
		font-size: 4vw;
		line-height: 140%;
	}
	.profile-cmt .profile-txt dd {
		margin-top: 3vw;
		font-size: 3.5vw;
		line-height: 160%;
	}
	.profile-cmt + .profile-cmt {
		margin-top: 5vw;
	}
	.block-profile .profile-cmt .profile-img img {
		width: 100%;
	}
	.block-profile .profile-cmt .profile-txt dt {
		font-size: 4vw;
		margin-bottom: 5vw;
	}
	.block-profile .profile-cmt .profile-txt dd {
		font-size: 3vw;
		margin-top: 5vw;
	}
	.schedule {
		padding: 0;
		margin-top: 10vw;
	}
	.schedule .schedule-txt {
		float: none;
		width: 100%;
		margin-top: 5vw;
		font-size: 3.5vw;
	}
	.schedule .schedule-img {
		float: none;
		width: 100%;
	}
	.schedule .schedule-img img{
		width: 100%;
	}
	.schedule .schedule-txt dl {
		margin-top: 1vw;
	}
	.schedule .schedule-txt dl.row2 {
		margin-top: 3vw;
	}
	.schedule .schedule-txt dl.row3 {
		margin-top: 5vw;
	}
	.schedule .schedule-txt dl.row4 {
		margin-top: 7vw;
	}

	/* タイムテーブル */
	.block-staff .staffbox {
		padding: 5vw 3vw;
	}
	.schedule .schedule-txt {
		font-size: 3.2vw;
	}
	.schedule .schedule-txt dl dt::before {
		width: 2.5vw;
		height: 1px;
	}
	.schedule .schedule-txt dl dt {
		padding-left: 4vw;
		margin-right: 2vw;
	}
	.schedule .schedule-txt dl,
	.schedule .schedule-txt dl.row2,
	.schedule .schedule-txt dl.row4,
	.schedule .schedule-txt dl.row3 {
		margin-top: 2vw;
	}
	.schedule .schedule-txt dl:first-of-type {
		margin-top: 0;
	}
}

/* フォーム */
.tbl-form {
	margin-bottom: 50px;
	margin-top: 20px;
	width: 100%;
	border-top: 1px solid #DBDBDB;
	border-left: 1px solid #DBDBDB;
}
.tbl-form th,
.tbl-form td {
	padding: 20px 10px;
	border-bottom: 1px solid #DBDBDB;
	border-right: 1px solid #DBDBDB;
	font-size: .16rem;
	line-height: 140%;
}
.tbl-form td .f10 {
	font-size: .12rem;
	line-height: 140%;
}
.tbl-form th {
	width: 30%;
	background-color: #F0F0F0;
}
.tbl-form td .flex > * + * {
	margin-left: 5px;
}

.tbl-form th span {
	color: #ff6600;
	float: right;
	vertical-align: middle;
}
.tbl-form input[type="text"],
.tbl-form input[type="email"],
.tbl-form input[type="file"] {
	font-size: .16rem;
	padding: 5px;
	border: 1px solid #CCC;
	-webkit-appearance : none
}
.tbl-form select {
	height: 28px;
	padding: 0 10px;
	font-size: .16rem;
	-webkit-appearance : none
}


.tbl-form .mr10 {
	margin-right: 10px;
}
.tbl-form .mr5 {
	margin-right: 5px;
}
.tbl-form .mb5 {
	margin-bottom: 5px;
}
.tbl-form input.w150 {
	width: 150px;
}
.tbl-form input.w70 {
	width: 70px;
}
.tbl-form input.w35 {
	width: 35px;
}
.tbl-form input.w40 {
	width: 40px;
}
.tbl-form input.w60 {
	width: 60px;
}
.tbl-form input.w300 {
	width: 300px;
}
.tbl-form input.w100 {
	width: 100px;
}
.tbl-form .point_02 {
    background-image: url(../img/career/common_point.png);
    background-repeat: no-repeat;
    background-position: left 3px;
    padding-left: 20px;
    color: #306194!important;
    font-weight: bold;
}
.hissu {
	color: #ff6600;
}
.box-files {
	margin-top: 20px;
}
.box-files label {
	width: 100%;
	padding: 10px;
	border: 2px dashed #ff3300;
	color: #ff3300;
}
.box-files label > * {
	margin: 0 5px;
}

@media screen and (max-width: 768px){
	.tbl-form {
		margin-top: 8vw;
		margin-bottom: 10vw;
	}
	.tbl-form td,
	.tbl-form th {
		display: block;
		width: 100%;
		padding: 3vw;
	}
	.tbl-form input.w300 {
		width: 100%;
	}
	.tbl-form input.w150 {
		width: 30vw;
	}
	.tbl-form .point_02 {
		margin-top: 2vw;
	}
	.box-files {
		margin-top: 5vw;
	}
	.box-files label {
		padding: 3vw;
	}
}


/* メンテナンス
---------------------------------------------------------------------------*/
.block-m-message {
	margin-top: 200px;
}

.box-ttl-message {
	max-width: 990px;
	width: 100%;
	margin: 0 auto 60px
}
.box-ttl-message p {
	font-size: .22rem;
	line-height: 160%;
	color: #1b4a82;
	font-weight: 700;
}
.box-message p + p {
	margin-top: 1em;
}
@media screen and (max-width: 768px){
	.block-m-message {
		margin-top: 20vw;
	}
	.box-ttl-message {
		margin-bottom: 8vw;
	}
	.box-ttl-message p {
		font-size: 4vw;
		line-height: 160%;
	}
}



/* インスタグラムタイムライン
---------------------------------------------------------------------------*/
.hd-insta {
	margin-bottom: 10px;
}
.logo-insta-aoyama {
	margin-right: 20px;
}

#instatimeline li {
	display: none;
	width: 31%;
}
#instatimeline li img {
	width: 100%;
	height: 310px;
	object-fit: cover;
	object-position: center;
	font-family: "object-fit: cover; object-position: center;";
}
#instatimeline li:nth-of-type(1),
#instatimeline li:nth-of-type(2),
#instatimeline li:nth-of-type(3) {
	display: block;
}
.instagram-data {
	display: none;
}

.ft-insta {
	margin-top: 30px;
}
.ft-insta > * {
	margin: 0 5px;
}
@media screen and (max-width: 768px){
	.hd-insta {
		margin-bottom: 3vw;
	}
	.hd-insta .lft img {
		width: 10vw;
	}
	.hd-insta .rit {
		text-align: right;
	}
	.hd-insta .rit img {
		height: 10vw;
	}
	#instatimeline li img {
		height: 30vw;
	}
	.ft-insta {
		margin-top: 5vw;
	}
}


/* 個人情報保護方針つい気分 */
.model-heading {
  font-size: 36px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 20px;
}
.model-body {
  font-size: 18px;
  line-height: 1.6;
  color: #2f2f2f;
}
.model-body .pr2em {
  padding-right: 2em;
}
.model-body p, .model-body h3, .model-body ul, .model-body ol, .model-body table {
  margin-bottom: 15px;
}
.model-body h3 {
  font-size: 1.3em;
  font-weight: 700;
}
.model-body ol > li {
  counter-increment: inst;
}
.model-body ol > li:before {
  content: "(" counter(inst) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.model-body ol.custom > li {
  counter-increment: inst2;
}
.model-body ol.custom > li:before {
  content: counter(inst2) ".";
  left: 0.05em;
}
.model-body ul > li {
  padding-left: 1em;
}
.model-body ul > li:before {
  position: absolute;
  font-size: 0.8em;
  top: 0.3em;
  left: 0.5em;
}
.model-body ol, .model-body ul {
  list-style: none;
}
.model-body ol li, .model-body ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 15px;
}
.model-body table th, .model-body table td {
  border: 1px solid #eee;
  padding: 10px;
}
.privacy-page h3 {
	font-size: 20px;
	font-weight: 400;
	color: #0152AE;
}

.privacy-page h3:after {
	display: block;
	content: " ";
	margin: 20px 0;
	width: 50px;
	border-bottom: solid 2px #0152AE;
}
@media only screen and (max-width: 767px) {
  .model-content {
    width: 90%;
    max-height: 95%;
    overflow: auto;
  }
  .model-heading {
    font-size: 26px;
  }
  .model-body {
    font-size: 14px;
  }
  .model-body .pr2em {
    padding-right: 0;
  }
}


.instagram-box {
	border: none;
	background-color: #FFF;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.instagram-box li {
	font-size: 14px;
	border: 1px solid #aaa;
	width: calc(33.3% - 30px);
	margin: 2px;
	position: relative;
}

.instagram-box li:before {
	content: "";
	display: block;
	padding-top: 100%
}

.instagram-box img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

@media screen and (max-width: 768px){
	.instagram-box {
		flex-flow: column;
	}

	.instagram-box li {
		width: calc(100% - 30px);
		margin: 5px;
	}
}
