@charset "UTF-8";
/*  
 * style.css
*/
/*
	File Name   : var.scss
	Description : 変数用
*/
/*------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
  --v-mediaqueryPC:1000;
  --v-mediaquerySP:768;
  --v-vwwidth:1366;
  --v-spwidth:750;
  --v-mainBgColor:#DC000C;
  --v-mainColor:#49484d;
  --v-bordercolor:#69686b;
  --v-transition:.6s ; }

/*
	File Name   : webfont.scss
	Description : webfont用
*/
/*------------------------------------------------------*/
/* web font */
/*
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900');
*/
/*
font-family: 'Barlow Condensed', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/
/* Eric Meyer’s “Reset CSS” 2.0
------------------------------------------------------------------------------- */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none; }

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer; }

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none; }

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px; }

/*
	File Name   : base.scss
	Description : 各ブロックのレイアウト 
*/
/* PC */
@media screen and (min-width: 768px) {
  /*-------------*/ }
/* SP */
@media screen and (max-width: 767px) {
  /*-------------*/ }
/* SP2(iPhone5 - SE ) */
@media screen and (max-width: 347px) {
  /*-------------*/ }
/* Body setting
------------------------------------------------------------------------------- */
body {
  color: #5d5d5d;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  font-style: normal;
  position: relative;
  overflow-x: hidden;
  /*max-width: 1100px;*/
  background: #222222;
  box-sizing: border-box;
  letter-spacing: .05em; }
  body.menu-open {
    bottom: 0;
    top: 0;
    width: 100%;
    position: fixed;
    overflow: hidden;
    height: 100%;
    -webkit-overflow-scrolling: touch; }

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, body {
    font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif; }

  /* IE11 */ }
/* SP  */
@media screen and (max-width: 900px) {
  body {
    padding-right: 0;
    min-width: 100%;
    font-size: calc(26/750*100vw); }

  /*-------------*/ }
/* common style
------------------------------------------------------------------------------- */
p,
ul li a {
  text-decoration: none; }

a {
  color: #fff;
  text-decoration: none; }

/* MAIN
------------------------------------------------------------------------------- */
main {
  display: block;
  width: 100%;
  box-sizing: border-box; }

#top main {
  margin-top: 60px; }

#wrapper {
  padding-top: 120px; }

/* SP */
@media screen and (max-width: 900px) {
  #wrapper {
    padding-top: calc(120/750*100vw); } }
/* Header
------------------------------------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  background: #000;
  z-index: 6000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  header.move {
    top: -120px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }

/* SP */
@media screen and (max-width: 900px) {
  header.move {
    top: calc(-120/750*100vw); } }
/* gnav(header MENU)
------------------------------------------------------------------------------- */
.global-nav {
  position: relative;
  z-index: 10;
  width: calc(1100/1440*100vw);
  max-width: 1100px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .global-nav h1 {
    width: 120px;
    height: auto;
    flex-shrink: 0; }
    .global-nav h1 img {
      width: 100%; }
  .global-nav nav {
    display: flex;
    justify-content: flex-end;
    flex-direction: column; }
    .global-nav nav ul.global-nav__search {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 10px; }
      .global-nav nav ul.global-nav__search .lang {
        font-size: 15px;
        font-weight: 400; }
        .global-nav nav ul.global-nav__search .lang .lang-change__link {
          padding: 0 5px;
          cursor: pointer;
          color: #fff;
          position: relative; }
          .global-nav nav ul.global-nav__search .lang .lang-change__link.no-link {
            pointer-events: none;
            opacity: .5;
            position: relative;
            /*&::after{
            	content: "";
            	position: absolute;
            	bottom: -1px;
            	left: 0;
            	width: 100%;
            	height: 1px;
            	background: #fff;
            }*/ }
          .global-nav nav ul.global-nav__search .lang .lang-change__link::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff; }
          .global-nav nav ul.global-nav__search .lang .lang-change__link:hover::after {
            width: 100%;
            transition: .3s all; }
        .global-nav nav ul.global-nav__search .lang .lang-sp__btn {
          display: none; }
        .global-nav nav ul.global-nav__search .lang .lang-sp__change #lang-close {
          display: none; }
      .global-nav nav ul.global-nav__search .keyword {
        padding-left: 15px; }
        .global-nav nav ul.global-nav__search .keyword .keyword-sp__btn {
          display: none; }
        .global-nav nav ul.global-nav__search .keyword #cse-search-box {
          display: flex;
          justify-content: flex-end;
          align-items: center; }
          .global-nav nav ul.global-nav__search .keyword #cse-search-box .cse-search__input {
            background-color: transparent;
            border-bottom: 1px solid #fff;
            color: #fff;
            font-size: 14px;
            padding: 5px 0;
            width: 0;
            transition: all .4s; }
            .global-nav nav ul.global-nav__search .keyword #cse-search-box .cse-search__input.on-input {
              width: 100%;
              padding: 5px;
              transition: all .4s; }
          .global-nav nav ul.global-nav__search .keyword #cse-search-box .cse-search__btn {
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            /*background: transparent url(/images/common/icon_search.svg) no-repeat 50% 50%;*/
            width: 20px;
            padding-top: 3px; }
            .global-nav nav ul.global-nav__search .keyword #cse-search-box .cse-search__btn img {
              width: 100%; }
        .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner {
          display: none; }
    .global-nav nav ul.global-nav__menu {
      display: flex;
      margin-bottom: 10px; }
      .global-nav nav ul.global-nav__menu li {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 400; }
        .global-nav nav ul.global-nav__menu li + li {
          margin-left: 0; }
          .global-nav nav ul.global-nav__menu li + li a {
            border-left: 1px solid #707070; }
        .global-nav nav ul.global-nav__menu li a {
          position: relative;
          box-sizing: border-box;
          font-size: 22px;
          letter-spacing: .05em;
          line-height: 1.5;
          white-space: nowrap;
          padding: 0 20px 0; }
          .global-nav nav ul.global-nav__menu li a:hover {
            opacity: .9 !important;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        .global-nav nav ul.global-nav__menu li.btn {
          border: none;
          margin-left: 5px; }
          .global-nav nav ul.global-nav__menu li.btn a {
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            background: #fff;
            font-size: 16px;
            padding: 5px 13px 3px;
            border-radius: 2px;
            box-sizing: border-box;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 500; }

/* SP  */
@media screen and (max-width: 900px) {
  .global-nav {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    height: calc(120/750*100vw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .global-nav h1 {
      width: calc(124/750*100vw);
      height: auto;
      margin-left: calc(40/750*100vw);
      margin-top: 10px; }
      .global-nav h1 img {
        width: 100%; }
    .global-nav nav {
      display: flex;
      justify-content: flex-end;
      flex-direction: column; }
      .global-nav nav ul.global-nav__search {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 15px;
        /* キーワード検索 */ }
        .global-nav nav ul.global-nav__search .lang {
          position: absolute;
          top: 0;
          /*right: calc(123/750*100vw);*/
          right: calc(245/750*100vw);
          font-weight: 400; }
          .global-nav nav ul.global-nav__search .lang .lang-sp__change {
            display: none;
            position: absolute;
            z-index: 10001;
            top: calc(120/750*100vw);
            /*left: calc(-504/750*100vw);*/
            left: calc(-382/750*100vw);
            width: 100vw;
            background-color: #272727;
            text-align: center;
            overflow: hidden; }
            .global-nav nav ul.global-nav__search .lang .lang-sp__change p {
              display: flex;
              justify-content: center;
              align-items: center;
              height: calc(108/750*100vw); }
            .global-nav nav ul.global-nav__search .lang .lang-sp__change #lang-close {
              display: block; }
            .global-nav nav ul.global-nav__search .lang .lang-sp__change .menu-trigger.close span:nth-of-type(1) {
              -webkit-transform: translateY(10px) rotate(-45deg);
              transform: translateY(10px) rotate(-45deg);
              background-color: #fff; }
            .global-nav nav ul.global-nav__search .lang .lang-sp__change .menu-trigger.close span:nth-of-type(2) {
              opacity: 0; }
            .global-nav nav ul.global-nav__search .lang .lang-sp__change .menu-trigger.close span:nth-of-type(3) {
              -webkit-transform: translateY(-7px) rotate(45deg);
              transform: translateY(-7px) rotate(45deg);
              width: 100%;
              background-color: #fff; }
          .global-nav nav ul.global-nav__search .lang a {
            padding: 0 5px; }
            .global-nav nav ul.global-nav__search .lang a.nolink {
              pointer-events: none;
              opacity: .3; }
          .global-nav nav ul.global-nav__search .lang .lang-sp__btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: calc(123/750*100vw);
            height: calc(120/750*100vw);
            border-left: 1px solid #707070;
            border-right: 1px solid #707070;
            cursor: pointer; }
            .global-nav nav ul.global-nav__search .lang .lang-sp__btn img {
              width: calc(76/750*100vw); }
            .global-nav nav ul.global-nav__search .lang .lang-sp__btn span {
              font-size: 12px; }
        .global-nav nav ul.global-nav__search .keyword {
          position: absolute;
          top: 0;
          /*right: calc(246/750*100vw); 言語が付いた場合の数値*/
          right: calc(123/750*100vw);
          padding-left: 15px;
          /* SP:キーワード検索 */ }
          .global-nav nav ul.global-nav__search .keyword .keyword-sp__btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: calc(123/750*100vw);
            height: calc(120/750*100vw);
            border-left: 1px solid #707070;
            border-right: 1px solid #707070;
            cursor: pointer; }
            .global-nav nav ul.global-nav__search .keyword .keyword-sp__btn img {
              width: calc(56/750*100vw); }
          .global-nav nav ul.global-nav__search .keyword #cse-search-box {
            display: none;
            justify-content: flex-end;
            align-items: center; }
            .global-nav nav ul.global-nav__search .keyword #cse-search-box .cse-search__input {
              background-color: transparent;
              border-bottom: 1px solid #fff;
              color: #fff; }
          .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner {
            display: none;
            position: absolute;
            z-index: 1000;
            top: calc(120/750*100vw);
            /*left: calc(-351/750*100vw); 言語が付いた場合の数値*/
            /*left: calc(-494/750*100vw);*/
            left: calc(-480/750*100vw);
            width: 100vw;
            background-color: #272727;
            text-align: center;
            overflow: hidden; }
            .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner form {
              display: flex;
              justify-content: center;
              align-items: center;
              height: calc(108/750*100vw); }
            .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner #cse-search-box {
              display: flex;
              justify-content: flex-end;
              align-items: center;
              flex-direction: row-reverse;
              width: 60%;
              margin: 0 auto; }
              .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner #cse-search-box .cse-search__input {
                position: relative;
                display: block;
                background-color: transparent;
                border-bottom: 1px solid #fff;
                color: #fff;
                font-size: 16px;
                padding: 3px 3px 3px 5px;
                width: 90%;
                margin: 0 auto 10px;
                transition: all .4s; }
                .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner #cse-search-box .cse-search__input::after {
                  position: absolute;
                  bottom: 0;
                  left: -20px;
                  width: 100%;
                  height: 1px;
                  background-color: #fff; }
              .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner #cse-search-box label {
                margin-bottom: 5px; }
            .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner .menu-trigger {
              display: block; }
              .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner .menu-trigger.close span:nth-of-type(1) {
                -webkit-transform: translateY(10px) rotate(-45deg);
                transform: translateY(10px) rotate(-45deg);
                background-color: #fff; }
              .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner .menu-trigger.close span:nth-of-type(2) {
                opacity: 0; }
              .global-nav nav ul.global-nav__search .keyword .keyword-sp__inner .menu-trigger.close span:nth-of-type(3) {
                -webkit-transform: translateY(-7px) rotate(45deg);
                transform: translateY(-7px) rotate(45deg);
                width: 100%;
                background-color: #fff; }
      .global-nav nav ul.global-nav__menu {
        display: none; }
        .global-nav nav ul.global-nav__menu li + li a {
          border-left: none; }
        .global-nav nav ul.global-nav__menu li a {
          position: relative;
          box-sizing: border-box;
          font-size: 22px;
          letter-spacing: .05em;
          line-height: 1.5;
          white-space: nowrap;
          padding: 3px 20px 0; }
        .global-nav nav ul.global-nav__menu li.btn {
          margin-left: 0; }
          .global-nav nav ul.global-nav__menu li.btn a {
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            padding: 3px 13px; }
    .global-nav .menu-trigger {
      position: absolute;
      top: 0;
      right: 0;
      width: calc(120/750*100vw);
      height: calc(120/750*100vw); }
      .global-nav .menu-trigger .menu-trigger__line {
        position: absolute;
        width: calc(40/750*100vw);
        height: calc(28/750*100vw);
        z-index: 1100;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .global-nav .menu-trigger .menu-trigger__line span {
          position: absolute;
          right: 0;
          height: 2px;
          background-color: #fff;
          width: 100%;
          display: inline-block;
          transition: all .4s;
          box-sizing: border-box; }
          .global-nav .menu-trigger .menu-trigger__line span:nth-of-type(1) {
            top: 0px; }
          .global-nav .menu-trigger .menu-trigger__line span:nth-of-type(2) {
            top: calc(12/750*100vw); }
          .global-nav .menu-trigger .menu-trigger__line span:nth-of-type(3) {
            bottom: 0px; }
    .global-nav .close-trigger {
      position: absolute;
      width: 20px;
      height: 14px;
      z-index: 1100;
      top: 40%;
      right: calc(20/750*100vw); }
      .global-nav .close-trigger span {
        position: absolute;
        right: 0;
        height: 2px;
        background-color: #fff;
        width: 100%;
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box; }
        .global-nav .close-trigger span:nth-of-type(1) {
          top: 0px; }
        .global-nav .close-trigger span:nth-of-type(2) {
          top: calc(12/750*100vw); }
        .global-nav .close-trigger span:nth-of-type(3) {
          bottom: 0px; }
      .global-nav .close-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(6px) rotate(-45deg);
        transform: translateY(6px) rotate(-45deg);
        background-color: #fff; }
      .global-nav .close-trigger span:nth-of-type(2) {
        opacity: 0; }
      .global-nav .close-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-6px) rotate(45deg);
        transform: translateY(-6px) rotate(45deg);
        width: 100%;
        background-color: #fff; } }
/* gnav(Drawer-Menu)
------------------------------------------------------------------------------- */
#gnav-wrap {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 19999;
  padding-bottom: 1000px;
  -webkit-transition: right .8s ease-in-out;
  transition: right .8s ease-in-out; }

body.menu-open #gnav-wrap {
  top: 0px; }

