@charset "UTF-8";
/*----------------------------------------------------
	レスポンシブ
----------------------------------------------------*/
.hide {
	display: none;
}

.pc {
	display: inline;
}
.pc.block {
	display: block;
}
.pc_hide {
	display: none;
}
.pc_hide.block {
	display: none;
}

.sp {
	display: none;
}
.sp.block {
	display: none;
}

@media (max-width: 960px) {
	.sp {
		display: inline;
	}
	.sp.block {
		display: block;
	}
	.sp_hide {
		display: none;
	}
	.sp_hide.block {
		display: none;
	}
	.pc {
		display: none;
	}
	.pc.block {
		display: none;
	}
	.pc_hide {
		display: inline;
	}
	.pc_hide.block {
		display: block;
	}
}

.container {
	position: relative;
	padding-right: 40px; 
	padding-left: 40px;
	margin: 0 auto;
}
@media (min-width: 961px) {
	.container {
		max-width: 1080px;
	}
}
@media (max-width: 960px) {
	.container {
		padding-right: 4vw; 
		padding-left: 4vw;
	}
}

@media (min-width: 961px) {
	.container--s {
		max-width: 940px;
	}
}

@media (min-width: 961px) {
	.container--xs {
		max-width: 720px;
	}
}

.container-inner {
	max-width: 860px;
	margin: 0 auto;
}
@media (min-width: 961px) {
	.container-inner {
		padding: 80px 0;
	}
}
@media (max-width: 960px) {
	.container-inner {
		padding: 12.5vw 0;
	}
}

/*----------------------------------------------------
	アニメーション
----------------------------------------------------*/
.fadeIn {
	display: none;
}
.fadeIn.show {
	display: block;
	-webkit-animation: fadeIn .6s linear;
	        animation: fadeIn .6s linear;
}

.anime {
	opacity: 0; 
	visibility: hidden;
}

.anime.opacity {
	opacity: 1;
}

.animated {
	visibility: visible;
}

.fadeIn.animated {
	-webkit-animation: fadeIn .5s forwards;
	        animation: fadeIn .5s forwards;
}

.fadeInUp.animated {
	-webkit-animation: fadeInUp .5s forwards;
	        animation: fadeInUp .5s forwards;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInUp {
	from {
		-webkit-transform: translateY(20px);
		        transform: translateY(20px); 
		opacity: 0;
	}
	to {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px); 
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		-webkit-transform: translateY(20px);
		        transform: translateY(20px); 
		opacity: 0;
	}
	to {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px); 
		opacity: 1;
	}
}

/*----------------------------------------------------
	フォント等
----------------------------------------------------*/
.serif {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
}

.ff-sans {
	font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 960px), only screen and (max-device-width: 1024px) and (min-device-width: 768px) {
	a,
	button {
		-webkit-tap-highlight-color: rgba(255, 255, 255, 0); 
		-webkit-touch-callout: none;
	}
}

/*----------------------------------------------------
	メインヘッダー
----------------------------------------------------*/
.main-header {
	background-position: center center;
	background-size: cover;
}
.main-header .item-title {
	align-items: center;
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff; 

	-webkit-box-align: center;
}
.main-header .item-title .en {
	margin-right: .5em;
	font-family: "Open Sans", sans-serif; 
	font-weight: bold;
}
@media (min-width: 961px) {
	.main-header .item-title {
		height: 130px;
	}
	.main-header .en {
		font-size: 35px;
	}
	.main-header .ja {
		font-size: 20px;
	}
}
@media (max-width: 960px) {
	.main-header .item-title {
		height: 60px;
	}
	.main-header .en {
		font-size: 24px;
	}
	.main-header .ja {
		font-size: 12px;
	}
}

.main-header--company {
	background-image: url(../images/company/header.jpg);
}

.main-header--program {
	background-image: url(../images/program/header.jpg);
}

.main-header--personality {
	background-image: url(../images/personality/header.jpg);
}

.main-header--movie {
	background-image: url(../images/movie/header.jpg);
}

.main-header--commercial {
	background-image: url(../images/commercial/header.jpg);
}

.main-header--sponsor {
	background-image: url(../images/sponsor/header.jpg);
}

.main-header--contact {
	background-image: url(../images/contact/header.jpg);
}

