/* */

:root {
  --content-width: 1000px;
}

/* basic */

body {
  display: none;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 1px;
  line-height: 2;
  color: #000;
  font-size: 14px;
}

main {
  position: relative;
}

.post,
.page {
  margin: 0;
}

.site {
  position: relative;
  overflow: clip;
}

p {
  line-height: 2;
}

button.more,
button.pdf {
  position: relative;
  display: block;
  height: auto;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 10px 30px 10px 30px;
  background-color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  margin: 0 auto;
  margin-bottom: 20px;
}

button.more {
  width: 200px;
}

button.more:after {
  position: absolute;
  content: "";
  display: inline-block;
  border-width: 6px 0 6px 10.38px;
  border-style: solid;
  border-color: transparent transparent transparent #000;
  display: inline-block;
  width: 0;
  height: 0;
  /* 矢印アイコンの位置を設定 */
  top: 50%;
  right: 20px;
  transform: translateY(-50%); /* translateYのみ */
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
}

button.more:hover,
button.pdf:hover {
  color: #fff;
  background-color: #000;
  -webkit-transform: translate3d(0px, 3px, 1px);
  transform: translate3d(0px, 3px, 1px);
}

button.more:hover::after {
  border-color: transparent transparent transparent #fff;
}

.underline {
  text-decoration: underline;
}

.underline:hover {
  text-decoration: none;
}