#gnav {
  position: relative;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.9); }
  #gnav .menu-trigger {
    position: absolute;
    top: calc(30/750*100vw);
    right: calc(30/750*100vw);
    width: 30px;
    height: 20px;
    z-index: 1100; }
    #gnav .menu-trigger span {
      position: absolute;
      right: 0;
      height: 2px;
      background-color: #fff;
      width: 100%;
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box; }
      #gnav .menu-trigger span:nth-of-type(1) {
        top: 0px; }
      #gnav .menu-trigger span:nth-of-type(2) {
        top: 10px; }
      #gnav .menu-trigger span:nth-of-type(3) {
        bottom: 0px; }
    #gnav .menu-trigger.close span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
      background-color: #fff; }
    #gnav .menu-trigger.close span:nth-of-type(2) {
      opacity: 0; }
    #gnav .menu-trigger.close span:nth-of-type(3) {
      -webkit-transform: translateY(-7px) rotate(45deg);
      transform: translateY(-7px) rotate(45deg);
      width: 100%;
      background-color: #fff; }

/* スクロールバー */
#gnav::-webkit-scrollbar {
  width: 6px; }

#gnav::-webkit-scrollbar-track {
  border-radius: 3px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.2); }

#gnav::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px; }

/* END スクロールバー */
#header-menu-bg {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  width: 100%;
  height: 150%;
  background: rgba(0, 0, 0, 0.6); }

.gnav__accordion-body {
  display: none; }

/* PC */
@media screen and (min-width: 768px) {
  body#top #header-wrap-pos {
    position: fixed;
    top: 600px;
    right: 0; }

  /*-------------*/ }
/* SP */
@media screen and (max-width: 900px) {
  #header-wrap-pos {
    position: fixed;
    top: 0; }

  #gnav-wrap {
    display: none;
    -webkit-transition: top .4s ease-in-out;
    transition: top .4s ease-in-out; }

  #gnav {
    width: 100%;
    padding-bottom: 20px; }
    #gnav .menu-trigger {
      top: calc(30/750*100vw);
      right: calc(20/750*100vw); }

  .gnav__list {
    width: calc(660/750*100vw);
    margin: calc(120/750*100vw) auto 0; }
    .gnav__list ul li {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 400;
      margin-top: 15px; }
      .gnav__list ul li a {
        position: relative;
        box-sizing: border-box;
        font-size: 22px;
        letter-spacing: .05em;
        line-height: 1.5;
        white-space: nowrap;
        padding: 3px 0 0; }
        .gnav__list ul li a:hover {
          opacity: 1 !important; }
          .gnav__list ul li a:hover span {
            display: block;
            opacity: .7; }
      .gnav__list ul li.btn a {
        height: calc((100/750)*100vw);
        display: flex;
        align-items: center;
        color: #000;
        background: #fff;
        font-size: 16px;
        padding: 5px 13px 3px;
        border-radius: 2px;
        box-sizing: border-box;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 500; }

  /*--------------*/ }
/* Footer
----------------------------------------------------------- */
footer {
  position: relative;
  background: #000;
  padding: 60px 0 40px; }
  footer #footer-wrap {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between; }
    footer #footer-wrap .footer-wrap__logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      margin-right: 10px; }
      footer #footer-wrap .footer-wrap__logo figure {
        width: 100px; }
      footer #footer-wrap .footer-wrap__logo a:hover {
        opacity: .7 !important;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      footer #footer-wrap .footer-wrap__logo ul {
        display: flex;
        align-items: center; }
        footer #footer-wrap .footer-wrap__logo ul li {
          margin-left: 20px; }
          footer #footer-wrap .footer-wrap__logo ul li a:hover {
            opacity: .7 !important;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
    footer #footer-wrap .footer-wrap__menu ul {
      display: flex;
      justify-content: space-between;
      margin-top: 10px; }
      footer #footer-wrap .footer-wrap__menu ul li {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 400; }
        footer #footer-wrap .footer-wrap__menu ul li + li {
          margin-left: 0; }
        footer #footer-wrap .footer-wrap__menu ul li a {
          position: relative;
          box-sizing: border-box;
          font-size: 20px;
          letter-spacing: .05em;
          line-height: 1.5;
          white-space: nowrap;
          padding: 3px 10px 0; }
          footer #footer-wrap .footer-wrap__menu ul li a:hover {
            opacity: .7 !important;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        footer #footer-wrap .footer-wrap__menu ul li:last-child a {
          padding: 3px 0 0 10px; }
  footer .copyright {
    color: #ccc;
    text-align: center;
    font-size: 11px; }

/* MID */
@media screen and (max-width: 1100px) {
  footer {
    padding: 60px 0 40px; }
    footer #footer-wrap {
      display: flex;
      justify-content: center;
      flex-direction: column-reverse; }
      footer #footer-wrap .footer-wrap__logo {
        justify-content: center;
        margin: 30px 0 10px; }
      footer #footer-wrap .footer-wrap__menu ul {
        display: flex;
        justify-content: center;
        margin-top: 10px; } }
/* SP */
@media screen and (max-width: 900px) {
  footer {
    padding: calc(60/750*100vw) 0 calc(40/750*100vw); }
    footer #footer-wrap {
      width: 100%;
      max-width: 100%;
      margin: 0 auto 20px;
      flex-direction: column-reverse; }
      footer #footer-wrap .footer-wrap__logo {
        flex-direction: column;
        margin-right: 0; }
        footer #footer-wrap .footer-wrap__logo ul {
          flex-wrap: wrap;
          justify-content: center;
          padding: 0 calc(180/750*100vw);
          margin-top: 20px; }
          footer #footer-wrap .footer-wrap__logo ul li {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 5px; }
            footer #footer-wrap .footer-wrap__logo ul li:nth-child(4) {
              margin-left: 10px; }
      footer #footer-wrap .footer-wrap__menu ul {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
        margin-bottom: 20px;
        padding: 0 calc(90/750*100vw); }
        footer #footer-wrap .footer-wrap__menu ul li a {
          font-size: calc(39/750*100vw);
          padding: 3px 12px 0; }
    footer .copyright {
      font-size: calc(22/750*100vw); }

  /*--------------*/ }
.cc-window {
  background: rgba(0, 0, 0, 0.7) !important; }

/*
	File Name   : parts.scss
	Description : パーツ用のスタイル
*/
/* PC */
@media screen and (min-width: 768px) {
  /*-------------*/ }
/* SP */
@media screen and (max-width: 767px) {
  /*-------------*/ }
