/*
* Theme Name: MINPOREN-campaign 2025
* Version: 1.0
* Author: GLOWDIA
* Description: 日本民間放送連盟賞受賞作品配信キャンペーン専用テーマ
*/

/*	RESETS NL4.0.0base
============================== */
html,
body,
main,
div,
p,
span,
applet,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
ruby {
 margin: 0;
 padding: 0;
 border: 0;
 font-size: 100%;
 vertical-align: baseline;
}
ol,
ul,
li {
 list-style: none;
}
a img,
form,
fieldset {
 border: none;
}
input,
button,
select {
 vertical-align: middle;
}
textarea {
 vertical-align: top;
 overflow: auto;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
.dpb {
 display: block;
}
audio,
canvas,
progress {
 display: inline-block;
}
progress {
 vertical-align: baseline;
}
audio:not([controls]) {
 display: none;
 height: 0;
}
[hidden],
template,
.nt,
.alt {
 display: none;
}
a {
 background-color: transparent;
}
a:active,
a:hover {
 outline-width: 0;
}
a:hover {
 text-decoration: none;
}
abbr {
 cursor: help;
 border-bottom: 1px dotted #bbb;
}
abbr[title] {
 border-bottom: none;
 text-decoration: underline;
 text-decoration: underline dotted;
}
b,
strong,
.bt {
 font-weight: bolder;
}
dfn {
 font-style: italic;
}
mark {
 background: yellow;
 color: black;
}
small {
 font-size: 80%;
}
sub,
sup {
 font-size: 75%;
 line-height: 0;
 position: relative;
 vertical-align: baseline;
}
sup {
 top: -0.5em;
}
sub {
 bottom: -0.25em;
}
img {
 border-style: none;
 vertical-align: middle;
}
svg:not(:root) {
 overflow: hidden;
}
code,
kbd,
pre,
samp {
 font-family: monospace, monospace;
 font-size: 1em;
}
figure {
 margin: 1em 40px;
}
hr {
 box-sizing: content-box;
 height: 0;
 overflow: visible;
}
optgroup {
 font-weight: bold;
}
button,
input,
select {
 overflow: visible;
} /*Edge, IE*/
button,
input,
select,
textarea {
 margin: 0;
} /*Firefox and Safari*/
button,
select {
 text-transform: none;
} /*Edge, Firefox, and IE*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
 cursor: pointer;
}
[disabled] {
 cursor: default;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
 -webkit-appearance: button;
 appearance: button;
} /*Android 4, iOS*/
button::-moz-focus-inner,
input::-moz-focus-inner {
 border: 0;
 padding: 0;
} /*Firefox*/
button:-moz-focusring,
input:-moz-focusring {
 outline: 1px dotted ButtonText;
}
fieldset {
 border: 1px solid #c0c0c0;
 margin: 0 2px;
 padding: 0.35em 0.625em 0.75em;
}
legend {
 box-sizing: border-box;
 color: inherit;
 display: table;
 max-width: 100%;
 padding: 0;
 white-space: normal;
} /*Edge and IE ...etc*/
textarea {
 overflow: auto;
} /*IE*/
[type='checkbox'],
[type='radio'] {
 box-sizing: border-box;
 padding: 0;
} /*IE10-*/
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
 height: auto;
} /*Chrome*/
[type='search'] {
 -webkit-appearance: textfield;
 appearance: textfield;
} /*Chrome and Safari*/
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
 -webkit-appearance: none;
} /*Chrome and Safari on OS X*/
pre {
 overflow: auto;
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}
caption,
th,
td {
 text-align: center;
 font-weight: normal;
 vertical-align: middle;
}
q,
blockquote {
 quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
 content: '';
 content: none;
 display: table;
}
q:after,
blockquote:after {
 clear: both;
}
q::after,
blockquote::after {
 content: '';
 display: block;
 clear: both;
}
.clearfix:before,
.clearfix:after {
 content: '';
 content: none;
 display: table;
}
.clearfix:after {
 clear: both;
}
.clearfix::after {
 content: '';
 display: block;
 clear: both;
}
.tCenter,
.ct {
 text-align: center;
}
.tLeft,
.lt {
 text-align: left;
}
.tRight,
.rt {
 text-align: right;
}
@media print {
 .noprint {
  display: none;
 }
}
/*lazyload*/
.lazyload,
.lazyloading {
 opacity: 0;
}
.lazyloaded {
 opacity: 1;
 transition: all 1000ms;
}
/*fadein*/
.fadein {
 -webkit-animation: fadeIn 10s ease 1 normal;
 animation: fadeIn 10s 1 normal;
}
@-webkit-keyframes fadeIn {
 0% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}
@keyframes fadeIn {
 0% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}