.eyecatch .title {
  font-size: 2rem;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 840px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* header */

header {
  max-width: var(--content-width);
  margin: 0 auto;
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.site-writer {
	position: fixed;
	background-color: #fff;
	margin-top: 10px;
	font-size: 0.8rem;
	left: 20px;
	font-weight: bold;
	border: 1px solid #000;
   border-radius: 30px;
   padding: 5px 20px;
   transition: 0.3s;
	z-index: 999;
}


.site-writer-2 {
	position: fixed;
	background-color: #fff;
	margin-top: 10px;
	left: 20px;
	font-weight: bold;
	border: 1px solid #000;
   border-radius: 30px;
   padding: 5px 20px;
   transition: 0.3s;
	z-index: 999;
}

.site-writer.hidden {
    opacity: 0;
    top: -20px;
	pointer-events: none;
}

.site-writer.active {
    opacity: 1;
    top: 0px;
	pointer-events: auto;
}

.site-writer:hover {
	background-color: #000;
	color: #fff;
}

.site-header {
  padding: 10px 20px 10px 20px;
}

.site-branding {
  z-index: 100;
}

.site-title a {
  font-size: 1.2rem;
  transition: 0.3s;
}

.site-title a:hover {
  color: #7e7e7e;
}

.main-navigation li {
  margin: 10px 0;
  padding-right: 20px;
}

.main-navigation li:last-child {
  padding-right: 0;
}

.main-navigation li a {
  font-size: 0.9rem;
  color: #000;
  transition: 0.3s;
}

.main-navigation li a:hover {
  color: #7e7e7e;
}

.main-navigation .main-menu .link {
  display: none;
  position: relative;
  z-index: 3;
}

.main-navigation .main-menu .link .sns {
  display: flex;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.main-navigation .main-menu .link .sns a {
  transition: 0.3s;
  margin-right: 10px;
}

.home .eyecatch {
  padding: 50px 0 50px 0;
}

.eyecatch {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 50px 20px 0px 20px;
}

.eyecatch .sp img {
  width: 100%;
}

.eyecatch .site-title {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.eyecatch .site-title span {
  position: absolute;
  top: 50%;
  left: 120px;
  transform: translateY(calc(-50% - 40px));
  font-size: 1rem;
  letter-spacing: 3px;
}

@media screen and (max-width: 840px) {
  .site-title a {
    font-size: 1rem;
  }

  .home .eyecatch {
    padding: 0;
  }

  .main-navigation .main-menu .img_position {
    position: relative;
    z-index: 1;
  }

  .main-navigation .main-menu .b_img_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 135vw;
    height: 135vw;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
  }

  .main-navigation .main-menu .b_img_2 {
    position: absolute;
    top: 300px;
    left: 0;
    width: 135vw;
    height: 135vw;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
  }

  .main-navigation .main-menu .b_2 {
    display: block;
    top: 600px;
    scale: 200%;
    transform: translate(-30%, -30%);
  }
}

@media screen and (max-width: 840px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
  }

  .admin-bar header {
    margin-top: 32px;
  }
	
  .site-writer {
	  display: none;
  }

  .site-main {
    padding-top: 60px;
  }

  .main-navigation li {
    margin: 20px 0;
  }

  .main-navigation .main-menu .link {
    display: block;
    margin-top: 15svh;
  }

  .main-navigation .main-menu .link .writer {
    margin-bottom: 10px;
  }

  .eyecatch .site-title {
    display: none;
  }
	
  .eyecatch .site-writer-2 {
    display: none;
  }
}

@media screen and (max-width: 782px) {
  .admin-bar header {
    margin-top: 46px;
  }
}

/* hamburger */

.hamburger-menu {
  display: none;
  width: 20px;
  height: 20px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  z-index: 100;
}

.hamburger-menu__bar {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger-menu__bar:nth-child(1) {
  top: 0;
}

.hamburger-menu__bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger-menu__bar:nth-child(3) {
  bottom: 0px;
}

.hamburger-menu.active .hamburger-menu__bar:nth-of-type(1) {
  width: 27px;
  transform: translate(-13px, 9px) rotate(-45deg);
}

.hamburger-menu.active .hamburger-menu__bar:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.hamburger-menu.active .hamburger-menu__bar:nth-of-type(3) {
  width: 27px;
  transform: translate(-13px, -9px) rotate(45deg);
}

@media screen and (max-width: 840px) {
  .main-navigation .writer a {
    text-decoration: underline;
  }

  .main-navigation .main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    padding-top: 20svh;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    background-color: #fff;
  }

  .admin-bar .main-navigation .main-menu {
    padding-top: calc(46px + 20svh);
  }

  .main-navigation ul {
    display: block;
  }

  .hamburger-menu {
    display: block;
  }

  header .menu-menu-1-container {
    position: relative;
    z-index: 2;
  }

  header .menu-menu-2-container {
    position: relative;
    z-index: 2;
  }
}

/* main */

.entry-content {
  position: relative;
  text-align: center;
}

.entry-content .inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.entry-content section {
  padding: 70px 20px 70px 20px;
}

/* home */

.home h2 {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 70px;
}

.home h2:before {
  content: "";
  position: absolute;
  width: 358px;
  height: 358px;
  background-image: url(./img/circle_s_y.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home h2 span {
  position: absolute;
  font-size: 0.7rem;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 3px;
}

.home .eyecatch .site-writer-2 {
	position: absolute;
	font-size: 0.8rem;
	top: 50%;
   left: 62px;
   transform: translateY(calc(-50% + 40px));
}

.home .eyecatch .site-writer-2:hover {
	background-color: #000;
	color: #fff;
}

/* background */

.b_img_0 {
  position: absolute;
  width: 110vw;
  height: 110vw;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.b_img_1 {
  top: 600px;
  left: 0;
  transform: translate(-50%, -50%);
}

.b_img_2 {
  top: 1400px;
  left: 0;
  transform: translate(-50%, -50%);
}

.b_img_3 {
  top: 3000px;
  right: 0;
  transform: translate(50%, -50%);
}

.b_img_4 {
  top: 3600px;
  right: 0;
  transform: translate(50%, -50%);
}

.b_img_5 {
  top: 4200px;
  left: 0;
  transform: translate(-50%, -50%);
}

.b_img_6 {
  top: 4800px;
  left: 0;
  transform: translate(-50%, -50%);
}

.b_img_7 {
  top: 6000px;
  right: 0;
  transform: translate(50%, -50%);
}

.b_img_8,
.b_img_9,
.b_img_10,
.b_img_11,
.b_img_12,
.b_img_13,
.b_img_14,
.b_img_15,
.b_img_16,
.b_img_17,
.b_img_18,
.b_img_19,
.b_img_20,
.b_img_21 {
  display: none;
}

.page-id-46 .b_img_8 {
  display: block;
  top: 6800px;
  left: 0;
  transform: translate(-50%, -50%);
}

.page-id-46 .b_img_9 {
  display: block;
  top: 7400px;
  left: 0;
  transform: translate(-50%, -50%);
}

.page-id-46 .b_img_10 {
  display: block;
  top: 8400px;
  right: 0;
  transform: translate(50%, -50%);
}

.page-id-46 .b_img_11 {
  display: block;
  top: 9000px;
  right: 0;
  transform: translate(50%, -50%);
}

.page-id-46 .b_img_12 {
  display: block;
  top: 9600px;
  left: 0;
  transform: translate(-50%, -50%);
}

.page-id-46 .b_img_13 {
  display: block;
  top: 10400px;
  right: 0;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 840px) {
  .b_img_0 {
    width: 135vw;
    height: 135vw;
  }

  .b_img_1 {
    top: 200px;
  }

  .b_img_2 {
    top: 600px;
  }

  .b_img_3 {
    top: 2200px;
  }

  .b_img_4 {
    top: 2600px;
  }

  .b_img_5 {
    top: 3600px;
  }

  .b_img_6 {
    top: 4000px;
  }

  .b_img_7 {
    top: 5600px;
  }

  .b_img_8 {
    display: block;
    top: 6200px;
    left: 0;
  }

  .b_img_9 {
    display: block;
    top: 6600px;
    left: 0;
  }

  .b_img_10 {
    display: block;
    top: 7000px;
    right: 0;
    transform: translate(50%, -50%);
  }

  .b_img_11 {
    display: block;
    top: 7400px;
    right: 0;
    transform: translate(50%, -50%);
  }

  .b_img_12 {
    display: block;
    top: 8000px;
    left: 0;
  }

  .b_img_13 {
    display: block;
    top: 8400px;
    left: 0;
  }

  .b_img_14 {
    display: block;
    top: 8800px;
    right: 0;
    transform: translate(50%, -50%);
  }

  .b_img_15 {
    display: block;
    top: 9400px;
    left: 0;
  }

  .b_img_16 {
    display: block;
    top: 9800px;
    left: 0;
  }

  .b_img_17 {
    display: block;
    top: 10400px;
    right: 0;
    transform: translate(50%, -50%);
  }

  .b_img_18 {
    display: block;
    top: 10800px;
    right: 0;
    transform: translate(50%, -50%);
  }

  .b_img_19 {
    display: block;
    top: 11600px;
    left: 0;
  }

  .b_img_20 {
    display: block;
    top: 12000px;
    left: 0;
  }

  .b_img_21 {
    display: block;
    top: 12800px;
    right: 0;
    transform: translate(50%, -50%);
  }
}

/* home information */

#information {
  padding-left: 20px;
  padding-right: 20px;
}

#information .box {
  margin: 0 auto 50px;
}

#information .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#information .box .item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
}

#information .box .item:hover {
  opacity: 0.7 !important;
}

#information .box .item .post-date {
  font-size: 0.9rem;
  margin-right: 10px;
}