.main-header--news {
	background-image: url(../images/news/header.jpg);
}

/*----------------------------------------------------
	見出し
----------------------------------------------------*/
/*----------------------------------------------------
	テーブル
----------------------------------------------------*/
.tableA {
	width: 100%;
}
.tableA th {
	color: #fff;
	font-weight: bold;
	text-align: center;
	background-color: #82b446;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.tableA td {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.tableA td + td {
	border-left: 1px solid #ccc;
}
.tableA td:last-child {
	border-right: 1px solid #ccc;
}
@media (min-width: 961px) {
	.tableA th {
		padding: .25em .5em;
	}
	.tableA td {
		padding: .25em .5em;
	}
}
@media (max-width: 960px) {
	.tableA th {
		padding: .25em .5em;
	}
	.tableA td {
		padding: .25em .5em;
	}
}

/*----------------------------------------------------
	ボタン
----------------------------------------------------*/
.btn {
	position: relative;
	align-items: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	line-height: 1.25; 

	-webkit-box-align: center;
	-webkit-box-pack: center;
}

.btnA {
	min-width: 200px;
	padding: .3125em 1em;
	color: #fff;
	line-height: 1.25;
	background-color: #82b446; 
	border-radius: .9375em;
}

.btnB {
	min-width: 200px;
	padding: .5em 1em;
	color: #fff;
	line-height: 1.25;
	text-align: center;
	background-color: #82b446;
	border: 1px solid #82b446;
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.btnB:hover {
		color: #82b446;
		background-color: #fff;
	}
}

.btnDownload {
	color: #fff;
	background-color: #82b446;
	-webkit-box-shadow: 0 6px 2px rgba(159, 160, 160, .2);
	        box-shadow: 0 6px 2px rgba(159, 160, 160, .2); 
	border-radius: 10px;
}
.btnDownload:after {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	background: url(../images/ico_download.png) center center/contain no-repeat;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.btnDownload:after {
		-webkit-transition: all .3s ease-out;
		        transition: all .3s ease-out;
	}
	.btnDownload:hover:after {
		-webkit-transform: translateY(-40%);
		        transform: translateY(-40%);
	}
}
@media (min-width: 961px) {
	.btnDownload {
		width: 430px;
		height: 56px;
		font-size: 18px;
	}
}
@media (max-width: 960px) {
	.btnDownload {
		width: 100%;
		height: 50px;
		font-size: 14px;
	}
	.btnDownload:after {
		width: 24px;
		height: 24px;
	}
}

/*----------------------------------------------------
	ページネーション
----------------------------------------------------*/
.paginate ul {
	-ms-flex-pack: center;
	justify-content: center; 
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: center;
}

.paginate a {
	align-items: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 2em;
	height: 2em;
	color: #82b446;
	background-color: #fff; 
	border: 1px solid #82b446;

	-webkit-box-align: center;
	-webkit-box-pack: center;
}

.paginate .ctrl a {
	width: auto;
	padding: 0 .75em;
}

.paginate .current a {
	color: #fff;
	background-color: #82b446; 
	border: 1px solid #82b446;
}

@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.paginate a:hover {
		color: #fff;
		background-color: #82b446;
	}
	.paginate .current a:hover {
		color: #82b446;
		background-color: #f6f6f6;
	}
}

@media (min-width: 961px) {
	.paginate li:not(:last-child) {
		margin-right: 1em;
	}
}

@media (max-width: 960px) {
	.paginate li:not(:last-child) {
		margin-right: .4em;
	}
	.paginate a {
		width: 2em;
		height: 2em;
	}
}

/*----------------------------------------------------
	トップ全体
----------------------------------------------------*/
.top-header {
	align-items: center; 
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
}
.top-header .title {
	align-items: center; 
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
}
.top-header .title .en {
	margin-right: .5em;
	color: #82b446;
}
.top-header .title .ja {
	color: #333;
}
.top-header .link {
	margin-left: auto;
}
@media (min-width: 961px) {
	.top-header .title .en {
		font-size: 35px;
	}
	.top-header .title .ja {
		font-size: 15px;
	}
	.top-header .link {
		font-size: 14px;
	}
}
@media (max-width: 960px) {
	.top-header .title .en {
		font-size: 24px;
	}
	.top-header .title .ja {
		font-size: 12px;
	}
	.top-header .link {
		font-size: 12px;
	}
}