/*fadeout*/
.fadeout {
 -webkit-animation: fadeout 10s ease 1 normal;
 animation: fadeout 10s 1 normal;
}
@-webkit-keyframes fadeout {
 0% {
  opacity: 1;
 }
 100% {
  opacity: 0;
 }
}
@keyframes fadeout {
 0% {
  opacity: 1;
 }
 100% {
  opacity: 0;
 }
}
/*txt*/
.nt {
 display: none;
}
.nt_txt {
 font-size: 0;
 width: 0;
 height: 0;
 overflow: hidden;
 opacity: 0;
}
.bt {
 font-weight: bold;
 font-weight: 700;
}
.ut {
 font-weight: lighter;
}
.br_rsmp,
.br_wsmp,
.br_tablet,
.br_pc,
.br_wpc,
.br_bwpc,
.br_rsmpi,
.br_wsmpi,
.br_tableti,
.br_pci,
.br_wpci,
.br_pci,
.br_bwpci {
 display: none;
}
.br_smp {
 display: -webkit-block;
 display: block;
}
.br_smpi {
 display: -webkit-inline;
 display: inline;
}
@media (min-width: 480px) {
 .br_smp,
 .br_smpi {
  display: none;
 }
 .br_rsmp {
  display: -webkit-block;
  display: block;
 }
 .br_rsmpi {
  display: -webkit-inline;
  display: inline;
 }
}
@media (min-width: 640px) {
 .br_rsmp,
 .br_rsmpi {
  display: none;
 }
 .br_wsmp {
  display: -webkit-block;
  display: block;
 }
 .br_wsmpi {
  display: -webkit-inline;
  display: inline;
 }
}
@media (min-width: 768px) {
 .br_wsmp,
 .br_wsmpi {
  display: none;
 }
 .br_tablet {
  display: -webkit-block;
  display: block;
 }
 .br_tableti {
  display: -webkit-inline;
  display: inline;
 }
}
@media (min-width: 1000px) {
 .br_tablet,
 .br_tableti {
  display: none;
 }
 .br_pc {
  display: -webkit-block;
  display: block;
 }
 .br_pci {
  display: -webkit-inline;
  display: inline;
 }
}
@media (min-width: 1200px) {
 .br_pc,
 .br_pci {
  display: none;
 }
 .br_wpc {
  display: -webkit-block;
  display: block;
 }
 .br_wpci {
  display: -webkit-inline;
  display: inline;
 }
}
@media (min-width: 1400px) {
 .br_wpc,
 .br_wpci {
  display: none;
 }
 .br_bwpc {
  display: -webkit-block;
  display: block;
 }
 .br_bwpci {
  display: -webkit-inline;
  display: inline;
 }
}
br {
 letter-spacing: 0;
}
.ct {
 text-align: center;
}
.lt {
 text-align: left;
}
.rt {
 text-align: right;
}
/*_size*/
.f300 {
 font-size: 300%;
}
.f240 {
 font-size: 240%;
}
.f220 {
 font-size: 220%;
}
.f200 {
 font-size: 200%;
}
.f180 {
 font-size: 180%;
}
.f170 {
 font-size: 180%;
}
.f160 {
 font-size: 160%;
}
.f150 {
 font-size: 150%;
}
.f140 {
 font-size: 140%;
}
.f130 {
 font-size: 130%;
}
.f125 {
 font-size: 125%;
}
.f120,
.big {
 font-size: 120%;
}
.f110 {
 font-size: 110%;
}
.f105 {
 font-size: 105%;
}
.f100 {
 font-size: 100%;
}
.f95 {
 font-size: 95%;
}
.f90,
.small {
 font-size: 90%;
}
.f85 {
 line-height: normal;
 font-size: 85% !important;
}
.f75 {
 line-height: normal;
 font-size: 75% !important;
}
.f65 {
 line-height: normal;
 font-size: 65% !important;
}
.f64 {
 line-height: normal;
 font-size: 64% !important;
}
.f_mini {
 line-height: 0;
 font-size: 50% !important;
}
/*_height*/
.lh100 {
 line-height: 100%;
}
.lh110 {
 line-height: 110%;
}
.lh120 {
 line-height: 120%;
}
.lh130 {
 line-height: 130%;
}
.lh140 {
 line-height: 140%;
}
.lh150 {
 line-height: 150%;
}
.lh160 {
 line-height: 160%;
}
.lh170 {
 line-height: 170%;
}
.lh180 {
 line-height: 180%;
}
.lh200 {
 line-height: 200%;
}
.lh230 {
 line-height: 230%;
}
/*space*/
.pd0 {
 padding: 0;
}
.pd1 {
 padding: 1em;
}
.pdt1 {
 padding-top: 1em;
}
.pdt0 {
 padding-top: 0;
}
.pdt05 {
 padding-top: 0.5em;
}
.pdb05 {
 padding-bottom: 0.5em;
}
.pdb0 {
 padding-bottom: 0;
}
.pdb1 {
 padding-bottom: 1em;
}
.pdl1 {
 padding-left: 1em;
}
.pd05 {
 padding: 0.5em;
}
.mgat {
 margin: auto;
}
.mgtb1 {
 margin: 1em auto;
}
.ls-1 {
 letter-spacing: -0.1em;
}
.ls-05 {
 letter-spacing: -0.05em;
}
.ls-075 {
 letter-spacing: -0.075em;
}
.ls0 {
 letter-spacing: 0;
}
.ls1 {
 letter-spacing: 0.1em;
}
.ls2 {
 letter-spacing: 0.2em;
}
/*color*/
.black {
 color: rgba(0, 0, 0, 1);
}
.lamp {
 color: rgba(42, 43, 46, 1);
}
.chacoal {
 color: rgba(59, 63, 74, 1);
}
.steel {
 color: rgba(129, 137, 157, 1);
}
.silver {
 color: rgba(192, 196, 206, 1);
}