#information .box .item .onair {
  font-size: 0.9rem;
  background-color: #fae018;
  padding-left: 10px;
  padding-right: 10px;
}

#information .box .post-title {
  font-weight: bold;
  line-height: 1.5;
}

#information .box .item:nth-child(3n) {
  margin-right: 0;
}

.category {
  margin-bottom: 5px;
}

.category span {
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
}

.custom-thumbnail {
  width: 100%;
  height: 0;
  padding-top: calc(100% * 226 / 402);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

@media screen and (max-width: 840px) {
  #information .box .item {
    width: calc((100% - 20px) / 2);
  }

  #information .box .item:nth-child(3n) {
    margin-right: 20px;
  }

  #information .box .item:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  #information .box {
    display: block;
  }

  #information .box .item {
    width: 100%;
    margin-right: 0;
  }

  #information .box .item:nth-child(4) {
    display: none;
  }

  #information .box .item:nth-child(5) {
    display: none;
  }

  #information .box .item:nth-child(6) {
    display: none;
  }
}

/* home profile */

#profile {
  padding-left: 20px;
  padding-right: 20px;
}

#profile .box {
  display: flex;
  max-width: 900px;
  margin: 0 auto 50px;
  justify-content: center;
  align-items: center;
}

#profile .photo {
  max-width: 340px;
  height: auto;
  margin-right: 50px;
}

#profile .text .name {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#profile .text .name span {
  position: absolute;
  font-size: 0.7rem;
  bottom: -10px;
  left: 0;
}

#profile .text .textarea {
  font-size: 1rem;
  margin-bottom: 30px;
}

#profile .text .sns {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

#profile .text .sns a {
  transition: 0.3s;
  margin-right: 10px;
}

#profile .text .sns a:hover {
  color: #7e7e7e;
}

#profile .text .writer {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

#profile .text .writer a {
  position: relative;
  text-decoration: underline;
}

#profile .text .writer a:hover {
  text-decoration: none;
}

