@charset "UTF-8";


/*--------------------
メインコンテンツ
--------------------*/

#announcer > .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#announcer > .container:last-of-type {
    padding-bottom: 50px;
}
#announcer .column01 > section {
    margin-bottom: 40px;
}
#announcer .column01 {
    width: 72%;
    max-width: 900px;
}
#announcer .column02 {
	width: 27%;
	min-width: 300px;
	margin-left: 25px;
	position: sticky;
	top: 15px;
}
#announcer .column02 > section {
	margin-bottom: 15px;
}

/*--------------------
アナウンサー・タレント一覧
--------------------*/

section h1.ttl {
    background: #fff;
    background: linear-gradient(-45deg,
    #f7f1ff 25%,
    #fff 25%, #fff 50%,
    #f7f1ff 50%, #f7f1ff 75%,
    #fff 75%, #fff);
    background-size: 15px 15px;
    background-attachment: fixed;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #777;
}
section h2.ttl {
    color: #b9a2e2;
    font-weight: bold;
    text-align: center;
    font-size: 26px;
    margin: 30px 0;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
section h2.ttl:before,
section h2.ttl:after {
    content: "";
    width: 25%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #b9a2e2 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
}
section h2.ttl span.deco,
section h2.ttl span.deco:before,
section h2.ttl span.deco:after {
    position: absolute;
    width: 30px;
    height: 2px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background: #aaa;
    border-radius: 3px;
}
section h2.ttl span.deco:before,
section h2.ttl span.deco:after {
    content: "";
}
section h2.ttl span.deco {
    transform: rotate(90deg);
}
section h2.ttl span.deco:before {
    transform: translate(10px, -50px) rotate(38deg);
}
section h2.ttl span.deco:after {
    transform: translate(10px, 50px) rotate(-38deg);
}
section h2.ttl span.deco span:before,
section h2.ttl span.deco span:after {
    position: absolute;
    width: 25px;
    height: 2px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #aaa 25%,transparent 25%) repeat-x;
    background-size: 6px 100%;
    content: "";
    border-radius: 2px;
}
section h2.ttl span.deco span:before {
    transform: translate(4px, -25px) rotate(15deg);
}
section h2.ttl span.deco span:after {
    transform: translate(4px, 25px) rotate(-15deg);
}
.anaWrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
@media screen and (min-width: 1025px){
.anaWrap > li {
    width: 28.3%;
    margin-right: 7%;
    margin-bottom: 3%;
}
.anaWrap > li:nth-child(3n) {
    margin-right: 0;
}
}
@media screen and (max-width: 1024px){
.anaWrap > li {
	width: 46%;
	margin-right: 8%;
	margin-bottom: 3%;
}
.anaWrap > li:nth-child(2n) {
    margin-right: 0;
}
}
.anaWrap img {
    /* width:100%; */
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.anaWrap figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .01);
    border-radius: 50%;
}
.anaWrap figure:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    border-radius: 50%;
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.anaWrap .nameWrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #666;
	margin-top: 15px;
}
.anaWrap .job {
	width: 80%;
	color: #aaa;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.anaWrap .job:before,
.anaWrap .job:after {


    content: "";
    width: 22%;
    height: 2px;
    display: block;
    background: rgba(0, 0, 0, .1);
}
.anaWrap .name {
	line-height: 1.4;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}
.anaWrap .name span {
	font-size: 50%;
	display: block;
	font-weight: normal;
	text-align: center;
	color: #aaa;
}

.anaWrap .profBtn {
	margin: 10px auto;
	display: flex;
	width: 85%;
	transform: none !important;
	border-radius: 20px;
	border: solid 1px #666;
	overflow: hidden;
}
.anaWrap .profBtn li {
    width: 100%;
    height: auto;
    color: #777;
    font-size: 13px;
    position: relative;
    box-sizing: border-box;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.anaWrap .profBtn li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #b9a2e2;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anaWrap .profBtn li:hover:before,
.anaWrap .profBtn li:active:before {
    width: 100%;
}
.anaWrap .profBtn li:hover {
    color: #fff;
}
.anaWrap .profBtn li:first-of-type {
    border-right: solid 1px #777;
}
.anaWrap .profBtn li:only-of-type {
    border-right: none;
}
.anaWrap .profBtn a {
    position: relative;
    display: block;
    color: inherit;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 6px 0px;
}
.anaWrap .profBtn svg {
	margin-right: 0.4em;
}


/*--------------------
新着ブログ一覧
--------------------*/

#newArticleWrap h3.ttl {
    color: #b9a2e2;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    position: relative;
}
#newArticleWrap h3.ttl:before,
#newArticleWrap h3.ttl:after {
    content: "";
    width: 25%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #b9a2e2 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
}
#newArticleWrap h3.ttl span.deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 80%;
}
#newArticleWrap h3.ttl span.deco:before,
#newArticleWrap h3.ttl span.deco:after {
    content: "";
    width: 2px;
    height: 20px;
    background: #aaa;
    border-radius: 3px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#newArticleWrap h3.ttl span.deco:before {
    transform: translate(-35px, 0px) rotate(-25deg);
}
#newArticleWrap h3.ttl span.deco:after {
    transform: translate(35px, 0px) rotate(25deg);
}

