@charset "utf-8";

body {
	min-width:none;
	-webkit-text-size-adjust:100%;
	height:100%;
	line-height: 1.9;
}

#MDQ{display:none;}

.spNone{display:none !important;}


/*---------------------------------------------------------------------------
　コンテンツ大枠
---------------------------------------------------------------------------*/
#container {
	width:100%;
}

.contents_window {
	clear: both;
	width: auto;
	margin:0 auto;
}

#contents_window p{word-wrap: break-word;}

.ContentsBox960{width:auto; margin:0 15px;}
.ContentsBox1200{width:auto; margin:0 15px;}


/*----------------------------------------------------------------------------------------
共通CSS
----------------------------------------------------------------------------------------*/

/*------------　ページトップ　-----------*/

.pagetopBtn {
    position: fixed;
	width: 58px;
	height: 58px;
    bottom: 15px;
    right: 15px;
	margin: auto;
    padding: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	background-color: #754C24;
	border-radius: 50%;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
	box-sizing: border-box;
	font-size: 12px;
	text-decoration:none;
	text-align: center;
	color:#fff;
	z-index: 999;
	line-height: 1.5;
	border: 2px solid #fff;
}

.pagetopBtn:hover {
	filter: alpha(opacity=75);
	opacity: 0.75;
	-moz-opacity: 0.75;
	text-decoration: none;
	color:#fff;
}


/*---------------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------------*/
#header{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
	z-index: 10005;
}

.headerContents{
	max-width: 100%;
	padding: 30px 0 15px;
	margin: 0 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.header_logoBox01{
	margin-bottom: 15px;
	display: none;
}

.header_logoBox01 h1{
	font-size: 0;
}

.header_logoBox01 a{
	display: block;
	width: 93px;
	text-align: center;
}
.header_logoBox01 a .logo{
	width: 68px;
	margin-bottom: 15px;
}

.header_logoBox02 p{
	margin: 0 auto;
	width: 80%;
	font-size: 0;
}

/*---------- ヘッダー追従 ----------*/
#header.active{
	position: fixed;
	top: 38px;
	left: 0;
	padding-top: 10px;
	display: none;
	/* transition: 0.6s ease; */
}

#header.open{
	display: block;
	opacity: 1;
}

@keyframes anim_logo {
	0% { opacity: 0;}
  100% { opacity: 1;}
}

.active .headerContents{
	opacity: 0;
	animation: anim_logo 0.50s 0.25s ease-in-out forwards;
}


/*---------------------------------------------------------------------------
ナビゲーション
---------------------------------------------------------------------------*/
#navSection{
	display: flex;
	/* flex-direction: column; */
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.navigationBox{
	width: 100%;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10001;
}

.nav_logoBox{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	background-color: #3a9f86;
}

.nav_logoBox p{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 104px;
	height: 100%;
}

.nav_open{
	width: 38px;
	height: 38px;
	padding: 8px 0;
	box-sizing: border-box;
	background-color: #2c7765;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 10005;
}

.nav_open span{
	display: block;
	width: 23px;
	height: 4px;
	background-color: #fff;
	transition: 0.3s ease;
}

.nav_open.open span:nth-child(1){
	-webkit-transform: translate(0px, 9px) rotate(45deg);
	transform: translate(0px, 9px) rotate(45deg);
	transition: 0.3s ease;
}
.nav_open.open span:nth-child(2){
	opacity: 0;
	transition: 0.3s ease;
}
.nav_open.open span:nth-child(3){
	-webkit-transform: translate(0px, -9px) rotate(-45deg);
	transform: translate(0px, -9px) rotate(-45deg);
	transition: 0.3s ease;
}

.navLinkBox{
	/* -webkit-overflow-scrolling: touch; */
	/* overflow: auto; */
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10000;
/*	padding-top: 60%;*/
	padding-top: 30%;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	transition: 0.6s ease;
}