#profile .masterpiece {
	display: flex;
	justify-content: center;
   padding-bottom: 20px;
	text-align: left;
}

#profile .masterpiece h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

#profile .masterpiece li {
  line-height: 2;
  text-align: justify;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 840px) {
  #profile .box {
    display: block;
    width: 100%;
  }

  #profile .photo {
    margin: 0 auto 50px;
  }

  #profile .text .name {
    text-align: center;
    margin-bottom: 40px;
  }

  #profile .text .name span {
    left: 50%;
    transform: translateX(-50%);
  }

  #profile .text .textarea {
    font-size: 0.9rem;
  }

  #profile .text .item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #profile .text .writer a {
    text-decoration: underline;
  }
}

/* voice */

#voice {
  padding-left: 20px;
  padding-right: 20px;
}

#voice .box,
.voice .box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#voice .box .item,
.voice .box .item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 30px;
}

#voice .box .item:nth-child(3n),
.voice .box .item:nth-child(3n) {
  margin-right: 0;
}

#voice .box.anime .item{
  width: calc((100% - 40px) / 3 * 2 + 20px );
}

#voice .box.dubbing .item{
  width: calc((100% - 40px) / 3 * 2 + 20px );
}

#voice .title {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1.2rem;
  padding: 5px 0;
}

@media screen and (max-width: 840px) {
  #voice .box .item,
  .voice .box .item {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }

  #voice .box .item:nth-child(3n),
  .voice .box .item:nth-child(3n) {
    margin-right: 20px;
  }

  #voice .box .item:nth-child(2n),
  .voice .box .item:nth-child(2n) {
    margin-right: 0;
  }

  #voice .box .item:nth-child(9),
  .voice .box .item:nth-child(9) {
    display: none;
  }
	
  #voice .box.anime .item {
	width: 100%;
  }

  #voice .box.dubbing .item {
	width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #voice .box,
  .voice .box {
    display: block;
  }

  #voice .box .item,
  .voice .box .item {
    width: 100%;
  }

  #voice .box .item:nth-child(5) {
    display: none;
  }

  #voice .box .item:nth-child(6) {
    display: none;
  }

  #voice .box .item:nth-child(7) {
    display: none;
  }

  #voice .box .item:nth-child(8) {
    display: none;
  }

  #voice .box .item:nth-child(9) {
    display: none;
  }
}

/* works */

#works {
  padding-left: 20px;
  padding-right: 20px;
}

#works .area {
  display: flex;
  flex-wrap: wrap;
}

#works .area,
.works .area {
  /* width: 700px; */
  width: 100%;
  margin: 0 auto 70px;
}

#works .box {
  width: calc((100% - 40px) / 2);
  margin-bottom: 40px;
  margin-right: 40px;
}

#works .box:nth-child(2n) {
  margin-right: 0;
}

#works .box:last-child,
.works .box:last-child {
  margin-bottom: 0;
}

#works .title {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1.2rem;
  padding: 5px 0;
}

#works .box .item {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  text-align: justify;
}

#works .box .item:nth-child(2n) {
  margin-right: 0;
}

#works .box .item .post-title {
  margin: 15px auto;
}

#works .box .item span {
  display: block;
  font-size: 0.7rem;
}

#works .box .other {
  text-align: right;
}

@media screen and (max-width: 600px) {
  #works .area {
    display: block;
  }

  #works .box {
    width: 100%;
    margin-bottom: 50px;
    margin-right: 0px;
  }

  #works .title {
    text-align: center;
  }
}

/* home contact */

#contact {
  padding-left: 20px;
  padding-right: 20px;
}

#contact .mw_wp_form {
  width: 600px;
  margin: 0 auto;
}

#contact .intro {
  margin: 20px 0;
}

#contact .name,
#contact .tel,
#contact .mail,
#contact .subject,
#contact .radio,
#contact .select,
#contact .textarea,
#contact .check {
  text-align: left;
  margin-bottom: 30px;
}

#contact textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 5px 10px;
}

#contact .textarea .label {
  margin-bottom: 5px;
}

#contact .radio .mwform-radio-field {
  display: block;
}

#contact .radio span input {
  display: inline;
}

#contact .radio span input span {
  display: inline;
}

#contact input[type="text"],
#contact input[type="email"] {
  border-bottom: 1px solid #000;
  width: 100%;
  padding: 0 5px;
}