.newArticleCont li{
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}
.newArticleCont a {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
	transition: .3s;
}
.newArticleCont a:hover {
	color: #705d92;
}
.newArticleCont .date {
    width: 25%;
}
.newArticleCont .ttl,
.newArticleCont .name {
    width: 75%;
}
.newArticleCont .ttl {
	font-size: 15px;
	font-weight: bold;
}

/*--------------------
アナウンサー詳細ページ
--------------------*/

.profWrap {
}
.profWrap:after {
	 clear: both;
	 height: 0;
	 font-size: 0;
	 visibility: hidden;
	 display: block;
	 content: ".";
}
.profMain {
	width: 36%;
	float: left;
}
.profWrap img {
    width:100%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease-out;
}
.profWrap figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    padding-top: 120%;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .01);
    width: 100%;
}
.profWrap figure:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.profWrap .name {
	line-height: 1.4;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin: 20px auto;
	color: #666;
}
.profWrap .name span {
	font-size: 30%;
	display: block;
	font-weight: normal;
	text-align: center;
	color: #aaa;
}
.profWrap .blogBtn {
    width: 100%;
    max-width: 270px;
    height: auto;
    color: #777;
    font-size: 21px;
    position: relative;
    box-sizing: border-box;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: solid 1px #666;
    margin: 0 auto;
}
.profWrap .blogBtn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #b9a2e2;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.profWrap .blogBtn:hover:before,
.profWrap .blogBtn:active:before {
    width: 100%;
}
.profWrap .blogBtn:hover {
    color: #fff;
}
.profWrap .blogBtn span {
    position: relative;
    display: block;
    color: inherit;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 6px 0px;
}
.profWrap .blogBtn svg {
	margin-right: 0.4em;
}
.profWrap .data {
	padding: 15px 35px;
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	position: relative;
	margin-top: 10px;
	float: right;
	width: 60%;
	box-sizing: border-box;
}
.profWrap .data:before,
.profWrap .data:after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #b9a2e2 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
    position: absolute;
    left: 0;
}
.profWrap .data:before { top:0; }
.profWrap .data:after { bottom:0; }
.profWrap .data li {
    min-width: 49%;
    box-sizing: border-box;
    padding: 6px;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
}
.profWrap .data span {
}
.profWrap .data li span:first-of-type {
    color: #b9a2e2;
    font-weight: bold;
    margin-right: 1em;
    min-width: 3em;
}
.profWrap .data dd {
    width: 35%;
}
.profDetail {
	width: 60%;
	float: right;
}
.profWrap .qa {
	margin-top: 20px;
}
.profWrap .qa dt {
	color: #b9a2e2;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
}
.profWrap .qa dd {
	padding-left: 1em;
	font-size: 15px;
	margin-bottom: 20px;
}

/*------ SNSボタン ------*/

.profWrap .snsCont {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px
}
.profWrap .snsCont li {margin: 0 8px;}
.profWrap .snsCont li a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    font-size: 23px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    transition: all 300ms ease-out;
}
.profWrap .snsCont li a svg {
transition: all 300ms ease-out;
}
.profWrap .snsCont li a:hover {
	opacity:.9;
}
.profWrap .snsCont li a:hover svg {
	transform:scale(1.1);
}
.profWrap .snsCont li a:hover {
}
.profWrap .snsCont li a.facebook {
    background: #1877f2;
}
.profWrap .snsCont li a.twitter {
    background: #1DA1F2;
    background: #000;
}
.profWrap .snsCont li a.instagram {
    background: #D93177;
    background:
		radial-gradient(circle farthest-corner at 32% 106%,
		rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%),
		linear-gradient(135deg, rgb(35, 75, 215) 12%,rgb(195, 60, 190) 58%);
}

/*----------------------*/


.poyof {
    width:70%;
    margin: 0 auto;
}
.profDetail img {
    width:83%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
}
.profDetail figure {
    overflow: hidden;
    position: relative;
    padding-top: 70%;
    background: none;
    border: none;
    width: 100%;
}
.profDetail figure:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: none;
}
.poyof_sp {
    display: none;
}

