@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * @import
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import "reset.css";
@import "utility.css";
@import "pi-webfont.css";
@import "eyetag-animation.css";
@import "skins/minimal/grey.css";

@font-face {
    font-family: dir-light;
    src: url('../font/dir-light.woff') format('woff');
}

@font-face {
    font-family: dir-regular;
    src: url('../font/dir-regular.woff') format('woff');
}

@font-face {
    font-family: dir-medium;
    src: url('../font/dir-medium.woff') format('woff');
}

@font-face {
    font-family: dir-bold;
    src: url('../font/dir-bold.woff') format('woff');
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

*,
*:after,
*:before {
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -o-box-sizing:border-box;
  -ms-box-sizing:border-box;
  box-sizing:border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 長押しした際に表示されるポップアップメニューを消す */
* {
    -webkit-touch-callout: none;
}

body{
	overflow-y: scroll;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #ffffff;
	line-height: 1.5em;	
	word-break: break-all;
	word-wrap: break-word;
	color: #454b53;
	font-family: "YuGothic", "游ゴシック","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 13px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * header
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.header-preview {
	width: 100%;
	padding: 20px 0;
	background: #333333;
	text-align:center; color:#ffffff;
	font-size:18px;
	font-weight:bold;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * module(全ページ共通のパーツ)
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* no-click
-------------------------------------------------------------*/

.no-click {
	pointer-events : none;
}

/* display
-------------------------------------------------------------*/

.disp {
	display: block !important;
}

.disp-table {
	display: table !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

.print-disp {
	display: none;
}

/* table
-------------------------------------------------------------*/

.table {
	width: 100%;
	border-top: 1px solid #e3e3e3;
}

.table th {
	width: 30%;
	padding: 20px;
	border-bottom: 1px solid #e3e3e3;
	background: #fafafa;
	font-size: 16px;
}

.table td {
	width: 70%;
	padding: 20px;
	border-bottom: 1px solid #e3e3e3;
}

.table td.colspan {
	width: 100%;
	border-bottom: 1px solid #e3e3e3;
	background: #fafafa;
}

/* link-button
-------------------------------------------------------------*/

.link-button-entry {
	display: block;
	position: relative;
	width: 100%;
	padding: 20px 0 20px 50px;
	border-radius: 4px;
	background: #454b53;
	text-decoration:none;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.link-button-entry:after {
	content: "\EA21";
	position: absolute;
	top: 20px;
	left: 20px;
	font-family: "pi-webfont";
	font-size: 24px;
}

.link-button-fav {
	display: block;
	position: relative;
	width: 100%;
	padding: 20px 0 20px 50px;
	border-radius: 4px;
	background: #737d8b;
	text-decoration:none;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.link-button-fav:after {
	content: "\E864";
	position: absolute;
	top: 20px;
	left: 20px;
	font-family: "pi-webfont";
	font-size: 24px;
}

/* wrapper
-------------------------------------------------------------*/

.wrapper {
	position: relative;
	width: 1200px;
	height: auto;
	margin: 0 auto;
}

.wrapper--wide {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.wrapper--narrow {
	position: relative;
	width: 1000px;
	height: auto;
	margin: 0 auto;
}

.wrapper--morenarrow {
	position: relative;
	width: 800px;
	height: auto;
	margin: 0 auto;
}

.wrapper--bb {
	border-bottom: 1px solid #e3e3e3;
}

.wrapper--table {
	display: table;
	position: relative;
	width: 1200px;
	height: auto;
	margin: 0 auto;
	table-layout: fixed;
}

.wrapper--table-wide {
	display: table;
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	table-layout: fixed;
}

.wrapper--table-narrow {
	display: table;
	position: relative;
	width: 1000px;
	height: auto;
	margin: 0 auto;
	table-layout: fixed;
}

.content-column {
	display: table-cell;
	position: relative;
	width: 600px;
	padding: 0 40px;
	vertical-align: top;
}

.content-column--wide {
	display: table-cell;
	position: relative;
	width: 900px;
	padding: 0 40px 0 0;
	vertical-align: top;
}

.sidebar-column {
	display: table-cell;
	position: relative;
	width: 300px;
	vertical-align: top;
}

/* job-tag
-------------------------------------------------------------*/

.job-tag-title {
	display: inline-block;
	width: 46px;
	height: 20px;
	margin-right: 3px;
	border: 1px solid #dddddd;
	border-radius: 3px;
	line-height: 18px;
	text-align: center;
	background: #ffffff;
	font-size: 10px;
	font-weight: bold;
	color: #737d8b;
}

.job-tag {
	font-size: 10px;
	color: #737d8b;
}

/* dir-date
-------------------------------------------------------------*/

.dir-date {
	font-family:"dir-regular", sans-serif;
	font-weight: 400;
}

/* hr-border
-------------------------------------------------------------*/

.hr-border {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 26px;
	margin: 0 auto;
	line-height: 1;
}

.hr-border:before {
	content: "";
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #454b53;
}

/***************************************************************************************************************************************
*
* single intern
*
****************************************************************************************************************************************/

.sg-intern-status {
	display: inline-block;
	height: 22px;
	margin-right: 5px;
	padding: 0 7px;
	border: 1px solid #737d8b;
	background: #ffffff;	
	border-radius: 2px;
	line-height: 19px;
	font-size: 12px;
	color: #737d8b;
}

.sg-intern-status.end {
	border: 1px solid #cccccc;
	background: #cccccc;
	color: #ffffff;
}

.sg-intern-date {
	color: #737d8b;
}

.sg-intern-main {
	display: table-cell;
	width: 70%;
	padding-top: 30px;
	padding-right: 30px;
	border-top: 1px solid #e3e3e3;
	vertical-align: top;
}

.sg-intern-sub {
	display: table-cell;
	width: 30%;
	padding-top: 30px;
	padding-left: 30px;
	border-top: 1px solid #e3e3e3;
	border-left: 1px solid #e3e3e3;
	vertical-align: top;
}

.sg-intern-sub img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.sg-intern-mainpic {
	height: 400px;
	border: 1px solid #f3f3f3;
	border-radius: 4px;
	line-height: 400px;
	text-align: center;
	font-size: 80px;
	color: #d9dce0;
}

.sg-intern-header {
	display: table;
	width: 100%;
	margin-top: 40px;
	table-layout: fixed;
}

.sg-intern-header-left {
	display: table-cell;
	width: 90px;
	vertical-align: top;
}

.sg-intern-header-right {
	display: table-cell;
	padding-left: 30px;
	vertical-align: top;
}

.sg-intern-title {
	margin: 0 auto 10px;
	line-height: 1.5;
	font-size: 25px;
	font-weight: bold;
}

.sg-intern-org-name {
	margin: 0 0 5px;
	font-size: 16px;
	font-weight: bold;
	color: #454b53;
}

.sg-intern-heading {
	margin:60px 0 20px -5px;
	font-size: 22px;
	font-weight:bold;
	color: #454b53;
}

.sg-intern-tag {
	margin-right: 5px;
	padding: 5px 8px 6px 5px;
	border-radius: 2px;
	background: #a1a8b2;
	font-weight: bold;
	font-size: 11px;
	color: #ffffff;
}

.sg-intern-table {
	width: 100%;
	margin: 0;
	padding: 0;
}

.sg-intern-table th {
	width: 25%;
	padding: 15px;
	border-bottom: 2px solid #ffffff;
	background: #f1f1f3;
	vertical-align: middle;
	font-size: 14px;
	font-weight: bold;
}

.sg-intern-table td {
	width: 75%;
	padding: 15px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	background: #f7f7f9;
	vertical-align: top;
}

.sg-intern-message-wrap {
	display: table;
	width: 100%;
	margin-bottom: 40px;
	table-layout: fixed;
}

.sg-intern-message-left {
	display: table-cell;
	padding-right: 50px;
	line-height: 1.8;
	vertical-align: top;
	font-size: 16px;
}

.sg-intern-message-right {
	display: table-cell;
	width: 180px;
	vertical-align: top;
}

.sg-intern-message-right img {
	border-radius: 50%;
}

.sg-intern-sns {
	margin: 0 auto;
	padding: 20px 0 13px;
	text-align: right;
}

.sg-intern-sns-btn{
	display: inline-block;
	vertical-align: top;
	margin: 0; 
	padding: 0; 
	margin-left: 10px;
}

.sg-intern-sns-btn.gp{
	width: 57px;
}

.sg-intern-sns-btn.po{
	width: 100px;
}

.bosyu-end-alert {
	margin: 20px auto 0;
	padding: 20px 0;
	background: #f46375;
	text-align: center;
	font-size: 16px;
	color: #ffffff;	
}

.sg-intern-related-int-wrap {
	width: 100%;
}

.sg-intern-related-int {
	margin-bottom: 10px;
	padding-top: 10px;
	border-top: 1px solid #f3f3f3;
}

.sg-intern-related-int:last-child {
	padding-bottom: 10px;
	border-bottom: 1px solid #f3f3f3;
}

.sg-intern-other-job-wrap {
	width: 100%;
}

.sg-intern-other-job {
	display: table;
	width: 100%;
	margin-bottom:5px;
	padding: 15px;
	border-radius: 4px;
	background: #f5f6f7;
	color: #ffffff;
	cursor: pointer;
	table-layout: fixed;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.sg-intern-other-job:hover {
	background: #d9dde0;
}

.sg-intern-other-job-left {
	display: table-cell;
	width: 180px;
	vertical-align: middle;
}

.sg-intern-other-job-left img {
	max-width: 100%;
	border: 1px solid #f3f3f3;
	border-radius: 4px;
}

.sg-intern-other-job-right {
	display: table-cell;
	padding-left: 20px;
	vertical-align: middle;
}

.sg-intern-other-job-right a {
	font-size: 16px;
	font-weight: bold;
	color: #454b53;
}

.sg-intern-other-job-right a:hover {
	text-decoration: none;
}

div#googlemap{
    height: 222px;
    width: 100%;
}

.sg-intern-side-entry {
	position: relative;
	width: 100%;
}

.sg-intern-side-entry-fixed {
	position: fixed;
	top: 60px;
}

.sg-intern-side-entry-absolute {
	position: absolute;
	bottom: 0;
}

/* color
-------------------------------------------------------------*/

.color-hokkaido { color: #00aacf !important; }
.color-tohoku { color: #14d7bd !important; }
.color-kanto { color: #f67373 !important; }
.color-hokushinetsu { color: #a2d714 !important; }
.color-tokai { color: #f2a74f !important; }
.color-kansai { color: #ab75bf !important; }
.color-chushikoku { color: #005ec4 !important; }
.color-kyushu { color: #ff7fbf !important; }
.color-kaigai { color: #d1b200 !important; }

.area-hokkaido { background-color: #00aacf !important; }
.area-tohoku { background-color: #14d7bd !important; }
.area-kanto { background-color: #f67373 !important; }
.area-hokushinetsu { background-color: #a2d714 !important; }
.area-tokai { background-color: #f2a74f !important; }
.area-kansai { background-color: #ab75bf !important; }
.area-chushikoku { background-color: #005ec4 !important; }
.area-kyushu { background-color: #ff7fbf !important; }
.area-kaigai { background-color: #d1b200 !important; }

.area-hokkaido-bf:before { background-color: #00aacf !important; }
.area-tohoku-bf:before { background-color: #14d7bd !important; }
.area-kanto-bf:before { background-color: #f67373 !important; }
.area-hokushinetsu-bf:before { background-color: #a2d714 !important; }
.area-tokai-bf:before { background-color: #f2a74f !important; }
.area-kansai-bf:before { background-color: #ab75bf !important; }
.area-chushikoku-bf:before { background-color: #005ec4 !important; }
.area-kyushu-bf:before { background-color: #ff7fbf !important; }
.area-kaigai-bf:before { background-color: #d1b200 !important; }

/* prefecture-mark
-------------------------------------------------------------*/

.prefecture-mark {    
    display: block;
	position: relative;
    width: 60px;
	margin: 0;
    padding: 5px 0 10px;
	line-height: 1.2;
    text-align: center;
    font-size: 12px;
	font-weight: bold;
    color: #ffffff;
}

.prefecture-mark:after{
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-bottom: 10px solid transparent;
}

.prefecture-mark i {    
    font-size: 20px;
}

.prefecture-mark.big {
    width: 90px;
    padding: 12px 0;
	line-height: 1.5;
    font-size: 14px;
}

.prefecture-mark.big:after{
	border-bottom-width: 16px !important;
	border-left-width: 45px !important;
	border-right-width: 45px !important;
}

.prefecture-mark.big i {    
    font-size: 30px;
}

.prefecture-mark.area-hokkaido:after { border-left: 30px solid #00aacf; border-right: 30px solid #00aacf; }
.prefecture-mark.area-tohoku:after { border-left: 30px solid #14d7bd; border-right: 30px solid #14d7bd; }
.prefecture-mark.area-kanto:after { border-left: 30px solid #f67373; border-right: 30px solid #f67373; }
.prefecture-mark.area-hokushinetsu:after { border-left: 30px solid #a2d714; border-right: 30px solid #a2d714; }
.prefecture-mark.area-tokai:after { border-left: 30px solid #f2a74f; border-right: 30px solid #f2a74f; }
.prefecture-mark.area-kansai:after { border-left: 30px solid #ab75bf; border-right: 30px solid #ab75bf; }
.prefecture-mark.area-chushikoku:after { border-left: 30px solid #005ec4; border-right: 30px solid #005ec4; }
.prefecture-mark.area-kyushu:after { border-left: 30px solid #ff7fbf; border-right: 30px solid #ff7fbf; }
.prefecture-mark.area-kaigai:after { border-left: 30px solid #d1b200; border-right: 30px solid #d1b200; }

/***************************************************************************************************************************************
*
* single event
*
****************************************************************************************************************************************/

.sg-event-content {
	position: relative;
	width: 100%;
	margin: 40px auto;
	padding: 40px;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 0 3px 0 #cccccc;
}

.sg-event-title-wrap {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e3e3e3;
}

.sg-event-title-h2 {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 26px;
	font-weight: bold;
}

.sg-event-title-desc {
	font-size: 14px;
	margin-bottom: 5px;
}

.sg-event-prefecture-mark {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 3px;
	font-weight: bold;
	color: #ffffff;
}

.sg-event-title-sns {
	float: right;
	width: 49%;
	height: 30px;
	margin-bottom: 0;
	text-align: right;
}

.sg-event-body {
	line-height: 2;
	font-size: 16px;
}

.sg-event-body img {
	max-width: 100%;
}

.sg-event-h3 {
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
}

.area-hokkaido { background-color: #00aacf !important; }
.area-tohoku { background-color: #14d7bd !important; }
.area-kanto { background-color: #f67373 !important; }
.area-hokushinetsu { background-color: #a2d714 !important; }
.area-tokai { background-color: #f2a74f !important; }
.area-kansai { background-color: #ab75bf !important; }
.area-chushikoku { background-color: #005ec4 !important; }
.area-kyushu { background-color: #ff7fbf !important; }
.area-kaigai { background-color: #d1b200 !important; }

.cd-profile-name {
	font-size: 18px;
	font-weight: bold;
}

.cd-profile-name.bt {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #dddddd;
}