/* text 
----------------------------------------------------------- */
.text-description {
  margin-bottom: 55px; }
  .text-description p + p {
    margin-top: 1.5em; }
  .text-description p + .text-description__hl {
    margin-top: 3rem; }
  .text-description p + table {
    margin-top: 2rem !important; }
  .text-description p strong {
    font-weight: bold;
    color: #000; }
  .text-description__hl {
    margin-bottom: .5em;
    color: #000;
    font-size: 18px;
    font-weight: bold; }
  .text-description a {
    color: #5d5d5d; }
    .text-description a:hover {
      text-decoration: underline; }
  .text-description.credit {
    font-size: 13px; }
    .text-description.credit .indent {
      padding-left: 4.5em; }
      .text-description.credit .indent.en {
        padding-left: 7em; }

body#works:not(.detail, .list) .text-description {
  text-align: center; }

.text-note {
  font-size: 14px; }
  .text-note__small {
    font-size: 12px; }

.text-signature {
  text-align: right;
  margin-top: 80px; }

@media screen and (max-width: 900px) {
  .text-description {
    margin-bottom: 2rem; }
    .text-description p + p {
      margin-top: 1.2em; }
    .text-description__hl {
      margin-bottom: .5em;
      color: #000;
      font-size: calc(28/750*100vw);
      font-weight: bold; }
    .text-description.credit .indent {
      padding-left: 0; }
      .text-description.credit .indent.en {
        padding-left: 0; } }
/* link
----------------------------------------------------------- */
.link-text {
  color: #5d5d5d; }
  .link-text:hover {
    text-decoration: underline; }

.link-blank {
  color: #5d5d5d;
  padding-left: 30px;
  background: url(/images/common/icon_blank.svg) no-repeat 0 50%; }
  .link-blank:hover {
    text-decoration: underline; }

/* btn
----------------------------------------------------------- */
.btn-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 140px;
  height: 40px;
  border: 1px solid #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .btn-frame.inline {
    display: inline-flex;
    color: #000000;
    border: 1px solid #000000;
    margin-left: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    /* ボタンエフェクト */ }
    .btn-frame.inline::after {
      height: 100%;
      left: -35%;
      top: 0;
      transform: skew(50deg);
      transition-duration: 0.6s;
      transform-origin: top left;
      width: 0;
      content: "";
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    .btn-frame.inline:hover:after {
      height: 101%;
      width: 135%; }
    .btn-frame.inline::before, .btn-frame.inline::after {
      background: #222;
      content: '';
      position: absolute;
      z-index: -1; }
    .btn-frame.inline:hover {
      color: #fff;
      opacity: 1 !important; }

.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: calc(1100/1440*100vw);
  max-width: 1100px;
  height: 78px;
  margin: 20px auto;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .btn-more span {
    font-size: 33px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    white-space: nowrap; }
  .btn-more img {
    display: inline-block;
    padding-right: 5px; }
  .btn-more.full {
    margin: 60px auto 130px; }

.btn-frame-bk {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  width: calc(1100/1440*100vw);
  max-width: 1100px;
  height: 78px;
  margin: 20px auto;
  border: 1px solid #000;
  position: relative;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .btn-frame-bk span {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap; }

/* ボタンエフェクト */
.btn-frame-bk::after,
.btn-more::after,
.btn-frame::after {
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.btn-frame-bk:hover:after,
.btn-more:hover:after,
.btn-frame:hover:after {
  height: 101%;
  width: 135%; }

.btn-more::before,
.btn-more::after,
.btn-frame::before,
.btn-frame::after {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1; }

.btn-more:hover,
.btn-frame:hover {
  color: #222;
  opacity: 1 !important; }

.btn-frame-bk::before,
.btn-frame-bk::after {
  background: #222;
  content: '';
  position: absolute;
  z-index: -1; }

.btn-frame-bk:hover {
  color: #ddd8d8;
  opacity: 1 !important; }

/* END ボタンエフェクト */
@media screen and (max-width: 900px) {
  .btn-frame {
    font-size: calc(30/750*100vw);
    width: calc(240/750*100vw);
    height: calc(70/750*100vw); }
    .btn-frame.inline {
      display: flex;
      margin: 20px auto 10px;
      font-size: calc(24/750*100vw); }

  .btn-more {
    width: 100%;
    height: calc(120/750*100vw);
    margin: 20px auto;
    border-left: 0;
    border-right: 0; }
    .btn-more span {
      font-size: calc(33/750*100vw); }
      .btn-more span img {
        width: calc(33/750*100vw); }
    .btn-more.full {
      margin: 60px auto 100px; }

  .btn-frame-bk {
    color: #000;
    width: calc(690/750*100vw);
    height: calc(78/750*100vw);
    margin: 30px auto 0; }
    .btn-frame-bk span {
      font-size: calc(24/750*100vw); } }
/* title 
----------------------------------------------------------- */
/* センタリング（太字） */
.ttl-type01 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center; }

/* 右中央ラインつき */
.ttl-type02 {
  position: relative;
  line-height: 1.4;
  font-size: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  letter-spacing: .06em;
  color: #000;
  margin-bottom: 40px; }
  .ttl-type02::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 1px;
    width: 100%;
    height: 1px;
    background: #000; }
  .ttl-type02 span {
    position: relative;
    display: inline-block;
    padding: 0 10px 0 0;
    background: #fff;
    z-index: 10; }

/* 英字 センタリング（太字） */
.ttl-type03 {
  font-size: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #000000;
  text-align: center; }

/* 英字 センタリング（下線つき） */
.page-ttl {
  font-size: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 1.5rem; }
  .page-ttl span {
    position: relative;
    display: inline-block;
    padding: 0 20px; }
    .page-ttl span::after {
      content: "";
      position: absolute;
      bottom: 3px;
      left: 0;
      width: 100%;
      height: 1px;
      background: #333; }

/* 左付き 太字（日本語） */
.ttl-type04 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
  line-height: 1.5; }

/* 左付き 太字（日本語）※Worksモーダル内用 */
.ttl-type05 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
  line-height: 1.5; }

/* SP */
@media screen and (max-width: 900px) {
  .ttl-type01 {
    font-size: calc(28/750*100vw);
    margin-bottom: 1.5rem;
    text-align: left; }

  .ttl-type02 {
    font-size: calc(44/750*100vw);
    margin-bottom: 20px; }

  .ttl-type04 {
    font-size: calc(34/750*100vw);
    line-height: 1.4; }

  /* 左付き 太字（日本語）※Worksモーダル内用 */
  .ttl-type05 {
    font-size: calc(26/750*100vw);
    line-height: 1.4; } }
/* END page-ttl */
/* box
----------------------------------------------------------- */
.relatedsites {
  background-color: #F4F4F4;
  padding: 30px 40px; }
  .relatedsites a {
    font-weight: bold;
    color: #000;
    text-decoration: none; }
    .relatedsites a:hover {
      text-decoration: underline; }

/* SP */
@media screen and (max-width: 900px) {
  .sp-scroll {
    width: 100%;
    margin-bottom: 2rem;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch; }
    .sp-scroll::-webkit-scrollbar {
      height: 6px; }
    .sp-scroll::-webkit-scrollbar-track {
      border-radius: 3px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
      background-color: rgba(255, 255, 255, 0.2); }
    .sp-scroll::-webkit-scrollbar-thumb {
      background-color: rgba(255, 255, 255, 0.6);
      border-radius: 3px; } }
/* Table 
----------------------------------------------------------- */
table {
  /* tbl-type01 */
  /* -------------- */
  /* tbl-type02 */
  /* -------------- */ }
  table.tbl-type01 {
    width: 100%;
    margin-bottom: 2rem; }
    table.tbl-type01 tr th, table.tbl-type01 tr td {
      text-align: left;
      border-bottom: 1px dotted rgba(0, 0, 0, 0.3); }
    table.tbl-type01 tr td {
      padding: 30px 20px; }
    table.tbl-type01 tr th {
      width: 120px;
      padding: 30px 0;
      font-weight: 700;
      color: #000000; }
  table.tbl-type02 {
    width: 100%;
    margin-bottom: 2rem;
    table-layout: fixed; }
    table.tbl-type02 tr th, table.tbl-type02 tr td {
      padding: 20px 20px;
      color: #000000;
      border: 1px solid rgba(0, 0, 0, 0.3); }
    table.tbl-type02 thead tr th, table.tbl-type02 thead tr td {
      text-align: center;
      font-weight: 700;
      background-color: #F4F4F4;
      vertical-align: middle; }

/* SP */
@media screen and (max-width: 900px) {
  table {
    width: 100%;
    /* tbl-type01 */
    /* tbl-type02 */ }
    table.tbl-type01 {
      width: 100%;
      margin-bottom: 2rem; }
      table.tbl-type01 tr th, table.tbl-type01 tr td {
        text-align: left;
        display: block; }
      table.tbl-type01 tr td {
        padding: 5px 0 20px 0; }
      table.tbl-type01 tr th {
        width: 100%;
        padding: 20px 0 0 0;
        border: 0; }
    table.tbl-type02 tr th, table.tbl-type02 tr td {
      padding: calc(20/750*100vw); }

  /*--------------------*/ }
/* END tbl-type01 */
/* pattern (パターン)
----------------------------------------------------------- */
/* FORM
----------------------------------------------------------- */
input, label, textarea {
  font-family: inherit;
  font-size: inherit;
  vertical-align: middle; }

input[type="submit"], input[type="button"] {
  -webkit-appearance: button;
  text-align: center;
  margin: 0 auto;
  border-radius: 0;
  cursor: pointer;
  outline: none; }

input[type=text], input[type=email],
textarea {
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box; }

input[type=text], input[type=email],
textarea {
  padding: 8px; }

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

textarea {
  overflow: auto;
  resize: vertical;
  min-height: calc(146/1366*100vw);
  box-sizing: border-box; }

/* CheckBox */
label.checkbox_text {
  cursor: pointer;
  position: relative;
  height: calc(25/1366*100vw);
  line-height: calc(21/1366*100vw);
  vertical-align: middle;
  padding-left: calc(30/1366*100vw);
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
  font-weight: bold; }
  label.checkbox_text:before {
    content: '';
    position: absolute;
    width: calc(23/1366*100vw);
    height: calc(23/1366*100vw);
    left: 0;
    top: 0;
    border: 1px solid #707070;
    z-index: 3;
    border-radius: 3px;
    box-sizing: border-box; }
  label.checkbox_text:after {
    content: '';
    position: absolute;
    top: 33%;
    left: calc(7/1366*100vw);
    display: block;
    margin-top: calc(-6/1366*100vw);
    width: calc(6/1366*100vw);
    height: calc(12/1366*100vw);
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    z-index: 1; }
  label.checkbox_text input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: calc(-40/1366*100vw);
    width: calc(23/1366*100vw);
    height: calc(23/1366*100vw);
    display: block;
    box-shadow: calc(40/1366*100vw) 0px #fff;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    border-radius: 4px; }
    label.checkbox_text input[type="checkbox"]:checked {
      box-shadow: none; }
    label.checkbox_text input[type="checkbox"]:checked:focus {
      box-shadow: calc(40/1366*100vw) 0px rgba(255, 255, 255, 0.1);
      opacity: 0.1; }
    label.checkbox_text input[type="checkbox"]:focus {
      box-shadow: calc(40/1366*100vw) 0px #fff; }

@media screen and (max-width: 1020px) {
  input[type=text], input[type=email], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box; }

  /* CheckBox */
  label.checkbox_text {
    height: calc(25/750*100vw);
    line-height: calc(21/750*100vw);
    padding-left: calc(30/750*100vw);
    font-size: calc(20/750*100vw); }
    label.checkbox_text:before {
      width: calc(23/750*100vw);
      height: calc(23/750*100vw); }
    label.checkbox_text:after {
      left: calc(7/750*100vw);
      margin-top: calc(-6/750*100vw);
      width: calc(6/750*100vw);
      height: calc(12/750*100vw); }
    label.checkbox_text input[type="checkbox"] {
      left: calc(-40/750*100vw);
      width: calc(23/750*100vw);
      height: calc(23/750*100vw);
      box-shadow: calc(40/750*100vw) 0px #fff; }
      label.checkbox_text input[type="checkbox"]:checked:focus {
        box-shadow: calc(40/750*100vw) 0px rgba(255, 255, 255, 0.1); }
      label.checkbox_text input[type="checkbox"]:focus {
        box-shadow: calc(40/750*100vw) 0px #fff; }

  textarea {
    overflow: auto;
    resize: vertical;
    min-height: calc(160/750*100vw);
    box-sizing: border-box; } }
/* [focus] -----------------------------------------*/
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  background: #FFFDDB;
  outline: none; }

/* [error] -----------------------------------------*/
input[type=text].error,
input[type=email].error,
textarea.error {
  border-color: #DC000C;
  border-width: 2px;
  border-style: solid;
  background: #FAADAD; }

.error_msg {
  display: block;
  margin-top: 5px;
  padding-left: calc(20/1366*100vw);
  color: #DC000C;
  font-weight: bold;
  text-align: left;
  background: url(/images/contact/icon_error.svg) no-repeat 0 50%;
  background-size: calc(16/1366*100vw) calc(16/1366*100vw); }

.error_msg_c {
  text-align: center; }

.error_msg_c span {
  display: inline-block;
  margin-bottom: 10px;
  padding-left: calc(20/1366*100vw);
  color: #DC000C;
  font-weight: bold;
  text-align: left;
  background: url(/images/contact/icon_error.svg) no-repeat 0 50%;
  background-size: calc(16/1366*100vw) calc(16/1366*100vw); }

/* SP */
@media screen and (max-width: 1020px) {
  .error_msg {
    padding-left: calc(40/750*100vw);
    background: url(/images/contact/icon_error.svg) no-repeat 0 50%;
    background-size: calc(30/750*100vw) calc(30/750*100vw); }

  .error_msg_c span {
    padding-left: calc(40/750*100vw);
    background: url(/images/contact/icon_error.svg) no-repeat 0 50%;
    background-size: calc(30/750*100vw) calc(30/750*100vw); } }
/* modal
----------------------------------------------------------- */
.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
  width: 100%;
  max-width: 900px; }
  .popup .inner {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%; }
    .popup .inner iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: #000; }
  .popup .mfp-close {
    top: -40px; }

/* NEWS
----------------------------------------------------------- */
.news .ttl h2 {
  color: #222222; }
  .news .ttl h2 span::after {
    background: #222222; }
.news .news-list {
  display: block;
  width: calc(1100/1440*100vw);
  max-width: 1100px;
  margin: 0 auto;
  /* ボタンエフェクト */ }
  .news .news-list .news-link {
    display: flex;
    align-items: center;
    padding: 50px 80px 50px 0;
    color: #222222;
    border-bottom: 1px solid #b2b2b2;
    position: relative; }
    .news .news-list .news-link::after {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 24px;
      width: 17px;
      height: 17px;
      margin: auto;
      border-right: 2px solid #cccccc;
      border-bottom: 2px solid #cccccc;
      transform: rotate(-45deg);
      content: ""; }
    .news .news-list .news-link .news-link__img {
      width: 140px;
      flex-shrink: 0;
      margin-right: 40px;
      line-height: 0; }
    .news .news-list .news-link .news-link__desc__date {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 18px; }
    .news .news-list .news-link .news-link__desc__title {
      font-size: 20px;
      font-weight: bold; }
    .news .news-list .news-link.pdf {
      background-image: url("../images/common/icon_pdf.svg");
      background-repeat: no-repeat;
      background-position: 99% 50%; }
      .news .news-list .news-link.pdf::after {
        content: none; }
    .news .news-list .news-link:hover {
      opacity: .5;
      transition: .4s all; }
  .news .news-list .btn-more {
    color: #5d5d5d;
    border: 1px solid #919191; }
    .news .news-list .btn-more span {
      font-size: 33px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 400;
      white-space: nowrap;
      position: relative;
      z-index: 5;
      display: flex;
      align-items: center; }
    .news .news-list .btn-more img {
      display: inline-block;
      padding-right: 12px;
      padding-top: 2px; }
    .news .news-list .btn-more.full {
      margin: 60px auto 130px; }
  .news .news-list .btn-more::after {
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
    content: "";
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .news .news-list .btn-more:hover:after {
    height: 101%;
    width: 135%; }
  .news .news-list .btn-more::before,
  .news .news-list .btn-more::after {
    background: #222;
    content: '';
    position: absolute;
    z-index: 1; }
  .news .news-list .btn-more:hover {
    color: #222;
    border: 1px solid #222;
    opacity: 1 !important; }
  .news .news-list .btn-more:hover span {
    color: #fff; }

@media screen and (max-width: 900px) {
  .news .ttl {
    margin: 1.5rem auto; }
  .news .news-list {
    width: 100%;
    max-width: 100%;
    /* ボタンエフェクト */ }
    .news .news-list .news-link {
      padding: calc(40/750*100vw) calc(80/750*100vw) calc(40/750*100vw) 0; }
      .news .news-list .news-link::after {
        right: calc(20/750*100vw);
        width: calc(20/750*100vw);
        height: calc(20/750*100vw); }
      .news .news-list .news-link .news-link__img {
        width: calc(140/750*100vw);
        margin-right: calc(30/750*100vw); }
      .news .news-list .news-link .news-link__desc__date {
        font-size: calc(20/750*100vw); }
      .news .news-list .news-link .news-link__desc__title {
        font-size: calc(24/750*100vw); }
      .news .news-list .news-link.pdf {
        background-size: calc(40/750*100vw) auto; }
    .news .news-list .btn-more span {
      font-size: calc(36/750*100vw);
      padding-left: 5px; }
    .news .news-list .btn-more img {
      padding-right: 5px; }
    .news .news-list .btn-more.full {
      margin: calc(60/750*100vw) auto; } }
/*
	File Name   : page.scss
	Description : 各コンテンツページ用

	00.共通


	**.TITLE

*/
/* PC */
@media screen and (min-width: 768px) {
  /*-------------*/ }
/* SP */
@media screen and (max-width: 767px) {
  /*-------------*/ }
/*------------------------------------------------------*/
/* 00.共通
----------------------------------------------------------- */
.ttl {
  margin: 2rem auto;
  text-align: center; }
  .ttl h2 {
    line-height: 1.4;
    font-size: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: .06em;
    color: #fff;
    margin-bottom: 15px; }
    .ttl h2 span {
      display: inline-block;
      position: relative;
      padding: 0 5px; }
      .ttl h2 span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 5px;
        width: 100%;
        height: 1px;
        background: #fff; }
    .ttl h2.ttl__logo {
      width: 250px;
      margin: 0 auto 20px; }
      .ttl h2.ttl__logo img {
        width: 100%; }
  .ttl .ttl__disc {
    color: #fff; }

.sub-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 70px; }
  .sub-ttl h2 {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    font-size: 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    color: #222222; }

#aboutus .sub-ttl {
  background: #F7F7F7; }

@media screen and (max-width: 900px) {
  .ttl {
    width: calc(690/750*100vw); }
    .ttl h2 {
      font-size: calc(56/750*100vw); }
      .ttl h2 span {
        display: inline-block;
        position: relative;
        padding: 0 5px; }
        .ttl h2 span::after {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 0;
          width: 80%;
          height: 1px;
          background: #fff;
          transform: translate(-50%, 100%); }
      .ttl h2.ttl__logo {
        width: calc(250/750*100vw);
        margin: 0 auto 15px; }

  .sub-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: calc(90/750*100vw); }
    .sub-ttl h2 {
      width: 100%;
      max-width: 100%;
      padding-left: calc(40/750*100vw);
      font-size: calc(36/750*100vw);
      color: #222222; } }
/* 01.MEDIA BRNADS
----------------------------------------------------------- */
#media_brnads {
  /* LINK */ }
  #media_brnads main {
    background: #fff;
    color: #5d5d5d;
    padding-bottom: 140px; }
    #media_brnads main section {
      margin: 0 auto;
      padding-top: 60px; }
    #media_brnads main.index {
      margin: 60px auto 140px;
      background: #222222;
      padding-bottom: 0; }
    #media_brnads main.detail section {
      width: calc(1100/1440*100vw);
      max-width: 1100px; }
    #media_brnads main.detail .text-description {
      text-align: left; }
  #media_brnads .media_brnads-keyv {
    position: relative;
    width: 100%;
    height: calc(515/1440*100vw);
    overflow: hidden; }
    #media_brnads .media_brnads-keyv__logo {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 10;
      transform: translate(-50%, -50%);
      width: calc(184/1440*100vw); }
    #media_brnads .media_brnads-keyv__bg {
      z-index: 1; }
      #media_brnads .media_brnads-keyv__bg img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        object-position: center; }
  #media_brnads.lifetime .media_brnads-keyv__logo {
    width: calc(515/1440*100vw); }
    #media_brnads.lifetime .media_brnads-keyv__logo img {
      width: 100%; }
  #media_brnads .link-box {
    display: flex;
    padding: 30px 35px;
    background: #F4F4F4; }
    #media_brnads .link-box li + li {
      margin-left: 30px; }
    #media_brnads .link-box li a {
      display: block;
      line-height: 1;
      color: #5d5d5d; }
      #media_brnads .link-box li a span {
        display: block;
        line-height: 1; }
      #media_brnads .link-box li a img {
        width: auto;
        height: 30px; }
      #media_brnads .link-box li a:hover {
        opacity: .7;
        transition: .4s all; }
  #media_brnads.lifetime .link-box li:first-child {
    margin-bottom: 0; }
  #media_brnads .programs-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px; }
    #media_brnads .programs-box .programs-box__inner {
      width: 330px; }
      #media_brnads .programs-box .programs-box__inner + .programs-box__inner {
        margin-left: 10px; }
      #media_brnads .programs-box .programs-box__inner h3 {
        font-size: 18px;
        font-weight: bold;
        color: #000000;
        margin-bottom: 5px; }
      #media_brnads .programs-box .programs-box__inner p {
        font-size: 16px;
        color: #5d5d5d; }
      #media_brnads .programs-box .programs-box__inner figure {
        width: 100%; }
        #media_brnads .programs-box .programs-box__inner figure img {
          width: 100%; }
  #media_brnads .tbl-programs {
    width: 100%;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.3); }
    #media_brnads .tbl-programs th, #media_brnads .tbl-programs td {
      border-top: 1px dotted rgba(0, 0, 0, 0.3);
      text-align: left;
      padding: 30px 0;
      vertical-align: middle; }
    #media_brnads .tbl-programs th {
      width: 100px;
      color: #000000;
      font-size: 18px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 400;
      letter-spacing: .06em; }
    #media_brnads .tbl-programs td .tbl-programs__list {
      display: flex;
      align-items: center; }
      #media_brnads .tbl-programs td .tbl-programs__list + .tbl-programs__list {
        margin-top: 15px; }
      #media_brnads .tbl-programs td .tbl-programs__list li + li {
        margin-left: 28px; }
        #media_brnads .tbl-programs td .tbl-programs__list li + li a {
          display: block; }
          #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_apple {
            width: 35px; }
          #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_dmmtv {
            width: 106px; }
          #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_rchannel {
            width: 106px; }
          #media_brnads .tbl-programs td .tbl-programs__list li + li a img {
            width: 100%; }
    #media_brnads .tbl-programs + .text-note__small {
      margin-top: 5px; }