#contact .radio .mwform-radio-field-text {
  display: inline;
}

#contact .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}

.mw_wp_form_confirm .check {
  display: none;
}

input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"]:checked {
  border: 1px solid #fae018;
  background-color: #fae018;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(45deg);
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

#contact input:-webkit-autofill {
  background: transparent !important;
}

@media screen and (max-width: 600px) {
  #contact .mw_wp_form {
    width: 100%;
  }
}

/* contact */

.contact {
  padding-left: 20px;
  padding-right: 20px;
}

.contact .mw_wp_form {
  width: 600px;
  margin: 0 auto;
}

.contact .intro {
  margin: 20px 0;
}

.contact .name,
.contact .tel,
.contact .mail,
.contact .subject,
.contact .radio,
.contact .select,
.contact .textarea,
.contact .check {
  text-align: left;
  margin-bottom: 30px;
}

.contact input[type="text"],
.contact input[type="email"] {
  border-bottom: 1px solid #000;
  width: 100%;
  padding: 0 5px;
}

.contact textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 5px 10px;
}

.contact .textarea .label {
  margin-bottom: 5px;
}

button.back {
  display: inline-block;
  margin-right: 20px;
}

button.back:after {
  /* 矢印アイコンの位置を設定 */
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(180deg); /* translateYのみ */
}

button.send {
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .contact .mw_wp_form {
    width: 100%;
  }

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

  textarea {
    width: 100%;
  }

  button.back {
    margin-right: 0px;
  }
}

/* thanks */

.ty_1 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.ty_2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ty_3 {
  margin-bottom: 50px;
}

/* footer */

footer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

footer .site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 0px;
}

footer .sns {
  font-size: 1.5rem;
  padding-left: 30px;
  margin-bottom: 50px;
}

footer .sns a {
  margin-right: 10px;
  transition: 0.3s;
}

footer .sns a:last-child {
  margin-right: 0;
}

footer .sns a:hover {
  color: #7e7e7e;
}

footer .site-link {
  text-align: center;
  margin-bottom: 30px;
}

footer .site-link a {
  position: relative;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 10px 50px 10px 50px;
  transition: 0.3s;
}

/*
footer .site-link a:after {
    position: absolute;
    content: "";
    display: inline-block;
    border-width: 6px 0 6px 10.38px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
    display: inline-block;
    width: 0;
    height: 0;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
}
*/

footer .site-link a:hover {
  background-color: #000;
  color: #fff;
}

/*
footer .site-link a:hover:after {
    border-color: transparent transparent transparent #fff;
}
*/

footer .site-info {
  text-align: center;
  font-size: 0.8rem;
  padding-bottom: 50px;
}

@media screen and (max-width: 840px) {
  footer .site-link a {
    padding: 0;
    border: none;
    text-decoration: underline;
  }

  footer .site-footer {
    display: block;
    padding-top: 10px;
    padding-bottom: 0px;
  }

  footer .sns {
    padding-left: 0;
  }

  footer .link {
    margin-top: 50px;
  }

  footer .link .writer a {
    text-decoration: underline;
  }
}

/* information */

.information {
  padding-left: 20px;
  padding-right: 20px;
}

.information .box .item {
  width: 100%;
  margin-bottom: 40px;
}

.information .box .item:last-child {
  margin-bottom: 0px;
}

.information .box .item .post-date {
  font-size: 0.9rem;
  margin-right: 20px;
}

.information .box .item .onair {
  font-size: 0.9rem;
  background-color: #fae018;
  padding-left: 10px;
  padding-right: 10px;
}

.information .box .post-title {
  font-weight: bold;
  line-height: 1.5;
  transition: 0.3s;
}

.information .box .post-title:hover {
  color: #7e7e7e;
}