@media screen and (max-width: 1024px){
.profMain {
	float: none;
	width: 100%;
}
.profWrap figure {
	float: left;
	width: 50%;
	padding-top: 60%;
	margin-bottom: 20px;
}
.profWrap .name, .profWrap .blogBtn {
	max-width: none;
	float: right;
	width: 46%;
	margin: 10px auto;
}
.profWrap .data {
	width: 46%;
	margin: 20px 0;
	float: right;
	padding: 10px 15px;
}
.profWrap .data li {
}
/*------ SNSボタン ------*/

.profWrap .snsCont {
    width: 49%;
    justify-content: center;
    margin-top: 10px;
    float: right;
}

/*----------------------*/

.poyof {
    width:70%;
    margin: 0 auto;
}
.profDetail img {
    width:70%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
}
.profDetail {
    width: 100%;
    clear: both;
}
.profDetail figure {
	width: 100%;
    float: none;
	padding-top: 58%;
	margin-bottom: 20px;
}
}

#detailNav h3.ttl {
    color: #b9a2e2;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    padding-top: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
#detailNav h3.ttl:before,
#detailNav h3.ttl:after {
    content: "";
    width: 25%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #b9a2e2 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
}
#detailNav h3.ttl span.deco,
#detailNav h3.ttl span.deco:before,
#detailNav h3.ttl span.deco:after {
    position: absolute;
    width: 20px;
    height: 2px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background: #aaa;
    border-radius: 3px;
}
#detailNav h3.ttl span.deco:before,
#detailNav h3.ttl span.deco:after {
    content: "";
}
#detailNav h3.ttl span.deco {
    transform: rotate(90deg);
}
#detailNav h3.ttl span.deco:before {
    transform: translate(10px, -50px) rotate(38deg);
}
#detailNav h3.ttl span.deco:after {
    transform: translate(10px, 50px) rotate(-38deg);
}
#detailNav h3.ttl span.deco span:before,
#detailNav h3.ttl span.deco span:after {
    position: absolute;
    width: 15px;
    height: 2px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #aaa 25%,transparent 25%) repeat-x;
    background-size: 6px 100%;
    content: "";
    border-radius: 2px;
}
#detailNav h3.ttl span.deco span:before {
    transform: translate(4px, -25px) rotate(15deg);
}
#detailNav h3.ttl span.deco span:after {
    transform: translate(4px, 25px) rotate(-15deg);
}

#detailNav figure {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    margin: 0;
}
#detailNav iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

#offshot {
    overflow: hidden;
    background: #fff;
    background: linear-gradient(-45deg,
    #f7f1ff 25%,
    #fff 25%, #fff 50%,
    #f7f1ff 50%, #f7f1ff 75%,
    #fff 75%, #fff);
    background-size: 15px 15px;
    background-attachment: fixed;
    padding: 0px 20px 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #777;
}
#offshot h1.ttl {
    font-size: 20px;
    font-weight: bold;
    color: #777;
    margin-bottom: 0px;
}
#offshot .slider {
    width: 80%;
    max-width: 1000px;
    margin:0 auto;
}
#offshot .slider a {
    color: #fff;
    display: block;
    position: relative;
}
#offshot .slider figure {
    /* width: 100%; */
    /* overflow: hidden; */
    /* position: relative; */
    padding-top: 0;
    /* margin: 0; */
}
#offshot .slider img {
    width: 100%;
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* transition: all 500ms ease-out; */
}
#offshot .slick-arrow {
    z-index: 1;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #cccccc;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    color: #cccccc;
    transition: all 300ms ease;
}
#offshot .slick-arrow:hover {
    color: #a9a9a9;
}
#offshot .slick-arrow:before {
    display: none;
}
#offshot .slick-arrow svg {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#offshot .slick-prev {
    left: -35px;
}
#offshot .slick-next {
    right: -35px;
}

prevList {
	margin-top: 60px !important;
}
#prevList .btn {
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    display: table;
    box-sizing: border-box;
    color: #b9a2e2;
    border: solid 2px #b9a2e2;
    background: rgba(255, 255, 255, 0.4);
    text-align: center;
    text-decoration: none;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-shadow: none;
}
#prevList .btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #b9a2e2;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#prevList .btn.prev:before {
    right: 0;
	left: auto;
}
#prevList .btn:hover:before,
#prevList .btn:active:before {
    width: 100%;
}
#prevList .btn span {
    position: relative;
    display: block;
	padding: 10px;
}
#prevList .btn:hover {
    color: #fff;
}


/*--------------------
広告
--------------------*/

.ad {
	background: linear-gradient(
	-45deg, #F6F6F6 25%, #fff 25%,
	#fff 50%, #F6F6F6 50%,
	#F6F6F6 75%, #fff 75%,
	#fff);
	background-size: 15px 15px;
	background-attachment: fixed;
	padding: 14px 0;
}
#ad1_wrap {
	text-align: center;
}