@media screen and (max-width: 900px) {
  #media_brnads {
    background: #fff;
    /* LINK */ }
    #media_brnads .media_brnads-keyv {
      width: 100%;
      height: auto;
      overflow: visible;
      line-height: 0;
      margin-bottom: calc(40/750*100vw); }
      #media_brnads .media_brnads-keyv__logo {
        width: calc(184/750*100vw); }
      #media_brnads .media_brnads-keyv__bg img {
        position: static; }
    #media_brnads main {
      padding-bottom: 40px; }
      #media_brnads main section {
        width: calc(690/750*100vw);
        margin: 0 auto;
        padding-top: 30px; }
      #media_brnads main.index {
        margin: 0 auto; }
      #media_brnads main.detail section {
        width: calc(690/750*100vw);
        max-width: calc(690/750*100vw); }
    #media_brnads .link-box {
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
      margin-bottom: calc(60/750*100vw); }
      #media_brnads .link-box li + li {
        margin-left: 20px; }
    #media_brnads .programs-box {
      flex-direction: column;
      margin-bottom: 0; }
      #media_brnads .programs-box .programs-box__inner {
        width: 100%;
        margin-bottom: calc(75/750*100vw); }
        #media_brnads .programs-box .programs-box__inner + .programs-box__inner {
          margin-left: 0; }
        #media_brnads .programs-box .programs-box__inner h3 {
          font-size: calc(28/750*100vw); }
        #media_brnads .programs-box .programs-box__inner p {
          font-size: calc(24/750*100vw);
          color: #5d5d5d; }
    #media_brnads .tbl-programs {
      display: block;
      width: 100%;
      border-bottom: 1px dotted rgba(0, 0, 0, 0.3); }
      #media_brnads .tbl-programs th, #media_brnads .tbl-programs td {
        display: block;
        border-top: 0;
        text-align: left;
        padding: 10px 0 0; }
      #media_brnads .tbl-programs th {
        width: 100%;
        padding: 0;
        font-size: calc(44/750*100vw);
        border-top: 1px dotted rgba(0, 0, 0, 0.3); }
      #media_brnads .tbl-programs td .tbl-programs__list {
        flex-wrap: wrap; }
        #media_brnads .tbl-programs td .tbl-programs__list + .tbl-programs__list {
          margin-top: 0; }
        #media_brnads .tbl-programs td .tbl-programs__list li {
          width: 30%;
          text-align: center;
          margin-bottom: 15px; }
          #media_brnads .tbl-programs td .tbl-programs__list li + li {
            margin-left: 15px; }
            #media_brnads .tbl-programs td .tbl-programs__list li + li a {
              padding: 5px 10px; }
              #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_fod {
                height: calc(46/750*100vw);
                margin-bottom: calc(20/750*100vw); }
              #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_apple {
                width: calc(120/750*100vw);
                margin: 0 auto; }
              #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_dmmtv {
                width: calc(200/750*100vw);
                margin: 0 auto; }
              #media_brnads .tbl-programs td .tbl-programs__list li + li a.logo_rchannel {
                width: calc(200/750*100vw);
                margin: 0 auto; }
              #media_brnads .tbl-programs td .tbl-programs__list li + li a img {
                width: 100%;
                max-width: 100%;
                flex-shrink: 0; }
          #media_brnads .tbl-programs td .tbl-programs__list li:nth-child(3n+1) {
            margin-left: 0; }
    #media_brnads.lifetime .media_brnads-keyv__logo {
      width: calc(400/750*100vw); }
    #media_brnads.lifetime .tbl-programs {
      border-top: 1px dotted rgba(0, 0, 0, 0.3); }
      #media_brnads.lifetime .tbl-programs th {
        border-top: 0; }

  /*---------------*/ }
/* MEDIA BRAND [TOP/INDEX] */
.mediabrand {
  overflow: hidden;
  position: relative; }
  .mediabrand + .mediabrand {
    margin-top: 85px; }
  .mediabrand .mediabrand__inner {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(1100/1440*100vw);
    height: 440px;
    margin: 0 auto;
    z-index: 10; }
    .mediabrand .mediabrand__inner a {
      display: flex; }
      .mediabrand .mediabrand__inner a .mediabrand__bgimg {
        position: absolute;
        top: 0;
        left: calc(194/1440*100vw);
        z-index: -1;
        width: calc(1080/1440*100vw);
        height: 440px;
        border-radius: 4px;
        overflow: hidden; }
        .mediabrand .mediabrand__inner a .mediabrand__bgimg img {
          width: 100%; }
      .mediabrand .mediabrand__inner a .mediabrand__title {
        width: 395px;
        text-align: center;
        z-index: 10; }
        .mediabrand .mediabrand__inner a .mediabrand__title p {
          letter-spacing: -.01em;
          margin: 15px auto;
          color: #ccc;
          text-shadow: 0px 0px 3px #222; }
        .mediabrand .mediabrand__inner a .mediabrand__title .btn-frame {
          margin: 0 auto; }
      .mediabrand .mediabrand__inner a:hover {
        opacity: .9;
        transition: .4s all; }
        .mediabrand .mediabrand__inner a:hover .btn-frame {
          color: #222; }
          .mediabrand .mediabrand__inner a:hover .btn-frame::after {
            color: #222;
            opacity: 1 !important;
            height: 101%;
            width: 135%; }
          .mediabrand .mediabrand__inner a:hover .btn-frame::before, .mediabrand .mediabrand__inner a:hover .btn-frame::after {
            background: #fff;
            content: '';
            position: absolute;
            z-index: -1; }
  .mediabrand.right .mediabrand__inner {
    justify-content: flex-end; }
    .mediabrand.right .mediabrand__inner .mediabrand__bgimg {
      right: calc(194/1440*100vw);
      left: inherit; }
  .mediabrand.lifetime .mediabrand__inner .mediabrand__title figure {
    width: 300px;
    margin: 0 auto; }
    .mediabrand.lifetime .mediabrand__inner .mediabrand__title figure img {
      width: 100%; }
  .mediabrand + .ttl {
    margin-top: 130px; }

/*---------------*/
@media screen and (max-width: 1300px) {
  .mediabrand .mediabrand__inner .mediabrand__bgimg {
    width: 1080px; }

  /*---------------*/ }
@media screen and (max-width: 900px) {
  #media_brnads main section {
    width: 100%;
    padding-top: 0; }
    #media_brnads main section + .mediabrand {
      margin-top: calc(85/750*100vw); }
      #media_brnads main section + .mediabrand.lifetime {
        padding-bottom: calc(85/750*100vw); }

  .mediabrand {
    position: relative; }
    .mediabrand .mediabrand__inner {
      align-items: center;
      justify-content: center;
      width: 100%;
      height: auto;
      z-index: 10; }
      .mediabrand .mediabrand__inner a {
        flex-direction: column; }
        .mediabrand .mediabrand__inner a .mediabrand__bgimg {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: auto;
          overflow: visible; }
          .mediabrand .mediabrand__inner a .mediabrand__bgimg img {
            width: 100%; }
        .mediabrand .mediabrand__inner a .mediabrand__title {
          width: calc(640/750*100vw);
          text-align: center;
          z-index: 10;
          margin: calc(440/750*100vw) auto 0; }
          .mediabrand .mediabrand__inner a .mediabrand__title p {
            letter-spacing: -.02em;
            margin: 15px auto; }
          .mediabrand .mediabrand__inner a .mediabrand__title .btn-frame {
            margin: 0 auto; }
    .mediabrand.right .mediabrand__inner {
      justify-content: center; }
      .mediabrand.right .mediabrand__inner .mediabrand__bgimg {
        right: inherit;
        left: 0; }
    .mediabrand.history .mediabrand__inner .mediabrand__title figure {
      width: calc(220/750*100vw);
      margin: 0 auto; }
    .mediabrand.crime .mediabrand__inner .mediabrand__title {
      margin: calc(425/750*100vw) auto 0; }
      .mediabrand.crime .mediabrand__inner .mediabrand__title figure {
        width: calc(310/750*100vw);
        margin: 0 auto; }
    .mediabrand.lifetime .mediabrand__inner .mediabrand__title {
      margin: calc(485/750*100vw) auto 0; }
      .mediabrand.lifetime .mediabrand__inner .mediabrand__title figure {
        width: calc(490/750*100vw);
        margin: 0 auto; }
    .mediabrand.a-e .mediabrand__inner .mediabrand__title {
      margin: calc(460/750*100vw) auto 0; }
      .mediabrand.a-e .mediabrand__inner .mediabrand__title figure {
        width: calc(300/750*100vw);
        margin: 0 auto; }
    .mediabrand.fyi .mediabrand__inner .mediabrand__title {
      margin: calc(440/750*100vw) auto 0; }
      .mediabrand.fyi .mediabrand__inner .mediabrand__title figure {
        width: calc(300/750*100vw);
        margin: 0 auto; }

  /*---------------*/ }