.orange {
 color: rgba(225, 139, 79, 1);
}
.pink {
 color: rgba(212, 78, 128, 1);
}
.lgreen {
 color: rgba(189, 211, 101, 1);
}
.yellow {
 color: rgba(240, 215, 109, 1);
}
.blue {
 color: rgba(62, 141, 190, 1);
}
.lpink {
 color: rgba(237, 195, 215, 1);
}
a {
 text-decoration: none;
}
a:link {
 color: rgba(42, 43, 46, 1);
}
a:visited {
 color: rgba(42, 43, 46, 1);
}
a:active {
 color: rgba(62, 141, 190, 1);
}
a:hover {
 color: rgba(82, 83, 86, 1);
}
.nolnk {
 opacity: 0.35;
}
.sdt {
 text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.sdt2 {
 text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
/*etc*/
@media print {
 .noprint {
  display: none;
 }
}
.cover {
 width: 100%;
 height: 100%;
 background: url(images/cover.png) repeat;
 display: block;
 position: absolute;
 top: 0;
 left: 0;
}
/*lazyload*/
.lazyload,
.lazyloading {
 opacity: 0;
}
.lazyloaded {
 opacity: 1;
 transition: all 1500ms;
}
/*fadein*/
.fadein {
 -webkit-animation: fadeIn 2s ease 1 normal;
 animation: fadeIn 2s 1 normal;
}
@-webkit-keyframes fadeIn {
 0% {
  opacity: 0;
 }
 80% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}
@keyframes fadeIn {
 0% {
  opacity: 0;
 }
 80% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}
/*fadeout*/
.fadeout {
 -webkit-animation: fadeout 2s ease 1 normal;
 animation: fadeout 2s 1 normal;
}
@-webkit-keyframes fadeout {
 0% {
  opacity: 1;
 }
 100% {
  opacity: 0;
 }
}
@keyframes fadeout {
 0% {
  opacity: 1;
 }
 100% {
  opacity: 0;
 }
}

/*	COMMON
============================== */
.alt {
 position: absolute;
 top: -5000px;
 left: -9999px;
}
html {
 overflow-y: visible;
 min-height: 100%;
}
body {
 font-family: 'zen-maru-gothic', sans-serif;
 font-weight: 500;
 font-size: 74%;
 font-style: normal;
 line-height: 1;
 width: 100%;
 min-height: 100vh;
 position: relative;
 margin: 0 !important;
 background-color: rgba(255, 255, 255, 1);
 color: rgba(0, 0, 0, 1);
}
body.fixed {
 position: fixed;
 width: 100%;
 height: 100%;
 left: 0;
}
body a {
 text-decoration: none;
 outline-style: none;
}
h1 {
 display: none;
}

#container {
 box-sizing: border-box;
 width: 100%;
 position: relative;
 z-index: 10;
 padding-bottom: 8em;
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 -webkit-background-position: bottom center;
 background-position: bottom center;
 background-image: url(images/bg_btm.jpg);
}
#container .lt {
 font-weight: 400;
}
#container .bt {
 font-weight: 700;
}
#container .bbt {
 font-weight: 900;
}

/*	footer
============================== */
#footer {
 box-sizing: border-box;
 width: 100%;
 background: rgb(212, 78, 128);
 background: -moz-linear-gradient(
  left,
  rgba(212, 78, 128, 1) 0%,
  rgba(225, 139, 79, 1) 100%
 );
 background: -webkit-linear-gradient(
  left,
  rgba(212, 78, 128, 1) 0%,
  rgba(225, 139, 79, 1) 100%
 );
 background: linear-gradient(
  to right,
  rgba(212, 78, 128, 1) 0%,
  rgba(225, 139, 79, 1) 100%
 );
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d44e80', endColorstr='#e18b4f',GradientType=1 );
 padding: 0.5em 0;
 position: relative;
}
#footer:before,
#footer:after {
 content: '';
 content: none;
 display: table;
}
#footer:after {
 clear: both;
}
#footer::after {
 content: '';
 display: block;
 clear: both;
}
#pgtp_sp {
 width: 50px;
 height: 50px;
 float: right;
 margin-right: 0.5em;
}
#pgtp_sp a:hover {
 opacity: 0.8;
}
#pgtp_img {
 width: 100%;
 height: 0;
 padding-top: 100%;
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/pgtp.png);
}
#cr {
 width: calc(100% - 60px - 1em);
 position: absolute;
 top: 50%;
 left: 1em;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 color: rgba(255, 255, 255, 1);
}
/*for_W480-*/
@media all and (min-width: 480px) {
 #pgtp_sp {
  width: 60px;
  height: 60px;
 }
 #cr {
  width: calc(100% - 80px - 1em);
 }
}
/*for_W640-*/
@media all and (min-width: 640px) {
 #cr {
  text-align: center;
  font-size: 110%;
 }
}
/*for_W1000-*/
@media all and (min-width: 1000px) {
 #cr {
  font-size: 120%;
 }
}

