@charset "UTF-8";
/* =====================================================
  1.0 - Foundation
===================================================== */
/* ===============================================
  関数の登録
=============================================== */
/*
  数値から単位を取り除く
----------------------------------------------- */
/*
  px→remの計算
----------------------------------------------- */
/*
  px→vwの計算
----------------------------------------------- */
/*
  文字列からワードを検索して置換する
----------------------------------------------- */
/*
  @font-faceの設定
----------------------------------------------- */
/*
  object-fit
----------------------------------------------- */
@font-face {
  font-family: "Futura";
  src: url("../assets/font/FuturaStd-Bold.otf") format("otf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Futura";
  src: url("../assets/font/FuturaStd-Heavy.otf") format("otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Futura";
  src: url("../assets/font/FuturaStd-Light.otf") format("otf");
  font-weight: 400;
  font-style: normal;
}
/*
  Reset
-----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
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,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

address {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
  height: auto;
  fill: currentcolor;
  vertical-align: bottom;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*
  Base
-----------------------------------------------------*/
html *,
html *:before,
html *:after {
  box-sizing: inherit;
}

*,
:before,
:after {
  box-sizing: inherit;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  height: 100%;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  color: #707070;
  text-rendering: optimizeLegibility;
  font-feature-settings: "pkna";
}
body.is-drawerActive {
  overflow: hidden;
}

[lang=en] {
  font-family: "Futura", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
}

a {
  color: #707070;
}

/* =====================================================
  .0 - Layout
===================================================== */
/*
----------------------------------------------- */
.l-container {
  position: relative;
  z-index: 0;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.l-section {
  padding: 76px 0;
}
.l-section + .l-section {
  padding-top: 0;
}
.l-section--slim {
  padding: 48px 0;
}
.l-section--slim .l-section--slim {
  padding-bottom: 0;
}

.l-inner {
  padding: 0 3.3333333333%;
  width: 100%;
}
.l-inner--slim {
  padding: 0 6.6666666667%;
}

.l-fullwide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.l-grid {
  display: grid;
}
.l-grid_col2 {
  grid-template-columns: 1fr 1fr;
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.2 - Project
-----------------------------------------------------*/
.footer {
  padding: 30px 0;
  background-color: #FFF3E0;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__copy {
  font-size: 14px;
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 10px;
    line-height: 1.5;
  }
}

.anchor-btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .anchor-btn {
    width: 60px;
  }
}

main {
  background: url(../img/bg/bg-a.png);
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 999px) {
  main {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  main {
    background: url(..//img/bg/bg-a.png);
    background-attachment: fixed;
    padding-bottom: 50px;
    padding-top: 50px;
    margin-bottom: 0px;
  }
}

.main {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .main {
    margin-bottom: 0px;
  }
}
.main__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .main__inner {
    flex-direction: column-reverse;
  }
}
.main__mv {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .main__mv {
    width: 100%;
  }
}
.main__menu {
  width: 40%;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .main__menu {
    width: 100%;
    padding: 0 10px;
  }
}
.main__infoarea {
  display: flex;
  flex-direction: row-reverse;
}
.main__menu-inner {
  width: 77%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main__menu-inner {
    width: 100%;
  }
}
.main__logo {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main__logo {
    width: 85%;
    margin: 10px auto 20px;
  }
}
.main__pv {
  width: 100%;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .main__pv {
    padding: 0px 20px;
  }
}
.main__af {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .main__af {
    padding: 0px 20px;
  }
}

.main__logo__pc {
  max-width: 190px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main__logo__pc {
    display: none;
  }
}

.main__logo__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .main__logo__sp {
    display: flex;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .main-nav__list {
    display: none;
  }
}
.main-nav__item {
  background-color: #fff;
  font-size: 22px;
  font-family: ta-kotodama-r, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  text-align: center;
  border: 1px dashed #707070;
  padding: 10px 0 9px;
}
.main-nav__item.hidden {
  background: #cbcbcb;
  color: #ccc;
}
.main-nav__item.hidden a {
  pointer-events: none;
}

.info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .info {
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}
.info__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 18px;
  font-family: ta-kotodama-r, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .info__title {
    font-size: 25px;
  }
}

.info-twitter {
  width: 60%;
  margin: 0 auto;
}
.info-twitter__inner {
  padding: 0px;
  position: relative;
}
@media only screen and (min-width: 767px) and (max-width: 1033px) {
  .info-twitter__inner {
    padding: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .info-twitter {
    width: 100%;
    padding: 0;
    order: 2;
  }
}

.info-news {
  width: 70%;
  margin: 0 auto;
  padding: 65px;
  margin-bottom: 50px;
  background-image: url(../img/top_newsbg.png);
  background-size: cover;
  max-width: 605px;
}
@media screen and (max-width: 767px) {
  .info-news {
    background-image: none;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .info-news__inner {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .info-news {
    width: 100%;
    margin-bottom: 10px;
  }
}
.info-news__item {
  margin-bottom: 20px;
  font-size: 14px;
  border-bottom: 1px solid #707070;
  padding-bottom: 11px;
  line-height: 1.3;
}
.info-news__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .info-news__item {
    font-size: 12px;
  }
}
.info-news__item-data {
  margin-bottom: 3px;
}

.book-info {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .book-info {
    margin-top: 10px;
    margin-bottom: 30px;
  }
}
.book-info__area {
  padding: 45px 50px 20px;
  background-color: #fff;
  border: 5px solid #CAA163;
  padding: 10px;
}
.book-info__area__inner {
  border: 5px solid #CAA163;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .book-info__area {
    padding: 45px 50px 20px;
    background-color: #fff;
    border: 5px solid #CAA163;
    padding: 10px;
  }
}
.book-info__inner {
  max-width: 979px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .book-info__inner {
    flex-direction: column;
  }
}
.book-info__left {
  width: 47.09%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .book-info__left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.book-info__left figure {
  width: 49%;
}
.book-info__right {
  width: 50.87%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .book-info__right {
    width: 100%;
    text-align: center;
  }
}
.book-info__right img {
  height: auto;
  transition: transform 0.6s ease; /* ゆっくり変化させる */
}
.book-info__right:hover img {
  transform: scale(1.2); /* 拡大 */
}
@media screen and (max-width: 767px) {
  .book-info {
    width: 100%;
  }
}
.book-info li {
  width: 22.29%;
}
.book-info li:first-child {
  margin-bottom: 10px;
}
.book-info li img {
  width: 100%;
}

.img_wrap {
  border: 1px solid #ddd;
  width: 300px;
  height: 226px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap::after img {
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap ＆:hover img {
  transform: scale(1.2);
  transition-duration: 0.5s;
}

@media only screen and (min-width: 767px) and (max-width: 1033px) {
  .info-news__item-title {
    font-size: 16px;
  }
}
.cv-area {
  max-width: 150px;
  width: 100%;
  background: #FFF3E0;
  color: #707070;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .cv-area {
    width: 85%;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.cv-area a {
  display: block;
  padding: 10px 5px;
}
@media screen and (max-width: 767px) {
  .cv-area a {
    padding: 5% 10px;
  }
}

.oa_info {
  text-align: center;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28pt;
  font-weight: 400;
  line-height: 36px;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .oa_info {
    margin-bottom: 10px;
  }
}

.news_h2 {
  text-align: center;
  font-family: ta-kotodama-r, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40pt;
  color: #000;
  margin-bottom: 20px;
}

.twitter-timeline {
  margin: 0 auto;
  max-width: 400px;
}

.tl_inner {
  margin: 0 auto;
  max-width: 70%;
  max-height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .tl_inner {
    max-height: 180px;
  }
}

.x_waku {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tl-pc {
    display: none;
  }
}

.tl-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .tl-sp {
    display: block;
  }
}

.top_bnr {
  max-width: 350px;
  width: 100%;
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .top_bnr {
    margin: 10px;
  }
}

.bnr_area {
  text-align: center;
  margin-bottom: 10px;
}

.h2_frame {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .h2_frame {
    margin-bottom: 10px;
  }
}

.h2-isekainoyu {
  max-width: 70vw;
}
@media screen and (max-width: 767px) {
  .h2-isekainoyu {
    max-width: 90vw;
  }
}

.youtube {
  width: 80%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .youtube {
    width: 80%;
  }
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.books_cat {
  text-align: center;
  font-size: 24pt;
  margin-bottom: 10px;
  font-family: ten-mincho;
  font-weight: 400;
  font-style: normal;
}

.books_info {
  display: flex;
  justify-content: space-between;
  padding: 30px 70px;
}
@media screen and (max-width: 767px) {
  .books_info {
    display: block;
    padding: 0px;
    text-align: center;
  }
}

.books_jk {
  width: 100%; /*画像サイズ指定*/
  max-width: 400px;
  margin-bottom: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.books_text {
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .books_text {
    margin-bottom: 5px;
  }
}

.books_right {
  text-align: center;
  font-family: Ten Mincho;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.5px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .books_right {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
}

.novel_right {
  width: 100%;
  max-width: 180px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .novel_right {
    margin: 10px;
  }
}

.char_gall {
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .char_gall {
    margin-bottom: 5px;
  }
}

.main-nav__list a li {
  position: relative;
}

.main-nav__list a.current li,
.main-nav__list a li:hover {
  color: #0481A2;
}

.main-nav__list a li::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #0481A2;
  transition: all 0.1s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.main-nav__list a.current li::after,
.main-nav__list a li:hover::after {
  transform: scale(1, 1);
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-wrapper {
  max-width: 900px;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.hide-area {
  display: none;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

.button-01 {
  display: block;
  width: 100%;
  padding: 16px 16px 16px 40px;
  background-color: #fff;
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  overflow-wrap: break-word;
}
.button-01.fav {
  background-image: url("../img/nt-icon.svg");
}

.newe__link {
  display: block;
  width: 100%;
  color: #0481A2;
  padding: 16px 16px 16px 40px;
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
.newe__link.fav {
  background-image: url("../img/nt-icon.svg");
}

.newe__link:hover {
  color: #000;
}

/*
.p-header
----------------------------------------------- */
.header {
  z-index: 2;
}

.header-btn {
  display: none;
  width: 80px;
  height: 80px;
  background: #735029;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .header-btn {
    display: block;
    width: 50px;
    height: 50px;
  }
}
.header-btn__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-btn__line {
  width: 43px;
  height: 6px;
  background: #fff;
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .header-btn__line {
    width: 33px;
    height: 3px;
    margin-bottom: 7px;
  }
}
.header-btn__line:last-child {
  margin-bottom: 0;
}
.header-btn__line.is-active:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  position: absolute;
  top: 6px;
}
.header-btn__line.is-active:nth-child(2) {
  opacity: 0;
}
.header-btn__line.is-active:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 6px;
}

.header-menu {
  display: none;
  position: relative;
  z-index: 1;
}
.header-menu__area {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-menu__inner {
  max-width: 950px;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-menu__inner {
    flex-direction: column;
    margin-top: -80px;
  }
}
.header-menu__logo {
  width: 45.45%;
}
@media screen and (max-width: 767px) {
  .header-menu__logo {
    width: 60%;
    margin-bottom: 20px;
  }
}
.header-menu__nav {
  width: 51.3%;
  font-family: ta-kotodama-r, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .header-menu__nav {
    width: 60%;
  }
}
.header-menu__item {
  background-color: #FEF3E0;
  font-size: 24px;
  margin-bottom: 6px;
  text-align: center;
  border: 1px dashed #735029;
  line-height: 1.8;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .header-menu__item {
    font-size: 18px;
  }
}
.header-menu__item.hidden {
  background: #cbcbcb;
}
.header-menu__item.hidden a {
  pointer-events: none;
}

.header-list {
  width: 100%;
  height: 80px;
  background-color: #FFF3E0;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .header-list {
    height: 50px;
  }
}
.header-list__logo {
  width: 160px;
  position: absolute;
  left: 15%;
  top: 5px;
}
@media screen and (max-width: 1400px) {
  .header-list__logo {
    left: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .header-list__logo {
    width: 90px;
    left: auto;
    top: 5px;
    margin: 0 auto;
  }
}
.header-list__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 870px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  position: absolute;
  right: 15%;
}
@media screen and (max-width: 1280px) {
  .header-list__nav {
    right: 5%;
    max-width: 790px;
  }
}
@media screen and (max-width: 1000px) {
  .header-list__nav {
    display: none;
  }
}
.header-list__item {
  font-size: 16px;
  margin-right: 20px;
  margin-bottom: 10px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
.header-list__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1180px) {
  .header-list__item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .header-list__item {
    margin-right: 5px;
  }
}
.header-list__item.hidden {
  color: #fff;
}
.header-list__item.hidden a {
  pointer-events: none;
  color: #cbcbcb;
}

.home .header-list {
  display: none;
}

/*==================================================
左から右に背景が伸びる
===================================*/
/*背景の設定*/
.header-list__nav li a {
  /*背景色の基点とするためrelativeを指定*/
  position: relative;
}

.header-list__nav li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 100%;
  background: #F57C00;
  /*アニメーションの指定*/
  transition: all 0.5s;
  opacity: 0; /*はじめは透過0*/
}

/*現在地とhoverの設定*/
.header-list__nav li.current a::after,
.header-list__nav li a:hover::after {
  /*背景の形状*/
  width: 100%; /*横幅を伸ばす*/
  opacity: 1; /*不透明に*/
}

.header-list__nav li.current a,
.header-list__nav li a:hover {
  color: #fff;
}

/*==================================================
　中心から外に線が伸びる（下部）
===================================*/
.header-menu-list a li {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.header-menu-list a.current li,
.header-menu-list a li:hover {
  color: #F57C00;
}

.header-menu-list a li::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 6px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #F57C00;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}

/*現在地とhoverの設定*/
.header-menu-list a.current li::after,
.header-menu-list a li:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.wrapper {
  max-width: 1163px;
  width: 95%;
  margin: 0 auto;
}
.wrapper--shingle {
  max-width: 960px;
  width: 100%;
}

.page-title {
  font-size: 70px;
  color: #707070;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #fff, 0 0 15px #fff;
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 40px;
  }
}

.h2pic {
  width: 100%;
}
.h2pic--introduction {
  max-width: 476px;
}
.h2pic--character {
  max-width: 386px;
}
.h2pic--news {
  max-width: 214px;
}
.h2pic--staffcast {
  max-width: 414px;
}
.h2pic--special {
  max-width: 276px;
}
.h2pic--contact {
  max-width: 276px;
}
.h2pic--onair {
  max-width: 276px;
}
.h2pic--story {
  max-width: 276px;
}
.h2pic--blu-raydvd {
  max-width: 414px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 300px;
  transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #FFF3E0; /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.news__inner {
  margin: 30px 0 0;
}
.news__area {
  justify-content: space-between;
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  .news__area {
    flex-direction: column;
    margin: 0;
  }
}

.news-list {
  width: 100%;
}
.news-list--shingle {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news-list {
    width: 100%;
  }
}
.news-list__box {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}
.news-list__item {
  background: #FFF3E0;
  padding: 20px;
  margin-bottom: 30px;
  border: #735029 solid 0.133em;
}
@media screen and (max-width: 767px) {
  .news-list__item {
    padding: 10px;
  }
}
.news-list__item-data {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .news-list__item-data {
    font-size: 18px;
  }
}
.news-list__item-cate {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .news-list__item-cate {
    font-size: 18px;
  }
}
.news-list__item-text {
  font-size: 24px;
  width: 95%;
  margin: 0 auto;
  line-height: 1.5;
  border-bottom: 1px solid #d8d8d8;
}
.news-list__item-detail {
  width: 95%;
  font-size: 20px;
  line-height: 1.5;
  margin: 10px auto 0;
  padding-top: 15px;
}
.news-list__item-link {
  width: 95%;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px auto 0;
  color: #1a0dab;
  word-break: break-all;
}

.side-menu {
  background: #fff;
  width: 22%;
  font-size: 20px;
  padding: 30px 20px;
  height: 40vh;
}
@media screen and (max-width: 767px) {
  .side-menu {
    width: 100%;
    margin-bottom: 30px;
    order: 2;
  }
}
.side-menu__inner {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}
.side-menu__title {
  margin-bottom: 18px;
  text-align: left;
  font-weight: bold;
}
.side-menu__list {
  padding-left: 20px;
  border-top: 1px solid #707070;
  padding-top: 18px;
}
.side-menu__item {
  margin-bottom: 15px;
  word-break: break-all;
}
.side-menu__item:last-child {
  margin-bottom: 0;
}

.news_jk {
  max-width: 400px;
}

.introduction {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.introduction__inner {
  margin: 30px 0 0;
}
.introduction__area {
  justify-content: space-between;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .introduction__area {
    padding: 20px;
  }
  .introduction__area .pc {
    display: none !important;
  }
  .introduction__area .sp {
    display: block !important;
  }
}

.staffcast {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.staffcast__inner {
  margin: 30px 10px 0;
}
.staffcast__area {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
.staffcast__area-inner {
  justify-content: space-between;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 20px 10px 32px;
}
.staffcast__inbox {
  max-width: 900px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .staffcast__inbox {
    width: 90%;
    display: block;
  }
}
.staffcast__inboxcast {
  max-width: 400px;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .staffcast__inboxcast {
    width: 90%;
  }
}
.staffcast__head {
  margin-bottom: 30px;
}
.staffcast-top {
  font-size: 36px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  color: #707070;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: center;
  background: linear-gradient(transparent 70%, #FFF3E0 70%);
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .staffcast-top {
    font-size: 32px;
  }
}

.original-title {
  font-size: 20px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 18px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .original-title {
    font-size: 20px;
  }
}

.staffcast-position {
  font-size: 16px;
  text-align: center;
  margin-bottom: 0px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .staffcast-position {
    font-size: 20px;
  }
}

.staffcast-position-a {
  font-size: 16px;
  text-align: center;
  margin-bottom: 0px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .staffcast-position-a {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.staffcast-name {
  font-size: 32px;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.5;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .staffcast-name {
    font-size: 32px;
  }
}

.staffcast__container {
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}

.staffcast__container_a {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.stcs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  font-size: min(2.4rem, 5vw);
  line-height: 1.4em;
}

.special {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.special__inner {
  margin: 30px 0 0;
}
.special__area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .special__area {
    flex-direction: column;
  }
}

.special-list {
  width: 70%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .special-list {
    width: 100%;
    margin-bottom: 30px;
  }
}

.special-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .special-item {
    margin-bottom: 20px;
  }
}
.special-item__title {
  background: linear-gradient(90deg, rgba(34, 151, 219, 0.895417542) 50%, rgba(255, 255, 255, 0.895417542) 100%);
  width: 100%;
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .special-item__title {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 5px 20px;
  }
}
.special-item__box {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
}
.special-item__box-3 {
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
}
.special-item__box-item {
  width: 30%;
  margin: 0 auto;
  position: absolute;
  padding-top: 20.25%;
}
.special-item__box-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.special-item__box-modal {
  width: 30%;
}

.side-menu-spe {
  background: #fff;
  width: 22%;
  font-size: 20px;
  padding: 30px 20px;
  height: 35vh;
}
@media screen and (max-width: 767px) {
  .side-menu-spe {
    width: 100%;
    order: 2;
  }
}
.side-menu-spe__inner {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}
.side-menu-spe__title {
  margin-bottom: 18px;
  text-align: left;
  font-weight: bold;
}
.side-menu-spe__list {
  padding-left: 20px;
  border-top: 1px solid #707070;
  padding-top: 18px;
}
.side-menu-spe__item {
  margin-bottom: 15px;
  word-break: break-all;
}
.side-menu-spe__item:last-child {
  margin-bottom: 0;
}

.jk_area {
  margin: 0 auto;
  text-align: center;
}

.jk_thum {
  max-width: 200px;
  margin: 10px;
}
@media screen and (max-width: 767px) {
  .jk_thum {
    max-width: 33%;
  }
}

.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.character {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .character {
    height: calc(100vh - 70px);
  }
}
.character__inner {
  margin: 30px 0 0;
  padding: 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .character__inner {
    padding: 0px;
  }
}
.character__area {
  justify-content: space-between;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .character__area {
    padding: 10px;
  }
  .character__area .pc {
    display: none !important;
  }
  .character__area .sp {
    display: block !important;
  }
}
.character__area-inner {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .character__area-inner {
    padding: 0;
  }
}

.thumbnail {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  padding: 10px 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chara-thumb {
  width: 100%;
  max-width: 100px;
  height: 100px;
  padding: 10px;
}

.staffcast__container-rp {
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .staffcast__container-rp {
    margin-right: 15px;
  }
}

.staffcast__container-lc {
  margin-left: -15px;
}

.staffcast__container-rc {
  margin-right: -15px;
}

/*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
img {
  width: 100%;
  max-width: 1163px;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}

.gallery li {
  list-style: none;
}

/*矢印の設定*/
.slick-prev { /*戻る矢印の位置と形状*/
  left: -5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -5%;
  transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: rgba(255, 255, 255, 0);
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

@media screen and (max-width: 767px) {
  .slick-prev, .slick-next {
    display: none !important;
  }
}

.chara_body {
  width: 100%;
}

.story {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.story__inner {
  margin: 30px 0 0;
  padding: 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .story__inner {
    padding: 0 0px;
  }
}
.story__area {
  justify-content: space-between;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .story__area {
    padding: 10px;
  }
  .story__area .pc {
    display: none !important;
  }
  .story__area .sp {
    display: block !important;
  }
}
.story__area-inner {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .story__area-inner {
    padding: 0;
  }
}

.thumbnail {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  padding: 10px 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chara-thumb {
  width: 100%;
  max-width: 150px;
  height: 75px;
  padding: 10px;
}

.staffcast__container-rp {
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .staffcast__container-rp {
    margin-right: 15px;
  }
}

.story-data.crt {
  display: block;
  animation: fadeIn 0.5s 0s ease-out both;
}

.story-data {
  position: relative;
  text-align: center;
}

.staffcast__container-lc {
  margin-left: -15px;
}

.staffcast__container-rc {
  margin-right: -15px;
}

.cont-subtitle {
  margin: 0.5em auto 0.5em auto;
  font-size: 2rem;
  color: #735029;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0 0 10px #fff, 0 0 15px #fff;
}

.story-data .ep-title {
  font-size: 2rem;
  margin-bottom: 1em;
  position: relative;
  color: #fff;
  font-family: ten-mincho, serif;
  font-weight: 400;
  padding: 1rem 2rem 1rem;
  background: #F57C00;
}
@media screen and (max-width: 767px) {
  .story-data .ep-title {
    font-size: 1.5rem;
  }
}

.story-data .ep-text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .story-data .ep-text {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

.ep-text {
  position: relative;
  padding: 0.7em 1.3em;
  color: #333333;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .ep-text {
    padding: 0.5em 0.5em;
    text-align: left;
  }
}

.ep-staff {
  position: relative;
  padding: 0.7em 1.3em;
  font-size: 1rem;
  color: #333333;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .ep-staff {
    padding: 0.5em 0.5em;
    text-align: left;
  }
}

.ep-text::before,
.ep-text::after {
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 1em;
  content: "";
}

.ep-text::before {
  top: 0;
  left: 0;
  border-top: 3px solid #735029;
  border-left: 3px solid #735029;
}

.ep-text::after {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #735029;
  border-right: 3px solid #735029;
}

/*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
img {
  width: 100%;
  max-width: 1163px;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}

.gallery li {
  list-style: none;
}

/*矢印の設定*/
.slick-prev { /*戻る矢印の位置と形状*/
  left: -5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -5%;
  transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: rgba(255, 255, 255, 0);
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

@media screen and (max-width: 767px) {
  .slick-prev, .slick-next {
    display: none !important;
  }
}

/*tabの形状------------------------------------*/
.tab {
  display: flex;
  flex-wrap: wrap;
}

.tab li a {
  display: block;
  background: #E62886;
  margin: 0 2px;
  padding: 10px 20px;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #2589d0;
}

/*エリアの表示非表示と形状*/
.story-area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.story-area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab a {
  color: #fff;
  text-decoration: none;
  font-family: a-otf-ryumin-pr6n, serif;
}

.story-area ul {
  list-style: none;
}

.story-area li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.tab01 {
  width: 100%;
  margin: 0 auto 40px;
}

/*タブのスタイル*/
.tab_menu {
  width: 7.6923076923%;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  color: #fff;
  background-color: #735029;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .tab_menu {
    font-size: 10px;
  }
}

/*ラジオボタンを全て消す*/
input[name=tab_menu] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_contents {
  display: none;
  clear: both;
  overflow: hidden;
  transition: 0.5s opacity;
}

/*選択されているタブを表示*/
#menu00:checked ~ #menu00,
#menu01:checked ~ #menu01,
#menu02:checked ~ #menu02,
#menu03:checked ~ #menu03,
#menu04:checked ~ #menu04,
#menu05:checked ~ #menu05,
#menu06:checked ~ #menu06,
#menu07:checked ~ #menu07,
#menu08:checked ~ #menu08,
#menu09:checked ~ #menu09,
#menu10:checked ~ #menu10,
#menu11:checked ~ #menu11,
#menu12:checked ~ #menu12 {
  display: block;
}

/*選択されているタブのスタイル*/
.tab01 input:checked + .tab_menu {
  background-color: #F57C00;
  color: #fff;
}

.intro_img {
  max-width: 400px;
  margin: 0 auto;
}

.news_armr-title {
  font-size: 2em;
  text-align: center;
}

.news_jk {
  max-width: 600px;
  margin: auto;
  display: block;
}

.contact {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.contact__inner {
  margin: 30px 0 0;
}
.contact__area {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contact__area {
    padding: 20px 10px 10px 30px;
  }
  .contact__area .pc {
    display: none !important;
  }
  .contact__area .sp {
    display: block !important;
  }
}

.contact-wrapper {
  max-width: 400px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-wrapper {
    max-width: 400px;
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .wpcf7-form {
    margin: 0 auto;
  }
}

.contact-item {
  align-items: center;
  justify-content: center;
}

.contact-item__label {
  display: inline-block;
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  outline: none;
  border-radius: 3px;
  padding: 10px 10px 10px 10px;
  transition: all 0.1s ease-out;
}

.contact-item__label-lst {
  display: inline-block;
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  outline: none;
  border-radius: 3px;
  padding: 10px 10px 10px 10px;
  transition: all 0.1s ease-out;
}

.contact-item__input {
  display: inline-block;
  width: 250px !important;
  height: 40px;
  box-sizing: border-box;
  outline: none;
  border-radius: 3px;
  padding: 10px 10px 10px 10px;
  transition: all 0.1s ease-out;
}

.contact-btn {
  display: inline-block;
  width: 200px;
  height: 40px;
  border-radius: 3px;
  padding: 10px 10px 10px 10px;
  transition: all 0.1s ease-out;
}

.contact-box {
  width: 95%;
  margin: ０ auto;
  justify-content: space-between;
}

.box-text {
  resize: both;
}

.lead-form {
  text-align: center;
  font-size: 20px;
}

.form {
  width: 1163px;
  margin: 0 auto;
}

.item {
  overflow: hidden;
  margin-bottom: 20px;
}

.label {
  float: left;
  margin-right: 20px;
  width: 135px;
  border-left: solid 3px #e0505d;
  padding-left: 10px;
}

.inputs {
  float: left;
  width: 300px;
}

.input[type=text], .input[type=email] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
}

.textarea {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  height: 160px;
  font-size: 15px;
}

.btn-area {
  text-align: center;
}

.input[type=submit] {
  background: #e0505c;
  border: none;
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 5px;
}

.input[type=reset] {
  background: #aaa;
  border: none;
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 5px;
}

.onair {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.onair__inner {
  margin: 30px 10px 0;
}
.onair__area {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
.onair__area-inner {
  justify-content: space-between;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 20px 10px 0px;
}
.onair__inbox {
  max-width: 400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .onair__inbox {
    width: 90%;
  }
}
.onair__head {
  margin-bottom: 30px;
}
.onair-top {
  font-size: 36px;
  font-weight: bold;
  color: #707070;
  margin: 30px 20px 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .onair-top {
    font-size: 18px;
  }
}

.onair-position {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .onair-position {
    font-size: 12px;
  }
}

.onair-name {
  font-size: 28px;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .onair-name {
    font-size: 20px;
  }
}

.content-entry .entry-body {
  padding: 1em 0;
  font-size: 1.466em;
}

.fnt-30 {
  font-size: 2em;
}

.fnt-ac6 {
  color: #F57C00;
}

.al-ct {
  text-align: center;
}

.mgr05b {
  margin-bottom: 0.5em;
}

.mgr10b {
  margin-bottom: 1em;
}

.fnt-b {
  font-weight: 700;
}

.fnt-b {
  font-weight: bold;
}

.fnt-24 {
  font-size: 1.6em;
}

.fnt-ac7 {
  color: #735029;
  line-height: 1.2;
}

.onair-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  padding: 1em;
  background-color: #fff;
  border: #735029 solid 0.133em;
  border-radius: 1em;
}

.onair-list {
  margin: 0 auto 1em auto;
  max-width: 40em;
}

.onair-list .col-a {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .onair-list .col-a {
    width: 100%;
  }
}

.onair-list .name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #F57C00;
}

.onair-list .col-b {
  width: 75%;
}

.onair-list .schd {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  color: #444;
}

.onair-list .extr {
  font-size: 0.9em;
  font-weight: bold;
  margin: 0.3em 0 0.1em 0;
  letter-spacing: 0.05em;
  color: #444;
}

.staffcast-atl-bg {
  padding-bottom: 1em;
  margin-bottom: 3em;
}

.inview-start {
  animation: inview-start 0.4s 0.2s ease-out both running;
}

.inview {
  animation: inview 0.4s 0.2s ease-out both paused;
}

.content-entry {
  padding: 0 2em;
  color: #735029;
}

.content-entry .entry-body {
  padding: 1em 0;
  font-size: 1.466em;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}

.fnt-22 {
  font-size: 1.466em;
}

.grid12 {
  display: flex;
  flex-wrap: wrap;
}

.onair-list-il-container {
  max-width: 45em;
  margin: 0 auto;
  color: #444;
}

.onair-list-il-container .ttl5 {
  background-color: #F57C00;
  color: #FFF;
  font-weight: bold;
  font-size: 0.9em;
}

.ttl5 {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1.5em;
  padding: 0.25em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.onair-list-il {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.onair-list-il > a {
  width: 49%;
  margin: 0.5%;
  display: block;
  color: #735029;
  padding: 0.5em;
  background-color: #FFF;
  border: #735029 solid 0.133em;
  border-radius: 1em;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 767px) {
  .onair-list-il > a {
    width: 99%;
    margin: 0.5%;
  }
  .content-entry .entry-body {
    padding: 1em 0;
    font-size: 1.2em;
  }
  .onair-list {
    margin: 0 auto 0.5em auto;
    max-width: inherit;
    padding: 0.8em;
  }
  .onair-list .extr {
    font-size: 0.8em;
  }
  onair-list .col-a {
    width: 100%;
  }
  .onair-list .col-b {
    width: 100%;
  }
  .onair-list .schd {
    font-size: 0.9em;
  }
}
.music {
  background-attachment: fixed;
  padding-bottom: 50px;
  padding-top: 80px;
  position: relative;
}
.music__inner {
  margin: 30px 0 0;
}
.music__area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .music__area {
    flex-direction: column;
  }
}

.music-list {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .music-list {
    width: 100%;
    margin-bottom: 30px;
    padding: 5px;
  }
}

.music-jacket {
  width: 100%;
  max-width: 450px;
  min-width: 250px;
}
@media screen and (max-width: 767px) {
  .music-jacket {
    width: 100%;
  }
}

.music-item {
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .music-item {
    overflow-wrap: break-word;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
  }
}
.music-item__title {
  width: 100%;
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  background-color: #F57C00;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .music-item__title {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 5px 20px;
    letter-spacing: -0.05em;
  }
}
.music-item__title-inner {
  width: 100%;
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  margin: 1%;
  display: block;
  color: #F57C00;
  background-color: #FFF;
  border: #735029 solid 0.133em;
  border-radius: 1em;
  text-decoration: none;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .music-item__title-inner {
    font-size: 16px;
    padding: 3px 10px;
    letter-spacing: -0.05em;
  }
}
.music-item__info {
  margin-bottom: 10px;
  padding: 5px 40px;
  font-size: 16px;
  line-height: 20px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .music-item__info {
    font-size: 16px;
    padding: 5px 20px;
  }
}
.music-item__box {
  justify-content: space-between;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .music-item__box {
    flex-flow: column;
  }
}
.music-item__box-item {
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  /*    padding-top: 20.25%; */
}
@media screen and (max-width: 767px) {
  .music-item__box-item {
    display: flex;
    flex-flow: column;
    margin: 0 auto;
  }
}
.music-item__box-modal {
  width: 30%;
}

.side-menu-mus_left {
  width: 40%;
  font-size: 20px;
  text-align: center;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .side-menu-mus_left {
    width: 100%;
    padding-right: 0px;
    order: 2;
  }
}
.side-menu-mus_left__inner {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}
.side-menu-mus_left__title {
  margin-bottom: 18px;
  text-align: left;
  font-weight: bold;
}
.side-menu-mus_left__list {
  padding-left: 20px;
  border-top: 1px solid #707070;
  padding-top: 18px;
}
.side-menu-mus_left__item {
  margin-bottom: 15px;
  word-break: break-all;
}
.side-menu-mus_left__item:last-child {
  margin-bottom: 0;
}

.side-menu-mus {
  width: 100%;
  font-size: 20px;
}
.side-menu-mus__inner {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}
.side-menu-mus__title {
  margin-bottom: 18px;
  text-align: left;
  font-weight: bold;
}
.side-menu-mus__list {
  padding-left: 20px;
  border-top: 1px solid #707070;
  padding-top: 18px;
}
.side-menu-mus__item {
  margin-bottom: 15px;
  word-break: break-all;
}
.side-menu-mus__item:last-child {
  margin-bottom: 0;
}

.side-menu-mus_right {
  width: 70%;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .side-menu-mus_right {
    width: 100%;
    order: 2;
  }
}
.side-menu-mus_right__inner {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}
.side-menu-mus_right__title {
  margin-bottom: 18px;
  text-align: left;
  font-weight: bold;
}
.side-menu-mus_right__list {
  padding-left: 20px;
  border-top: 1px solid #707070;
  padding-top: 18px;
}
.side-menu-mus_right__item {
  margin-bottom: 15px;
  word-break: break-all;
}
.side-menu-mus_right__item:last-child {
  margin-bottom: 0;
}

.item_url {
  color: #1a0dab;
}

.music-yt {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}

.music-yt iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.hide-area {
  display: none;
}

.cs-info {
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .cs-info {
    font-size: 20px;
  }
}

.fschild {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .fschild {
    margin-bottom: 0;
  }
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-wrapper {
  max-width: 900px;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.music-item__title-inner:hover {
  color: #fff;
  background-color: #F57C00;
}

/*
  3.2 - Utility
-----------------------------------------------------*/
/*
  Break
*/
@media screen and (min-width: 769px) {
  .br-pc {
    display: inline-block;
    white-space: nowrap;
  }
}

.isPc {
  display: none;
}
@media screen and (min-width: 768px) {
  .isPc {
    display: block;
  }
}

.isSp {
  display: block;
}
@media screen and (min-width: 768px) {
  .isSp {
    display: none !important;
    background-color: #fff;
    font-size: 12px;
  }
}

.u-bgc_main {
  color: #fff;
  background-color: #DA7F88;
}
.u-bgc_sub {
  background-color: #FFF6F7;
}

.u-fc_main {
  color: #DA7F88;
}

/*
  Screen Reader Text
*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

body {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  color: #707070;
}/*# sourceMappingURL=common.css.map */