.information .year {
  display: flex;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.information .year .item {
  margin-right: 20px;
}

.information .year .item a {
  display: inline-block;
  padding: 0 10px 0 10px;
  background-color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.information .year .item a:hover {
  color: #7e7e7e;
}

.information .year .item span {
  display: inline-block;
  padding: 0 10px 0 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

/* works */

.works {
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
}

.works h2 {
  font-size: 1.2rem;
}

.works .category {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.works .category .item {
  margin-right: 20px;
}

.works .category .item:last-child {
  margin-right: 0;
}

.works .box .item {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.works .category a {
  transition: 0.3s;
}

.works .category a:hover {
  color: #7e7e7e;
}

.works p {
  text-indent: -1em;
  padding-left: 1em;
  text-align: justify;
}

/* voice */

.voice {
  padding-left: 20px;
  padding-right: 20px;
}

.voice .item {
  box-shadow: 1px 2px 2px #ccc;
}

.voice .mejs__controls:not([style*="display: none"]) {
  background: none;
}

.voice .mejs__container {
  background: #f4f4f4;
}

.voice .mejs__time {
  box-sizing: content-box;
  color: #3c3c3c;
  font-size: 0.8rem;
  font-weight: bold;
  height: 24px;
  overflow: hidden;
  padding: 16px 6px 0;
  text-align: center;
  width: auto;
}

.voice .mejs__controls {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.voice .mejs__button > button {
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  margin: 10px 6px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-decoration: none;
  width: 20px;
}

.voice .mejs__button > button:focus {
  outline: none;
}

.voice .mejs__button.mejs__play > button,
.voice .mejs__button.mejs__replay > button {
  background: url(./img/play.png) no-repeat center center;
  background-size: 20px;
}

.voice .mejs__button.mejs__pause > button {
  background: url(./img/pause.png) no-repeat center center;
  background-size: 20px;
}

.voice .mejs__unmute > button {
  background: url(./img/volume.png) no-repeat center center;
  background-size: 20px;
}

.voice .mejs__mute > button {
  background: url(./img/mute.png) no-repeat center center;
  background-size: 20px;
}

.voice .mejs__time-current,
.voice .mejs__time-handle-content {
  background: rgba(255, 196, 63, 0.9);
}

.voice .mejs__time-handle-content {
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  height: 10px;
  left: -7px;
  top: -4px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 10px;
}

.voice .mejs__time-total,
.voice .mejs__time-buffering,
.voice .mejs__time-loaded,
.voice .mejs__time-current,
.voice .mejs__time-float,
.voice .mejs__time-hovered,
.voice .mejs__time-float-current,
.voice .mejs__time-float-corner,
.voice .mejs__time-marker {
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 10px;
  position: absolute;
}

.voice .mejs__time-float {
  display: none !important;
}

.voice .mejs__button,
.voice .mejs__time-rail {
  font-size: 0.8rem;
  height: 40px;
  line-height: 10px;
  margin: 0;
  width: 32px;
}

.voice .mejs__time-rail {
  direction: ltr;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 40px;
  margin: 0 0 0 5px;
  padding-top: 10px;
  position: relative;
}

.voice .mejs__time-total {
  background: rgba(172, 172, 172, 0.3);
  border-radius: 2px;
  cursor: pointer;
  display: block;
  height: 10px;
  position: absolute;
	margin-top: 6px;
}

.voice .mejs__horizontal-volume-slider {
  display: block;
  height: 36px;
  position: relative;
  vertical-align: middle;
  width: 56px;
}

.voice .mejs__horizontal-volume-total {
  background: rgba(50, 50, 50, 0.8);
  border: none;
  border-radius: 2px;
  font-size: 1px;
  height: 8px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 16px;
  width: 50px;
}

.voice .mejs__horizontal-volume-current {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  font-size: 1px;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.voice .mejs__time {
  font-size: 0.8rem;
  height: 24px;
  line-height: 10px;
  margin: 0;
  width: 32px;
}

.voice .mejs__container:focus {
  outline: none;
}

@media screen and (max-width: 600px) {
  #voice .mejs__time,
  .voice .mejs__time {
    width: auto;
  }
}

/* privacy */

.privacy {
  padding-left: 20px;
  padding-right: 20px;
}

.privacy .box {
  width: 700px;
  margin: 0 auto 70px;
  text-align: justify;
}

.privacy p {
  margin-bottom: 20px;
}

.privacy p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .privacy .box {
    width: 100%;
  }
}

/* 404 */

.entry-content .not-found {
	height: 50svh;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* pagination */

.paginate,
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

.paginate ul li,
.nav-links ul li {
  display: inline-block;
  margin-right: 20px;
}

.paginate ul li a,
.nav-links ul li a {
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 12px 8px 12px;
  border-radius: 30px;
  transition: 0.5s;
}

.paginate ul li a:hover,
.nav-links ul li a:hover {
  background-color: #fae018;
}

.paginate ul li span.current,
.nav-links ul li span.current {
  background-color: #fae018;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 12px 8px 12px;
  border-radius: 30px;
}

/* animation */

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}