/*	header
============================== */
#header {
position: sticky;
top: 0;
z-index: 20;


 box-sizing: border-box;
 width: 100%;
 background: rgb(212, 78, 128);
 background: -moz-linear-gradient(
  left,
  rgba(212, 78, 128, 1) 0%,
  rgba(225, 139, 79, 1) 100%
 );
 background: -webkit-linear-gradient(
  left,
  rgba(212, 78, 128, 1) 0%,
  rgba(225, 139, 79, 1) 100%
 );
 background: linear-gradient(
  to right,
  rgba(212, 78, 128, 1) 0%,
  rgba(225, 139, 79, 1) 100%
 );
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d44e80', endColorstr='#e18b4f',GradientType=1 );
 padding: 0.5em 0;
}
#header_set {
 width: 94%;
 max-width: 1400px;
 height: 35px;
 margin: 0 auto;
 position: relative;
 z-index: 50;
}
/*for_W480-*/
@media all and (min-width: 480px) {
 #header_set {
  height: 45px;
 }
}
/*for_W768-*/
@media all and (min-width: 768px) {
 #header_set {
  height: 50px;
 }
}
/*for_W1000-*/
@media all and (min-width: 1000px) {
 #header_set {
  height: 75px;
 }
}

#logo_sp {
 width: 13%;
 max-width: 80px;
 position: absolute;
 top: 50%;
 left: 0;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}
#logo {
 width: 100%;
 height: 0;
 padding-top: 63.636363636363636%;
 padding-top: -webkit-calc(140 / 220 * 100%);
 padding-top: calc(140 / 220 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/logo.png);
}

/*menu*/
#mn_sp {
 width: 75%;
 height: 100%;
 position: absolute;
 top: 0;
 right: 0;
}
#mn_sp li {
 font-size: 95%;
 font-weight: 400;
}

#mn_sp li .udl {
 padding-bottom: 0.1em;
}
#mn_sp li a {
 color: rgba(255, 255, 255, 1);
}
#mn_sp li a:hover {
 opacity: 0.8;
}
#mn_sp li a:hover .udl {
 border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}

#mn_sp #about_li {
 width: 18%;
 position: absolute;
 top: 49%;
 right: 77%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}
#mn_sp #work_li {
 width: 40%;
 position: absolute;
 top: 49%;
 right: 37%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}
#mn_sp #link_li {
 width: 30%;
 position: absolute;
 top: 49%;
 right: 12%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}
#mn_sp #about_li a::before,
#mn_sp #work_li a::before,
#mn_sp #link_li a::before {
 content: '\025b8';
 padding-right: 0.1em;
 color: rgba(255, 255, 255, 0.6);
}

#mn_sp #x_li {
 width: 10%;
 max-width: 40px;
 position: absolute;
 top: 50%;
 right: 0;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}
#x_img {
 width: 100%;
 height: 0;
 padding-top: 100%;
 position: relative;
}
#x_img a {
 width: 100%;
 height: 100%;
 display: block;
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/x.png);
 position: absolute;
 top: 0;
 left: 0;
}
/*for_W480-*/
@media all and (min-width: 480px) {
 #mn_sp li {
  font-size: 100%;
 }
}
/*for_W640-*/
@media all and (min-width: 640px) {
 #mn_sp {
  width: 50%;
 }
 #mn_sp li {
  font-size: 110%;
 }
}
/*for_W768-*/
@media all and (min-width: 768px) {
 #mn_sp {
  max-width: 500px;
 }
 #mn_sp li {
  font-size: 120%;
 }
 #mn_sp #x_li {
  width: 10%;
  max-width: 60px;
 }
}
/*for_W1000-*/
@media all and (min-width: 1000px) {
 #mn_sp li {
  font-size: 140%;
 }
}
/*for_W1200-*/
@media all and (min-width: 1200px) {
 #mn_sp li {
  font-size: 160%;
 }
}

/*	contents
============================== */

