html[lang="ja"] body {
  line-height: 1.55;
  letter-spacing: 0.17em;
}

html[lang="en"] body {
  line-height: 1.42115;
  letter-spacing: 0.012em;
}

html[lang="zh-cmn-Hans"] body {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

html[lang="zh-cmn-Hant"] body {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

html[lang="ko"] body {
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body {
  font-size: 15px;
  line-height: 1.4;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
  color: #e0e0e0;
  font-weight: 500;
  background: #222;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.inner2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .inner {
    padding: 0 1.5rem;
  }
}
.inner-s {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .inner-s {
    padding: 0 1.5rem;
  }
}

.section {
  margin: 10rem 0;
}
@media screen and (max-width: 768px) {
  .section {
    margin: 6rem 0;
  }
}

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

hr {
  margin: 6rem 0;
  border: none;
  border-top: 1px solid rgb(0, 0, 0);
}

@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.4;
  }
}

p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  color: #0a5dd9;
  text-decoration: underline;
}

.elm_h1 {
  margin: 2em 0 0;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.elm_h1 span {
  font-weight: 400;
  display: inline-block;
  margin-right: 0.5em;
  font-size: 80%;
}
.elm_h1 span strong {
  font-weight: 500;
  display: block;
  font-size: 360%;
}
@media screen and (max-width: 768px) {
  .elm_h1 span strong {
    font-size: 300%;
  }
}
.elm_h1 small {
  font-weight: 400;
  display: block;
  opacity: 0.3;
  font-size: 75%;
  margin-top: 2.8em;
}

.elm_h2 {
  font-weight: 700;
  font-size: 150%;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .elm_h2 {
    font-size: 145%;
  }
}

.elm_h3 {
  font-size: 150%;
}

.elm_h4 {
  font-size: 130%;
}

.elm_h5 {
  font-size: 110%;
}

.elm_h6 {
  font-size: 100%;
}

#m_header,
#m_footer {
  font-size: 90%;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1rem;
}
#m_header .inner,
#m_footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#m_header .navigation ul,
#m_footer .navigation ul {
  display: flex;
}

#m_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.0rem;
}
#m_header .inner {
  display: flex;
  max-width: 1300px;
}
#m_header .logo {
  max-width: 156px;
}
#m_header .navigation ul {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#m_header .navigation ul li {
  padding: 1em 2em;
}
#m_header .navigation ul li a {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.435) 1px 0 10px;
  text-transform: uppercase;
  padding: 0;
  font-size: 95%;
}
#m_header .navigation ul li a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  display: block;
  opacity: 0;
  transform: translateY(2px);
}
#m_header .navigation ul li.active a:after {
  opacity: 1;
}
#m_header .spTrigg {
  display: none;
  cursor: pointer;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.0rem;
  transition: 0.5s;
}
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
  /* 背景をオレンジにする */
  background: rgb(255, 137, 0);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav .logo,
header.scroll-nav ul li a {
  color: #000;
}
@media screen and (max-width: 768px) {
  #m_header {
    padding: 1rem 1.3rem 1rem 1.4em;
  }
  #m_header .inner {
    padding: 0;
    display: block;
  }
  #m_header .logo {
    max-width: 100px;
    margin: 0 auto;
  }
  #m_header .navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: 100;
  }
  #m_header .navigation ul {
    padding: 0 2rem;
    flex-direction: column;
    font-size: 260%;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  #m_header .navigation ul li {
    padding: 0.8rem 1rem;
  }
  #m_header .navigation ul li a {
    letter-spacing: 0.2rem;
    text-transform: capitalize;
  }
  #m_header .navigation ul li a:after {
    content: none;
  }
  #m_header .m_langTab {
    position: absolute;
    top: 22px;
    right: 22px;
  }
  #m_header .spTrigg {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 15px;
    left: 13px;
    background-image: url("../images/icon/menu.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 105;
  }
  #m_header .spTrigg.active {
    background-image: url("../images/icon/menu_close.png");
  }
}

#m_footer {
  border-radius: 24px 24px 0 0;
  background: rgb(255, 137, 0);
  background: linear-gradient(
    141deg,
    rgb(255, 137, 0) 0%,
    rgb(246, 49, 137) 100%
  );
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 1rem 1rem 1rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #m_footer {
    padding: 2.5rem 1rem 1rem 1rem;
  }
}
#m_footer .inner {
  flex-direction: column;
  align-items: flex-start;
}
#m_footer .links {
  display: flex;
  align-items: flex-end;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #m_footer .links {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
}
#m_footer .links .right {
  flex: 1.8;
  padding-right: 6rem;
}
@media screen and (max-width: 768px) {
  #m_footer .links .right {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }
}
#m_footer .links .right .logo {
  display: block;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  #m_footer .links .right .logo {
    margin: 0 auto 1rem;
    max-width: 45%;
  }
}
#m_footer .links .right li a {
  display: block;
  font-weight: 500;
  font-size: 180%;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #m_footer .links .right li a {
    font-size: 160%;
  }
}
#m_footer .links .left {
  flex: 8;
  display: flex;
}
#m_footer .links .left li:first-child {
  padding-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  #m_footer .links .left li:first-child {
    padding-right: 0.5rem;
  }
}
#m_footer .links .left img {
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #m_footer .links .left img {
    border-radius: 6px;
  }
}
#m_footer .copy {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  display: block;
  width: 100%;
  padding: 1em 0 0 0;
  font-weight: 500;
}