.navLinkBox.open{
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.navLinkBox ul{
	-webkit-overflow-scrolling: touch;
	margin: 0 50px;
	overflow: auto;
	height: 50%;
	display: none;
}

.navLinkBox.open ul{
	display: block;
}

.navLinkBox ul li{
	opacity: 0;
	border-bottom: 1px solid #231815;
}

@keyframes anim_navi {
	  0% { opacity: 0.0; transform: translate(100px, 0px);}
	100% { opacity: 1.0; transform: translate(0px, 0px); }
}

.navLinkBox ul li.Nav01{ animation: anim_navi 0.3s ease 0.2s 1 forwards;}
.navLinkBox ul li.Nav02{ animation: anim_navi 0.3s ease 0.3s 1 forwards;}
.navLinkBox ul li.Nav03{ animation: anim_navi 0.3s ease 0.4s 1 forwards;}
.navLinkBox ul li.Nav04{ animation: anim_navi 0.3s ease 0.5s 1 forwards;}
.navLinkBox ul li.Nav05{ animation: anim_navi 0.3s ease 0.6s 1 forwards;}
.navLinkBox ul li.Nav06{ animation: anim_navi 0.3s ease 0.7s 1 forwards;}
.navLinkBox ul li.Nav07{ animation: anim_navi 0.3s ease 0.8s 1 forwards;}
.navLinkBox ul li.Nav08{ animation: anim_navi 0.3s ease 0.9s 1 forwards;}
.navLinkBox ul li.Nav09{ animation: anim_navi 0.3s ease 0.10s 1 forwards;}
.navLinkBox ul li.Nav10{ animation: anim_navi 0.3s ease 0.11s 1 forwards;}

.navLinkBox ul li a{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	display: block;
	padding: 10px 20px;
	font-size: 18px;
	position: relative;
}
.navLinkBox ul li a::after{
	content: "≫";
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.megaMenu_scrollPrevent{
    position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

/*---------- ヘッダー追従 ----------*/
#navSection.active{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	/* background-color: #3a9f86; */
}

@keyframes anim_navLogo {
	  0% { opacity: 0.0;}
  	100% { opacity: 1.0;}
}

.active .nav_logoBox{
	width: 100%;
	animation: anim_navLogo 0.25s ease 0.00s 1 forwards;
}

.active .nav_logoBox p{
	position: static;
	z-index: 1;
}
.active .nav_logoBox p::before{
	display: none;
}

.active .nav_open{
	position: fixed;
	top: 0;
	right: 0;
	animation: anim_navLogo 0.25s ease 0.00s 1 forwards;
}


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

#footer {
	width:100%;
	min-width:none;
	clear:both;
	margin:0 auto;
	background-color:#fff;
}

.footer_contents{
	width:auto;
	margin:0 auto;
	padding:20px 0 40px;
	font-size: 12px;
}

.footer_copy{text-align:center;}

.footer_grassBox img{
	width: 1200px;
}


/*---------------------------------------------------------------------------
移10生活
---------------------------------------------------------------------------*/

.mainVisual{
	text-align: center;
	position: relative;
	margin: 0 auto;
	padding-top: 30px;
	box-sizing: border-box;
}

.mainVisual h1{
	position: absolute;
	top: 17%;
	left: 0;
	right: 0;
	margin: auto;
	width: 80%;
}


.mapWrap{
	padding: 10px 0 0;
	margin: 0 auto;
	background-color: #44b182;
	color: #fff;
}

.mapWrap h2{
	text-align: center;
	margin-bottom: 10px;
	line-height: 1.2;
}

.mapWrap h2 img{
	width: 95%;
}

.lsPRBox{
    text-align: center;
    padding: 50px 0 20px;
}

.lsPR_Title{
    margin: 0 0 25px;
}

.lsPR_Title img{
    width: 76%;
}

.lsPR_LinkBtn{
    display: block;
    font-size: 18px;
    font-weight: bold;
    background-color: #05651F;
    color: #fff;
    width: 100%;
    padding: 10px 10px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 50px;
}

.mapWrap_contents{
	margin-top: 40px;
}

.mapTextBox{
	box-sizing: border-box;
	color: #fff;
	padding: 0 0 20px;
	margin: 0 15px;
}

.mapTextBox h3{
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
}

.mapTextBox .minText{
	margin-top: 10px;
	font-size: 13px;
}

.mapTextBox .minText a{
	color: #fff;
	text-decoration: underline;
}

.mapSelectBox{
	box-sizing: border-box;
	background: url(../image/mapback_sp.png) center top no-repeat;
	background-size: 100% auto;
	padding-top: 188%;
}

.mapSelectBox .innerPC{
	display: none;
}

.mapSelectBox .innerSP{
	margin: 0 15px;
	color: #fff;
}

.mapSelectBox .innerSP h3{
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	margin: 0 0 3px;
}

.mapSelectBox .innerSP ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.mapSelectBox .innerSP li{
	font-size: 14px;
	width: 48%;
	text-align: center;
	margin-bottom: 11px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

.mapSelectBox .innerSP li:nth-child(2n){margin-left: auto;}

.mapSelectBox .innerSP li a{
	padding: 4px 7px;
	display: block;
	box-sizing: border-box;
	background-color: #fff;
	color: #44b182;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

.mapSelectBox .innerSP li a:hover{
	text-decoration: none;
}

.map_LinkBox{
	padding: 20px 0 10px;
	text-align: center;
}

.map_LinkBox a{
	display: inline-block;
	margin: 0 15px;
	background-color: #663300;
	padding: 10px 60px;
	border-radius: 50px;
	box-shadow: 0px 5px 0px 0px #1d6445;
}

.map_LinkBox a:hover{
	box-shadow: 0px 0px 0px 0px #1d6445;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
	background-color: #984c00;
}


.grassImg01{
	text-align: center;
}

.grassImg01 img{width: 100%;}

.grassImg02{
	text-align: center;
}

.grassImg02 img{width: 100%;}


.profileWrap{
	margin: 0 auto;
	padding: 30px 0 28%;
	box-sizing: border-box;
	position: relative;
}

.profileWrap {display:none;}
.profileWrap.active {display:block;}

.profileWrap .pfPosi{position: relative;}

.profileTitle{
	text-align: center;
	background: url(../image/profile_cloud_sp.png) center 70px no-repeat;
	background-size:100% auto;
	padding-bottom:8%;
}

.profileTitle h3{
	font-size: 18px;
	font-weight: normal;
	color: #a67c52;
	margin-bottom: 5px;
	line-height: 1.5;
}

.profileTitle h3 span{
	font-size: 24px;
	color: #44b182;
}

.profileTitle h4{
	font-size: 30px;
	font-weight: bold;
	color: #44b182;
}

.profileWrap .pf_textBox1{
	margin-bottom: 20px;
}

.profileWrap .pf_photoList{
	margin-bottom: 40px;
}

.profileWrap .pf_photoList li{margin-bottom: 30px;}
.profileWrap .pf_photoList li:last-child{margin-bottom: 0;}

.profileWrap .pf_photoList .photo{
	width: 100%;
	box-sizing: border-box;
	padding: 13px;
	background: url(../image/photoList_back.png) center top no-repeat;
	background-size: 100% 100%;
	margin-bottom: 10px;
	text-align: center;
}

.profileWrap .pf_photoList .photo img{
	max-width: 100%;
	margin: auto;
}

.profileWrap .pf_featurea{
	margin: 0 0 30px;
	padding: 0 0;
}

.profileWrap .pf_featurea h5{
	color: #44b182;
    font-size: 24px;
	text-align: center;
	margin-bottom: 5px;
}

.profileWrap .pf_linkBox{
	text-align: center;
}

.profileWrap .pf_linkBox a{
	display: block;
	color: #44b182;
	box-sizing: border-box;
	margin-bottom: 5px;
	font-size: 16px;
}

.profileWrap .contactBtn{
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: -15px;
	margin: auto;
	text-align: center;
	width: 30%;
}


.underGreen_contents{
	margin: 0 0;
	padding: 10px 0 30px;
	background-color: #44b182;
}

.underAncBtn{
	color: #fff;
	margin-bottom: 20px;
}

.underAncBtn ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.underAncBtn li{
	font-size: 14px;
	width: 48%;
	text-align: center;
	margin-bottom: 11px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

.underAncBtn li:nth-child(2n){margin-left: auto;}

.underAncBtn li a{
	display: block;
	color: #44b182;
	box-sizing: border-box;
	padding: 4px 10px;
	background-color: #fff;
	border: 2px solid #44b182;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	transition: all .2s ease;
	-moz-transition: all .2s ease;
	-webkit-transition: all .2s ease;
}

.underAncBtn li a:hover{
	text-decoration: none;
}


.underLogoBox{
	text-align: center;
}

.underLogoBox a{
	display: inline-block;
}

.underLogoBox h2 img{
	margin: 5px 0 15px;
	width: 58%;
}

.underLogoBox .text1 img{width: 70%;}

.underLogoBox .text2 img{width: 60%;}

/*---------------------------------------------------------------------------
お問い合わせ
---------------------------------------------------------------------------*/
.contact_contens {
	background: #754c24;
	color: #fff;
}

.contact_title{
	margin:0 5px 5px;
	font-weight:bold;
	text-align: center;
}

.contact_title p{
	padding: 30px 0 20px;
}

.contact_title h3{
	font-size:25px;
	color: #fff;
}

.contact_main{
	padding:0px;
	margin-bottom:50px;
}

.con_text01{
	padding-bottom:15px;
	border-bottom:1px solid #fff;
	text-align:center;
}

.con_text_wel{color:#fcee21;}

.contact_main input,
.contact_main textarea{
	padding:5px 0px 5px 5px;
	border:1px solid #CCC;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	width: 99%;
}

.contact_main dl {
    width: auto;
}

.contact_main dt {
	clear:both;
	text-align:left;
	padding:15px 0 0px 0;
}

.contact_main dd {
	padding:15px 0;
	border-bottom:1px solid #fff;
	vertical-align: middle;
}

.submit_btn_co {
	padding: 20px 0 0px;
	text-align: center;
}

.submit_btn_co input{
	display: inline-block;
	width: 320px;
	box-sizing: border-box;
	font-size: 18px;
	line-height: 18px;
	font-weight: bold;
	padding: 10px 0;
	margin: 0 5px;
	text-align: center;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	border-radius: 18px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	background-color: #f8f3ee;
	border: 1px solid #cfbfaf;
	color: #754c24;
	background: -webkit-linear-gradient(#f8f3ee, #cbb8a0);
	background: -moz-linear-gradient(#f8f3ee, #cbb8a0);
	background: linear-gradient(#f8f3ee, #cbb8a0);
}

.submit_btn_co input:hover{
	cursor:pointer;
	filter: alpha(opacity=75); /*For IE*/
	opacity: 0.75; /*Opera・Safari*/
	-moz-opacity: 0.75; /*For FireFox*/
	text-decoration:none;
}

.contact_main dd select {
	font-size: 14px;
	padding: 5px 10px;
	width: 100%;
	background: url(../contact/image/arr.png) right 10px center no-repeat, #f8f3ee;
	background-size: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	border-radius: 18px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	background-color: #f8f3ee;
	border: 1px solid #e8ded5;
	color: #754c24;

}

.contact_main dd select::-ms-expand { display: none;}


/*---------------------------------------------------------------------------
お役立ちMAP
---------------------------------------------------------------------------*/
.map_mainWrap{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-image: url(../map/image/map_backImg.png);
	background-repeat: repeat-x;
	background-position: bottom -2px center;
	background-size: 1200px;
	padding-top: 20px;
}

.map_keyBox{
	padding: 0px 0 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.map_keyIcon{
	width: 23px;
	margin-bottom: 10px;
}

.map_keyTitle{
	width: 95%;
}

.map_mainImgBox{
	display: none;
}

.map_contentsWrap{
	width: 100%;
	margin-bottom: 0px;
	position: relative;
	z-index: 1;
}
.map_contentsWrap::before{
	content: "";
	position: absolute;
	top: -2px;
	left: 0; right: 0;
	width: 100%;
	height: 580px;
	background-color: #44b182;
	z-index: -1;
}

.map_textBox{
	width: auto;
	margin: 0 15px;
	padding-bottom: 30px;
	text-align: center;
	color: #fff;
}

.map_myMapBox{
	width: 100%;
	margin: 0;
}

.map_tabBox{
	width: 100%;
}

.map_spMenu{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #fbb03b;
	padding: 10px;
	/* font-size: 16px; */
	font-size: 4.5vw;
	letter-spacing: 4px;
	position: relative;
}
.map_spMenu::before,
.map_spMenu::after{
	content: "";
	position: absolute;
	right: 10%;
	transform: translateY(-50%) rotate(45deg);
	width: 25px;
	height: 25px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	transition: 0.3s ease;
}
.map_spMenu::before{
	top: 30%;
}
.map_spMenu::after{
	top: 45%;
}

.map_spMenu.open{
	background-color: #f7931e;
}
.map_spMenu.open::before,
.map_spMenu.open::after{
	content: "";
	position: absolute;
    top: 12%;
    right: 10%;
    width: 2px;
    height: 40px;
	border: none;
	background-color: #fff;
}
.map_spMenu.open::before{
	transform: translate(-15px, 0%) rotate(225deg);

}
.map_spMenu.open::after{
	transform: translate(-15px, 0%) rotate(-225deg);
}

.map_spIcon{
	/* width: 22px; */
	margin-right: 20px;
	/* position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%); */
}
.map_spIcon img{
	width: 6vw;
}

.map_tabBox ul{
	display: none;
	width: 100%;
	padding: 0 50px 50px;
	box-sizing: border-box;
	background-color: #f7931e;
	/* display: flex; */
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.map_tabBox ul li{
	width: 100%;
	border-bottom: 1px solid #fff;
}

.map_tabLink{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 0;
}

.map_tabIcon{
	width: 35px;
	margin-right: 10px;
}

.map_tabName{
	width: calc(100% - (35px + 10px));
	/* display: inline-block; */
	/* font-size: 14px; */
	font-size: 4.3vw;
	color: #fff;
}

.map_mapBox{
	display: none;
    position: relative;
    padding-bottom: 0;
    padding-top: 0;
    height: 90vh;
	overflow: hidden;
	margin-bottom: 46px;
}

.map_mapBox iframe,
.map_mapBox object,
.map_mapBox embed {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
}

.map_mapBox iframe{
    border-style: none;
}

.map_mapBox.active{
	display: block;
}

.map_innerBox{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 46px;
	display: flex; flex-wrap: nowrap;
	justify-content: center; align-items: center;
	background-color: #f7931e;
	z-index: 10;
}
.map_innerName{
	font-size: 16px;
	color: #ffffff;
	margin-right: 25px;
}



/*---------------------------------------------------------------------------
インタビュー
---------------------------------------------------------------------------*/
.minFont{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*---------- main section ----------*/
.int_mainWrap{
	width: 100%;
	margin-bottom: 50px;
	padding-top: 50px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.int_mainWrap::before,
.int_mainWrap::after{
	content: "";
	position: absolute;
	top: 28%;
	z-index: -1;
}

.int_mainWrap::before{
	background-image: url(../interview/image/main_back01_sp.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 185px;
	width: 185px;
	height: 153px;
	left: -90px;
}

.int_mainWrap::after{
	background-image: url(../interview/image/main_back02_sp.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 169px;
	width: 169px;
	height: 156px;
	right: -90px;
}

.int_mainTitleBox{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.int_mainSub{
	margin-bottom: 30px;
	text-align: center;
}

.int_mainTitle{
	width: 90%;
	font-size: 0;
}

.int_categoryBox{
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
}

.int_categoryBox h3{
	position: relative;
	z-index: 1;
}
.int_categoryBox h3::before{
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0; right: 0;
	transform: rotate(45deg);
	margin: auto;
	width: 20px;
	height: 20px;
	background-color: #7fcdee;
	z-index: -1;
}

.int_categoryBox h3 span{
	display: inline-block;
	background-color: #3a9f86;
	padding: 10px 30px;
	color: #fff;
	font-size: 20px;
	line-height: 20px;
	font-weight: normal;
}

.int_profBox{
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.int_nameBox{
	font-size: 36px;
	margin-bottom: 15px;
}

.int_profImg{
	width: 59px;
	margin-bottom: 10px;
	line-height: 0;
}

.int_mainImgBox{
	display: flex;
	justify-content: center;
}

.int_mainImg{
	width: 100%;
}


/*---------- interview section ----------*/
.int_contentsBox{
	margin-bottom: 30px;
}

.int_textBox{
	width: 100%;
	margin: 0 auto 30px;
}

.int_subTitleBox{
	margin-bottom: 15px;
	text-align: center;
	font-size: 20px;
	line-height: 28px;
}

.int_imgBox{
	width: calc(100% + 30px);
	margin-left: -15px;
	display: flex;
	flex-wrap: wrap;
}

.int_imgInner01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.int_imgInner02{
	width: 100%;
	max-height: 445px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}


/*---------- data section ----------*/
.int_dataBox{
	width: 100%;
	margin-bottom: 30px;
	padding-top: 65px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.int_dataBox::before,
.int_dataBox::after{
	content: "";
	position: absolute;
	top: 0;
	z-index: -1;
}

.int_dataBox::before{
	background-image: url(../interview/image/data_back01_sp.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 222px;
	width: 222px;
	height: 145px;
	left: -80px;
}

.int_dataBox::after{
	background-image: url(../interview/image/data_back02_sp.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 169px;
	width: 169px;
	height: 156px;
	right: -60px;
}

.int_dataInner{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	position: static;
}

.int_dataImgBox{
	position: static;
	width: 100%;
	margin-bottom: 30px;
}

.int_dataTextBox{
	width: 100%;
	margin-bottom: 30px;
}

.int_dataTextBox h4{
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	font-weight: normal;
	background-color: #231815;
	display: inline-block;
	padding: 5px 15px;
	margin-bottom: 20px;
	position: relative;
}
.int_dataTextBox h4::before,
.int_dataTextBox h4::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
}
.int_dataTextBox h4::before{
	width: 9px;
	height: 9px;
	background-color: #fff;
}
.int_dataTextBox h4::after{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 0 9px;
	border-color: transparent transparent transparent #c1272c;
}

.int_dataQ{
	font-size: 18px;
	margin-bottom: 10px;
}

.int_dataA a:hover{
	text-decoration: underline;
}


/*---------- Toppage Link ----------*/
.top_interviewLinkBox{
	display: none;
	width: 100%;
	margin: 30px 0;
	text-align: center;
}

.top_interviewLinkBox.active{
	display: block;
}

.top_interviewLinkBox h3{
	width: 70%;
	margin: 0 auto;
	margin-bottom: 15px;
}

.top_interviewLinkInner{
	display: none;
	margin-bottom: 15px;
}
.top_interviewLinkInner:last-of-type{
	margin-bottom: 0;
}

.top_interviewLinkInner.active{
	display: block;
}

.top_interviewLinkInner a{
	display: block;
}

.top_interviewLinkInner a:hover{
	opacity: 0.75;
}

.top_interviewLinkInner dl{
	width: calc(100% + 30px);
	margin-left: -15px;
	height: auto;
	display: flex;
	flex-direction: column;
	border-radius: 0;
	overflow: hidden;
	background-color: #44b182;
}

.top_interviewLinkInner dl dt{
	width: 100%;
}

.top_interviewText{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	box-sizing: border-box;
}

.top_intIconPC{
	display: none;
}
.top_intIconSP{
	width: 39px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.top_interviewText p{
	color: #fff;
	text-align: center;
}

.top_interviewText p span{
	font-size: 28px;
	line-height: 40px;
	display: block;
}


.top_interviewLinkInner dl dd{
	width: calc(100% - 30px);
	margin: 0 auto;
}

.top_interviewImg{
	width: 100%;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	margin-bottom: 15px;
}

.top_interviewImg img{
	width: 100%;
}