/*about*/
#about {
 width: 100%;
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 -webkit-background-position: bottom center;
 background-position: bottom center;
 background-image: url(images/top_btm.jpg);
 padding: 0 0 3em 0;
}
#about_bg {
 width: 100%;
 background-repeat: no-repeat;
 -webkit-background-size: cover;
 background-size: cover;
 -webkit-background-position: top center;
 background-position: top center;
 background-image: url(images/top_top.png);
 padding: 2em 0 1.8em 0;
}
#cp_title-sp {
 width: 100%;
 max-width: 1160px;
 margin: 0 auto;
}
#cp_title {
 width: 100%;
 height: 0;
 padding-top: 8.571428571428572%;
 padding-top: -webkit-calc(240 / 2800 * 100%);
 padding-top: calc(240 / 2800 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
}
#card_sp {
 box-sizing: border-box;
 width: 90%;
 max-width: 1100px;
 margin: 0 auto;
 background: rgba(255, 255, 255, 0.95);
 border-radius: 0 50px;
 border: 1px solid rgba(240, 215, 109, 1);
 padding: 3em;
 text-align: left;
 line-height: 180%;
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 position: relative;
}
#card_sp::before {
 content: '';
 width: 23%;
 height: 0;
 padding-top: 17.786666666666667%;
 padding-top: -webkit-calc(348 / 450 * 23%);
 padding-top: calc(348 / 450 * 23%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/ribon_top.png);
 position: absolute;
 top: -0.25em;
 left: -3.3%;
}
#card_sp::after {
 content: '';
 width: 52%;
 height: 0;
 padding-top: 24.902845927379784%;
 padding-top: -webkit-calc(488 / 1019 * 52%);
 padding-top: calc(488 / 1019 * 52%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/ribon_btm.png);
 position: absolute;
 bottom: -2.5em;
 right: -1.2%;
}
#card_sp .p_s {
 padding: 1em 0;
 font-size: 90%;
 color: rgba(0, 0, 0, 0.8);
 line-height: 160%;
}
/*for_W570-*/
@media all and (min-width: 570px) {
 #card_sp::before {
  width: 18%;
  padding-top: 13.92%;
  padding-top: -webkit-calc(348 / 450 * 18%);
  padding-top: calc(348 / 450 * 18%);
  top: -0.25em;
  left: -2.5%;
 }
 #card_sp::after {
  width: 40%;
  padding-top: 19.15603532875368%;
  padding-top: -webkit-calc(488 / 1019 * 40%);
  padding-top: calc(488 / 1019 * 40%);
  bottom: -2.5em;
  right: -1%;
 }
}
/*for_W640-*/
@media all and (min-width: 640px) {
 #about {
  padding: 0 0 4em 0;
 }
 #card_sp {
  font-size: 110%;
 }
}
/*for_W768-*/
@media all and (min-width: 768px) {
 #cp_title-sp {
  padding: 1em 0;
 }
 #about {
  -webkit-background-size: cover;
  background-size: cover;
  padding: 0 0 6em 0;
 }
 #card_sp {
  font-size: 120%;
  padding: 3em 4em;
 }
}
/*for_W1000-*/
@media all and (min-width: 1000px) {
 #cp_title-sp {
  width: 90%;
  padding: 1.5em 0;
 }
 #about {
  padding: 0 0 10em 0;
 }
 #card_sp {
  font-size: 140%;
  padding: 5em 6em;
 }
 #card_sp::before {
  width: 22%;
  padding-top: 17.013333333333333%;
  padding-top: -webkit-calc(348 / 450 * 22%);
  padding-top: calc(348 / 450 * 22%);
  top: -0.4em;
  left: -2.8%;
 }
 #card_sp::after {
  width: 48%;
  padding-top: 22.987242394504416%;
  padding-top: -webkit-calc(488 / 1019 * 48%);
  padding-top: calc(488 / 1019 * 48%);
  bottom: -4.5em;
  right: -1.1%;
 }
}
/*for_W1200-*/
@media all and (min-width: 1200px) {
 #cp_title-sp {
  padding: 2em 0;
 }
 #card_sp {
  font-size: 160%;
  padding: 5em 6em;
 }
}

/*work*/
#work {
 width: 96%;
 max-width: 1100px;
 padding: 0 0 2em 0;
 margin: 0 auto;
}
#work .stitle_sp {
 display: block;
 width: 24%;
 max-width: 265px;
 margin: 0 auto;
}
#work .stitle_img {
 display: block;
 width: 100%;
 height: 0;
 padding-top: 33.185840707964602%;
 padding-top: -webkit-calc(150 / 452 * 100%);
 padding-top: calc(150 / 452 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/stitle_work.png);
}

.media_sp {
 width: 100%;
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 padding-bottom: 0.1em;
margin-top: 3em;
}


/*_accordion*/
.accordion {
 width: 99%;
 margin:1em auto 0.2em auto;
}

.accordion .option {
 position: relative;
 background: rgba(255, 255, 255, 1);
 border-radius: 20px;
 margin-bottom: 0.2em;
}
.accordion .option::before {
 content: '';
 width: 100%;
 height: 20px;
 border-radius: 20px 20px 0 0;
 position: absolute;
 top: 0;
 left: 0;
}

.accordion .title,
.accordion .cont {
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
 transform: translateZ(0);
 transition: all 0.5s;
}

.accordion .title {
 padding: 1em 0;
 display: block;
 font-weight: 600;
 font-size: 110%;
 text-align: center;
 letter-spacing: 0.1em;
 padding-left: 1em;
}
.accordion .title:hover {
 cursor: pointer;
}


.accordion .title span {
 display: block;
 margin: 0 1em;
 position: relative;
}
.accordion .cont {
 overflow: hidden;
 box-sizing: border-box;
 height: auto;
 transition: all 0.5s;
 padding: 2em 1em;
 -webkit-animation: fadeIn 0.2s ease 1 normal;
 animation: fadeIn 0.2s ease 1 normal;
}


.accordion .gold_sp {
 box-sizing: border-box;
 width: 100%;
 margin: 0 auto 2.5em auto;
 border: 5px solid rgba(240, 215, 109, 1);
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 padding: 2em 1.5em 1.2em 1.5em;
 position: relative;
}
.accordion .silver_sp {
 box-sizing: border-box;
 width: 100%;
 margin: 0 auto 1em auto;
 border: 5px solid rgba(232, 231, 226, 1);
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 padding: 2em 1.5em 1.2em 1.5em;
 position: relative;
}
.accordion .gold_sp a:hover,
.accordion .silver_sp a:hover {
 opacity: 0.8;
}