#m_hero {
  padding: 4rem 0;
  text-align: center;
  background: #eee;
}
#m_hero h1 span {
  display: block;
  font-weight: 800;
  font-size: 150%;
}
#m_hero h1 small {
  display: block;
  font-weight: 600;
  font-size: 100%;
}

.m_langTab {
  position: relative;
  color: #222;
  font-weight: 400;
  font-size: 90%;
}
.m_langTab .now {
  cursor: pointer;
  display: block;
  background: #fafafa;
  padding: 0.6em 0.57em;
  border-radius: 5px;
  border: 1px solid #222;
}
.m_langTab ul {
  position: absolute;
  top: 2.6rem;
  right: 0;
  background: #fff;
  padding: 1em;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.24);
  flex-direction: column;
  text-align: center;
}
.m_langTab ul li {
  display: block;
}
.m_langTab ul li a {
  display: block;
  padding: 0.4em 1em;
}
.m_langTab ul li:hover {
  background: #eee;
}

.m_titleBox {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .m_titleBox {
    margin-bottom: 3rem;
  }
}
.m_titleBox .moreLink {
  display: block;
  margin-top: 2.1em;
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.m_titleBox .moreLink:after {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 0.7em;
  background: url("../images/icon/arrow_r.svg") no-repeat center center;
  background-size: cover;
  margin: 0 0 0 1.2em;
}

.m_newsindex {
  margin: 0 auto;
  max-width: 85%;
}
@media screen and (max-width: 768px) {
  .m_newsindex {
    max-width: 100%;
  }
}
.m_newsindex dl {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m_newsindex dl {
    flex-direction: column;
  }
  .m_newsindex dl:first-child {
    padding-top: 0;
  }
}
.m_newsindex dt {
  flex: 2.5;
  padding-right: 4rem;
}
.m_newsindex dt img {
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m_newsindex dt {
    padding-right: 0;
    margin-bottom: 1.3rem;
  }
}
.m_newsindex dd {
  flex: 8;
}
.m_newsindex dd .ttl {
  font-size: 110%;
  font-weight: 600;
  margin-bottom: 0.8em;
}
.m_newsindex dd .lead {
  font-size: 85%;
  font-weight: 400;
  margin-bottom: 0.9rem;
}
.m_newsindex dd .ex {
  font-size: 85%;
  font-weight: 400;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
}
.m_newsindex dd .day {
  opacity: 0.6;
}
.m_newsindex dd .cat {
  opacity: 0.6;
}
.m_newsindex dd .cat li {
  display: inline-block;
  margin-left: 1.3rem;
}
.m_newsindex dd .more {
  display: block;
  background: #ff8900;
  color: #000;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding: 1px;
}
.m_newsindex dd a {
  display: block;
}

.m_document {
  line-height: 1.7;
}
.m_document h1 {
  font-size: 220%;
  font-weight: 800;
  margin: 1em 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .m_document h1 {
    font-size: 160%;
  }
}
.m_document h1 strong {
  color: #ff8900;
}
.m_document h1 small {
  display: block;
  line-height: 1;
  font-size: 50%;
  font-weight: 600;
  margin-top: 1em;
}
.m_document h2 {
  font-size: 180%;
  font-weight: 800;
  margin: 1em 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .m_document h2 {
    font-size: 140%;
  }
}
.m_document h2 strong {
  color: #ff8900;
}
.m_document h2 small {
  display: block;
  line-height: 1;
  font-size: 60%;
  font-weight: 600;
  margin-top: 0.6em;
}
.m_document h3 {
  font-size: 140%;
  font-weight: 600;
  margin: 1em 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .m_document h3 {
    font-size: 120%;
  }
}
.m_document h3 strong {
  color: #ff8900;
}
.m_document h3 small {
  display: block;
  line-height: 1.4;
  font-size: 70%;
  font-weight: 600;
  margin-top: 0.5em;
}
.m_document h4 {
  font-size: 120%;
  font-weight: 600;
  margin: 1em 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .m_document h4 {
    font-size: 110%;
  }
}
.m_document h4 strong {
  color: #ff8900;
}
.m_document h4 small {
  display: block;
  margin-top: 0.5em;
}
.m_document h5 {
  font-size: 90%;
  font-weight: 600;
  margin: 1em 0;
  line-height: 1.3;
}
.m_document h5 strong {
  color: #ff8900;
}
.m_document h5 small {
  display: block;
  margin-top: 0.5em;
}
.m_document h6 {
  font-size: 90%;
  font-weight: 600;
  color: #999999;
  margin: 1em 0;
  line-height: 1.3;
}
.m_document h6 strong {
  color: #ff8900;
}
.m_document h6 small {
  display: block;
  margin-top: 0.5em;
}
.m_document p {
  margin: 2.5rem 0;
  text-align: justify;
  word-break: break-all;
}
.m_document small {
  font-size: 76%;
}
.m_document b {
  font-weight: 600;
}
.m_document i {
  display: inline-block;
  padding: 0 0.3em;
  font-style: italic;
}
.m_document del {
  display: inline-block;
  padding: 0 0.3em;
}
.m_document ins {
  display: inline-block;
  line-height: 1;
  background: #5e5e5e;
  text-decoration: none;
  padding: 0 0.2em;
  margin: 0 0.2em;
}
.m_document sub {
  font-size: 70%;
}
.m_document sup {
  font-size: 70%;
}
.m_document em {
  font-weight: 600;
  font-style: normal;
}
.m_document strong {
  font-weight: 800;
}
.m_document a {
  display: inline-block;
  padding: 0 0.1em;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  cursor: pointer;
  color: #f63189;
}
.m_document a:hover {
  opacity: 0.6;
}
.m_document ul,
.m_document ol {
  margin: 2.7em 0;
  padding-left: 1.5em;
}
.m_document ul ul,
.m_document ul ol,
.m_document ol ul,
.m_document ol ol {
  margin: 0;
}
.m_document ul ul li,
.m_document ul ol li,
.m_document ol ul li,
.m_document ol ol li {
  margin: 0.3em 0;
}
.m_document ul {
  list-style: disc;
}
.m_document ul > li ul {
  list-style: circle;
}
.m_document ol {
  margin: 2.7em 0;
  list-style: decimal;
}
.m_document ol > ul {
  list-style: disc;
}
.m_document li {
  line-height: 1.4;
  margin: 0.6em 0;
}
.m_document hr {
  display: block;
  margin: 4.05em 0;
  border: none;
  border-top: 1px solid #fff;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .m_document hr {
    margin: 2.55em 0;
  }
}
.m_document blockquote {
  background: #000;
  margin: 2.7em 0;
  padding: 2.55em 2.55em;
  padding-left: 2.72em;
  border-left: 4px solid #000;
  border-radius: 16px;
}
.m_document blockquote p {
  margin: 1.3em 0;
}
.m_document blockquote p:first-child {
  margin-top: 0;
}
.m_document blockquote p:last-child {
  margin-bottom: 0;
}
.m_document blockquote cite {
  display: block;
  text-align: right;
  font-size: 90%;
  font-weight: 600;
  margin: 0;
}
.m_document q {
  font-style: italic;
  quotes: '"' '"';
}
.m_document cite {
  display: inline-block;
  font-style: normal;
  margin: 0 0.5em;
}
.m_document cite a {
  font-style: italic;
}
.m_document code {
  display: block;
  background: #000;
  margin: 2.7em 0;
  padding: 2.55em 3.4em;
  padding-top: 3.4em;
  font-size: 80%;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #b5b5b5;
  border-radius: 16px;
  position: relative;
}
.m_document code:before {
  content: "code";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #444;
  color: #fff;
  font-weight: 600;
  padding: 4px 1em 5px;
  border-radius: 10px 0 10px 0;
  line-height: 1;
}
.m_document figure {
  margin: 2.7em 0;
}
.m_document figure img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.m_document figure figcaption {
  display: block;
  font-size: 80%;
  padding: 0.3em 0;
  line-height: 1.3;
}
.m_document img {
  width: 100%;
  height: auto;
}
.m_document video {
  width: 100%;
  height: auto;
}
.m_document address {
  display: block;
}

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

