@charset "UTF-8";
/*-------------------------------------------------------
config
-------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900");
@media screen and (max-width: 750px) {
  [data-sc-pc] {
    display: none !important; } }

@media print, screen and (min-width: 751px) {
  [data-sc-sp] {
    display: none !important; } }

/*-------------------------------------------------------
reset
-------------------------------------------------------*/
html, body, header, footer, article, section, nav, aside, main, h1, h2, h3, h4, h5, h6, p, div, ul, ol, li, dl, dt, dd, table, th, td, blockquote, pre, figure {
  margin: 0;
  padding: 0; }

header, footer, article, section, nav, aside, main, figure {
  display: block; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1; }

ul, ol {
  list-style: none; }

body {
  line-height: 1;
  color: #222;
  font-family: Roboto,"Noto Sans JP","游ゴシック","游ゴシック体","Yu Gothic",YuGothic,sans-serif;
  font-size: 16px;
  letter-spacing: .05em;
  word-wrap: break-word; }

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

a {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  transition: opacity .3s; }
  a:focus {
    outline: none; }
  a:hover {
    opacity: .7; }

select {
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  width: 100%;
  line-height: 1;
  vertical-align: middle;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-align: center;
  text-overflow: "";
  cursor: pointer;
  outline: none;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button; }
  select:-ms-expand {
    display: none; }
  select:-moz-focusring {
    color: transparent;
    text-shadow: none; }
  select option {
    color: #333;
    background: #fff; }

input[type="text"], textarea {
  padding: 15px 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100% !important;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: none; }
  @media screen and (max-width: 750px) {
    input[type="text"], textarea {
      padding: 10px; } }

input[type="text"] {
  height: 50px; }
  @media screen and (max-width: 750px) {
    input[type="text"] {
      height: 40px; } }

button {
  margin: auto;
  padding: 0;
  border: none;
  display: block;
  background: none;
  cursor: pointer;
  outline: none;
  transition: opacity .3s; }
  button:hover {
    opacity: .7; }

/*-------------------------------------------------------
common
-------------------------------------------------------*/
.w480 {
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 480px; }

.w750 {
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 750px; }

.w1080 {
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px; }

/*-------------------------------------------------------
header
-------------------------------------------------------*/
header {
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
  background: url("../img/hd_bg.jpg") repeat-x left/12px; }
  @media screen and (max-width: 750px) {
    header {
      justify-content: center;
      height: 50px; } }
  header .logo {
    display: block;
    width: 100%;
    max-width: 290px; }
    @media screen and (max-width: 750px) {
      header .logo {
        max-width: 145px; } }
  header h1 {
    color: transparent;
    font-size: 0; }

/*-------------------------------------------------------
nav
-------------------------------------------------------*/
@media print, screen and (min-width: 751px) {
  nav {
    display: inherit !important;
    position: absolute;
    right: 20px; } }
@media screen and (max-width: 750px) {
  nav {
    padding: 20px;
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background: #333; } }
@media print, screen and (min-width: 751px) {
  nav ul {
    display: flex; } }
nav ul li {
  margin: 0 15px 0 0; }
  @media screen and (max-width: 750px) {
    nav ul li {
      margin: 0 0 15px 0; } }
  nav ul li:last-child {
    margin: 0; }
  nav ul li a {
    padding: 0 15px 0 35px;
    border-radius: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 30px;
    color: #222;
    background-color: #fff;
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    font-weight: bold;
    font-size: 11px; }
    nav ul li a.ic_works {
      background-image: url("../img/nv_ic_works.svg"); }
    nav ul li a.ic_movie {
      background-image: url("../img/nv_ic_movie.svg"); }

/*-------------------------------------------------------
toggle
-------------------------------------------------------*/
@media screen and (max-width: 750px) {
  .toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: #333;
    cursor: pointer; }
    .toggle span {
      border-radius: 2px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 30px;
      height: 2px;
      background: #666;
      transition: .3s; }
      .toggle span.bar02 {
        top: 35%; }
      .toggle span.bar03 {
        top: 64%; }
    .toggle.is-active .bar01 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(45deg); }
    .toggle.is-active .bar02 {
      opacity: 0; }
    .toggle.is-active .bar03 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(135deg); } }