/* 02.ABOUT US( PRIVACY POLICY & TERMS OF USE )
----------------------------------------------------------- */
#aboutus main {
  background: #fff;
  padding-bottom: 140px; }
  #aboutus main section {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 60px; }
#aboutus .whatwedo {
  display: flex;
  justify-content: center;
  margin-top: 40px; }
  #aboutus .whatwedo .whatwedo-box {
    position: relative;
    width: calc(500/1440*100vw);
    max-width: 500px;
    padding: 10px 0 50px;
    flex-shrink: 0;
    margin-bottom: 110px; }
    #aboutus .whatwedo .whatwedo-box figure {
      display: flex;
      justify-content: center;
      height: 125px;
      max-height: 80px;
      margin: 0 auto 30px; }
      #aboutus .whatwedo .whatwedo-box figure img {
        height: 100%; }
    #aboutus .whatwedo .whatwedo-box:first-child {
      padding-right: 50px;
      border-right: 1px dotted rgba(0, 0, 0, 0.3); }
      #aboutus .whatwedo .whatwedo-box:first-child figure {
        align-items: center;
        height: 100%; }
        #aboutus .whatwedo .whatwedo-box:first-child figure img + img {
          margin-left: 0; }
    #aboutus .whatwedo .whatwedo-box:last-child {
      padding-left: 50px; }
      #aboutus .whatwedo .whatwedo-box:last-child figure {
        height: 100%; }
      #aboutus .whatwedo .whatwedo-box:last-child p {
        padding-bottom: 23px; }
    #aboutus .whatwedo .whatwedo-box h4 {
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: bold;
      color: #000;
      text-align: center; }
    #aboutus .whatwedo .whatwedo-box .btn-frame {
      color: #000000;
      border: 1px solid #000000;
      margin: 40px auto 0;
      z-index: 10;
      /* ボタンエフェクト */ }
      #aboutus .whatwedo .whatwedo-box .btn-frame::after {
        height: 100%;
        left: -35%;
        top: 0;
        transform: skew(50deg);
        transition-duration: 0.6s;
        transform-origin: top left;
        width: 0;
        content: "";
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      #aboutus .whatwedo .whatwedo-box .btn-frame:hover:after {
        height: 101%;
        width: 135%; }
      #aboutus .whatwedo .whatwedo-box .btn-frame::before, #aboutus .whatwedo .whatwedo-box .btn-frame::after {
        background: #222;
        content: '';
        position: absolute;
        z-index: -1; }
      #aboutus .whatwedo .whatwedo-box .btn-frame:hover {
        color: #fff;
        opacity: 1 !important; }
#aboutus .global-network {
  width: 100%;
  padding: 135px 0;
  background: url(/images/aboutus/bg_global-network.jpg) no-repeat 0 0;
  background-size: cover; }
  #aboutus .global-network__inner {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto; }
    #aboutus .global-network__inner .page-ttl {
      color: #fff;
      margin-bottom: 40px; }
      #aboutus .global-network__inner .page-ttl span::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #fff; }
    #aboutus .global-network__inner dl {
      width: 324px;
      border: 1px solid #fff;
      color: #fff;
      text-align: center;
      line-height: 1.3;
      padding: 20px;
      margin-bottom: 40px; }
      #aboutus .global-network__inner dl + dl {
        margin-left: 10px; }
      #aboutus .global-network__inner dl dt {
        font-size: 24px;
        font-weight: bold; }
      #aboutus .global-network__inner dl dd {
        font-size: 46px;
        font-weight: bold; }
        #aboutus .global-network__inner dl dd small {
          font-size: 28px; }
  #aboutus .global-network__disc {
    color: #fff;
    margin-bottom: 70px; }
    #aboutus .global-network__disc p + p {
      margin-top: 30px; }
  #aboutus .global-network__point {
    display: flex;
    justify-content: space-between; }
  #aboutus .global-network__logo {
    text-align: center; }
  #aboutus .global-network .global-network__ttl {
    display: none; }
  #aboutus .global-network .btn-frame {
    margin: 40px auto 0;
    z-index: 10;
    /* ボタンエフェクト */ }
    #aboutus .global-network .btn-frame::after {
      height: 100%;
      left: -35%;
      top: 0;
      transform: skew(50deg);
      transition-duration: 0.6s;
      transform-origin: top left;
      width: 0;
      content: "";
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    #aboutus .global-network .btn-frame:hover:after {
      height: 101%;
      width: 135%; }
    #aboutus .global-network .btn-frame::before, #aboutus .global-network .btn-frame::after {
      background: #fff;
      content: '';
      position: absolute;
      z-index: -1; }
    #aboutus .global-network .btn-frame:hover {
      color: #222;
      opacity: 1 !important; }
#aboutus.termsofuse .text-description a {
  color: #5d5d5d;
  text-decoration: underline; }
  #aboutus.termsofuse .text-description a:hover {
    text-decoration: none; }

@media screen and (max-width: 900px) {
  #aboutus main {
    padding-bottom: calc(60/750*100vw); }
    #aboutus main section {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: calc(60/750*100vw) calc(30/750*100vw) 0; }
  #aboutus .whatwedo {
    justify-content: center;
    flex-direction: column;
    margin-top: 0; }
    #aboutus .whatwedo .whatwedo-box {
      width: 100%;
      max-width: 100%;
      padding: 10px 0 calc(85/750*100vw);
      margin-bottom: calc(50/750*100vw); }
      #aboutus .whatwedo .whatwedo-box figure {
        height: 100px;
        max-height: 100px;
        margin: 0 auto 30px; }
        #aboutus .whatwedo .whatwedo-box figure img {
          display: inline-block; }
          #aboutus .whatwedo .whatwedo-box figure img + img {
            padding-left: calc(50/750*100vw); }
      #aboutus .whatwedo .whatwedo-box:first-child {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dotted rgba(0, 0, 0, 0.3); }
        #aboutus .whatwedo .whatwedo-box:first-child figure {
          width: 80%; }
          #aboutus .whatwedo .whatwedo-box:first-child figure img + img {
            margin-left: 0; }
      #aboutus .whatwedo .whatwedo-box:last-child {
        padding-left: 0; }
        #aboutus .whatwedo .whatwedo-box:last-child figure {
          width: 60%; }
        #aboutus .whatwedo .whatwedo-box:last-child p {
          padding-bottom: 23px; }
      #aboutus .whatwedo .whatwedo-box h4 {
        margin-bottom: 10px;
        font-size: 20px; }
      #aboutus .whatwedo .whatwedo-box .btn-frame {
        margin: 40px auto 0; }
  #aboutus .global-network {
    width: 100%;
    padding: calc(90/750*100vw) calc(30/750*100vw);
    background: #323234 url(/images/aboutus/bg_global-network_sp.jpg) no-repeat 0 0;
    background-size: 100%; }
    #aboutus .global-network__inner {
      width: 100%;
      margin: 0 auto; }
      #aboutus .global-network__inner .page-ttl {
        margin-bottom: 2rem; }
      #aboutus .global-network__inner dl {
        width: calc(410/750*100vw);
        padding: calc(20/750*100vw);
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center; }
        #aboutus .global-network__inner dl + dl {
          margin-left: 0; }
        #aboutus .global-network__inner dl dt {
          font-size: calc(30/750*100vw);
          padding-right: 5px;
          padding-top: 5px; }
        #aboutus .global-network__inner dl dd {
          font-size: calc(56/750*100vw); }
          #aboutus .global-network__inner dl dd small {
            font-size: calc(34/750*100vw); }
    #aboutus .global-network__disc {
      margin-bottom: calc(70/750*100vw); }
      #aboutus .global-network__disc p + p {
        margin-top: 30px; }
    #aboutus .global-network__point {
      justify-content: center;
      align-items: center;
      flex-direction: column; }
    #aboutus .global-network .global-network__ttl {
      display: flex;
      justify-content: center;
      text-align: center;
      font-size: calc(34/750*100vw);
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px; }
    #aboutus .global-network .btn-frame {
      margin: 40px auto 0; } }
/* 03.CREATIVE PARTNERS
----------------------------------------------------------- */
#creativepartners .sub-ttl {
  background: #F7F7F7; }
#creativepartners main {
  background: #fff;
  padding-bottom: 140px; }
  #creativepartners main section {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 60px; }
#creativepartners .btn-frame-bk {
  margin: 50px auto 10px; }

.partners-list {
  width: 820px;
  margin: 0 auto 60px; }
  .partners-list img {
    width: 100%; }

.video-production {
  width: 100%;
  max-width: 100%;
  position: relative;
  background-color: #000; }
  .video-production figure {
    line-height: 0;
    min-height: 600px; }
    .video-production figure img {
      width: 100%; }
  .video-production__onbox {
    position: absolute;
    right: calc(170/1440*100vw);
    top: calc(145/1440*100vw);
    width: 560px;
    padding: 45px;
    backdrop-filter: blur(2px);
    background-color: rgba(33, 33, 33, 0.8);
    letter-spacing: -.01em;
    color: #fff; }
    .video-production__onbox.left {
      right: inherit;
      left: calc(170/1440*100vw); }
    .video-production__onbox h4 {
      font-size: 30px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      margin-bottom: 10px; }
    .video-production__onbox p + p {
      margin-top: 40px; }
  .video-production__credit {
    background-color: #000;
    padding: 20px 0 40px;
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    justify-content: space-between; }
    .video-production__credit dl {
      width: calc(500/1440*100vw); }
      .video-production__credit dl + dl {
        margin-top: 30px; }
      .video-production__credit dl dt {
        font-weight: 600; }

.bnr-works {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E0E0E0;
  padding: 40px; }
  .bnr-works .bnr-works__text h3 {
    font-size: 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px; }
    .bnr-works .bnr-works__text h3 strong {
      display: inline-block;
      padding-right: 10px;
      font-size: 34px;
      font-weight: 500; }
  .bnr-works .bnr-works__text p {
    color: #5d5d5d; }
  .bnr-works figure {
    width: 715px; }
    .bnr-works figure img {
      width: 100%; }
  .bnr-works p {
    margin-bottom: 20px; }
  .bnr-works .btn-frame {
    color: #000;
    border: 1px solid #000;
    z-index: 10; }
  .bnr-works:hover {
    opacity: .9;
    transition: .4s all; }
    .bnr-works:hover .btn-frame {
      color: #222; }
      .bnr-works:hover .btn-frame::after {
        color: #222;
        opacity: 1 !important;
        height: 101%;
        width: 135%; }
      .bnr-works:hover .btn-frame::before, .bnr-works:hover .btn-frame::after {
        background: #fff;
        content: '';
        position: absolute;
        z-index: -1; }

@media screen and (max-width: 900px) {
  #creativepartners main {
    padding-bottom: calc(60/750*100vw); }
    #creativepartners main section {
      width: 100%;
      margin: 0 auto;
      padding: calc(60/750*100vw) calc(30/750*100vw) 0; }
      #creativepartners main section .ttl-type03 {
        margin-bottom: 0; }

  .partners-list {
    width: calc(606/750*100vw);
    margin: 0 auto 40px; }

  .video-production {
    width: 100%;
    position: relative;
    background-color: #000; }
    .video-production figure {
      line-height: 0;
      min-height: inherit; }
      .video-production figure img {
        width: 100%; }
    .video-production__onbox {
      position: static;
      width: calc(690/750*100vw);
      margin: 0 auto;
      padding: calc(30/750*100vw) calc(40/750*100vw) calc(40/750*100vw); }
      .video-production__onbox h4 {
        font-size: calc(36/750*100vw); }
      .video-production__onbox p + p {
        margin-top: calc(40/750*100vw); }
    .video-production__credit {
      background-color: #000;
      padding: 20px calc(30/750*100vw) 40px;
      width: 100%;
      margin: 0 auto;
      flex-direction: column; }
      .video-production__credit .video-production__credit__inner + .video-production__credit__inner {
        margin-top: 30px; }
      .video-production__credit dl {
        width: 100%; }
        .video-production__credit dl dt {
          margin-bottom: 3px; }

  .bnr-works {
    flex-direction: column;
    padding: calc(30/750*100vw); }
    .bnr-works .bnr-works__text {
      text-align: center; }
      .bnr-works .bnr-works__text h3 {
        font-size: calc(30/750*100vw); }
        .bnr-works .bnr-works__text h3 strong {
          font-size: calc(57/750*100vw); }
    .bnr-works figure {
      width: 100%; }
    .bnr-works p {
      margin-bottom: 20px; }
    .bnr-works .btn-frame {
      margin: 0 auto 40px; } }
/* 04.WORKS
----------------------------------------------------------- */
#works .sub-ttl {
  background: #F7F7F7; }
  #works .sub-ttl small {
    display: inline-block;
    padding-left: 5px;
    font-size: 18px; }
#works main {
  background: #fff;
  padding-bottom: 80px; }
  #works main section {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 50px; }