.btn {
  display: inline-block;
  font-size: 1.5rem;
  background-color: #ff8900;
  color: #fff;
  border-radius: 8px;
  padding: .75rem 1.5rem;
}

.btn:hover{
  background-color: #ff7700;
}

.info{
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
  border-spacing: 0;
  color: #fff;
}

.info th,
.info td{
  border-bottom: 1px solid #c9c2bc;
}

.info th {
  text-align: left;
  font-weight: normal;
  padding: 1rem 0;
}

.info td{
  padding: 1rem 0;
}

.sample-table{
  border: 1px solid #fff;
  color: #fff;
}

.sample-th {
  border: 1px solid #fff;
  padding: 10px;
  font-size: 18px;
}

.sample-td {
  border: 1px solid #fff;
  padding: 10px;
}
.mailform {
  background: #FFFFFF;
  color: #000000;
  height: 20px;
  width : 200px;
  font-size: 3;
}
.thank_you{
  height: 450px;
  width : 380px;
}
.kizi{
  height: 650px;
  width : 428px;    
}
.member_photo{
  height: 200px;
  width : 200px;
}
.member_photo img {
  border-radius: 30px;
}
.bangumi_logo {
  width : 670px;
}
@media screen and (max-width: 768px) {
  .bangumi_logo {
  height: auto;
  width : auto;
  }
}
.channel{
  height: auto;
  width : auto;
}
.sns_icon{
  height: 150px;
  width : 150px;
}
spimg{
  width: 90%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  spimg {
  height: auto;
  width : auto;
  vertical-align: bottom;
  }
}

.spon{
  width: 50%;
}
@media screen and (max-width: 768px) {
  .spon {
  height: auto;
  width : auto;
  }
}