/*-------------------------------------------------------
footer
-------------------------------------------------------*/
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: url("../img/ft_bg.jpg") repeat-x left/88px; }
  @media screen and (max-width: 750px) {
    footer {
      height: 125px; } }
  footer ul {
    max-width: 225px; }
    @media screen and (max-width: 750px) {
      footer ul {
        max-width: 115px; } }
    footer ul li {
      margin: 0 0 20px 0; }
      footer ul li:last-child {
        margin: 0; }

/*-------------------------------------------------------
main
-------------------------------------------------------*/
main {
  padding: 10px 20px 60px 20px;
  background: #f2f2f2; }
  @media screen and (max-width: 750px) {
    main {
      padding: 60px 20px; } }
  main .w1080:after {
    display: block;
    clear: both;
    content: ""; }
  @media print, screen and (min-width: 751px) {
    main .w1080 .contentArea {
      margin: 0 50px 0 0;
      float: left;
      width: calc(100% - 260px); } }
  main .w1080 .contentArea section {
    padding: 50px 0 0 0; }
  main .w1080 .contentArea h2 {
    margin: 0 0 20px 0;
    color: #777;
    font-weight: normal;
    font-size: 30px; }
    @media screen and (max-width: 750px) {
      main .w1080 .contentArea h2 {
        font-size: 18px; } }
  main .w1080 .contentArea .bg {
    padding: 50px;
    border-radius: 5px;
    background: #fff; }
    @media screen and (max-width: 750px) {
      main .w1080 .contentArea .bg {
        padding: 20px; } }
  main .w1080 .contentArea h3 {
    margin: 0 0 15px 0;
    padding: 0 0 10px 0;
    position: relative;
    font-weight: normal;
    font-size: 18px; }
    @media screen and (max-width: 750px) {
      main .w1080 .contentArea h3 {
        font-size: 14px; } }
    main .w1080 .contentArea h3:before {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 1px;
      content: "";
      background: #707070; }
  main .w1080 .contentArea p {
    line-height: 1.8;
    font-size: 14px; }
    @media screen and (max-width: 750px) {
      main .w1080 .contentArea p {
        font-size: 12px; } }
  main .w1080 .contentArea .kome {
    margin: 20px 0; }
    main .w1080 .contentArea .kome li {
      margin: 0 0 5px 1rem;
      line-height: 1.2;
      font-size: 14px;
      text-indent: -1rem; }
      @media screen and (max-width: 750px) {
        main .w1080 .contentArea .kome li {
          font-size: 12px; } }
      main .w1080 .contentArea .kome li:before {
        content: "※ "; }
      main .w1080 .contentArea .kome li:last-child {
        margin-bottom: 0; }
  main .w1080 .contentArea #logomark img {
    margin: 20px 0 0 0; }
  main .w1080 .contentArea #banner ul {
    margin: 20px 0 0 0;
    display: flex; }
    @media screen and (max-width: 750px) {
      main .w1080 .contentArea #banner ul {
        margin: 20px auto 0 auto;
        flex-wrap: wrap; } }
    main .w1080 .contentArea #banner ul li {
      margin: 0 5px 0 0;
      width: 25%; }
      @media screen and (max-width: 750px) {
        main .w1080 .contentArea #banner ul li {
          margin: 0;
          padding: 2px;
          box-sizing: border-box;
          width: 50%; } }
      main .w1080 .contentArea #banner ul li:last-child {
        margin: 0; }
  @media print, screen and (min-width: 751px) {
    main .w1080 .sideArea {
      padding: 50px 0 0 0;
      float: right;
      width: 210px; } }
  main .w1080 .sideArea dl + dl {
    margin: 40px 0 0 0; }
  main .w1080 .sideArea dl dt {
    margin: 0 0 20px 0;
    font-size: 18px; }
    @media screen and (max-width: 750px) {
      main .w1080 .sideArea dl dt {
        margin: 0 0 10px 0;
        font-size: 14px; } }
  main .w1080 .sideArea dl li {
    margin: 0 0 10px 1.2rem;
    list-style: disc outside;
    font-size: 14px; }
    @media screen and (max-width: 750px) {
      main .w1080 .sideArea dl li {
        margin: 0 0 5px 1.2rem;
        font-size: 12px; } }
    main .w1080 .sideArea dl li:last-child {
      margin-bottom: 0; }
    main .w1080 .sideArea dl li a {
      color: #00917e; }

/*# sourceMappingURL=option.css.map */