#works .works-column {
  width: calc(1600/1440*100vw);
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto; }
  #works .works-column .bnr-link {
    display: flex;
    width: 50%;
    height: auto;
    max-height: auto;
    overflow: hidden;
    position: relative; }
    #works .works-column .bnr-link::before {
      content: "";
      display: block;
      padding-top: 56.25%; }
    #works .works-column .bnr-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: -moz-linear-gradient(top, #FFC778, transparent);
      background: -webkit-linear-gradient(top, #FFC778, transparent);
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 5%, transparent 40%); }
    #works .works-column .bnr-link__inner {
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      padding: 20px; }
      #works .works-column .bnr-link__inner h2 {
        font-size: 22px;
        font-weight: bold;
        line-height: 1.6;
        padding: 10px 20px 15px;
        /*background-color: rgba(0,0,0,.40);*/ }
        #works .works-column .bnr-link__inner h2 span {
          font-size: 16px;
          color: #d6d6d6; }
#works.list main, #works.detail main {
  padding-bottom: 140px; }
#works.list figure, #works.detail figure {
  line-height: 0; }
  #works.list figure + figure, #works.detail figure + figure {
    margin-top: 50px; }
  #works.list figure + .text-description, #works.detail figure + .text-description {
    margin: 40px auto; }
  #works.list figure + .relatedsites, #works.detail figure + .relatedsites {
    margin-top: 40px; }
  #works.list figure.divisions, #works.detail figure.divisions {
    display: flex;
    justify-content: space-between; }
    #works.list figure.divisions img, #works.detail figure.divisions img {
      width: calc(540/1440*100vw);
      max-width: 540px;
      height: 100%; }
#works.list .bnr__cab-j, #works.detail .bnr__cab-j {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140px;
  margin: 3rem auto;
  border: 1px solid #9F8033; }
  #works.list .bnr__cab-j img, #works.detail .bnr__cab-j img {
    width: 505px; }
  #works.list .bnr__cab-j:hover, #works.detail .bnr__cab-j:hover {
    opacity: 0.7;
    transition: .4 all; }
#works.list .load-iframe, #works.detail .load-iframe {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  cursor: pointer; }
  #works.list .load-iframe iframe, #works.detail .load-iframe iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }
  #works.list .load-iframe img, #works.detail .load-iframe img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
    opacity: 1; }
    #works.list .load-iframe img:hover, #works.detail .load-iframe img:hover {
      opacity: .7;
      transition: .4s all; }
  #works.list .load-iframe + .copy-credit, #works.detail .load-iframe + .copy-credit {
    display: block;
    font-size: 12px;
    text-align: right;
    padding-bottom: 10px; }
  #works.list .load-iframe + .detail__title, #works.detail .load-iframe + .detail__title {
    margin-top: 40px; }
#works.list .mv-slider, #works.detail .mv-slider {
  margin-bottom: 3em; }

/* SP */
@media screen and (max-width: 1600px) {
  #works .works-column {
    max-width: 100%; }

  /*-------------*/ }
@media screen and (max-width: 900px) {
  #works {
    /* 2021.03追加 */ }
    #works main {
      padding-bottom: calc(60/750*100vw); }
      #works main section {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: calc(60/750*100vw) calc(30/750*100vw) 0; }
    #works .works-column {
      width: 100%;
      max-width: 100%;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      flex-wrap: wrap;
      margin: 0 auto; }
      #works .works-column .bnr-link {
        width: 100%; }
        #works .works-column .bnr-link__inner {
          padding: 10px; }
          #works .works-column .bnr-link__inner h2 {
            font-size: calc(30/750*100vw);
            padding: 10px 15px 15px; }
            #works .works-column .bnr-link__inner h2 span {
              font-size: calc(26/750*100vw); }
    #works.list main, #works.detail main {
      padding-bottom: calc(60/750*100vw); }
      #works.list main section, #works.detail main section {
        width: 100%;
        margin: 0 auto;
        padding: calc(40/750*100vw) calc(30/750*100vw); }
        #works.list main section + section, #works.detail main section + section {
          padding-top: 0; }
        #works.list main section:first-child, #works.detail main section:first-child {
          padding: calc(40/750*100vw) calc(30/750*100vw); }
        #works.list main section.tab-inner, #works.detail main section.tab-inner {
          padding: calc(40/750*100vw) 0; }
    #works.list figure + figure, #works.detail figure + figure {
      margin-top: calc(40/750*100vw); }
    #works.list figure + .text-description, #works.detail figure + .text-description {
      margin: calc(40/750*100vw) auto; }
    #works.list figure + .relatedsites, #works.detail figure + .relatedsites {
      margin-top: calc(40/750*100vw); }
    #works.list figure.divisions, #works.detail figure.divisions {
      flex-direction: column; }
      #works.list figure.divisions img, #works.detail figure.divisions img {
        display: block;
        width: 100%;
        max-width: 100%; }
        #works.list figure.divisions img + img, #works.detail figure.divisions img + img {
          margin-top: calc(40/750*100vw); }
    #works.list .bnr__cab-j, #works.detail .bnr__cab-j {
      height: 100px;
      padding: calc(20/750*100vw) calc(80/750*100vw); }
      #works.list .bnr__cab-j img, #works.detail .bnr__cab-j img {
        width: 100%; }
    #works.list .load-iframe + .detail__title, #works.detail .load-iframe + .detail__title {
      margin-top: calc(35/750*100vw); }
    #works.list .mv-slider, #works.detail .mv-slider {
      margin-bottom: 2em;
      width: calc(780/900*100vw); } }
@media screen and (max-width: 768px) {
  #works.list .mv-slider, #works.detail .mv-slider {
    width: calc(820/900*100vw); } }
/* 05.CONTACT
----------------------------------------------------------- */
#contact .sub-ttl {
  background: #F7F7F7; }
#contact main {
  background: #fff;
  padding-bottom: 140px; }
  #contact main section {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 60px; }
  #contact main .iframe-box {
    width: 100%;
    height: 1300px;
    overflow: visible;
    -webkit-overflow-scrolling: touch; }

@media screen and (max-width: 900px) {
  #contact main {
    padding-bottom: calc(60/750*100vw); }
    #contact main section {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: calc(60/750*100vw) calc(30/750*100vw) 0; }
    #contact main .iframe-box {
      width: 100%;
      height: calc(2700/750*100vw);
      overflow: visible;
      -webkit-overflow-scrolling: touch; } }
/* 06.NEWS
----------------------------------------------------------- */
#news {
  /*------------------*/
  /*------------------*/ }
  #news main {
    background: #fff;
    padding-bottom: 140px; }
  #news .sub-ttl {
    background: #F7F7F7; }
  #news.list main section {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 60px; }
  #news.detail main article {
    width: calc(1100/1440*100vw);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 60px; }
    #news.detail main article .news-head {
      color: #000;
      margin-bottom: 35px; }
      #news.detail main article .news-head .news-head__info {
        display: flex;
        font-size: 18px;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 400;
        white-space: nowrap; }
        #news.detail main article .news-head .news-head__info .news-head__info__date {
          position: relative;
          padding-right: 14px;
          margin-right: 14px; }
          #news.detail main article .news-head .news-head__info .news-head__info__date::after {
            content: "";
            position: absolute;
            top: 0;
            right: 2px;
            width: 1px;
            height: 18px;
            background: #333;
            top: 50%;
            right: 0;
            transform: translateY(-50%); }
      #news.detail main article .news-head .news-head__title {
        font-size: 30px;
        font-weight: bold;
        line-height: 1.5; }
    #news.detail main article .news-desc P strong {
      font-size: 18px;
      font-weight: 600;
      color: #000000; }
    #news.detail main article .news-desc P a {
      color: #000;
      font-weight: bold;
      text-decoration: underline; }
      #news.detail main article .news-desc P a:hover {
        text-decoration: none; }
    #news.detail main article .news-desc p + p {
      margin-top: 40px; }
    #news.detail main article .news-desc + .news-img {
      margin-top: 40px; }
    #news.detail main article .news-desc + .news-desc {
      margin-top: 60px; }
    #news.detail main article figure.img-center {
      text-align: center; }
    #news.detail main article figure.logo {
      width: 200px;
      margin: 60px auto 20px; }
      #news.detail main article figure.logo img {
        width: 100%; }
    #news.detail main article .news-img {
      margin-bottom: 40px; }
    #news.detail main article .relatedsites {
      margin-top: 60px; }
      #news.detail main article .relatedsites + .news-desc {
        margin-top: 60px; }
    #news.detail main article .load-iframe {
      display: block;
      width: 100%;
      height: 0;
      overflow: hidden;
      padding-top: 56.25%;
      position: relative;
      cursor: pointer; }
      #news.detail main article .load-iframe iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        background: #000; }
    #news.detail main article .news-row {
      display: flex;
      justify-content: space-between; }
      #news.detail main article .news-row figure {
        margin-right: 30px;
        width: 200px;
        flex-shrink: 0; }
        #news.detail main article .news-row figure.aen {
          width: 200px;
          padding: .5em 1.5em 1em; }
      #news.detail main article .news-row + p {
        margin-top: 1em; }

@media screen and (max-width: 900px) {
  #news {
    padding-bottom: calc(60/750*100vw);
    /*------------------*/
    /*------------------*/ }
    #news main {
      padding-bottom: calc(60/750*100vw); }
    #news.list main section {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: calc(60/750*100vw) calc(30/750*100vw) 0; }
    #news.detail main article {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: calc(60/750*100vw) calc(30/750*100vw) 0; }
      #news.detail main article .news-head {
        color: #000;
        margin-bottom: calc(40/750*100vw); }
        #news.detail main article .news-head .news-head__info {
          font-size: calc(28/750*100vw); }
          #news.detail main article .news-head .news-head__info .news-head__info__date {
            padding-right: 10px;
            margin-right: 10px; }
            #news.detail main article .news-head .news-head__info .news-head__info__date::after {
              content: "";
              height: calc(28/750*100vw); }
        #news.detail main article .news-head .news-head__title {
          font-size: calc(34/750*100vw);
          font-weight: bold; }
      #news.detail main article .news-desc p strong {
        font-size: calc(32/750*100vw);
        font-weight: 600;
        color: #000000; }
      #news.detail main article .news-desc p + p {
        margin-top: calc(40/750*100vw); }
      #news.detail main article .news-desc + .news-img {
        margin-top: calc(40/750*100vw); }
      #news.detail main article .news-desc + .news-desc {
        margin-top: calc(40/750*100vw); }
      #news.detail main article figure.logo {
        width: calc(200/750*100vw);
        margin: calc(100/750*100vw) auto calc(20/750*100vw); }
        #news.detail main article figure.logo img {
          width: 100%; }
      #news.detail main article .news-img {
        margin-bottom: calc(40/750*100vw); }
      #news.detail main article .relatedsites {
        margin-top: calc(60/750*100vw); }
        #news.detail main article .relatedsites + .news-desc {
          margin-top: calc(60/750*100vw); }
      #news.detail main article .news-row {
        display: flex;
        justify-content: space-between;
        flex-direction: column; }
        #news.detail main article .news-row figure {
          width: calc(400/750*100vw);
          flex-shrink: 0;
          margin: .5em auto 1em; }
          #news.detail main article .news-row figure.aen {
            width: calc(300/750*100vw);
            padding: .5em 1em .5em; } }
/*
	File Name   : page-works.scss
	Description : 各コンテンツページ用

	00.共通


	**.TITLE

*/
/* PC */
@media screen and (min-width: 768px) {
  /*-------------*/ }
/* SP */
@media screen and (max-width: 767px) {
  /*-------------*/ }
*:focus {
  outline: none; }