.btn-top {
	align-items: center;
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #fff;
	border-radius: 10px; 

	-webkit-box-align: center;
}
.btn-top .item-title {
	line-height: 1.5;
}
.btn-top .item-title {
	-ms-flex: 1;
	    flex: 1; 

	-webkit-box-flex: 1;
}
.btn-top .item-desc {
	-ms-flex: 1;
	    flex: 1; 

	-webkit-box-flex: 1;
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.btn-top {
		-webkit-transition: all .3s ease-out;
		        transition: all .3s ease-out;
	}
	.btn-top:hover {
		-webkit-box-shadow: 0 6px 2px rgba(159, 160, 160, .2);
		        box-shadow: 0 6px 2px rgba(159, 160, 160, .2);
	}
}
@media (min-width: 961px) {
	.btn-top {
		height: 90px;
		padding: 10px 20px;
	}
	.btn-top .item-ico {
		margin-right: 8px;
	}
}
@media (max-width: 960px) {
	.btn-top {
		min-height: 40px;
		padding: 4px 16px;
	}
	.btn-top .item-ico {
		width: 32px;
		margin-right: 8px;
	}
}

/*----------------------------------------------------
	トップ スライド
----------------------------------------------------*/
.top-slide {
	overflow: hidden; 
	background: url(../images/top/bg_slide.png) 0 0/auto 100%;
}
@media (min-width: 961px) {
	.top-slide {
		height: 23.35766vw; 
		padding: 2.62774vw 0;
	}
	.top-slide .item {
		width: 32.40876vw;
		padding: 0 10px;
	}
	.top-slide .item img {
		width: 100%;
	}
	.top-slide .slick-prev,
	.top-slide .slick-next {
		z-index: 900;
	}
	.top-slide .slick-prev {
		left: 33%;
		width: 32px;
		height: 32px;
	}
	.top-slide .slick-next {
		right: 33%;
	}
	.top-slide .slick-prev:before,
	.top-slide .slick-next:before {
		color: #fff;
		font-size: 32px;
	}
}
@media (max-width: 960px) {
	.top-slide {
		padding: 7.29927vw 0;
	}
}

/*----------------------------------------------------
	トップ コンテンツ全体
----------------------------------------------------*/
.top-contents {
	background-color: #e1f0fa;
}
@media (min-width: 961px) {
	.top-contents {
		padding: 40px 0;
	}
}
@media (max-width: 960px) {
	.top-contents {
		padding: 6.25vw 0;
	}
}

/*----------------------------------------------------
	トップ コンテンツナビ
----------------------------------------------------*/
@media (min-width: 961px) {
	.top-contents-nav ul {
		-ms-flex-pack: justify;
		justify-content: space-between; 
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.top-contents-nav li {
		width: 23.8%;
		max-width: 238px;
	}
}

@media (max-width: 960px) {
	.top-contents-nav li:not(:last-child) {
		margin-bottom: 3.125vw;
	}
}

/*----------------------------------------------------
	トップ メイン
----------------------------------------------------*/
.top-main .top-main-body {
	padding: 0 10px;
	overflow: auto; 
	background-color: #fff;
	border-radius: 10px;
}

@media (min-width: 961px) {
	.top-main .top-main-wrap {
		-ms-flex-pack: justify;
		justify-content: space-between; 
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.top-main .top-main-wrap > * {
		width: 49%;
	}
}

.top-news .item {
	position: relative;
	display: block;
}
.top-news .item:after {
	position: absolute;
	top: 50%;
	right: 18px;
	display: block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	content: "";
	background: url(../images/top/ico_arrow.png) center center/contain no-repeat;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: -webkit-transform .3s ease-out;
	        transition: -webkit-transform .3s ease-out;
	        transition:         transform .3s ease-out;
	        transition:         transform .3s ease-out, -webkit-transform .3s ease-out;
}

.top-news .item-header {
	align-items: center; 
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
}

.top-news li {
	padding: .75em 0;
}

.top-news li:not(:last-child) {
	border-bottom: 1px dotted #82b446;
}

.top-news .category {
	padding: .25em .5em;
	margin-left: 1em;
	color: #fff;
	line-height: 1;
	background-color: #82b446; 
	border-radius: .75em;
}

.top-news .item-subject {
	height: 1.5em;
	padding-right: 4em;
	overflow: hidden;
}

@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.top-news .item:hover {
		color: #82b446;
	}
	.top-news .item:hover:after {
		-webkit-transform: translateX(10px);
		        transform: translateX(10px);
	}
}

@media (min-width: 961px) {
	.top-news .top-main-body {
		height: 328px;
	}
}

@media (max-width: 960px) {
	.top-news .item:after {
		right: 12px;
		width: 16px;
		height: 16px;
		margin-top: -8px;
	}
}

.top-topics .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	line-height: 1.5;
}