.accordion .sho_sp {
 display: block;
 width: 40%;
 max-width: 360px;
 position: absolute;
 top: -1.5em;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
.accordion .sho_img {
 display: block;
 width: 100%;
 height: 0;
 padding-top: 21%;
 padding-top: -webkit-calc(168 / 800 * 100%);
 padding-top: calc(168 / 800 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
}
.accordion .gold_sp .sho_img {
 background-image: url(images/gold.png);
}
.accordion .silver_sp .sho_img {
 background-image: url(images/silver.png);
}

.accordion .silver_sp .w_set {
 width: 100%;
 padding: 2em 0 1.5em 0;
 border-top: 1px solid rgba(193, 193, 193, 1);
}
.accordion .silver_sp .w_set:first-of-type {
 border: 0;
}
.accordion .silver_sp .w_set:last-of-type {
 padding: 1.5em 0 0.5em 0;
}

.accordion .gold_sp .img_sp {
 width: 80%;
 margin: 2em auto 1em auto;
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.accordion .gold_sp .w_title {
 font-size: 140%;
 text-align: center;
 font-weight: 600;
 line-height: 130%;
 padding-bottom: 0.5em;
}
.accordion .gold_sp .w_media {
 font-size: 90%;
 text-align: center;
 font-weight: 400;
}
.accordion .silver_sp .img_sp {
 width: 48%;
 float: left;
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: .5em;
}
.accordion .silver_sp .txt_sp {
 width: 48%;
 float: right;
 text-align: left;
}
.accordion .silver_sp .w_title {
 font-size: 110%;
 text-align: left;
 font-weight: 600;
 line-height: 130%;
 padding-bottom: 0.5em;
}
.accordion .silver_sp .w_media {
 font-size: 86%;
 text-align: left;
 font-weight: 400;
}
.accordion .silver_sp .stream_set {
 width: 90%;
}

.img {
 width: 100%;
 height: 0;
 padding-top: 56.25%;
 padding-top: -webkit-calc(900 / 1600 * 100%);
 padding-top: calc(900 / 1600 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 position: relative;
}
.stream_now {
 display: inline-block;
 padding: 0.5em 0.25em;
 margin: 0.25em;
}
.stream_now span {
 color: rgba(255, 255, 255, 1);
 font-size: 90%;
 padding: 0 0.2em 0 1.5em;
 position: relative;
}
.stream_now span::before {
 content: '\025b8';
 text-align: center;
 width: 12px;
 height: 12px;
 border-radius: 100%;
 background: rgba(255, 255, 255, 1);
 position: absolute;
 top: 50%;
 left: 0;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
}

.stream_term {
 padding: 0.5em 0 0.75em 0;
 font-size: 95%;
 letter-spacing: 0.1em;
}
.stream_term .steel {
letter-spacing: 0;
}
/*
.silver_sp .stream_term {
 padding-left: 0.75em;
}
*/
.detail_sp {
 width: 14%;
 max-width: 60px;
 float: right;
}
.detail_img {
 width: 100%;
 height: 0;
 padding-top: 28%;
 padding-top: -webkit-calc(42 / 150 * 100%);
 padding-top: calc(42 / 150 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
}

.media_sp h3{
text-align: center;
font-size: 180%;
color: #fff;
padding-top: .5em;
}

#tv_sp,
#tv_sp h3{
 background: rgba(212, 78, 128, 1);
}

#radio_sp ,
#radio_sp h3{
 background: rgba(225, 139, 79, 1);
}

#cm_sp,
#cm_sp h3 {
 background: rgba(189, 211, 101, 1);
}

#special_sp,
#special_sp h3 {
 background: rgba(62, 144, 190, 1);
}



#tv_sp .stream_now {
 background: rgba(212, 78, 128, 1);
}
#tv_sp .detail_img {
 background-image: url(images/detail_tv.png);
}
#tv_sp .accordion .title,
#tv_sp .accordion .title:after,
#tv_sp .stream_now span::before {
 color: rgba(212, 78, 128, 1);
}
#tv_sp .accordion .option::before {
 background: rgba(255, 245, 249, 1);
}

#radio_sp .stream_now {
 background: rgba(225, 139, 79, 1);
}
#radio_sp .detail_img {
 background-image: url(images/detail_radio.png);
}
#radio_sp .accordion .title,
#radio_sp .accordion .title:after,
#radio_sp .stream_now span::before {
 color: rgba(225, 139, 79, 1);
}
#radio_sp .accordion .option::before {
 background: rgba(255, 245, 209, 1);
}


#cm_sp .stream_now {
 background: rgba(189, 211, 101, 1);
}
#cm_sp .detail_img {
 background-image: url(images/detail_cm.png);
}
#cm_sp .accordion .title,
#cm_sp .accordion .title:after,
#cm_sp .stream_now span::before {
 color: rgba(189, 211, 101, 1);
}