/*------------------------------------------------------*/
.tab-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px; }
  .tab-list__link {
    width: 49.5%;
    color: #222222;
    text-align: center;
    border: 1px solid;
    position: relative;
    cursor: pointer;
    /* padding: 30px 1em 0; */
    padding: 1.5625vw 1em 0;
    }
  .tab-list__link.current,
  .tab-list__link:hover {
	color: #fff;
	position: relative;
    background: #000; }
  .tab-list__link.current:after {
    content: "";
	position: absolute;
	right: 0;
	left: 0;
	bottom: -25px;
    width: 0;
    height: 0;
	margin: auto;
    border-style: solid;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-top: 18px solid #000000;
    border-bottom: 0; }
    .tab-list__link dl {
      /* padding-bottom: 25px; */
      padding-bottom: 1.30208vw;
      display: inline-flex;
      flex-direction: column;
      position: relative;
      height: 100%;
      }
      .tab-list__link dl::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%;
        height: 3px;
        background-color: #000000;
        opacity: 0;
        visibility: hidden; }
      .tab-list__link dl dt {
        /* font-size: 38px; */
        font-size: 1.97917vw;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 400;
        text-align: center;
        line-height: 1;
        /* margin-bottom: 25px; */
        margin-bottom: 1.30208vw;
        }
      .tab-list__link.current dl dt {
        color: #fff; }
        .tab-list__link dl dt span {
          position: relative;
          display: inline-block;
          padding: 0 20px; }
      .tab-list__link dl dd {
        font-size: 16px;
        font-size: 0.83333vw;
        }
      .tab-list__link.current dl dd {
        color: #fff; }

@media screen and (max-width: 1000px) {
  .tab-list__link dl dd {
    line-height: 1.5; }
    .tab-list__link dl dd br {
      display: none; } }
@media screen and (max-width: 900px) {
  .tab-list {
    margin-bottom: .5em; }
    .tab-list__link {
      padding: 9px 1em 0; }
    .tab-list__link.current:after {
      bottom: -16px;
      border-right: 11px solid transparent;
      border-left: 11px solid transparent;
      border-top: 11px solid #000000; }
    .tab-list__link:hover dl::before {
      height: 2px; }
    .tab-list__link.current dl::before {
      height: 2px; }
    .tab-list__link dl {
      padding-bottom: 1em; }
      .tab-list__link dl::before {
        height: 2px; }
      .tab-list__link dl dt {
        font-size: calc(36/750*100vw);
        margin-bottom: .5rem;
        font-feature-settings: "palt"; }
        .tab-list__link dl dt span {
          position: relative;
          display: inline-block;
          padding: 0; }
      .tab-list__link dl dd {
        font-size: calc(24/750*100vw);
        text-align: left;
        font-feature-settings: "palt"; }
        .tab-list__link dl dd br {
          display: none; } }
.works-list {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-left: 1px solid #E3E3E3; }
  .works-list__link {
    border-right: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    box-sizing: border-box;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    outline: none; }
    .works-list__link figure {
      width: 100%;
      line-height: 0;
      position: relative; }
      .works-list__link figure::before {
        content: "VIEW DETAIL";
        font-size: 22px;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 400;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 510;
        opacity: 0;
        visibility: hidden; }
      .works-list__link figure::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        height: 100%;
        visibility: hidden; }
    .works-list__link dl {
      position: relative;
      z-index: 1;
      padding: 10px 20px;
      min-height: 110px; }
      .works-list__link dl::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        height: 100%;
        visibility: hidden; }
      .works-list__link dl dt {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.6;
        color: #444444; }
      .works-list__link dl dd {
        font-size: 14px;
        color: #5D5D5D; }
    .works-list__link:hover figure::before {
      transition: .4s all;
      opacity: 1;
      visibility: visible; }
    .works-list__link:hover figure::after {
      transition: .4s all;
      background-color: rgba(0, 0, 0, 0.18);
      visibility: visible; }
    .works-list__link:hover dl::after {
      transition: .4s all;
      background-color: rgba(0, 0, 0, 0.18);
      visibility: visible; }
  .works-list + .btn-more {
    width: 100%;
    max-width: 1100px;
    /* ボタンエフェクト */
    color: #5d5d5d;
    border: 1px solid #919191; }
    .works-list + .btn-more span {
      font-size: 33px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 400;
      white-space: nowrap;
      position: relative;
      z-index: 5;
      display: flex;
      align-items: center; }
    .works-list + .btn-more img {
      display: inline-block;
      padding-right: 12px;
      padding-top: 2px; }
    .works-list + .btn-more.full {
      margin: 60px auto 130px; }
    .works-list + .btn-more::after {
      height: 100%;
      left: -35%;
      top: 0;
      transform: skew(50deg);
      transition-duration: 0.6s;
      transform-origin: top left;
      width: 0;
      content: "";
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    .works-list + .btn-more:hover:after {
      height: 101%;
      width: 135%; }
    .works-list + .btn-more::before, .works-list + .btn-more::after {
      background: #222;
      content: '';
      position: absolute;
      z-index: 1; }
    .works-list + .btn-more:hover {
      color: #222;
      border: 1px solid #222;
      opacity: 1 !important; }
    .works-list + .btn-more:hover span {
      color: #fff; }

#works.list main, #works.detail main {
  padding-top: 0; }
  #works.list main.notbg, #works.detail main.notbg {
    background: none; }
#works.list figure + .ttl-type05, #works.detail figure + .ttl-type05 {
  margin-top: 80px; }
#works.list figure .copy-credit, #works.detail figure .copy-credit {
  display: block;
  font-size: 12px;
  text-align: right;
  padding: 10px 0; }
#works.list .text-description, #works.detail .text-description {
  margin-bottom: 40px; }
  #works.list .text-description + .ttl-type05, #works.detail .text-description + .ttl-type05 {
    margin-top: 80px; }
#works.list .detail__keyv, #works.detail .detail__keyv {
  margin-bottom: 40px;
  line-height: 0; }
#works.list .detail__title, #works.detail .detail__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000000;
  line-height: 1.5;
  font-feature-settings: "palt"; }
  #works.list .detail__title span, #works.detail .detail__title span {
    color: #5D5D5D;
    font-size: 20px; }

@media screen and (max-width: 900px) {
  .works-list {
    max-width: 100%;
    grid-template-columns: 1fr 1fr; }
    .works-list__link figure::before {
      font-size: calc(26/750*100vw); }
    .works-list__link dl {
      padding: 10px 1em;
      min-height: calc(200/750*100vw); }
      .works-list__link dl::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        height: 100%;
        visibility: hidden; }
      .works-list__link dl dt {
        font-size: calc(26/750*100vw);
        line-height: 1.4;
        font-feature-settings: "palt"; }
      .works-list__link dl dd {
        font-size: calc(24/750*100vw); }
    .works-list__link:hover figure::before {
      transition: .4s all;
      opacity: 1;
      visibility: visible; }
    .works-list__link:hover figure::after {
      transition: .4s all;
      background-color: rgba(0, 0, 0, 0.18);
      visibility: visible; }
    .works-list__link:hover dl::after {
      transition: .4s all;
      background-color: rgba(0, 0, 0, 0.18);
      visibility: visible; }
    .works-list + .btn-more {
      max-width: 94%; }
      .works-list + .btn-more span {
        font-size: calc(33/750*100vw); }
        .works-list + .btn-more span img {
          width: calc(50/750*100vw);
          padding-right: 12px;
          padding-top: 2px; }
      .works-list + .btn-more.full {
        margin: 1em auto 130px; }
      .works-list + .btn-more::after {
        content: none; }
      .works-list + .btn-more:hover:after {
        content: none; }
      .works-list + .btn-more::before, .works-list + .btn-more::after {
        content: none; }
      .works-list + .btn-more:hover {
        content: none; }
        .works-list + .btn-more:hover span {
          color: #222; }

  #works.list main, #works.detail main {
    padding-top: 0; }
  #works.list figure + .ttl-type05, #works.detail figure + .ttl-type05 {
    margin-top: calc(60/750*100vw); }
  #works.list .text-description, #works.detail .text-description {
    margin-bottom: 1.5rem; }
    #works.list .text-description + .ttl-type05, #works.detail .text-description + .ttl-type05 {
      margin-top: calc(60/750*100vw); }
  #works.list .detail__keyv, #works.detail .detail__keyv {
    margin-bottom: calc(35/750*100vw); }
  #works.list .detail__title, #works.detail .detail__title {
    font-size: calc(32/750*100vw);
    margin-bottom: calc(40/750*100vw); }
    #works.list .detail__title span, #works.detail .detail__title span {
      font-size: calc(20/750*100vw); } }
.modal-close {
  text-align: right; }
  .modal-close button {
    margin-bottom: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none; }

@media screen and (max-width: 750px) {
  .modal-close button {
    width: calc(44/750*100vw);
    margin-bottom: 10px; }
    .modal-close button img {
      width: 100%; } }
.cc-window.cc-floating {
  z-index: 9999; }

/*
	File Name   : module.scss
	Description : 共通モジュールcss
*/
/* common
----------------------------------------------- */
.pos-rela {
  position: relative !important; }

.v-align-top {
  vertical-align: top !important; }

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

th img,
td img {
  max-width: inherit;
  height: inherit; }

.cl {
  clear: both; }

.none {
  display: none !important; }

/* clearfix */
.cf:before, .cf:after {
  content: "";
  display: table; }

.cf:after {
  clear: both; }

/* font系 */
.bold {
  font-weight: bold !important; }

.normal {
  font-weight: normal !important; }