.top-topics li {
	padding: .75em 0;
}

.top-topics li:not(:last-child) {
	border-bottom: 1px dotted #82b446;
}

.top-topics .item-body {
	-ms-flex: 1;
	    flex: 1; 

	-webkit-box-flex: 1;
}

.top-topics .item-subject {
	height: 3em;
	overflow: hidden;
}

@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.top-topics .item:hover {
		color: #82b446;
	}
}

@media (min-width: 961px) {
	.top-topics .item-picture {
		width: 86px;
		margin-right: 8px;
	}
}

@media (max-width: 960px) {
	.top-topics {
		margin-bottom: 4.6875vw;
	}
	.top-topics .item-picture {
		width: 86px;
		margin-right: 8px;
	}
}

/*----------------------------------------------------
	トップ サイド
----------------------------------------------------*/
.top-contents .facebook-container {
	position: relative;
	height: 0;
	padding-top: 35px;
	padding-bottom: 230%;
	overflow: hidden;
}
.top-contents .facebook-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 960px) {
	.top-contents .facebook-container {
		padding-bottom: 100%;
		text-align: center;
	}
}

/*----------------------------------------------------
	トップ ブログ
----------------------------------------------------*/
.top-blog .item-picture {
	position: relative;
}
.top-blog .item-picture span {
	display: block;
	width: 100%;
	height: 100%;
	border: 3px solid transparent; 
	-webkit-transition: all .3s ease-out;
	        transition: all .3s ease-out;
	pointer-events: none;
}

.top-blog .item-body {
	line-height: 1.5;
}

@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.top-blog .item-picture a:hover span {
		border-color: #82b446;
	}
}

@media (min-width: 961px) {
	.top-blog {
		padding: 40px 0;
	}
	.top-blog .item-body {
		padding: 0 .5em;
	}
	.top-blog .item {
		width: 25%;
		max-width: 250px;
		padding: 0 .5%;
	}
	.top-blog .item-subject {
		height: 3em;
		overflow: hidden;
	}
}

@media (max-width: 960px) {
	.top-blog {
		padding: 6.25vw 0;
	}
	.top-blog .item:not(:last-child) {
		margin-bottom: 4.6875vw;
	}
}

.top-blog .slick-prev,
.top-blog .slick-next {
	top: 32%;
	width: 40px;
	height: 40px;
}

.top-blog .slick-prev:before,
.top-blog .slick-next:before {
	color: #82b446;
	font-size: 24px;
}

/*----------------------------------------------------
	トップ xxx
----------------------------------------------------*/
/*----------------------------------------------------
	会社概要
----------------------------------------------------*/
@media (min-width: 961px) {
	.company-about .c1 {
		width: 180px;
	}
}

@media (max-width: 960px) {
	.company-about table,
	.company-about tbody,
	.company-about tr,
	.company-about td,
	.company-about th {
		display: block;
	}
	.company-about table {
		font-size: .9em;
	}
	.company-about td {
		border: none !important;
	}
}