#cm_sp .accordion .option::before {
 background: rgba(247, 255, 217, 1);
}



#special_sp .stream_now {
 background: rgba(62, 144, 190, 1);
}
#special_sp .detail_img {
 background-image: url(images/detail_special.png);
}
#special_sp .accordion .title,
#special_sp .accordion .title:after,
#special_sp .stream_now span::before {
 color: rgba(62, 144, 190, 1);
}

#special_sp .accordion .option::before {
 background: rgba(240, 249, 255, 1);
}



 .accordion .gold_sp a,
 .accordion .silver_sp a {
  display: block;
  width: 90%;
  margin: 0 auto;
 }


/*for_W640-*/
@media all and (min-width: 640px) {
 #work {
  font-size: 110%;
 }
}
/*for_W768-*/
@media all and (min-width: 768px) {
 #work {
  font-size: 120%;
 }

 .accordion .title {
  padding: 1.1em 0;
  font-size: 120%;
 }
 .accordion .title:after {
  right: 2em;
  top: 20px;
  font-size: 80%;
 }
 .accordion .option {
  border-radius: 30px;
  margin-bottom: 0.2em;
 }
 .accordion .option::before {
  height: 30px;
  border-radius: 30px 30px 0 0;
 }

 .accordion .gold_sp .img_sp {
  width: 48%;
  margin: 3em 0 1em 0;
  float: left;
 }
 .accordion .gold_sp .gold_txt {
  width: 48%;
  margin: 3em 0 1em 0;
  float: right;
 }
 .accordion .gold_sp .w_title,
 .accordion .gold_sp .w_media {
  text-align: left;
 }
 .accordion .gold_sp .detail_sp,
 .accordion .silver_sp .detail_sp {
  position: absolute;
  bottom: 1em;
  right: 1em;
 }
 .accordion .silver_sp .img_sp {
  width: 30%;
  float: left;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 }
 .accordion .silver_sp .txt_sp {
  width: 65%;
  float: right;
  text-align: left;
 }
 .accordion .silver_sp .w_set {
  position: relative;
  padding-bottom: 3em;
 }

 .accordion .silver_sp .w_set:first-of-type {
  padding-top: 3em;
 }
 .accordion .silver_sp .w_set:last-of-type {
  padding: 2em 0 2.5em 0;
 }

 .accordion .silver_sp .stream_set {
  width: 65%;
  margin: -3em 0 0 35%;
 }
}
/*for_W1000-*/
@media all and (min-width: 1000px) {
 #work {
  width: 90%;
  font-size: 140%;
 }

 .accordion .title {
  padding: 1.1em 0;
  font-size: 140%;
 }
 .accordion .title:after {
  right: 2em;
  top: 25px;
  font-size: 80%;
 }
 .accordion .option {
  border-radius: 40px;
  margin-bottom: 0.2em;
 }
 .accordion .option::before {
  height: 36px;
  border-radius: 40px 40px 0 0;
 }
}
/*for_W1200-*/
@media all and (min-width: 1200px) {
 #work {
  font-size: 160%;
 }
 
 .accordion .title {
  padding: 1.1em 0;
  font-size: 150%;
 }
 .accordion .title:after {
  right: 2em;
  top: 30px;
  font-size: 80%;
 }
 .accordion .option {
  border-radius: 50px;
  margin-bottom: 0.2em;
 }
 .accordion .option::before {
  height: 42px;
  border-radius: 50px 50px 0 0;
 }
}

/*link*/
#link {
 width: 96%;
 max-width: 1100px;
 padding: 0 0 2em 0;
 margin: 0 auto;
}
#link .stitle_sp {
 display: block;
 width: 24%;
 max-width: 265px;
 margin: 0 auto;
}
#link .stitle_img {
 display: block;
 width: 100%;
 height: 0;
 padding-top: 33.185840707964602%;
 padding-top: -webkit-calc(150 / 452 * 100%);
 padding-top: calc(150 / 452 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
 background-image: url(images/stitle_link.png);
}