.t-col00 {
  color: #000 !important; }

.t-col01 {
  color: #B90419 !important; }

/* PC
----------------------------------------------- */
@media screen and (min-width: 1021px) {
  /**/
  .align_r {
    text-align: right !important; }

  .align_c {
    text-align: center !important; }

  .align_l {
    text-align: left !important; }

  .fl_l {
    float: left; }

  .fl_r {
    float: right; }

  /* view */
  .sp_view {
    display: none; }

  .print_viwe {
    display: none !important; }

  /* font-size */
  .fs9 {
    font-size: 9px !important; }

  .fs10 {
    font-size: 10px !important; }

  .fs11 {
    font-size: 11px !important; }

  .fs12 {
    font-size: 12px !important; }

  .fs13 {
    font-size: 13px !important; }

  .fs14 {
    font-size: 14px !important; }

  .fs15 {
    font-size: 15px !important; }

  .fs16 {
    font-size: 16px !important; }

  .fs17 {
    font-size: 17px !important; }

  .fs18 {
    font-size: 18px !important; }

  .fs19 {
    font-size: 19px !important; }

  .fs20 {
    font-size: 20px !important; }

  .fs21 {
    font-size: 21px !important; }

  .fs22 {
    font-size: 22px !important; }

  .fs23 {
    font-size: 23px !important; }

  .fs24 {
    font-size: 24px !important; }

  /* margin-top */
  .mt10_minus {
    margin-top: -10px   !important; }

  .mt5_minus {
    margin-top: -5px   !important; }

  .mt0 {
    margin-top: 0   !important; }

  .mt5 {
    margin-top: 5px !important; }

  .mt10 {
    margin-top: 10px !important; }

  .mt15 {
    margin-top: 15px !important; }

  .mt20 {
    margin-top: 20px !important; }

  .mt25 {
    margin-top: 25px !important; }

  .mt30 {
    margin-top: 30px !important; }

  .mt35 {
    margin-top: 35px !important; }

  .mt40 {
    margin-top: 40px !important; }

  .mt45 {
    margin-top: 45px !important; }

  .mt50 {
    margin-top: 50px !important; }

  .mt70 {
    margin-top: 70px !important; }

  .mt80 {
    margin-top: 80px !important; }

  .mt100 {
    margin-top: 100px !important; }

  /* margin-bottom */
  .mb0 {
    margin-bottom: 0   !important; }

  .mb5 {
    margin-bottom: 5px !important; }

  .mb10 {
    margin-bottom: 10px !important; }

  .mb15 {
    margin-bottom: 15px !important; }

  .mb20 {
    margin-bottom: 20px !important; }

  .mb25 {
    margin-bottom: 25px !important; }

  .mb30 {
    margin-bottom: 30px !important; }

  .mb35 {
    margin-bottom: 35px !important; }

  .mb40 {
    margin-bottom: 40px !important; }

  .mb50 {
    margin-bottom: 50px !important; }

  .mb60 {
    margin-bottom: 60px !important; }

  .mb70 {
    margin-bottom: 70px !important; }

  .mb100 {
    margin-bottom: 100px !important; }

  /* margin-right */
  .mr0 {
    margin-right: 0   !important; }

  .mr5 {
    margin-right: 5px !important; }

  .mr10 {
    margin-right: 10px !important; }

  .mr15 {
    margin-right: 15px !important; }

  .mr20 {
    margin-right: 20px !important; }

  .mr30 {
    margin-right: 30px !important; }

  .mr40 {
    margin-right: 40px !important; }

  .mr50 {
    margin-right: 50px !important; }

  /* margin-left */
  .ml0 {
    margin-left: 0   !important; }

  .ml5 {
    margin-left: 5px !important; }

  .ml10 {
    margin-left: 10px !important; }

  .ml15 {
    margin-left: 15px !important; }

  .ml20 {
    margin-left: 20px !important; }

  .ml30 {
    margin-left: 30px !important; }

  .ml40 {
    margin-left: 40px !important; }

  .ml50 {
    margin-left: 50px !important; }

  /* padding-top */
  .pt0 {
    padding-top: 0   !important; }

  .pt5 {
    padding-top: 5px !important; }

  .pt8 {
    padding-top: 8px !important; }

  .pt18 {
    padding-top: 18px !important; }

  .pt10 {
    padding-top: 10px !important; }

  .pt15 {
    padding-top: 15px !important; }

  .pt20 {
    padding-top: 20px !important; }

  .pt25 {
    padding-top: 25px !important; }

  .pt30 {
    padding-top: 30px !important; }

  .pt35 {
    padding-top: 35px !important; }

  .pt40 {
    padding-top: 40px !important; }

  .pt45 {
    padding-top: 45px !important; }

  .pt50 {
    padding-top: 50px !important; }

  .pt55 {
    padding-top: 55px !important; }

  .pt70 {
    padding-top: 70px !important; }

  .pt75 {
    padding-top: 75px !important; }

  /* padding-bottom */
  .pb0 {
    padding-bottom: 0   !important; }

  .pb5 {
    padding-bottom: 5px !important; }

  .pb10 {
    padding-bottom: 10px !important; }

  .pb15 {
    padding-bottom: 15px !important; }

  .pb20 {
    padding-bottom: 20px !important; }

  .pb30 {
    padding-bottom: 30px !important; }

  .pb40 {
    padding-bottom: 40px !important; }

  .pb50 {
    padding-bottom: 50px !important; }

  /* padding-right */
  .pr0 {
    padding-right: 0   !important; }

  .pr5 {
    padding-right: 5px !important; }

  .pr10 {
    padding-right: 10px !important; }

  .pr15 {
    padding-right: 15px !important; }

  .pr20 {
    padding-right: 20px !important; }

  .pr30 {
    padding-right: 30px !important; }

  .pr40 {
    padding-right: 40px !important; }

  .pr50 {
    padding-right: 50px !important; }

  /* padding-left */
  .pl0 {
    padding-left: 0   !important; }

  .pl5 {
    padding-left: 5px !important; }

  .pl10 {
    padding-left: 10px !important; }

  .pl15 {
    padding-left: 15px !important; }

  .pl20 {
    padding-left: 20px !important; }

  .pl30 {
    padding-left: 30px !important; }

  .pl40 {
    padding-left: 40px !important; }

  .pl50 {
    padding-left: 50px !important; }

  /* width-size px */
  .w60 {
    width: 60px !important; }

  .w90 {
    width: 90px !important; }

  .w100 {
    width: 100px !important; }

  .w120 {
    width: 120px !important; }

  .w175 {
    width: 175px !important; }

  .w150 {
    width: 150px !important; }

  .w200 {
    width: 200px !important; }

  .w240 {
    width: 240px !important; }

  .w245 {
    width: 245px !important; }

  .w280 {
    width: 280px !important; }

  .w300 {
    width: 300px !important; }

  .w340 {
    width: 340px !important; }

  .w400 {
    width: 400px !important; }

  .w440 {
    width: 440px !important; }

  .w500 {
    width: 500px !important; }

  /* width-size % */
  .w100p {
    width: 100% !important; }

  .w75p {
    width: 75% !important; }

  .w50p {
    width: 50% !important; }

  .w25p {
    width: 25% !important; }

  .w10p {
    width: 10% !important; }

  .w_auto {
    width: auto !important; } }
/* SP
----------------------------------------------- */
@media screen and (max-width: 1020px) {
  /* view */
  .sp_view {
    display: block !important; }

  .pc_view {
    display: none !important; }

  .print_viwe {
    display: none !important; }

  /**/
  .align_r_sp {
    text-align: right !important; }

  .align_c_sp {
    text-align: center !important; }

  .align_l_sp {
    text-align: left !important; }

  .fl_l_sp {
    float: left; }

  .fl_r_sp {
    float: right; }

  /* font-size */
  .fs8_sp {
    font-size: 8px !important; }

  .fs9_sp {
    font-size: 9px !important; }

  .fs10_sp {
    font-size: 10px !important; }

  .fs11_sp {
    font-size: 11px !important; }

  .fs12_sp {
    font-size: 12px !important; }

  .fs13_sp {
    font-size: 13px !important; }

  .fs14_sp {
    font-size: 14px !important; }

  .fs15_sp {
    font-size: 15px !important; }

  .fs16_sp {
    font-size: 16px !important; }

  .fs17_sp {
    font-size: 17px !important; }

  .fs18_sp {
    font-size: 18px !important; }

  .fs19_sp {
    font-size: 19px !important; }

  .fs20_sp {
    font-size: 20px !important; }

  .fs21_sp {
    font-size: 21px !important; }

  .fs22_sp {
    font-size: 22px !important; }

  .fs23_sp {
    font-size: 23px !important; }

  .fs24_sp {
    font-size: 24px !important; }

  /* margin-top */
  .mt0_sp {
    margin-top: 0   !important; }

  .mt5_sp {
    margin-top: 5px !important; }

  .mt10_sp {
    margin-top: 10px !important; }

  .mt15_sp {
    margin-top: 15px !important; }

  .mt20_sp {
    margin-top: 20px !important; }

  .mt25_sp {
    margin-top: 25px !important; }

  .mt30_sp {
    margin-top: 30px !important; }

  .mt35_sp {
    margin-top: 35px !important; }

  .mt40_sp {
    margin-top: 40px !important; }

  .mt45_sp {
    margin-top: 45px !important; }

  .mt50_sp {
    margin-top: 50px !important; }

  /* margin-bottom */
  .mb0_sp {
    margin-bottom: 0   !important; }

  .mb5_sp {
    margin-bottom: 5px !important; }

  .mb10_sp {
    margin-bottom: 10px !important; }

  .mb15_sp {
    margin-bottom: 15px !important; }

  .mb20_sp {
    margin-bottom: 20px !important; }

  .mb25_sp {
    margin-bottom: 25px !important; }

  .mb30_sp {
    margin-bottom: 30px !important; }

  .mb35_sp {
    margin-bottom: 35px !important; }

  .mb40_sp {
    margin-bottom: 40px !important; }

  .mb50_sp {
    margin-bottom: 50px !important; }

  .mb60_sp {
    margin-bottom: 60px !important; }

  .mb70_sp {
    margin-bottom: 70px !important; }

  .mb100_sp {
    margin-bottom: 100px !important; }

  /* margin-right */
  .mr10_sp_minus {
    margin-right: -10px   !important; }

  .mr0_sp {
    margin-right: 0   !important; }

  .mr5_sp {
    margin-right: 5px !important; }

  .mr10_sp {
    margin-right: 10px !important; }

  .mr15_sp {
    margin-right: 15px !important; }

  .mr20_sp {
    margin-right: 20px !important; }

  .mr30_sp {
    margin-right: 30px !important; }

  .mr40_sp {
    margin-right: 40px !important; }

  .mr50_sp {
    margin-right: 50px !important; }

  /* margin-left */
  .ml0_sp {
    margin-left: 0   !important; }

  .ml5_sp {
    margin-left: 5px !important; }

  .ml7_sp {
    margin-left: 7px !important; }

  .ml10_sp {
    margin-left: 10px !important; }

  .ml15_sp {
    margin-left: 15px !important; }

  .ml20_sp {
    margin-left: 20px !important; }

  .ml30_sp {
    margin-left: 30px !important; }

  .ml40_sp {
    margin-left: 40px !important; }

  .ml50_sp {
    margin-left: 50px !important; }

  /* padding-top */
  .pt0_sp {
    padding-top: 0   !important; }

  .pt5_sp {
    padding-top: 5px !important; }

  .pt10_sp {
    padding-top: 10px !important; }

  .pt15_sp {
    padding-top: 15px !important; }

  .pt20_sp {
    padding-top: 20px !important; }

  .pt25_sp {
    padding-top: 25px !important; }

  .pt30_sp {
    padding-top: 30px !important; }

  .pt35_sp {
    padding-top: 35px !important; }

  .pt40_sp {
    padding-top: 40px !important; }

  .pt45_sp {
    padding-top: 45px !important; }

  .pt50_sp {
    padding-top: 50px !important; }

  /* padding-bottom */
  .pb0_sp {
    padding-bottom: 0   !important; }

  .pb5_sp {
    padding-bottom: 5px !important; }

  .pb10_sp {
    padding-bottom: 10px !important; }

  .pb15_sp {
    padding-bottom: 15px !important; }

  .pb20_sp {
    padding-bottom: 20px !important; }

  .pb30_sp {
    padding-bottom: 30px !important; }

  .pb40_sp {
    padding-bottom: 40px !important; }

  .pb50_sp {
    padding-bottom: 50px !important; }

  /* padding-right */
  .pr0_sp {
    padding-right: 0   !important; }

  .pr5_sp {
    padding-right: 5px !important; }

  .pr10_sp {
    padding-right: 10px !important; }

  .pr15_sp {
    padding-right: 15px !important; }

  .pr20_sp {
    padding-right: 20px !important; }

  .pr30_sp {
    padding-right: 30px !important; }

  .pr40_sp {
    padding-right: 40px !important; }

  .pr50_sp {
    padding-right: 50px !important; }

  /* padding-left */
  .pl0_sp {
    padding-left: 0   !important; }

  .pl5_sp {
    padding-left: 5px !important; }

  .pl10_sp {
    padding-left: 10px !important; }

  .pl15_sp {
    padding-left: 15px !important; }

  .pl20_sp {
    padding-left: 20px !important; }

  .pl30_sp {
    padding-left: 30px !important; }

  .pl40_sp {
    padding-left: 40px !important; }

  .pl50_sp {
    padding-left: 50px !important; }

  /* width-size % */
  .w100_sp {
    width: 100px !important; }

  .w100p_sp {
    width: 100% !important; }

  .w75p_sp {
    width: 75% !important; }

  .w50p_sp {
    width: 50% !important; }

  .w25p_sp {
    width: 25% !important; }

  .w10p_sp {
    width: 10% !important; }

  /* flex-order */
  .order1_sp {
    order: 1 !important; }

  .order2_sp {
    order: 2 !important; }

  .order3_sp {
    order: 3 !important; }

  .order4_sp {
    order: 4 !important; }

  .order5_sp {
    order: 5 !important; } }
/*
	File Name   : print.scss
	Description : print用
*/
@media print {
  .print_viwe {
    display: block; }

  .sp_view {
    display: none !important; }

  .sub-ttl h2 {
    width: 1000px !important; }

  html {
    background: #222222; }

  body {
    width: 1100px; }

  #wrapper {
    padding-top: 0; }

  header {
    width: 1100px;
    position: static; }

  .global-nav {
    width: 1000px; }

  footer {
    padding: 30px 0 10px; }
    footer #footer-wrap {
      display: flex;
      justify-content: center;
      flex-direction: column-reverse;
      width: 1100px; }
      footer #footer-wrap .footer-wrap__logo {
        justify-content: center;
        margin: 20px 0 10px; }
      footer #footer-wrap .footer-wrap__menu ul {
        display: flex;
        justify-content: center;
        margin-top: 10px; }

  /* TOP
  ---------------------------------*/
  .keyv-aboutus {
    margin-top: -80px !important; }
    .keyv-aboutus dl {
      width: 1000px !important;
      padding: 40px 40px 10px !important; }
      .keyv-aboutus dl .logo {
        width: 140px !important;
        flex-shrink: 0; }
        .keyv-aboutus dl .logo img {
          width: 140px !important; }
      .keyv-aboutus dl .disc {
        width: 600px !important;
        flex-shrink: 0; }
      .keyv-aboutus dl .btn {
        width: 140px !important;
        flex-shrink: 0; }

  /* ----------------- */
  .mediabrand {
    position: relative;
    opacity: 1; }
    .mediabrand .mediabrand__inner {
      width: 1100px !important; }
      .mediabrand .mediabrand__inner .mediabrand__bgimg {
        left: 194px;
        width: 1080px; }
      .mediabrand .mediabrand__inner .mediabrand__title {
        width: 395px;
        padding-left: 30px; }
    .mediabrand.right .mediabrand__inner .mediabrand__bgimg {
      right: 194px; }
    .mediabrand.right .mediabrand__inner .mediabrand__title {
      padding-right: 30px; }

  #top .mediabrand.crime {
    page-break-before: always; }

  #media_brnads .mediabrand.lifetime {
    page-break-before: always; }

  /* ----------------- */
  /* 01.MEDIA BRNADS
  ----------------------------------------------------------- */
  #media_brnads {
    /* LINK */ }
    #media_brnads main {
      padding-bottom: 80px !important; }
      #media_brnads main section {
        padding-top: 40px !important; }
      #media_brnads main.index {
        margin: 40px auto 80px !important; }
      #media_brnads main.detail section {
        width: 1100px !important; }
        #media_brnads main.detail section .ttl-type02 {
          page-break-before: always; }
    #media_brnads .media_brnads-keyv {
      height: 520px; }
      #media_brnads .media_brnads-keyv__logo {
        width: 184px !important; }
    #media_brnads .link-box {
      padding: 20px 35px; }
    #media_brnads .programs-box {
      margin-bottom: 60px; }

  /* ABOUT US( PRIVACY POLICY & TERMS OF USE )
  ----------------------------------------------------------- */
  #aboutus main {
    padding-bottom: 50px !important; }
    #aboutus main section {
      width: 1000px !important;
      padding-top: 60px; }
  #aboutus .whatwedo {
    margin-top: 40px; }
    #aboutus .whatwedo .whatwedo-box {
      width: 500px !important;
      padding: 10px 0 50px;
      margin-bottom: 80px; }

  .global-network {
    page-break-before: always;
    padding: 60px 0 !important; }
    .global-network__inner {
      width: 1000px !important; }
      .global-network__inner dl {
        width: 324px;
        margin-bottom: 40px; }
        .global-network__inner dl dt {
          font-size: 20px;
          font-weight: bold; }
        .global-network__inner dl dd {
          font-size: 40px;
          font-weight: bold; }
          .global-network__inner dl dd small {
            font-size: 24px; }
    .global-network__disc {
      margin-bottom: 50px; }

  /* CREATIVE PARTNERS
  ----------------------------------------------------------- */
  #creativepartners main {
    padding-bottom: 50px !important; }
    #creativepartners main section {
      width: 1000px !important; }
  #creativepartners .btn-frame-bk {
    margin: 30px auto 10px; }

  .video-production__credit {
    width: 1000px !important; }
    .video-production__credit dl {
      width: 500px !important; }

  #works main section {
    width: 1100px !important; }
  #works .bnr-link {
    height: 360px; }
    #works .bnr-link__inner {
      width: 1000px !important; }
  #works.detail main {
    padding-bottom: 80px !important; }
  #works.detail figure + figure {
    margin-top: 50px !important; }
  #works.detail figure + .text-description {
    margin: 40px auto 50px !important; }
  #works.detail figure + .relatedsites {
    margin-top: 40px !important; }
  #works.detail figure.divisions img {
    width: 540px !important; }

  /* ----------------- */
  /* CONTACT
  ----------------------------------------------------------- */
  #contact main {
    padding-bottom: 60px !important; }
    #contact main section {
      width: 1100px !important; } }