@media (min-width: 961px) {
	.company-area .item-wrap {
		-ms-flex-pack: justify;
		justify-content: space-between; 
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.company-area .data {
		-ms-flex: 1;
		    flex: 1; 

		-webkit-box-flex: 1;
	}
	.company-area .map {
		width: 350px;
		margin-left: 30px;
	}
	.company-area th {
		padding: .6em 1em;
	}
	.company-area td {
		padding: .6em 1em;
	}
}

@media (max-width: 960px) {
	.company-area table {
		margin-bottom: 4.6875vw; 
		font-size: .9em;
	}
}

@media (min-width: 961px) {
	.company-office .item-picutes {
		-ms-flex-pack: justify;
		justify-content: space-between; 
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.company-office .item-picutes p {
		width: 48.8%;
	}
}

@media (max-width: 960px) {
	.company-office .item-map iframe {
		height: 56.25vw;
	}
}

.company-pictures .item-info {
	line-height: 1.5;
}

.company-pictures .item-action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.company-pictures .item-action p + p {
	margin-left: 8px;
}
.company-pictures .item-action .btn {
	min-width: 100px;
	padding: .3125em 1em;
	color: #fff;
	font-size: 13px;
	border-radius: .9375em;
}

.company-pictures .youtube {
	background-color: #fe4e56;
}

.company-pictures .map {
	background-color: #39f;
}

@media (min-width: 961px) {
	.company-pictures {
		-ms-flex-pack: justify;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap; 
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.company-pictures:after {
		display: block;
		width: 22%; 
		content: "";
	}
	.company-pictures .item {
		width: 31.6%;
	}
}

/*----------------------------------------------------
	パーソナリティ
----------------------------------------------------*/
.personality-title {
	align-items: center; 
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
}
.personality-title:after {
	display: block;
	width: 100%;
	height: 2px;
	content: "";
	background-color: #82b446;
}
.personality-title span {
	margin-right: .5em;
	color: #82b446;
	font-weight: bold; 
	white-space: nowrap;
}
@media (min-width: 961px) {
	.personality-title {
		font-size: 1.5em;
	}
}
@media (max-width: 960px) {
	.personality-title {
		font-size: 1.25em;
	}
}

.personality-contents .items:after {
	display: block;
	clear: both; 
	content: "";
}

.personality-contents .item {
	float: left;
	text-align: center;
}

.personality-contents .item-picture img {
	border: 3px solid transparent;
	border-radius: 50%;
	-webkit-transition: all .3s ease-out;
	        transition: all .3s ease-out;
}

@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.personality-contents .item-picture a:hover img {
		border: 3px solid #82b446;
	}
}

@media (min-width: 961px) {
	.personality-contents .item {
		width: 14.5%;
		max-width: 145px;
	}
	.personality-contents .item:not(:nth-child(6n+6)) {
		margin-right: 2.6%;
	}
}

@media (max-width: 960px) {
	.personality-contents .item {
		width: 48%;
	}
	.personality-contents .item:not(:nth-child(2n+2)) {
		margin-right: 4%;
	}
}

/*----------------------------------------------------
	パーソナリティ詳細
----------------------------------------------------*/
@media (min-width: 961px) {
	.personality-detail {
		padding: 80px 0;
	}
}

@media (max-width: 960px) {
	.personality-detail {
		padding: 12.5vw 0;
	}
}

.personality-profile .item-picture img {
	border: 3px solid transparent;
	border-radius: 50%;
	-webkit-transition: all .3s ease-out;
	        transition: all .3s ease-out;
}

.personality-profile dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 4px 0;
}

.personality-profile dt {
	align-items: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 5.5em;
	color: #fff;
	font-size: 12px;
	text-align: center;
	background-color: #82b446;
	border-radius: 4px; 

	-webkit-box-align: center;
	-webkit-box-pack: center;
}

.personality-profile dd {
	-ms-flex: 1;
	    flex: 1;
	padding: .125em .5em;
	margin-left: 5px;
	font-size: 14px;
	border-top: 1px dotted #b3b3b3;
	border-bottom: 1px dotted #b3b3b3; 

	-webkit-box-flex: 1;
}

@media (min-width: 961px) {
	.personality-profile .item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.personality-profile .item-picture {
		width: 240px;
	}
	.personality-profile .item-detail {
		-ms-flex: 1;
		    flex: 1;
		margin-left: 40px; 

		-webkit-box-flex: 1;
	}
}

@media (max-width: 960px) {
	.personality-profile .item-picture {
		padding: 0 15%;
		text-align: center;
	}
	.personality-profile .item-header {
		text-align: center;
	}
}

.personality-faq .item-q {
	padding: .25em 1em;
	color: #fff;
	font-size: 14px;
	background-color: #82b446;
}
.personality-faq .item-q i {
	font-size: 20px;
	font-style: normal;
}

.personality-faq .item-a {
	padding: .75em 1em;
	font-size: 14px;
	background: #f2f2f2;
}

/*----------------------------------------------------
	動画アーカイブ
----------------------------------------------------*/
.movie-contents {
	background-color: #eee;
}

.movie-title {
	padding: .25em 1em;
	color: #fff;
	font-weight: bold;
	background-color: #82b446;
}

.movie-contents .item {
	background-color: #fff;
}

.movie-contents .youtube {
	position: relative;
	padding-top: 56.25%;
}
.movie-contents .youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.movie-contents .item-title {
	font-weight: bold;
	line-height: 1.375;
}

.movie-contents .item-body {
	padding: 1em .75em;
}

@media (min-width: 961px) {
	.movie-contents {
		padding: 60px 0;
	}
	.movie-contents .items {
		-ms-flex-pack: justify;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap; 
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.movie-contents .items:after {
		display: block;
		width: 23.5%; 
		content: "";
	}
	.movie-contents .items:before {
		-ms-flex-order: 1;
		order: 1; 
		display: block;
		width: 23.5%;
		content: "";

		-webkit-box-ordinal-group: 2;
	}
	.movie-contents .item {
		width: 23.5%;
		max-width: 235px;
	}
}

@media (max-width: 960px) {
	.movie-contents {
		padding: 9.375vw 0;
	}
}

/*----------------------------------------------------
	広告料金
----------------------------------------------------*/
.commercial-contents {
	background-color: #f8f8f8;
}
.commercial-contents .item-header {
	color: #fff;
	line-height: 1.25;
	background-color: #82b446;
	border-radius: 10px 10px 0 0;
}
.commercial-contents .item-body {
	line-height: 1.25;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
}
.commercial-contents dt {
	font-weight: bold;
}
.commercial-contents dt small {
	font-size: 70%;
}
.commercial-contents table {
	width: 100%;
}
.commercial-contents table th {
	padding: .375em 1em;
	color: #fff;
	text-align: center;
	background-color: #666;
	border: 1px solid #ccc;
}
.commercial-contents table td {
	padding: .375em 1em;
	border: 1px solid #ccc;
}
@media (min-width: 961px) {
	.commercial-contents {
		padding: 60px 0;
	}
	.commercial-contents .item-header {
		align-items: center;
		-ms-flex-align: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 16px 30px; 

		-webkit-box-align: center;
	}
	.commercial-contents .item-header h2 {
		margin-right: 1em;
		white-space: nowrap;
	}
	.commercial-contents .item-body {
		padding: 20px 30px;
	}
	.commercial-contents dl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.commercial-contents dt {
		width: 430px;
	}
}
@media (max-width: 960px) {
	.commercial-contents {
		padding: 9.375vw 0;
	}
	.commercial-contents .item-header {
		padding: 10px 10px;
	}
	.commercial-contents .item-header h2 {
		margin-bottom: 5px;
	}
	.commercial-contents .item-body {
		padding: 10px 10px;
	}
	.commercial-contents dt {
		margin-bottom: 5px;
	}
	.commercial-contents th {
		white-space: nowrap;
	}
}

/*----------------------------------------------------
	お知らせ
----------------------------------------------------*/
@media (min-width: 961px) {
	.news-contents {
		padding: 80px 0;
	}
}

@media (max-width: 960px) {
	.news-contents {
		padding: 12.5vw 0;
	}
}

.news-list {
	border-top: 1px solid #e6e6e6;
}
.news-list li {
	border-bottom: 1px solid #e6e6e6;
}
.news-list li .item {
	align-items: center;
	-ms-flex-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1em 0; 

	-webkit-box-align: center;
}
.news-list .date {
	width: 7em;
	padding-right: 1em;
}
.news-list .category {
	width: 7em;
}
.news-list .category span {
	display: block;
	padding: .25em 1em;
	color: #fff;
	line-height: 1;
	text-align: center;
	background-color: #82b446; 
	border-radius: .75em;
}
.news-list .subject {
	-ms-flex: 1;
	    flex: 1; 

	-webkit-box-flex: 1;
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.news-list a {
		-webkit-transition: all .3s ease-out;
		        transition: all .3s ease-out;
	}
	.news-list a:hover {
		color: #82b446;
	}
}
@media (min-width: 961px) {
	.news-list .subject {
		padding-left: 1em;
	}
}
@media (max-width: 960px) {
	.news-list li .item {
		display: block;
	}
	.news-list .category span {
		display: inline-block;
	}
	.news-list .subject {
		width: 100%;
	}
}

.news-listB li {
	line-height: 1.25;
}

@media (min-width: 961px) {
	.news-listB {
		-ms-flex-pack: justify;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap; 
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;

		-webkit-box-pack: justify;
	}
	.news-listB:after {
		display: block;
		width: 31%; 
		content: "";
	}
	.news-listB li {
		width: 31%;
	}
}

.news-detail .item-header {
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #e6e6e6;
}

.news-detail .item-body > * + * {
	margin-top: 1.5em;
}

.news-detail .item-body:after {
	display: block;
	clear: both; 
	content: "";
}

.news-detail .item-body .alignleft {
	float: left;
	margin-right: 1.75em;
}

.news-detail .item-body .alignright {
	float: right;
	margin-left: 1.75em;
}

.news-detail .item-body .aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto; 
	clear: both;
}

.news-detail .item-body .wp-caption {
	max-width: 100%; 
	margin-bottom: 1.75em;
}

.news-detail .item-body h1 {
	margin: .67em 0;
	font-size: 2em;
	font-weight: bold;
}

.news-detail .item-body h2 {
	margin-top: .83em;
	margin-bottom: .83em;
	font-size: 1.5em;
	font-weight: bold;
}

.news-detail .item-body h3 {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	font-size: 1.17em;
	font-weight: bold;
}

.news-detail .item-body h4 {
	margin-top: 1.33em;
	margin-bottom: 1.33em;
	font-weight: bold;
}

.news-detail .item-body h5 {
	margin-top: 1.67em;
	margin-bottom: 1.67em;
	font-size: .83em;
	font-weight: bold;
}

.news-detail .item-body strong {
	font-weight: bold;
}

.news-detail .item-body em {
	font-style: italic;
}

.news-detail .item-body img {
	height: auto;
}

/*----------------------------------------------------
	お問い合わせ
----------------------------------------------------*/
.contact-contents {
	background: #f8f8f8;
}
.contact-contents .inner {
	max-width: 786px;
	margin: 0 auto;
}
@media (min-width: 961px) {
	.contact-contents {
		padding: 80px 0;
	}
	.contact-contents .inner {
		padding: 80px 0;
	}
	.contact-contents dl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.contact-contents dt {
		width: 250px;
		padding: 1em 1em;
		background: #f2f2f2;
		border: 1px solid #ccc;
	}
	.contact-contents dd {
		-ms-flex: 1;
		    flex: 1;
		border: 1px solid #ccc;
		border-left: none; 

		-webkit-box-flex: 1;
	}
	.contact-contents dd p {
		padding: 1em 1em;
	}
}
@media (max-width: 960px) {
	.contact-contents .inner {
		padding: 12.5vw 0;
	}
	.contact-contents dt {
		padding: .75em 1em;
		background: #f2f2f2;
		border: 1px solid #ccc;
	}
	.contact-contents dd {
		border: 1px solid #ccc;
		border-top: none;
	}
}

.input-labels {
	padding: .75em 1em;
}
.input-labels label {
	margin-right: 1em;
}

input[type="radio"] {
	margin-right: .25em;
}

input[type="text"],
input[type="email"],
textarea {
	padding: .75em 1em;
	vertical-align: bottom; 
	border: none;
}

input[type="text"],
input[type="email"] {
	width: 100%;
	height: 60px;
}

textarea {
	width: 100%;
	height: 200px;
}

@media (max-width: 960px) {
	input[type="text"] {
		height: 40px;
	}
	textarea {
		height: 100px;
	}
}

input[type="submit"] {
	color: #fff;
	background-color: #82b446;
	border: 2px solid #82b446;
	border-radius: 10px;
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	input[type="submit"]:hover {
		color: #82b446;
		background-color: #fff;
	}
}
@media (min-width: 961px) {
	input[type="submit"] {
		width: 380px;
		height: 60px;
	}
}
@media (max-width: 960px) {
	input[type="submit"] {
		width: 100%;
		height: 50px;
	}
}

/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/
.fadeIn {
	display: none;
}
.fadeIn.show {
	-webkit-animation: fadeIn .6s linear;
	        animation: fadeIn .6s linear;
}

.bold,
.strong {
	font-weight: bold;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

.indent--2 {
	padding-left: 2em;
	text-indent: -2em;
}

.indent--3 {
	padding-left: 3em;
	text-indent: -3em;
}

.lh18 {
	line-height: 1.8;
}
@media (max-width: 960px) {
	.lh18 {
		line-height: 1.5;
	}
}

.lh2 {
	line-height: 2;
}
@media (max-width: 960px) {
	.lh2 {
		line-height: 1.75;
	}
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb45 {
	margin-bottom: 45px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.mb55 {
	margin-bottom: 55px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb65 {
	margin-bottom: 65px !important;
}

.mb70 {
	margin-bottom: 70px !important;
}

.mb75 {
	margin-bottom: 75px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

@media (max-width: 960px) {
	.mb5 {
		margin-bottom: .78125vw !important;
	}
	.mb10 {
		margin-bottom: 1.5625vw !important;
	}
	.mb15 {
		margin-bottom: 2.34375vw !important;
	}
	.mb20 {
		margin-bottom: 3.125vw !important;
	}
	.mb25 {
		margin-bottom: 3.90625vw !important;
	}
	.mb30 {
		margin-bottom: 4.6875vw !important;
	}
	.mb35 {
		margin-bottom: 5.46875vw !important;
	}
	.mb40 {
		margin-bottom: 6.25vw !important;
	}
	.mb45 {
		margin-bottom: 7.03125vw !important;
	}
	.mb50 {
		margin-bottom: 7.8125vw !important;
	}
	.mb55 {
		margin-bottom: 8.59375vw !important;
	}
	.mb60 {
		margin-bottom: 9.375vw !important;
	}
	.mb65 {
		margin-bottom: 10.15625vw !important;
	}
	.mb70 {
		margin-bottom: 10.9375vw !important;
	}
	.mb75 {
		margin-bottom: 11.71875vw !important;
	}
	.mb80 {
		margin-bottom: 12.5vw !important;
	}
	.mb100 {
		margin-bottom: 15.625vw !important;
	}
}

.fz10 {
	font-size: .625em;
}

.fz12 {
	font-size: .75em;
}

.fz13 {
	font-size: .8125em;
}

.fz14 {
	font-size: .875em;
}

.fz15 {
	font-size: .9375em;
}

.fz16 {
	font-size: 1em;
}

.fz18 {
	font-size: 1.125em;
}

.fz20 {
	font-size: 1.25em;
}

.fz22 {
	font-size: 1.375em;
}

.fz24 {
	font-size: 1.5em;
}

.fz26 {
	font-size: 1.625em;
}

.fz28 {
	font-size: 1.75em;
}

.fz30 {
	font-size: 1.875em;
}

.fz32 {
	font-size: 2em;
}

.fz40 {
	font-size: 2.5em;
}

@media (max-width: 960px) {
	.fz10--sp {
		font-size: .625em;
	}
	.fz12--sp {
		font-size: .75em;
	}
	.fz13--sp {
		font-size: .8125em;
	}
	.fz14--sp {
		font-size: .875em;
	}
	.fz15--sp {
		font-size: .9375em;
	}
	.fz16--sp {
		font-size: 1em;
	}
	.fz18--sp {
		font-size: 1.125em;
	}
	.fz20--sp {
		font-size: 1.25em;
	}
	.fz22--sp {
		font-size: 1.375em;
	}
	.fz24--sp {
		font-size: 1.5em;
	}
	.fz26--sp {
		font-size: 1.625em;
	}
	.fz28--sp {
		font-size: 1.75em;
	}
	.fz30--sp {
		font-size: 1.875em;
	}
	.fz32--sp {
		font-size: 2em;
	}
	.fz40--sp {
		font-size: 2.5em;
	}
}

.c-green {
	color: #82b446;
}

.c-yellow {
	color: #ffff5b;
}

.c-red {
	color: #ed1c24;
}

.bgW {
	background-color: #fff;
}

.bgLG {
	background-color: #f8f8f8;
}