.lnk_sp {
 width: 90%;
 margin: 0.5em auto;
}
.lnk_img {
 width: 100%;
 height: 0;
 padding-top: 20.703933747412008%;
 padding-top: -webkit-calc(200 / 966 * 100%);
 padding-top: calc(200 / 966 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
}
.lnk_sp a {
 display: block;
 position: relative;
 z-index: 50;
}
.lnk_sp a:hover {
 opacity: 0.8;
}
/*for_W768-*/
@media all and (min-width: 768px) {
 .lnk_set {
  margin: 1em auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
 }
 .lnk_sp {
  width: 32%;
  margin: 0;
 }
}
/*for_W1200-*/
@media all and (min-width: 1200px) {
 .lnk_sp {
  padding: 1em 0 2em 0;
 }
}

/*	modal
============================== */
.modal {
 display: none;
 height: 100vh;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 10000;
 text-align: center;
 background-image: linear-gradient(
  132deg,
  rgba(212, 78, 128, 0.8),
  rgba(225, 139, 79, 0.8)
 );
 -webkit-backdrop-filter: blur(3px);
 backdrop-filter: blur(3px);
}
.modal__bg {
 height: 100vh;
 position: absolute;
 width: 100%;
}
.modal__content {
 box-sizing: border-box;
 width: 90%;
 max-width: 800px;
 background: transparent;
 padding: 1.5em 1em 1em 1em;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 line-height: 160%;
 overflow-y: scroll;
 overflow-y: auto;
}
.js-modal-close {
 cursor: pointer;
}
.modal__content a {
 z-index: 10000;
 text-align: center;
 margin: 0 auto;
 padding: 5px 0 10px 0;
 font-size: 110%;
 font-weight: bold;
 display: block;
 cursor: pointer;
}
.close_btn {
 width: 50px;
 height: 50px;
 position: absolute;
 top: 10px;
 right: 10px;
}
.close_btn::before,
.close_btn::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 2px;
 height: 50px;
 background: rgba(255, 255, 255, 1);
}
.close_btn::before {
 transform: translate(-50%, -50%) rotate(45deg);
}
.close_btn::after {
 transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__content .gold_sp {
 box-sizing: border-box;
 width: 100%;
 margin: 0 auto 2.5em auto;
 border: 5px solid rgba(240, 215, 109, 1);
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 padding: 1.2em 1em;
 position: relative;
 background: rgba(255, 255, 255, 1);
 margin-bottom: 0;
 height: 70vh;
 overflow-y: auto;
}
.modal__content .silver_sp {
 box-sizing: border-box;
 width: 100%;
 margin: 0 auto 1em auto;
 border: 5px solid rgba(232, 231, 226, 1);
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
 padding: 1.2em 1em;
 position: relative;
 background: rgba(255, 255, 255, 1);
 margin-bottom: 0;
 height: 80vh;
 overflow-y: auto;
}

.modal__content .sho_sp {
 display: block;
 width: 40%;
 max-width: 240px;
 margin: 1em auto;
}
.modal__content .sho_img {
 display: block;
 width: 100%;
 height: 0;
 padding-top: 21%;
 padding-top: -webkit-calc(168 / 800 * 100%);
 padding-top: calc(168 / 800 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
}
.modal__content .gold_sp .sho_img {
 background-image: url(../images/gold.png);
}
.modal__content .silver_sp .sho_img {
 background-image: url(../images/silver.png);
}

.modal__content .gold_sp .img_sp,
.modal__content .silver_sp .img_sp {
 width: 100%;
 max-width: 600px;
 margin: 2em auto 1em auto;
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.modal__content .text_set {
 text-align: center;
}
.modal__content .w_title {
 font-size: 130%;
 font-weight: 600;
 line-height: 130%;
 padding: 0.5em;
}
.modal__content .w_media {
 font-size: 90%;
 font-weight: 400;
}
.modal__content .stream_term {
 padding: 1em 0;
 font-size: 95%;
 letter-spacing: 0.1em;
 text-align: center;
}

.modal__content .text_staff {
 text-align: left;
 padding: 1em 0;
 font-weight: 600;
 line-height: 150%;
 font-size: 110%;
 max-width: 600px;
 margin: 0 auto;
}
.modal__content .text_info {
 text-align: left;
 padding: 1em 0;
 line-height: 160%;
 font-size: 110%;
 max-width: 600px;
 margin: 0 auto;
}

.modal__content .str_lnkb a {
 display: inline-block;
 padding: 1em 2em;
 margin: 1em auto;
 text-align: center;
 letter-spacing: 0.1em;
 color: rgba(255, 255, 255, 1);
 border-radius: 50px;
}
.modal__content .str_lnkb a:hover {
 opacity: 0.8;
}
.modal__content .str_lnkb#tv_col a {
 background: rgba(212, 78, 128, 1);
}
.modal__content .str_lnkb#radio_col a {
 background: rgba(225, 139, 79, 1);
}
.modal__content .str_lnkb a span::before {
 content: '→ ';
}

.modal__content .sho_sp {
 width: 40%;
 max-width: 360px;
 position: fixed;
 top: -4em;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
}
.modal__content .sho_img {
 display: block;
 width: 100%;
 height: 0;
 padding-top: 21%;
 padding-top: -webkit-calc(168 / 800 * 100%);
 padding-top: calc(168 / 800 * 100%);
 background-repeat: no-repeat;
 -webkit-background-size: contain;
 background-size: contain;
}
.modal__content .gold_sp .sho_img {
 background-image: url(images/gold.png);
}
.modal__content .silver_sp .sho_img {
 background-image: url(images/silver.png);
}
.vimeo_playler {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}
.modal__content .text_info a {
display: inline-block;
text-align: left;
font-weight:  500;
font-size: 100%;
}

/*for_W640-*/
@media all and (min-width: 640px) {
 .modal__content {
  padding: 4em 1em 4em 1em;
  font-size: 120%;
 }
 .modal__content .w_title {
  font-size: 180%;
 }
 .modal__content .w_media {
  font-size: 120%;
 }
 .modal__content .stream_term {
  font-size: 110%;
 }
 .modal__content .text_staff,
 .modal__content .text_info {
  font-size: 120%;
 }
 .modal__content .str_lnkb a {
  font-size: 110%;
 }
}
