@charset "UTF-8";
/* 
------------------------*/
img {
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}


#container {
	padding-top: 0px !important;
}
#contents {
	width: 100%;
	padding: 0;
}
.content-inner {
	width: 960px;
	margin: 0 auto;
}
.page_ttl {
	margin-bottom: 0;
}
.page_ttl h1 {
	margin: 60px auto 0;
	padding: 0;
	width: 782px;
}
.page_ttl h1:after {
	display: none;
}

@media screen and (max-width: 750px) {
	.content-inner {
		width: 90%;
		margin: 0 auto;
	}
	.page_ttl h1 {
		margin: 0 auto;
		padding: 0;
		width: 70%;
	}
}

/* contents
------------------------*/
.p-intro {
	margin-top: 70px;
	font-size: 1.8rem;
	line-height: 2.0;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-intro {
		margin-top: 30px;
		font-size: 1.4rem;
		line-height: 1.8;
		text-align: left;
	}
	.p-intro p:not(:first-child) {
		margin-top: 16px;
	}
}

/* ボタンエリア */
.p-btnarea {
	margin: 90px auto 0;
	width: 678px;
}

.p-btn-list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin-right: -35px;
    margin-left: -35px;
}

.p-btn-item {
	padding-right: 35px;
    padding-left: 35px;
	text-align: center;
}
.p-btn-img img {
	width: 100%;
}

.p-btn-ttl {
	margin-top: 15px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 700;
}

.guest .p-btn-ttl {
	color: #e4624e;
}
.employee .p-btn-ttl  {
	color: #ee761f;
}
.society .p-btn-ttl  {
	color: #0e995e;
}

@media screen and (max-width: 750px) {
	.p-btnarea {
		width: 90%;
		margin-top: 30px;
	}
	
	.p-btn-list {
		margin-right: -14px;
		margin-left: -14px;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	
	.p-btn-item {
		padding-right: 14px;
		padding-left: 14px;
		width: auto;
	}

	.p-btn-ttl {
		font-size: 1.3rem;
	}
}

/* 詳細 */
.p-about {
	margin-top: 80px;
}
.p-about-box {
	margin-top: 6px;
	padding: 90px 0;
}
#anchor_guest.p-about-box {
	background: #fcefe9;
}
#anchor_employee.p-about-box {
	background: #fdf0e4;
}
#anchor_society.p-about-box {
	background: #ebf3eb;
}

#anchor_guest h2,
#anchor_employee h2,
#anchor_society h2 {
	width: 426px;
	margin: 0 auto;
}

.p-about-list {
	margin-top: 100px;
	margin-right: -33px;
    margin-left: -33px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
.p-about-item {
	padding-right: 33px;
    padding-left: 33px;
	width: 448px;
}
.p-about-img img {
	width: 100%;
}
.p-about-txt {
	padding: 20px 15px;
	color: #fff;
    display: flex;
    align-items: center;
}
.p-about-txt::after {
    content: "";
    width: 48px;
    height: 48px;
    background: url(../img/vision/icon_open_white.svg) 0 0 no-repeat;
    background-size: 48px;
}
.p-about-txt p {
	flex: 1 1 0%;
	font-size: 1.6rem;
	letter-spacing: 0.12;
	line-height: 1.5;
	font-weight: 700;
}

.p-about-txt p span {
	font-size: 1.2rem;
	line-height: 1.2;
	font-weight: 500;
}

#anchor_guest .p-about-txt {
	background: #e4624e;
}
#anchor_employee .p-about-txt {
	background: #ee761f;
}
#anchor_society .p-about-txt {
	background: #0e995e;
}

@media screen and (max-width: 750px) {
	.p-about {
		margin-top: 50px;
	}
	.p-about-box {
		margin-top: 3px;
		padding: 60px 0;
	}
	
	#anchor_guest h2,
	#anchor_employee h2,
	#anchor_society h2 {
		width: 100%;
	}

	.p-about-list {
		margin: 30px auto;
		display: block;
	}
	.p-about-item {
		padding: 0;
		width: 80%;
		margin: 20px auto;
	}
	.p-about-txt {
		padding: 15px;
	}
	.p-about-txt::after {
		content: "";
		width: 32px;
		height: 32px;
		background: url(../img/vision/icon_open_white.svg) 0 0 no-repeat;
		background-size: 32px;
	}
	.p-about-txt p {
		font-size: 1.6rem;
	}
	.p-about-txt p span {
		font-size: 1.3rem;
	}
	
}
/*モーダル
---------------------------------------------------------- */
/* モーダル全体(背景＋本体) */
.p-modal {
	display: none;
	position: fixed;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 200;
}

/* モーダル背景 */
.p-modal-bg {
	position: absolute;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
}

/* モーダル本体 */
.p-modal-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5px;
	max-height: 60%;
	width: 780px;
	border-radius: 5px;
}

.p-modal-inner {
	position: relative;
	height: 100%;
	width: 100%;
	overflow-y: scroll; 
	background: #fff;
	box-shadow: 6px 6px #736357;
}

.p-modal-btn-close a {
	position: fixed;
	top: -10px;
	right: -10px;
	content: "";
	width: 43px;
	height: 43px;
	background: url(../img/vision/icon_btn_close.svg) 0 0 no-repeat;
	background-size: 100%;
	z-index: 100;
}

.p-modal-txt {
	padding: 30px;
}
.p-modal-txt h5 {
	font-size: 2.0rem;
	color: #ED761E;
	font-weight: 700;
	letter-spacing: 0.12rem;
	margin-bottom: 20px;
}
.p-modal-txt h5 span {
	font-size: 80%;
	font-weight: 500;
}
.p-modal-txt p  {
	font-size: 1.6rem;
	line-height: 1.65;
}


/* モーダルウィンドウ表示中に記事本体を固定 */
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

@media screen and (max-width: 750px) {
	.p-modal-wrapper {
		padding: 15px;
		max-height: 85%;
		width: 85%;
	}
	.p-modal-btn-close a {
		width: 30px;
		height: 30px;
		top: 5px;
		right: 5px;
	}
	.p-modal-txt {
		padding: 20px;
	}
	.p-modal-txt h5 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.p-modal-txt p  {
		font-size: 1.4rem;
	}
}