@charset "UTF-8";
/* reset
================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input, select {
  vertical-align: middle;
}

input[type=text], input[type=email], input[type=tel], input[type=date], input[type=button], input[type=submit], input[type=reset], button, textarea, select, option {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
}

select::-ms-expand {
  display: none;
}

/* Setting */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

ul {
  list-style-position: outside;
  list-style-type: none;
}

ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: 1rem;
}

*:active, *:focus {
  outline: none;
}

/************************************************
    Setting
************************************************ */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
  font-weight: 400;
  color: #000000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}

/* link */
a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  /*text-decoration: underline;*/
}

a img {
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: inline-block;
  backface-visibility: hidden;
  background-color: rgba(255, 255, 255, 0.001);
}

/* clear */
.cf {
  zoom: 1;
}

.cf, .cf:before {
  content: '';
  display: table;
}

.cf:after {
  clear: both;
}

.clear {
  clear: both;
}

.fa {
  letter-spacing: 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

*.bold {
  font-weight: 700;
}

*.black {
  font-weight: 900;
}

.en {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
}

.disnon {
  display: none !important;
}

.bx-wrapper {
  margin: 0;
  padding: 0;
  border: 0;
}
.bx-wrapper .bx-viewport {
  margin: 0;
  padding: 0;
  border: 0;
  left: auto;
  right: auto;
  box-shadow: none;
}

@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }

  .target {
    padding-top: 120px;
    margin-top: -90px;
  }

  .embed-container {
    height: 0;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
    position: relative;
  }

  .embed-container iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  body {
    min-width: 1000px;
    padding-top: 90px;
  }

  #loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }

  .spinner {
    width: 100px;
    height: 100px;
    margin: 200px auto;
    background-color: #999;
    border-radius: 100%;
    animation: sk-scaleout 1.0s infinite ease-in-out;
  }

  .loaded {
    opacity: 0;
    visibility: hidden;
  }

  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1000px;
    background: #fff;
    height: 90px;
    border-bottom: 2px solid #000;
  }
  #header .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  #header .inner .logo {
    margin-right: auto;
    padding-left: 40px;
  }
  #header .inner .logo a {
    display: inline-block;
  }
  #header .inner .btnBox {
    margin-right: 10px;
  }
  #header .inner .btnBox ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #header .inner .btnBox ul li {
    margin-left: 10px;
  }
  #header .inner .btnBox ul li a {
    font-size: 12px;
    display: inline-block;
    line-height: 38px;
    border: 1px solid #000;
    padding: 0 15px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #header .inner .btnBox ul li a:hover {
    opacity: 0.7;
  }
  #header .inner .lang {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    padding: 10px 20px;
    background: #F0F5FA;
    margin-right: 20px;
  }
  #header .inner .lang h4 {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-right: 10px;
  }
  #header .inner .lang ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #header .inner .lang ul li {
    margin-right: 15px;
    position: relative;
  }
  #header .inner .lang ul li a {
    text-decoration: underline;
  }
  #header .inner .lang ul li a:hover {
    text-decoration: none;
  }
  #header .inner .lang ul li:after {
    position: absolute;
    right: -10px;
    content: '/';
  }
  #header .inner .lang ul li:last-of-type {
    margin-right: 0;
  }
  #header .inner .lang ul li:last-of-type:after {
    display: none;
  }
  #header .inner #menuBtn {
    width: 120px;
    border-left: 2px solid #000;
    height: 88px;
    text-align: center;
    cursor: pointer;
    padding-top: 15px;
  }
  #header .inner #menuBtn .humb {
    display: inline-block;
    position: relative;
    width: 50px;
  }
  #header .inner #menuBtn .humb:before, #header .inner #menuBtn .humb:after {
    position: absolute;
    content: '';
    width: 40px;
    background: #000;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #header .inner #menuBtn .humb:before {
    height: 8px;
    left: 0;
    top: -10px;
  }
  #header .inner #menuBtn .humb:after {
    height: 6px;
    right: 0;
    bottom: -10px;
  }
  #header .inner #menuBtn .menu {
    margin-top: 15px;
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  #header .inner #menuBtn .menu2 {
    display: none;
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  #header .inner #menuBtn.open .humb:before {
    height: 6px;
    left: 5px;
    top: -5px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .inner #menuBtn.open .humb:after {
    height: 6px;
    right: auto;
    left: 5px;
    top: -5px;
    bottom: auto;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #header .inner #menuBtn.open .menu {
    display: none;
  }
  #header .inner #menuBtn.open .menu2 {
    display: block;
  }
  #header .inner .contact {
    width: 120px;
    height: 88px;
    background: #000;
    padding-top: 20px;
  }
  #header .inner .contact a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
  }
  #header .inner .contact a span {
    display: block;
  }
  #header .inner .contact a span.ico {
    margin-bottom: 13px;
  }
  #header .inner .contact a span.menu {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  #gNavi {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    position: fixed;
    z-index: 888;
    height: 100vh;
    top: 0;
    right: 0;
    background: #fff;
    padding-top: 90px;
    overflow: auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    border-left: 1px solid #000;
  }
  #gNavi:after {
    position: absolute;
    z-index: 3;
    content: '';
    width: 1px;
    background: #000;
    top: 0;
    left: 50%;
    bottom: 0;
    margin-left: -1px;
  }
  #gNavi .wrap1 {
    width: 430px;
    letter-spacing: 0.04em;
  }
  #gNavi .wrap1 .box {
    padding: 30px 20px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
  }
  #gNavi .wrap1 .box h4 {
    padding-left: 40px;
    font-size: 17px;
    position: relative;
    margin-bottom: 20px;
  }
  #gNavi .wrap1 .box h4 a {
    color: #E21C24;
    display: inline-block;
  }
  #gNavi .wrap1 .box h4 a:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_nav_arrow.svg) no-repeat center;
    width: 21px;
    height: 12px;
    left: 0;
    top: 50%;
    margin-top: -8px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #gNavi .wrap1 .box h4 a:hover:before {
    left: 5px;
  }
  #gNavi .wrap1 .box ul.main {
    padding-left: 40px;
    margin-bottom: 20px;
  }
  #gNavi .wrap1 .box ul.main > li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
  }
  #gNavi .wrap1 .box ul.main > li a {
    display: inline-block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #gNavi .wrap1 .box ul.main > li a:hover {
    opacity: 0.7;
  }
  #gNavi .wrap1 .box ul.main > li span.openBtn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/ico_plus.svg) no-repeat center;
    margin-left: 13px;
    position: relative;
    top: 4px;
    cursor: pointer;
  }
  #gNavi .wrap1 .box ul.main > li span.openBtn.open {
    background: url(../images/svg/ico_minus.svg) no-repeat center;
  }
  #gNavi .wrap1 .box ul.main > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
  }
  #gNavi .wrap1 .box ul.main > li.search:before {
    width: 15px;
    height: 16px;
    background: url(../images/svg/nav_marker01.svg) no-repeat center;
    margin-top: -9px;
  }
  #gNavi .wrap1 .box ul.main > li.book:before {
    width: 15px;
    height: 20px;
    background: url(../images/svg/nav_marker02.svg) no-repeat center;
    margin-top: -10px;
  }
  #gNavi .wrap1 .box ul.main > li.business:before {
    width: 15px;
    height: 20px;
    background: url(../images/svg/nav_marker03.svg) no-repeat center;
    top: 3px;
  }
  #gNavi .wrap1 .box ul.main > li.mail:before {
    width: 15px;
    height: 10px;
    background: url(../images/svg/nav_marker04.svg) no-repeat center;
    margin-top: -5px;
  }
  #gNavi .wrap1 .box ul.main > li .sub {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0 20px;
    display: none;
  }
  #gNavi .wrap1 .box ul.main > li .sub ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
  }
  #gNavi .wrap1 .box ul.main > li .sub ul li:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 1px;
    background: #E21C24;
    left: 0;
    top: 50%;
  }
  #gNavi .wrap1 .box ul.main:last-of-type {
    margin-bottom: 0;
  }
  #gNavi .wrap1 .box ul.main2 {
    padding-left: 40px;
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #gNavi .wrap1 .box ul.main2 li {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0;
    margin-right: 30px;
    position: relative;
  }
  #gNavi .wrap1 .box ul.main2 li a {
    display: inline-block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #gNavi .wrap1 .box ul.main2 li a:hover {
    opacity: 0.7;
  }
  #gNavi .wrap1 .box ul.main2 li:after {
    position: absolute;
    content: '/';
    right: -15px;
  }
  #gNavi .wrap1 .box ul.main2 li:last-of-type:after {
    display: none;
  }
  #gNavi .wrap1 .box:last-of-type {
    border-bottom: none;
  }
  #gNavi .wrap2 {
    width: 430px;
  }
  #gNavi .wrap2 .box {
    padding: 30px 0px 30px 20px;
    border-bottom: 1px solid #000;
  }
  #gNavi .wrap2 .box h4 {
    padding-left: 40px;
    font-size: 17px;
    position: relative;
    margin-bottom: 20px;
  }
  #gNavi .wrap2 .box h4 a {
    color: #E21C24;
    display: inline-block;
  }
  #gNavi .wrap2 .box h4 a:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_nav_arrow.svg) no-repeat center;
    width: 21px;
    height: 12px;
    left: 0;
    top: 50%;
    margin-top: -8px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #gNavi .wrap2 .box h4 a:hover:before {
    left: 5px;
  }
  #gNavi .wrap2 .box ul.main {
    padding-left: 40px;
    margin-bottom: 20px;
  }
  #gNavi .wrap2 .box ul.main > li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
    font-size: 16px;
  }
  #gNavi .wrap2 .box ul.main > li a {
    display: inline-block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #gNavi .wrap2 .box ul.main > li a:hover {
    opacity: 0.7;
  }
  #gNavi .wrap2 .box ul.main > li span.openBtn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/ico_plus.svg) no-repeat center;
    margin-left: 13px;
    position: relative;
    top: 4px;
    cursor: pointer;
  }
  #gNavi .wrap2 .box ul.main > li span.openBtn.open {
    background: url(../images/svg/ico_minus.svg) no-repeat center;
  }
  #gNavi .wrap2 .box ul.main > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
  }
  #gNavi .wrap2 .box ul.main > li.search:before {
    width: 15px;
    height: 16px;
    background: url(../images/svg/nav_marker01.svg) no-repeat center;
    margin-top: -9px;
  }
  #gNavi .wrap2 .box ul.main > li.book:before {
    width: 15px;
    height: 20px;
    background: url(../images/svg/nav_marker02.svg) no-repeat center;
    margin-top: -10px;
  }
  #gNavi .wrap2 .box ul.main > li.business:before {
    width: 15px;
    height: 20px;
    background: url(../images/svg/nav_marker03.svg) no-repeat center;
    top: 3px;
  }
  #gNavi .wrap2 .box ul.main > li.mail:before {
    width: 15px;
    height: 10px;
    background: url(../images/svg/nav_marker04.svg) no-repeat center;
    margin-top: -5px;
  }
  #gNavi .wrap2 .box ul.main > li .sub {
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0 20px;
    display: none;
  }
  #gNavi .wrap2 .box ul.main > li .sub ul li {
    padding-left: 30px;
    position: relative;
  }
  #gNavi .wrap2 .box ul.main > li .sub ul li:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 1px;
    background: #E21C24;
    left: 0;
    top: 50%;
  }
  #gNavi .wrap2 .box ul.main:last-of-type {
    margin-bottom: 0;
  }
  #gNavi .wrap2 .box ul.main2 {
    padding-left: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #gNavi .wrap2 .box ul.main2 li {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0;
    margin-right: 25px;
    position: relative;
  }
  #gNavi .wrap2 .box ul.main2 li a {
    display: inline-block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #gNavi .wrap2 .box ul.main2 li a:hover {
    opacity: 0.7;
  }
  #gNavi .wrap2 .box ul.main2 li:after {
    position: absolute;
    top: 0;
    content: '/';
    right: -15px;
  }
  #gNavi .wrap2 .box ul.main2 li:last-of-type {
    margin-right: 0;
  }
  #gNavi .wrap2 .box ul.main2 li:last-of-type:after {
    display: none;
  }
  #gNavi .wrap2 .box ul.main2:last-of-type {
    margin-bottom: 0;
  }
  #gNavi .wrap2 .box:last-of-type {
    border-bottom: none;
  }
  #gNavi .wrap2 .box:last-of-type {
    border-bottom: none;
  }
  #gNavi .wrap2 .box.bl {
    position: relative;
  }
  #gNavi .wrap2 .box.bl:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    background: #000;
    left: -1px;
    top: 0;
  }
  #gNavi .wrap2 .searchBox {
    padding: 30px 30px 30px 40px;
    width: 100%;
    position: relative;
  }
  #gNavi .wrap2 .searchBox form {
    display: block;
    width: 100%;
  }
  #gNavi .wrap2 .searchBox form input.gsc-input {
    border: 1px solid #000;
    font-size: 14px;
    font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
    padding: 5px 10px;
  }
  #gNavi .wrap2 .searchBox #gs_cb50 {
    display: none !important;
  }
  #gNavi .wrap2 .searchBox .gsc-search-box {
    width: 100%;
    max-width: 100%;
  }
  #gNavi .wrap2 .searchBox .gstl_50.gsc-input {
    width: 80%;
  }
  #gNavi .wrap2 .searchBox .gsc-input {
    padding-right: 0;
  }
  #gNavi .wrap2 .searchBox td.gsc-search-button {
    width: 20%;
  }
  #gNavi .wrap2 .searchBox td.gsc-search-button button {
    height: 33px;
    background: #000;
    border: 1px solid #000;
  }
  #gNavi .wrap2 .searchBox .gsc-search-button {
    margin-left: 0px;
  }
  #gNavi .wrap2 .searchBox:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    background: #000;
    left: -1px;
    top: 0;
  }
  #gNavi.open {
    opacity: 1;
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  #fv .wrap1 {
    width: 100%;
    height: 580px;
    overflow: hidden;
    position: relative;
  }
  #fv .wrap1 .bgWrap {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  #fv .wrap1 .bgWrap video {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #fv .wrap1 .bgWrap #mvlayer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: #B6272D;
    mix-blend-mode: multiply;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc0 {
    background: #B6272D;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc1 {
    background: #009F93;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc2 {
    background: #e68f89;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc3 {
    background: #65bfa3;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc4 {
    background: #7b2832;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc5 {
    background: #6b9dd4;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc6 {
    background: #F2E421;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc7 {
    background: #7e508f;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc8 {
    background: #8F8075;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc9 {
    background: #F1A63B;
  }
  #fv .wrap1 .bgWrap #mvlayer.sc10 {
    background: #e2ce79;
  }
  #fv .wrap1 .mv {
    width: 100%;
    height: 580px;
    overflow: hidden;
  }
  #fv .wrap1 .mv .slideBox {
    width: 100%;
    height: 580px;
    overflow: hidden;
  }
  #fv .wrap1 .mv .slideBox .box {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
  }
  #fv .wrap1 .mv .slideBox .img {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -moz-transition: cubic-bezier(0.1, 0.5, 0.46, 1.07) 1.7s;
    -o-transition: cubic-bezier(0.1, 0.5, 0.46, 1.07) 1.7s;
    -webkit-transition: cubic-bezier(0.1, 0.5, 0.46, 1.07) 1.7s;
    transition: cubic-bezier(0.1, 0.5, 0.46, 1.07) 1.7s;
    -moz-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }
  #fv .wrap1 .mv .slideBox .img img {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-right: -700px;
    width: 1400px;
    min-width: 1400px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox .img.right {
    opacity: 0;
    -moz-transform: translateX(300px);
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
  }
  #fv .wrap1 .mv .slideBox .img.left {
    opacity: 0;
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }
  #fv .wrap1 .mv .slideBox .img.left2 {
    opacity: 0;
    -moz-transform: translateX(-180px);
    -ms-transform: translateX(-180px);
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
  }
  #fv .wrap1 .mv .slideBox .img.right2 {
    opacity: 0;
    -moz-transform: translateX(180px);
    -ms-transform: translateX(180px);
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
  }
  #fv .wrap1 .mv .slideBox .txt1, #fv .wrap1 .mv .slideBox .txt2, #fv .wrap1 .mv .slideBox .txt3, #fv .wrap1 .mv .slideBox .txt4, #fv .wrap1 .mv .slideBox .txt5 {
    position: absolute;
    left: 40px;
    -moz-transition: cubic-bezier(0.72, 0.06, 0.63, 0.98) 1.2s;
    -o-transition: cubic-bezier(0.72, 0.06, 0.63, 0.98) 1.2s;
    -webkit-transition: cubic-bezier(0.72, 0.06, 0.63, 0.98) 1.2s;
    transition: cubic-bezier(0.72, 0.06, 0.63, 0.98) 1.2s;
    opacity: 0;
    -moz-transform: translateX(-200px) scale(1, 0);
    -ms-transform: translateX(-200px) scale(1, 0);
    -webkit-transform: translateX(-200px) scale(1, 0);
    transform: translateX(-200px) scale(1, 0);
  }
  #fv .wrap1 .mv .slideBox .txt1 {
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    z-index: 6;
    bottom: 320px;
  }
  #fv .wrap1 .mv .slideBox .txt4 {
    -moz-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
    z-index: 4;
    bottom: 165px;
  }
  #fv .wrap1 .mv .slideBox .txt5 {
    -moz-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
    z-index: 7;
    bottom: 80px;
  }
  #fv .wrap1 .mv .slideBox.slide01 .txt1 img {
    width: 640px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide05 .txt1 img {
    width: 730px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide06 .txt1 img {
    width: 520px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide09 .img img {
    margin-right: -745px;
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .img.right {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .img.left {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .img.left2 {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .img.right2 {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .txt1, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt2, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt3, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt4, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt5 {
    opacity: 1;
    -moz-transform: translateX(0px) scale(1, 1);
    -ms-transform: translateX(0px) scale(1, 1);
    -webkit-transform: translateX(0px) scale(1, 1);
    transform: translateX(0px) scale(1, 1);
  }
  #fv .wrap2 ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    height: 360px;
  }
  #fv .wrap2 ul li {
    width: 50%;
    height: 360px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.04em;
    padding-top: 60px;
  }
  #fv .wrap2 ul li h3 {
    font-size: 24px;
    font-weight: 900;
    position: relative;
    padding-top: 55px;
    margin-bottom: 20px;
  }
  #fv .wrap2 ul li h3:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
  }
  #fv .wrap2 ul li h3.book:before {
    background: url(../images/svg/ico_first.svg) no-repeat center;
    width: 40px;
    height: 30px;
    margin-left: -20px;
  }
  #fv .wrap2 ul li h3.business:before {
    background: url(../images/svg/ico_business.svg) no-repeat center;
    width: 40px;
    height: 30px;
    margin-left: -20px;
  }
  #fv .wrap2 ul li p {
    font-size: 16px;
    line-height: 1.64;
    margin-bottom: 30px;
  }
  #fv .wrap2 ul li .btn {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    padding: 20px 60px;
    position: relative;
  }
  #fv .wrap2 ul li .btn:after {
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -22px;
    content: '';
    width: 61px;
    height: 12px;
    background: url(../images/svg/ico_arrow_w.svg) no-repeat center;
  }
  #fv .wrap2 ul li .btn:hover:after {
    right: -32px;
  }
  #fv .wrap2 ul li.b1 {
    background: url(../images/bg_box01.jpg) no-repeat center;
    background-size: cover;
  }
  #fv .wrap2 ul li.b2 {
    background: url(../images/bg_box02.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #fv .wrap1 .mv .slideBox.slide01 .txt1 img {
    width: 450px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide02 .txt1 img {
    width: 550px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide03 .txt1 img {
    width: 620px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide05 .txt1 img {
    width: 480px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide08 .txt1 img {
    width: 440px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide09 .txt1 img {
    width: 440px;
    height: auto;
  }
  #fv .wrap1 .mv .slideBox.slide11 .txt1 img {
    width: 470px;
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  /* Edge */
  /* IE */
}
@media screen and (min-width: 769px) and (-ms-high-contrast: active), screen and (min-width: 769px) and (-ms-high-contrast: none) {
  #fv .wrap1 .bgWrap video {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: block;
    max-width: 100%;
    height: auto;
  }
  #fv .wrap1 .bgWrap #mvlayer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: #B6272D;
    opacity: 0.6;
  }
}
@media screen and (min-width: 769px) {
  #topSec01 {
    background: url(../images/bg_top01.jpg) repeat-x center top;
    background-size: auto 780px;
    padding-top: 120px;
    margin-bottom: 220px;
    overflow: hidden;
  }
  #topSec01 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #topSec01 .inner .wrap1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 120px;
  }
  #topSec01 .inner .wrap1 .about {
    position: relative;
    width: 520px;
    min-width: 520px;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.6);
  }
  #topSec01 .inner .wrap1 .about a {
    display: block;
    padding: 20px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #topSec01 .inner .wrap1 .about a:hover {
    opacity: 0.7;
  }
  #topSec01 .inner .wrap1 .about .videoWrap {
    margin-bottom: 10px;
    width: 100%;
    height: 300px;
  }
  #topSec01 .inner .wrap1 .about .videoWrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #topSec01 .inner .wrap1 .about h2 {
    font-size: 18px;
    letter-spacing: 0.04em;
    font-weight: 900;
    position: relative;
    padding-left: 62px;
  }
  #topSec01 .inner .wrap1 .about h2:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_logo.svg) no-repeat center;
    width: 50px;
    height: 40px;
    left: 0;
    top: 50%;
    margin-top: -20px;
  }
  #topSec01 .inner .wrap1 .about h2:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 20px;
    top: 50%;
    margin-top: -10px;
  }
  #topSec01 .inner .wrap1 .enterprise {
    width: 460px;
    min-width: 460px;
    padding-top: 120px;
    position: relative;
  }
  #topSec01 .inner .wrap1 .enterprise h2 {
    position: absolute;
    z-index: 1;
    font-size: 80px;
    letter-spacing: 0.04em;
    top: 54px;
    left: 53%;
    line-height: 1;
  }
  #topSec01 .inner .wrap1 .enterprise ul {
    position: relative;
    z-index: 3;
  }
  #topSec01 .inner .wrap1 .enterprise ul li a {
    display: block;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 15px 60px;
    background: #fff;
    position: relative;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #fff;
    z-index: 1;
  }
  #topSec01 .inner .wrap1 .enterprise ul li a:after {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 40px;
    top: 50%;
    margin-top: -10px;
  }
  #topSec01 .inner .wrap1 .enterprise ul li a:hover {
    z-index: 5;
    border: 1px solid #000;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  #topSec01 .inner .wrap1 .enterprise ul li a:hover:after {
    right: 20px;
  }
  #topSec01 .inner .wrap2 {
    position: relative;
  }
  #topSec01 .inner .wrap2 h2 {
    position: absolute;
    z-index: 1;
    line-height: 1;
    letter-spacing: 0.04em;
    font-size: 140px;
    width: 150%;
    top: -100px;
    left: 150px;
    color: #fff;
  }
  #topSec01 .inner .wrap2 ul {
    position: relative;
    z-index: 5;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #topSec01 .inner .wrap2 ul li {
    width: 50%;
  }
  #topSec01 .inner .wrap2 ul li a {
    display: block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #topSec01 .inner .wrap2 ul li a:hover {
    opacity: 0.8;
  }
  #topSec01 .inner .wrap2 ul li a:hover h3:after {
    right: 20px;
  }
  #topSec01 .inner .wrap2 ul li .imgClm {
    margin-bottom: 20px;
  }
  #topSec01 .inner .wrap2 ul li h3 {
    font-size: 20px;
    letter-spacing: 0.04em;
    font-weight: 900;
    padding-left: 70px;
    position: relative;
  }
  #topSec01 .inner .wrap2 ul li h3:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 40px;
    left: 20px;
    top: 50%;
    margin-top: -20px;
  }
  #topSec01 .inner .wrap2 ul li h3:after {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 40px;
    top: 50%;
    margin-top: -10px;
  }
  #topSec01 .inner .wrap2 ul li.interview h3:before {
    background: url(../images/svg/ico_interview.svg) no-repeat center;
  }
  #topSec01 .inner .wrap2 ul li.workers {
    padding-top: 40px;
  }
  #topSec01 .inner .wrap2 ul li.workers h3:before {
    background: url(../images/svg/ico_workers.svg) no-repeat center;
  }

  #pickupSec {
    position: relative;
    margin-bottom: 120px;
  }
  #pickupSec:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    height: 400px;
    right: calc(50% - 100px);
    right: -webkit-calc(50% - 100px);
    background: #F0F5FA;
  }
  #pickupSec .inner {
    width: 1000px;
    margin: 0 auto;
    padding-left: 40px;
  }
  #pickupSec .inner h2 {
    position: absolute;
    z-index: -1;
    font-size: 140px;
    letter-spacing: 0.04em;
    top: -120px;
    left: 40px;
    line-height: 1;
    color: #F0F5FA;
  }
  #pickupSec .inner .slideBox .swiper-container {
    width: 100%;
    padding-top: 40px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .imgClm {
    width: 600px;
    min-width: 600px;
    height: 400px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .imgClm a {
    display: block;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .imgClm a img {
    max-width: 90%;
    max-height: 100%;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm {
    padding-left: 40px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm h3 {
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .post-categories {
    margin-bottom: 15px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .post-categories li a {
    text-decoration: underline;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 900;
    color: #808080;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .post-categories li a:hover {
    text-decoration: none;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .tags {
    margin-bottom: 20px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .tags a {
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
    text-decoration: underline;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .tags a:hover {
    text-decoration: none;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .time {
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
  }
  #pickupSec .inner .slideBox .swiper-container .control {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    background: #F0F5FA;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    margin: 0;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-prev:after {
    display: none;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    margin: 0;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-next:after {
    display: none;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-pagination {
    position: static;
    text-align: left;
    width: 100%;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
  }

  #whatsNew {
    overflow: hidden;
    margin-bottom: 60px;
  }
  #whatsNew .inner .head {
    width: 1000px;
    margin: 0 auto 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  #whatsNew .inner .head h2 {
    font-size: 50px;
    letter-spacing: 0.04em;
    margin-right: auto;
  }
  #whatsNew .inner .head h2 span {
    display: inline-block;
    position: relative;
    padding: 0 5px;
  }
  #whatsNew .inner .head h2 span:before {
    position: absolute;
    content: '';
    width: 50vw;
    height: 1px;
    background: #000;
    right: 100%;
    top: 50%;
  }
  #whatsNew .inner .head .btnBox .btn {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.04em;
    border: 1px solid #000;
    width: 150px;
    height: 40px;
    line-height: 38px;
    padding-left: 24px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #whatsNew .inner .head .btnBox .btn:hover {
    opacity: 0.7;
  }
  #whatsNew .inner .head .btnBox .btn:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -4px;
    right: 15px;
  }
  #whatsNew .inner ul.grid {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  #whatsNew .inner ul.grid > li {
    position: absolute;
    width: 24.9%;
    margin: 0 0px 50px;
    padding: 0 20px;
  }
  #whatsNew .inner ul.grid > li .imgClm {
    margin-bottom: 20px;
  }
  #whatsNew .inner ul.grid > li .imgClm a {
    display: block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #whatsNew .inner ul.grid > li .imgClm a:hover {
    opacity: 0.7;
  }
  #whatsNew .inner ul.grid > li .imgClm img {
    width: 100%;
    height: auto;
  }
  #whatsNew .inner ul.grid > li .txtClm h3 {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.625;
    margin-bottom: 10px;
  }
  #whatsNew .inner ul.grid > li .txtClm h3 a {
    display: block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #whatsNew .inner ul.grid > li .txtClm h3 a:hover {
    opacity: 0.7;
  }
  #whatsNew .inner ul.grid > li .txtClm .post-categories {
    margin-bottom: 10px;
  }
  #whatsNew .inner ul.grid > li .txtClm .post-categories li a {
    text-decoration: underline;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 900;
    color: #808080;
  }
  #whatsNew .inner ul.grid > li .txtClm .post-categories li a:hover {
    text-decoration: none;
  }
  #whatsNew .inner ul.grid > li .txtClm .tags {
    margin-bottom: 10px;
  }
  #whatsNew .inner ul.grid > li .txtClm .tags a {
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
    text-decoration: underline;
  }
  #whatsNew .inner ul.grid > li .txtClm .tags a:hover {
    text-decoration: none;
  }
  #whatsNew .inner ul.grid > li .txtClm .time {
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
  }

  #topBooks {
    margin-bottom: 70px;
  }
  #topBooks .inner .head {
    position: relative;
    width: 1000px;
    margin: 0 auto 30px;
  }
  #topBooks .inner .head h2 {
    font-size: 28px;
    letter-spacing: 0.04em;
    font-weight: 900;
    text-align: center;
  }
  #topBooks .inner .head h2 span {
    position: relative;
    display: inline-block;
    padding-left: 50px;
  }
  #topBooks .inner .head h2 span:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_newbook.svg) no-repeat center;
    width: 30px;
    height: 40px;
    left: 0;
    top: 50%;
    margin-top: -20px;
  }
  #topBooks .inner .sideBox .newbookslider {
    padding: 5px 0;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide {
    width: 240px;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide a {
    display: block;
    padding: 20px;
    background: #fff;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide a:hover {
    position: relative;
    z-index: 5;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide .imgClm {
    text-align: center;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide .txtClm h3 {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.66;
    margin-bottom: 10px;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide .txtClm .editor {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.66;
    margin-bottom: 10px;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide .txtClm .magazine span {
    font-size: 12px;
    display: inline-block;
    padding: 3px 5px;
    background: #F0F5FA;
  }

  #footer {
    border-top: 1px solid #000;
    padding-top: 60px;
  }
  #footer .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #footer .inner .btnBox {
    text-align: center;
    margin-bottom: 40px;
  }
  #footer .inner .btnBox a.btn {
    background: #fff;
    display: block;
    border: 1px solid #000;
    position: relative;
    height: 100px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #footer .inner .btnBox a.btn:hover {
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: none;
  }
  #footer .inner .btnBox a.btn span.en {
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    font-size: 80px;
    letter-spacing: 0.04em;
    line-height: 1;
    padding-top: 5px;
    color: #F0F5FA;
  }
  #footer .inner .btnBox a.btn span.ja {
    position: relative;
    z-index: 3;
    font-size: 18px;
    font-weight: 900;
    display: inline-block;
    padding-left: 50px;
    line-height: 98px;
  }
  #footer .inner .btnBox a.btn span.ja:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    content: '';
    background: url(../images/svg/nav_marker04.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 20px;
  }
  #footer .inner .fnavi1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  #footer .inner .fnavi1 ul {
    width: 295px;
  }
  #footer .inner .fnavi1 ul li a {
    display: block;
    font-size: 16px;
    letter-spacing: 0.04em;
    font-weight: 900;
    border-bottom: 1px solid #000;
    padding: 15px 0px 15px 40px;
    background: url(../images/svg/ico_nav_arrow.svg) no-repeat left center;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #footer .inner .fnavi1 ul li a:hover {
    background: url(../images/svg/ico_nav_arrow.svg) no-repeat 5px center;
  }
  #footer .inner .fnavi1 ul li a.link {
    position: relative;
  }
  #footer .inner .fnavi1 ul li a.link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 165px;
    top: 50%;
    margin-top: -5px;
  }
  #footer .inner .bnrBox {
    margin-bottom: 40px;
  }
  #footer .inner .bnrBox ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 30px;
  }
  #footer .inner .bnrBox ul li {
    width: 100px;
    margin: 0 10px 20px;
  }
  #footer .inner .bnrBox ul li a {
    display: block;
    border: 1px solid #F0F5FA;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #footer .inner .bnrBox ul li a:hover {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  #footer .inner2 {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  #footer .inner2 .fnavi2 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #footer .inner2 .fnavi2 li {
    margin: 0 15px;
    position: relative;
    font-size: 12px;
  }
  #footer .inner2 .fnavi2 li a {
    display: inline-block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #footer .inner2 .fnavi2 li a:hover {
    opacity: 0.7;
  }
  #footer .inner2 .fnavi2 li:after {
    position: absolute;
    content: '|';
    right: -15px;
  }
  #footer .inner2 .fnavi2 li:last-of-type:after {
    display: none;
  }
  #footer .inner3 {
    background: #fff;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px 40px;
    position: relative;
  }
  #footer .inner3 .logo {
    margin-right: auto;
  }
  #footer .inner3 .sns {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 70px;
  }
  #footer .inner3 .sns h4 {
    margin-right: 20px;
    position: relative;
    padding-right: 40px;
    letter-spacing: 0.04em;
  }
  #footer .inner3 .sns h4:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 1px;
    background: #000;
    right: 0;
    top: 50%;
  }
  #footer .inner3 .copy {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  #footer .inner3 #gotop {
    position: absolute;
    right: 40px;
    top: -60px;
  }

  #overlay {
    position: fixed;
    z-index: 777;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
  #overlay.open {
    opacity: 1;
    visibility: visible;
  }

  #mvSub {
    margin-bottom: 70px;
  }
  #mvSub .inner .imgClm {
    width: 100%;
    height: 240px;
  }
  #mvSub .inner .imgClm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #mvSub .inner .imgClm2 {
    width: 100%;
    height: 240px;
    padding-right: 24%;
  }
  #mvSub .inner .imgClm2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #mvSub .inner .breadcrumbs {
    padding: 10px 20px;
    text-align: right;
    font-size: 12px;
  }
  #mvSub .inner .txtClm {
    position: relative;
    text-align: center;
    width: 1000px;
    margin: 0 auto;
  }
  #mvSub .inner .txtClm span {
    pointer-events: none;
    position: absolute;
    top: -100px;
    width: 100%;
    z-index: 5;
    display: block;
    font-size: 80px;
    line-height: 1;
    color: #fff;
  }
  #mvSub .inner .txtClm h1, #mvSub .inner .txtClm h2 {
    font-size: 40px;
    font-weight: 900;
  }
  #mvSub .inner .txtClm .txt {
    font-size: 16px;
    line-height: 1.625;
    width: 1000px;
    margin: 30px auto 0;
  }
  #mvSub .inner .txtClm.business span {
    text-align: left;
  }
  #mvSub.mb20 {
    margin-bottom: 20px;
  }
  #mvSub.mb0 {
    margin-bottom: 0px;
  }
  #mvSub.detail .inner .txtClm span {
    padding-left: 90px;
  }
  #mvSub.business {
    margin-bottom: 50px;
  }
  #mvSub.interview {
    margin-bottom: 100px;
  }

  #breadCrumb {
    margin-bottom: 10px;
  }
  #breadCrumb .inner .breadcrumbs {
    padding: 10px 20px;
    text-align: right;
    font-size: 12px;
  }
  #breadCrumb.mb60 {
    margin-bottom: 60px;
  }

  div.bnrSec {
    margin-bottom: 80px;
  }
  div.bnrSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  div.bnrSec .inner a {
    display: inline-block;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  div.bnrSec .inner a:hover {
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: none;
  }

  #booksSec {
    margin-bottom: 110px;
  }
  #booksSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #booksSec .inner .box {
    background: #F0F5FA;
    margin-bottom: 40px;
    padding: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #booksSec .inner .box .imgClm {
    width: 320px;
    min-width: 320px;
    margin-right: auto;
  }
  #booksSec .inner .box .txtClm {
    width: 560px;
  }
  #booksSec .inner .box .txtClm .head {
    padding: 40px 0;
    border-bottom: 2px solid #fff;
    position: relative;
    margin-bottom: 30px;
  }
  #booksSec .inner .box .txtClm .head span.en {
    position: absolute;
    right: 20px;
    bottom: -15px;
    font-size: 120px;
    line-height: 1;
    color: #fff;
  }
  #booksSec .inner .box .txtClm .head h2 {
    font-size: 24px;
    font-weight: 900;
    position: relative;
    padding-left: 30px;
  }
  #booksSec .inner .box .txtClm .head h2:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 20px;
    background: url(../images/svg/hx_books.svg) no-repeat center;
    left: 0;
    top: 50%;
    margin-top: -10px;
  }
  #booksSec .inner .box .txtClm .txt {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 30px;
  }
  #booksSec .inner .box .txtClm .btnBox {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #booksSec .inner .box .txtClm .btnBox li {
    margin-right: 10px;
  }
  #booksSec .inner .box .txtClm .btnBox li .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    width: 130px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #booksSec .inner .box .txtClm .btnBox li .btn:hover {
    opacity: 0.7;
  }
  #booksSec .inner .box .txtClm .btnBox li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #booksSec .inner .box .txtClm .btnBox li .link {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    width: 160px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #booksSec .inner .box .txtClm .btnBox li .link:hover {
    opacity: 0.7;
  }
  #booksSec .inner .box .txtClm .btnBox li .link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #booksSec .inner .box .txtClm h3.ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #booksSec .inner .box .txtClm .pdfList {
    overflow: hidden;
    width: 400px;
  }
  #booksSec .inner .box .txtClm .pdfList li {
    margin: 0 10px 10px 0;
    float: left;
  }
  #booksSec .inner .box .txtClm .pdfList li .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 14px;
    width: 90px;
    height: 30px;
    line-height: 28px;
    padding-left: 17px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #booksSec .inner .box .txtClm .pdfList li .btn:hover {
    opacity: 0.7;
  }
  #booksSec .inner .box .txtClm .pdfList li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }

  section.booksSec {
    margin-bottom: 70px;
    position: relative;
  }
  section.booksSec:before {
    position: absolute;
    content: '';
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: #F0F5FA;
  }
  section.booksSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  section.booksSec .inner .wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    padding-left: 90px;
  }
  section.booksSec .inner .wrap .imgClm {
    width: 320px;
    min-width: 320px;
    margin-right: 90px;
    padding-top: 20px;
  }
  section.booksSec .inner .wrap .imgClm img {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  section.booksSec .inner .wrap .txtClm {
    padding-bottom: 60px;
  }
  section.booksSec .inner .wrap .txtClm .head {
    margin-bottom: 30px;
  }
  section.booksSec .inner .wrap .txtClm .head span.ja {
    display: block;
    font-size: 20px;
    font-weight: 900;
  }
  section.booksSec .inner .wrap .txtClm .head h1 {
    font-size: 40px;
    font-weight: 900;
  }
  section.booksSec .inner .wrap .txtClm .btnBox {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 30px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li {
    margin-right: 10px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn:hover {
    opacity: 0.7;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn2 {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    width: 160px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn2:hover {
    opacity: 0.7;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn2:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.booksSec .inner .wrap .txtClm .txt {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  section.booksSec .inner .wrap .txtClm .info {
    padding-top: 40px;
  }
  section.booksSec .inner .wrap .txtClm .info .logo {
    margin-bottom: 35px;
  }
  section.booksSec .inner .wrap .txtClm .info a {
    text-decoration: underline;
  }
  section.booksSec .inner .wrap .txtClm .info a:hover {
    text-decoration: none;
  }
  section.booksSec.bonolon:before {
    height: 420px;
  }
  section.booksSec.mangahot:before {
    height: 280px;
  }

  section.booksSec2 {
    margin-bottom: 120px;
  }
  section.booksSec2 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  section.booksSec2 .inner .box {
    margin-bottom: 70px;
  }
  section.booksSec2 .inner .box h2 {
    font-size: 28px;
    font-weight: 900;
    padding-left: 64px;
    overflow: hidden;
    margin-bottom: 40px;
  }
  section.booksSec2 .inner .box h2 span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
  }
  section.booksSec2 .inner .box h2 span:before, section.booksSec2 .inner .box h2 span:after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -4px;
    height: 8px;
  }
  section.booksSec2 .inner .box h2 span:before {
    width: 64px;
    background: url(../images/svg/hx_line_l.svg) no-repeat right center;
    right: 100%;
  }
  section.booksSec2 .inner .box h2 span:after {
    width: 820px;
    background: url(../images/svg/hx_line_r.svg) no-repeat left center;
    left: 100%;
  }
  section.booksSec2 .inner .box .shop {
    padding-left: 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .box .shop li {
    margin-right: 20px;
    width: 120px;
  }
  section.booksSec2 .inner .box .shop li a {
    border: 1px solid #F0F5FA;
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.booksSec2 .inner .box .shop li a:hover {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.booksSec2 .inner .box .pickup {
    padding-left: 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .box .pickup li {
    margin-right: 20px;
    width: 140px;
  }
  section.booksSec2 .inner .box .pickup li a {
    border: 1px solid #F0F5FA;
    display: block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  section.booksSec2 .inner .box .pickup li a:hover {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.booksSec2 .inner .box .app {
    padding-left: 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .box .app li {
    margin-right: 20px;
  }
  section.booksSec2 .inner .box .app li a {
    display: inline-block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.booksSec2 .inner .box .app li a:hover {
    opacity: 0.7;
  }
  section.booksSec2 .inner .box .caution {
    padding-left: 90px;
    font-size: 12px;
  }
  section.booksSec2 .inner .wrap {
    padding-left: 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 60px;
  }
  section.booksSec2 .inner .wrap .imgClm {
    width: 120px;
    min-width: 120px;
    margin-right: 40px;
  }
  section.booksSec2 .inner .wrap .txtClm {
    width: 660px;
  }
  section.booksSec2 .inner .wrap .txtClm h3 {
    font-size: 24px;
    font-weight: 900;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  section.booksSec2 .inner .wrap .txtClm .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .wrap .txtClm .txt.mb0 {
    margin-bottom: 10px;
  }
  section.booksSec2 .inner .wrap .txtClm .editor {
    font-size: 16px;
    font-weight: 900;
  }
  section.booksSec2 .inner .wrap .txtClm .editor span {
    display: block;
    font-size: 12px;
  }
  section.booksSec2 .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  section.booksSec2 .inner > .btnBox .backbtn {
    display: inline-block;
    width: 200px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 30px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.booksSec2 .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.booksSec2 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #businessSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #businessSec .inner ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #businessSec .inner ul li {
    width: 50%;
    margin-bottom: 40px;
  }
  #businessSec .inner ul li a {
    display: block;
    background: #fff;
    padding: 40px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #businessSec .inner ul li a:hover {
    position: relative;
    z-index: 5;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
  }
  #businessSec .inner ul li a .imgClm {
    margin-bottom: 20px;
  }
  #businessSec .inner ul li a h2 {
    font-size: 20px;
    font-weight: 900;
    padding-left: 30px;
    position: relative;
    line-height: 1.3;
  }
  #businessSec .inner ul li a h2:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 20px;
    left: 0;
    top: 50%;
    margin-top: -10px;
    background: url(../images/svg/nav_marker03.svg) no-repeat center;
  }
  #businessSec .inner ul li a h2:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 0;
    top: 50%;
    margin-top: -10px;
  }

  section.businessSec1 {
    margin-bottom: 100px;
    position: relative;
    padding-bottom: 30px;
  }
  section.businessSec1:before {
    position: absolute;
    z-index: -1;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 270px;
    background: #F0F5FA;
  }
  section.businessSec1 .inner {
    width: 1000px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  section.businessSec1 .inner .txtClm {
    width: 510px;
    min-width: 510px;
    padding-right: 40px;
  }
  section.businessSec1 .inner .txtClm .head {
    margin-bottom: 20px;
  }
  section.businessSec1 .inner .txtClm .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  section.businessSec1 .inner .txtClm .head h1 {
    font-size: 40px;
  }
  section.businessSec1 .inner .txtClm .btnBox {
    margin-top: 30px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  section.businessSec1 .inner .txtClm .btnBox li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn {
    background: #fff;
    display: inline-block;
    font-size: 16px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn:hover {
    opacity: 0.7;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn2 {
    background: #fff;
    display: inline-block;
    font-size: 16px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 45px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn2:hover {
    opacity: 0.7;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn2:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn3 {
    background: #fff;
    display: inline-block;
    font-size: 16px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 45px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn3:hover {
    opacity: 0.7;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn3:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec1 .inner .slideClm {
    width: 490px;
    min-width: 490px;
    padding-top: 20px;
  }
  section.businessSec1 .inner .slideClm .businessslider {
    padding-bottom: 25px;
  }
  section.businessSec1 .inner .slideClm .businessslider .swiper-pagination {
    bottom: 0;
    text-align: right;
  }
  section.businessSec1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
    margin: 0 0 0 8px;
  }
  section.businessSec1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
  }

  section.businessSec2 {
    margin-bottom: 120px;
  }
  section.businessSec2 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  section.businessSec2 .inner .box {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #000;
  }
  section.businessSec2 .inner .box h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
  }
  section.businessSec2 .inner .box .wrap {
    padding: 0 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 50px;
  }
  section.businessSec2 .inner .box .wrap .imgClm {
    width: 120px;
    min-width: 120px;
    margin-right: 60px;
  }
  section.businessSec2 .inner .box .wrap .imgClm img {
    border: 1px solid #000;
  }
  section.businessSec2 .inner .box .wrap .txtClm .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .editor {
    font-size: 16px;
    font-weight: 900;
  }
  section.businessSec2 .inner .box .wrap .txtClm .editor span {
    display: block;
    font-size: 12px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .prof {
    margin-top: 20px;
    background: #F0F5FA;
    padding: 20px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .prof h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .prof .txt {
    font-size: 12px;
    line-height: 1.66;
    margin: 0;
  }
  section.businessSec2 .inner .box ul.link {
    padding-left: 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box ul.link li {
    margin-right: 20px;
    width: 120px;
  }
  section.businessSec2 .inner .box ul.link li a {
    border: 1px solid #F0F5FA;
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec2 .inner .box ul.link li a:hover {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.businessSec2 .inner .box.bn {
    border: none;
    padding: 0;
  }
  section.businessSec2 .inner .box .content {
    padding: 0 90px 20px;
  }
  section.businessSec2 .inner .box .content .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  section.businessSec2 .inner .box .content .box2 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 60px;
  }
  section.businessSec2 .inner .box .content .box2 .imgClm {
    width: 120px;
    min-width: 120px;
    margin-right: 40px;
  }
  section.businessSec2 .inner .box .content .box2 .imgClm img {
    border: 2px solid #000;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm {
    width: 660px;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm h3 {
    font-size: 24px;
    font-weight: 900;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.625;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm a.btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    padding-right: 40px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm a.btn:hover {
    opacity: 0.7;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm a.btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec2 .inner .box .content .box2:last-of-type {
    margin-bottom: 0;
  }
  section.businessSec2 .inner .box .projectlist {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    padding-left: 90px;
    padding-bottom: 20px;
  }
  section.businessSec2 .inner .box .projectlist li {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box .projectlist li a {
    display: block;
    background: #fff;
    padding: 20px;
    border: 1px solid #F0F5FA;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec2 .inner .box .projectlist li a .imgClm {
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box .projectlist li a h3 {
    font-size: 20px;
    font-weight: 900;
    position: relative;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  section.businessSec2 .inner .box .projectlist li a h3:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 0;
    top: 50%;
    margin-top: -10px;
  }
  section.businessSec2 .inner .box .projectlist li a h3.link:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_link.svg) no-repeat center;
    width: 12px;
    height: 12px;
    right: 0;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec2 .inner .box .projectlist li a:hover {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.businessSec2 .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  section.businessSec2 .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.businessSec2 .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.businessSec2 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.mangaResearchAi1 {
    margin-bottom: 70px;
    padding-bottom: 60px;
    position: relative;
  }
  section.mangaResearchAi1:before {
    position: absolute;
    z-index: -1;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    top: 230px;
    background: #F0F5FA;
  }
  section.mangaResearchAi1 .inner {
    width: 1000px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  section.mangaResearchAi1 .inner .slideClm {
    width: 480px;
    min-width: 480px;
    margin-right: 60px;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider {
    padding-bottom: 25px;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider .swiper-pagination {
    bottom: 0;
    text-align: left;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
    margin: 0 8px 0 0;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
  }
  section.mangaResearchAi1 .inner .txtClm {
    width: 460px;
    padding-top: 100px;
  }
  section.mangaResearchAi1 .inner .txtClm .head {
    font-weight: 900;
    margin-bottom: 30px;
  }
  section.mangaResearchAi1 .inner .txtClm .head span.ja {
    display: block;
    font-size: 20px;
  }
  section.mangaResearchAi1 .inner .txtClm .head p {
    font-size: 30px;
    margin-bottom: 10px;
  }
  section.mangaResearchAi1 .inner .txtClm .head h1 {
    font-size: 40px;
  }
  section.mangaResearchAi1 .inner .txtClm p.txt {
    font-size: 16px;
    line-height: 1.625;
  }
  section.mangaResearchAi1 .inner .txtClm .sns {
    margin-top: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  section.mangaResearchAi1 .inner .txtClm .sns h4 {
    margin-right: 20px;
    position: relative;
    padding-right: 50px;
    letter-spacing: 0.04em;
    font-size: 12px;
  }
  section.mangaResearchAi1 .inner .txtClm .sns h4:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 1px;
    background: #000;
    right: 0;
    top: 50%;
  }
  section.mangaResearchAi1 .inner .txtClm .sns ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  section.mangaResearchAi1 .inner .txtClm .sns ul li {
    margin-right: 20px;
  }

  section.mangaResearchAi2 {
    margin-bottom: 110px;
  }
  section.mangaResearchAi2 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  section.mangaResearchAi2 .inner .box {
    margin-bottom: 110px;
    padding: 0 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  section.mangaResearchAi2 .inner .box .headClm {
    width: 260px;
    margin-right: auto;
  }
  section.mangaResearchAi2 .inner .box .headClm h2 {
    font-size: 24px;
    line-height: 1.58;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 35px;
  }
  section.mangaResearchAi2 .inner .box .headClm h2:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #000;
  }
  section.mangaResearchAi2 .inner .box .headClm .txt {
    font-size: 12px;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .headClm .small {
    font-size: 12px;
    line-height: 1.58;
  }
  section.mangaResearchAi2 .inner .box .headClm .small a {
    text-decoration: underline;
  }
  section.mangaResearchAi2 .inner .box .headClm .small a:hover {
    text-decoration: none;
  }
  section.mangaResearchAi2 .inner .box .headClm hr {
    margin: 40px 0;
    height: 0;
    border-top: 1px solid #000;
  }
  section.mangaResearchAi2 .inner .box .headClm .img {
    margin-bottom: 25px;
  }
  section.mangaResearchAi2 .inner .box .headClm .img img {
    width: 100%;
    height: auto;
  }
  section.mangaResearchAi2 .inner .box .headClm .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    width: 160px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.mangaResearchAi2 .inner .box .headClm .btn:hover {
    opacity: 0.7;
  }
  section.mangaResearchAi2 .inner .box .headClm .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.mangaResearchAi2 .inner .box .mainClm {
    width: 500px;
  }
  section.mangaResearchAi2 .inner .box .mainClm p.txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 40px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .img {
    margin-bottom: 40px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .img img {
    width: 100%;
    height: auto;
  }
  section.mangaResearchAi2 .inner .box .mainClm .videoBox {
    margin-bottom: 40px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .videoBox a {
    display: block;
    position: relative;
  }
  section.mangaResearchAi2 .inner .box .mainClm .videoBox a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_play.svg) no-repeat center;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 {
    background: #F0F5FA;
    padding: 25px 30px;
    margin-bottom: 40px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 p.txt2 {
    font-size: 16px;
    line-height: 1.625;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 hr {
    margin: 30px 0;
    border-top: 1px solid #000;
    height: 0;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 {
    border-bottom: 1px solid #000;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .img {
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .data {
    font-size: 16px;
    line-height: 1.625;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 hr {
    margin: 40px 0;
    height: 0;
    border-top: 1px solid #000;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  section.mangaResearchAi2 .inner .box .mainClm a {
    text-decoration: underline;
  }
  section.mangaResearchAi2 .inner .box .mainClm a:hover {
    text-decoration: none;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox li {
    width: 120px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox li a {
    display: block;
    border: 1px solid #F0F5FA;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox li a:hover {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.mangaResearchAi2 .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  section.mangaResearchAi2 .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.mangaResearchAi2 .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.mangaResearchAi2 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.mediamixSec {
    margin-bottom: 120px;
  }
  section.mediamixSec .inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  section.mediamixSec .inner .grid {
    position: relative;
    margin-bottom: 100px;
  }
  section.mediamixSec .inner .grid li {
    width: 24.9%;
    position: absolute;
    margin: 0 0px 40px;
    padding: 0 20px;
  }
  section.mediamixSec .inner .grid li .imgClm {
    margin-bottom: 15px;
  }
  section.mediamixSec .inner .grid li .imgClm a {
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.mediamixSec .inner .grid li .imgClm a:hover {
    opacity: 0.7;
  }
  section.mediamixSec .inner .grid li h3 {
    font-size: 16px;
    line-height: 1.625;
    font-weight: 400;
    margin-bottom: 20px;
  }
  section.mediamixSec .inner .grid li .meta .time {
    display: block;
    font-size: 16px;
  }
  section.mediamixSec .inner .grid li .meta a {
    display: inline-block;
    border-bottom: 1px solid #000;
    margin-top: 10px;
  }
  section.mediamixSec .inner .grid li .meta a:hover {
    border-bottom: none;
  }
  section.mediamixSec .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  section.mediamixSec .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.mediamixSec .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.mediamixSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.collaborationSec {
    margin-bottom: 120px;
  }
  section.collaborationSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  section.collaborationSec .inner h2 {
    font-size: 24px;
    font-weight: 900;
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
    padding-bottom: 10px;
  }
  section.collaborationSec .inner .grid1, section.collaborationSec .inner .grid2, section.collaborationSec .inner .grid3, section.collaborationSec .inner .grid4, section.collaborationSec .inner .grid5 {
    position: relative;
    margin-bottom: 100px;
  }
  section.collaborationSec .inner .grid1 li, section.collaborationSec .inner .grid2 li, section.collaborationSec .inner .grid3 li, section.collaborationSec .inner .grid4 li, section.collaborationSec .inner .grid5 li {
    width: 460px;
    position: absolute;
    margin: 0 20px 30px;
  }
  section.collaborationSec .inner .grid1 li a, section.collaborationSec .inner .grid2 li a, section.collaborationSec .inner .grid3 li a, section.collaborationSec .inner .grid4 li a, section.collaborationSec .inner .grid5 li a {
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.collaborationSec .inner .grid1 li a:hover, section.collaborationSec .inner .grid2 li a:hover, section.collaborationSec .inner .grid3 li a:hover, section.collaborationSec .inner .grid4 li a:hover, section.collaborationSec .inner .grid5 li a:hover {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.collaborationSec .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  section.collaborationSec .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.collaborationSec .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.collaborationSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.realplacesSec {
    margin-bottom: 110px;
  }
  section.realplacesSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  section.realplacesSec .inner .box {
    margin-bottom: 110px;
    padding: 0 90px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  section.realplacesSec .inner .box .headClm {
    width: 260px;
    margin-right: auto;
  }
  section.realplacesSec .inner .box .headClm h2 {
    font-size: 24px;
    line-height: 1.58;
    position: relative;
    margin-bottom: 40px;
  }
  section.realplacesSec .inner .box .headClm .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .headClm .img {
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .headClm .img img {
    width: 100%;
    height: auto;
  }
  section.realplacesSec .inner .box .headClm a.btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    width: 160px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.realplacesSec .inner .box .headClm a.btn:hover {
    opacity: 0.7;
  }
  section.realplacesSec .inner .box .headClm a.btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.realplacesSec .inner .box .mainClm ul li {
    margin-bottom: 10px;
  }
  section.realplacesSec .inner .box .mainClm .linkBox {
    width: 500px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  section.realplacesSec .inner .box .mainClm .linkBox li {
    width: 120px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .mainClm .linkBox li a {
    display: block;
    border: 1px solid #F0F5FA;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.realplacesSec .inner .box .mainClm .linkBox li a:hover {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.realplacesSec .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  section.realplacesSec .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.realplacesSec .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.realplacesSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  div.videoSec {
    margin-bottom: 70px;
  }
  div.videoSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  div.videoSec .inner .videoBox {
    width: 820px;
    height: 410px;
    margin: 0 auto;
  }
  div.videoSec .inner .videoBox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  #conceptSec {
    margin-bottom: 50px;
  }
  #conceptSec .inner {
    width: 820px;
    margin: 0 auto;
  }
  #conceptSec .inner .head {
    margin-bottom: 60px;
  }
  #conceptSec .inner .head span.en {
    font-size: 30px;
    display: block;
    margin-bottom: 15px;
  }
  #conceptSec .inner .head h2 {
    position: relative;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.33;
  }
  #conceptSec .inner .content .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  #conceptSec .inner .content .big {
    font-size: 16px;
    line-height: 1.625;
    font-weight: 900;
  }

  div.bnrSec2 {
    margin-bottom: 120px;
  }
  div.bnrSec2 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  div.bnrSec2 .inner .bnr1 {
    margin-bottom: 40px;
  }
  div.bnrSec2 .inner .bnr1 a {
    display: block;
    position: relative;
    color: #fff;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm h3 {
    font-size: 20px;
    font-weight: 900;
    position: relative;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm h3 span {
    font-size: 18px;
    font-weight: 400;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm p {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.625;
  }
  div.bnrSec2 .inner .bnr1 a:hover .txtClm {
    background: rgba(0, 0, 0, 0.8);
  }
  div.bnrSec2 .inner .bnr2 a {
    display: block;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 100%;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  div.bnrSec2 .inner .bnr2 a .imgClm {
    width: 500px;
    min-width: 500px;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm {
    width: 500px;
    background: #F0F5FA;
    padding: 20px 40px;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm h3 {
    font-size: 14px;
    font-weight: 900;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm h3 span {
    font-size: 12px;
    font-weight: 400;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm p {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.7;
  }
  div.bnrSec2 .inner .bnr2 a:hover {
    opacity: 0.7;
  }

  #workersList {
    overflow: hidden;
    padding: 80px 0 120px;
    position: relative;
  }
  #workersList:before {
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    height: 360px;
    background: #F0F5FA;
  }
  #workersList .inner .wrap {
    position: relative;
    z-index: 5;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-left: calc((100% - 1000px) / 2);
    margin-left: -webkit-calc((100% - 1000px) / 2);
  }
  #workersList .inner .head {
    width: 220px;
    min-width: 220px;
  }
  #workersList .inner .head h2 {
    padding-top: 60px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.4;
    position: relative;
    margin-bottom: 30px;
  }
  #workersList .inner .head h2:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 40px;
    background: url(../images/svg/ico_workers.svg) no-repeat center;
    top: -0;
    left: 0;
  }
  #workersList .inner .head .control {
    width: 80px;
    height: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    background: #fff;
  }
  #workersList .inner .head .control .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    margin: 0;
  }
  #workersList .inner .head .control .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    margin: 0;
  }
  #workersList .inner .slideBox {
    width: calc(100% - 220px);
    width: -webkit-calc(100% - 220px);
  }
  #workersList .inner .slideBox .workerslider {
    padding-bottom: 10px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide {
    width: 300px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a {
    display: block;
    background: #fff;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm {
    padding: 30px 40px 50px;
    height: 207px;
    position: relative;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm .name {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm h3 {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.55;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 40px;
    bottom: 20px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a:hover {
    position: relative;
    z-index: 5;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }

  #interviewSec01 {
    margin-bottom: 80px;
    padding-bottom: 70px;
    position: relative;
  }
  #interviewSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 0;
    width: 100%;
    bottom: 0;
    background: #F0F5FA;
    height: 340px;
  }
  #interviewSec01 .inner {
    width: 1000px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #interviewSec01 .inner .txtClm {
    width: 50%;
    padding-right: 30px;
  }
  #interviewSec01 .inner .txtClm h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 50px;
  }
  #interviewSec01 .inner .txtClm h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  #interviewSec01 .inner .txtClm ul.prof li {
    font-size: 12px;
    line-height: 1.66;
  }
  #interviewSec01 .inner .imgClm {
    width: 50%;
    min-width: 50%;
  }

  div.interviewVideoSec {
    margin-bottom: 80px;
  }
  div.interviewVideoSec .inner {
    width: 820px;
    margin: 0 auto;
  }
  div.interviewVideoSec .inner a {
    display: block;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  div.interviewVideoSec .inner a:hover {
    opacity: 0.7;
  }
  div.interviewVideoSec .inner a:after {
    position: absolute;
    z-index: 3;
    content: '';
    background: url(../images/svg/ico_play.svg) no-repeat center;
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    margin-top: -45px;
    margin-left: -45px;
  }

  #interviewSec02 {
    margin-bottom: 120px;
  }
  #interviewSec02 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #interviewSec02 .inner .head {
    text-align: center;
  }
  #interviewSec02 .inner .head span.en {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 10px;
  }
  #interviewSec02 .inner .head h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 60px;
  }
  #interviewSec02 .inner .interviewBox dl.box {
    font-size: 16px;
  }
  #interviewSec02 .inner .interviewBox dl.box strong {
    background: #FFFF00;
    font-weight: 400;
  }
  #interviewSec02 .inner .interviewBox dl.box > dt {
    font-weight: 900;
    margin-bottom: 40px;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd {
    margin-bottom: 55px;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd dl {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd dl dt {
    width: 60px;
    min-width: 60px;
  }
  #interviewSec02 .inner .interviewBox .imgClm {
    width: 460px;
    min-width: 460px;
    margin-bottom: 55px;
  }
  #interviewSec02 .inner .interviewBox hr {
    margin-bottom: 55px;
    height: 0;
    border-top: 1px solid #000;
  }
  #interviewSec02 .inner .interviewBox.center {
    padding: 0 130px;
  }
  #interviewSec02 .inner .interviewBox.left {
    padding-left: 130px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #interviewSec02 .inner .interviewBox.left dl.box {
    padding-right: 45px;
  }
  #interviewSec02 .inner .interviewBox.right {
    padding-right: 130px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
  }
  #interviewSec02 .inner .interviewBox.right dl.box {
    padding-left: 45px;
  }
  #interviewSec02 .inner .imgClm2 {
    margin-bottom: 55px;
  }
  #interviewSec02 .inner .date {
    text-align: right;
    padding: 0 120px;
  }
  #interviewSec02 .inner .date p {
    font-size: 16px;
    line-height: 1.625;
  }
  #interviewSec02 .inner .interviewNavi {
    margin-top: 70px;
  }
  #interviewSec02 .inner .interviewNavi ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #interviewSec02 .inner .interviewNavi ul li {
    width: 50%;
  }
  #interviewSec02 .inner .interviewNavi ul li a {
    display: block;
    background: #F0F5FA;
    padding: 40px 40px 60px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: relative;
  }
  #interviewSec02 .inner .interviewNavi ul li a h4 {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  #interviewSec02 .inner .interviewNavi ul li a .big {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #interviewSec02 .inner .interviewNavi ul li a h3 {
    font-size: 16px;
    font-weight: 400;
  }
  #interviewSec02 .inner .interviewNavi ul li a:hover {
    z-index: 5;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  #interviewSec02 .inner .interviewNavi ul li:first-of-type a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 40px;
    bottom: 30px;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  #interviewSec02 .inner .interviewNavi ul li:last-of-type a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    left: 40px;
    bottom: 30px;
  }

  #workerSec01 {
    margin-bottom: 80px;
    padding-bottom: 70px;
    position: relative;
  }
  #workerSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 110px;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #F0F5FA;
  }
  #workerSec01 .inner {
    width: 1000px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #workerSec01 .inner .txtClm {
    width: 50%;
    padding-right: 30px;
  }
  #workerSec01 .inner .txtClm p {
    font-size: 20px;
    font-weight: 900;
    line-height: 2;
    margin-bottom: 15px;
  }
  #workerSec01 .inner .txtClm h1 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 50px;
  }
  #workerSec01 .inner .txtClm h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  #workerSec01 .inner .txtClm ul.prof li {
    font-size: 12px;
    line-height: 1.66;
  }
  #workerSec01 .inner .imgClm {
    width: 50%;
    min-width: 50%;
  }

  #workerSec02 {
    margin-bottom: 120px;
  }
  #workerSec02 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #workerSec02 .inner .box {
    margin-bottom: 70px;
  }
  #workerSec02 .inner .box h2 {
    font-size: 28px;
    font-weight: 900;
    padding-left: 64px;
    overflow: hidden;
    margin-bottom: 40px;
  }
  #workerSec02 .inner .box h2 span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
  }
  #workerSec02 .inner .box h2 span:before {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -4px;
    height: 8px;
    width: 64px;
    background: url(../images/svg/hx_line_l.svg) no-repeat right center;
    right: 100%;
  }
  #workerSec02 .inner .box .content {
    padding: 0 130px;
  }
  #workerSec02 .inner .box .content h3 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  #workerSec02 .inner .box .content .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  #workerSec02 .inner .box .content .img {
    margin-bottom: 30px;
  }
  #workerSec02 .inner .box:last-of-type {
    margin-bottom: 0;
  }

  #newBusinessSec01 {
    margin-bottom: 110px;
  }
  #newBusinessSec01 h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    width: 1000px;
    margin: 0 auto 50px;
  }
  #newBusinessSec01 .inner {
    background: url(../images/bg_new_business.jpg) repeat-x center top;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    height: 1600px;
    padding-top: 160px;
  }
  #newBusinessSec01 .inner .wrap {
    width: 1000px;
    margin: 0 auto;
  }
  #newBusinessSec01 .inner .wrap.left {
    margin-bottom: 120px;
  }
  #newBusinessSec01 .inner .wrap.left .box {
    width: 500px;
    background: #fff;
    border: 2px solid #000;
    padding: 80px 80px 90px;
  }
  #newBusinessSec01 .inner .wrap.left .box h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  #newBusinessSec01 .inner .wrap.left .box h2:after {
    position: absolute;
    content: '';
    width: 40px;
    height: 4px;
    background: #000;
    left: 0;
    bottom: 0;
  }
  #newBusinessSec01 .inner .wrap.left .box .txt {
    font-size: 18px;
    line-height: 1.77;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #newBusinessSec01 .inner .wrap.left .box .btnBox .btn {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #000;
    display: block;
    height: 60px;
    background: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 58px;
    text-align: center;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #newBusinessSec01 .inner .wrap.left .box .btnBox .btn span {
    display: inline-block;
    height: 100%;
  }
  #newBusinessSec01 .inner .wrap.left .box .btnBox .btn:hover {
    box-shadow: 0px 0px 0px transparent;
  }
  #newBusinessSec01 .inner .wrap.right {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
  }
  #newBusinessSec01 .inner .wrap.right .box {
    text-align: center;
    width: 500px;
    background: #fff;
    border: 2px solid #000;
    padding: 80px 80px;
  }
  #newBusinessSec01 .inner .wrap.right .box h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  #newBusinessSec01 .inner .wrap.right .box h2:after {
    position: absolute;
    content: '';
    width: 40px;
    height: 4px;
    background: #000;
    left: 50%;
    margin-left: -20px;
    bottom: 0;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #000;
    display: block;
    height: 60px;
    background: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 58px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn span {
    display: inline-block;
    height: 100%;
    position: relative;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn span:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_mail_b.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 20px;
    left: 0;
    top: 50%;
    margin-top: -10px;
    margin-left: -15px;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn:hover {
    box-shadow: 0px 0px 0px transparent;
  }

  #newBusinessSec02 {
    margin-bottom: 120px;
  }
  #newBusinessSec02 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #newBusinessSec02 .inner h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 50px;
  }
  #newBusinessSec02 .inner .wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    padding-left: 40px;
  }
  #newBusinessSec02 .inner .wrap .imgClm {
    width: 420px;
    min-width: 420px;
    margin-right: auto;
  }
  #newBusinessSec02 .inner .wrap .imgClm .img {
    margin-bottom: 10px;
  }
  #newBusinessSec02 .inner .wrap .txtClm {
    width: 500px;
  }
  #newBusinessSec02 .inner .wrap .txtClm dl {
    border-top: 1px solid #000;
    margin-bottom: 35px;
  }
  #newBusinessSec02 .inner .wrap .txtClm dl dt {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
  }
  #newBusinessSec02 .inner .wrap .txtClm dl dd {
    font-size: 18px;
  }
  #newBusinessSec02 .inner .wrap .txtClm .caution {
    text-align: right;
    font-size: 12px;
    margin-bottom: 40px;
  }
  #newBusinessSec02 .inner .wrap .txtClm .btn {
    border: 1px solid #000;
    display: inline-block;
    height: 40px;
    font-size: 16px;
    line-height: 38px;
    padding: 0 45px 0 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #newBusinessSec02 .inner .wrap .txtClm .btn:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    width: 6px;
    height: 12px;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  #newBusinessSec02 .inner .wrap .txtClm .btn:hover {
    opacity: 0.7;
  }

  #newBusinessSec03 {
    margin-bottom: 120px;
    border-top: 2px solid #000;
    padding-top: 100px;
  }
  #newBusinessSec03 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #newBusinessSec03 .inner h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 80px;
  }
  #newBusinessSec03 .inner ul.grid {
    position: relative;
  }
  #newBusinessSec03 .inner ul.grid li {
    display: block;
    position: absolute;
    width: 460px;
    margin: 0 20px 40px;
  }
  #newBusinessSec03 .inner ul.grid li a {
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #newBusinessSec03 .inner ul.grid li a:hover {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }

  #projextSec01 {
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 80px;
  }
  #projextSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 230px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F0F5FA;
  }
  #projextSec01 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #projextSec01 .inner .head {
    text-align: center;
    margin-bottom: 40px;
  }
  #projextSec01 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #projextSec01 .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
  }

  #projextSec02 {
    margin-bottom: 120px;
  }
  #projextSec02 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #projextSec02 .inner .head {
    padding: 0 90px;
    margin-bottom: 40px;
  }
  #projextSec02 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #projextSec02 .inner .head h2 {
    font-size: 30px;
    font-weight: 900;
  }
  #projextSec02 .inner .content {
    padding: 0 130px;
    margin-bottom: 70px;
  }
  #projextSec02 .inner .content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #projextSec02 .inner .content p {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  #projextSec02 .inner .imgBox {
    margin-bottom: 50px;
  }
  #projextSec02 .inner .imgBox .imgClm {
    margin-bottom: 30px;
    text-align: center;
  }
  #projextSec02 .inner .imgBox .imgClm span.caption {
    padding-top: 5px;
    display: block;
    font-size: 12px;
  }
  #projextSec02 .inner .gellery {
    margin-bottom: 50px;
  }
  #projextSec02 .inner .gellery ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #projextSec02 .inner .gellery ul li {
    max-width: 100%;
  }
  #projextSec02 .inner .detailBox {
    margin-bottom: 60px;
    background: #F0F5FA;
    padding: 50px 90px;
  }
  #projextSec02 .inner .detailBox h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #projextSec02 .inner .detailBox .tableWrap {
    padding: 0 40px;
  }
  #projextSec02 .inner .detailBox table {
    width: 100%;
    font-size: 16px;
    line-height: 1.625;
  }
  #projextSec02 .inner .detailBox table tr {
    border-bottom: 1px solid #000;
  }
  #projextSec02 .inner .detailBox table th {
    padding: 13px 0;
    text-align: left;
    font-weight: 900;
    width: 120px;
  }
  #projextSec02 .inner .detailBox table td {
    padding: 13px 0;
  }
  #projextSec02 .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  #projextSec02 .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #projextSec02 .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  #projextSec02 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    right: 18px;
  }

  #forMangaCreatorsSec01 {
    margin-bottom: 90px;
    border-bottom: 2px solid #000;
  }
  #forMangaCreatorsSec01 h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    width: 1000px;
    margin: 0 auto 50px;
  }

  #forMangaCreatorsSec02 {
    padding-bottom: 120px;
    border-bottom: 2px solid #000;
  }
  #forMangaCreatorsSec02 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #forMangaCreatorsSec02 .inner .head {
    text-align: center;
    margin-bottom: 80px;
  }
  #forMangaCreatorsSec02 .inner .head h2 {
    font-size: 32px;
    font-weight: 900;
  }
  #forMangaCreatorsSec02 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #forMangaCreatorsSec02 .inner .bnr {
    margin-bottom: 20px;
    border: 1px solid #000;
  }
  #forMangaCreatorsSec02 .inner .bnr a {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #forMangaCreatorsSec02 .inner .bnr a:hover {
    opacity: 0.7;
  }
  #forMangaCreatorsSec02 .inner .bnr a .imgClm {
    width: 390px;
    min-width: 390px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm {
    width: 610px;
    padding: 35px 40px 0;
    position: relative;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm .right {
    text-align: right;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm span.en {
    font-size: 20px;
    display: inline-block;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm span.ja {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm p.txt {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm span.date {
    display: block;
    text-align: right;
    font-size: 12px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 62px;
    height: 12px;
    right: 40px;
    bottom: 30px;
  }

  #forMangaCreatorsSec03 {
    margin-bottom: 110px;
    border-top: 2px solid #000;
    padding-top: 110px;
  }
  #forMangaCreatorsSec03 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #forMangaCreatorsSec03 .inner .head {
    text-align: center;
    margin-bottom: 80px;
  }
  #forMangaCreatorsSec03 .inner .head h2 {
    font-size: 32px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .box {
    width: 100%;
    margin-bottom: 80px;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm {
    width: 500px;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .head2 {
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .head2 .name {
    font-size: 16px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .head2 h3 {
    font-size: 24px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec03 .inner .box .profClm {
    width: 460px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #forMangaCreatorsSec03 .inner .box .profClm .imgClm {
    width: 240px;
    min-width: 240px;
  }
  #forMangaCreatorsSec03 .inner .box .profClm .txtClm2 {
    padding-left: 20px;
  }
  #forMangaCreatorsSec03 .inner .box .profClm .txtClm2 p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec03 .inner .box.left {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #forMangaCreatorsSec03 .inner .box.left .txtClm {
    margin-right: auto;
  }
  #forMangaCreatorsSec03 .inner .box.right {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row-reverse nowrap;
    flex-flow: row-reverse nowrap;
  }
  #forMangaCreatorsSec03 .inner .box.right .txtClm {
    margin-left: auto;
  }

  #forMangaCreatorsSec04 {
    margin-bottom: 40px;
    padding-top: 110px;
  }
  #forMangaCreatorsSec04 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #forMangaCreatorsSec04 .inner .head {
    text-align: center;
    margin-bottom: 80px;
  }
  #forMangaCreatorsSec04 .inner .head h2 {
    font-size: 32px;
    font-weight: 900;
  }
  #forMangaCreatorsSec04 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #forMangaCreatorsSec04 .inner .grid {
    position: relative;
  }
  #forMangaCreatorsSec04 .inner .grid li {
    border-bottom: 1px solid #000;
    position: absolute;
    width: 460px;
    margin: 0 20px 80px;
  }
  #forMangaCreatorsSec04 .inner .grid li .imgClm {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm {
    position: relative;
    padding-bottom: 40px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm span.small {
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 5px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .txt {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .caution {
    font-size: 12px;
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    width: auto;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .btn:hover {
    opacity: 0.7;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .num {
    position: absolute;
    display: inline-block;
    font-size: 120px;
    line-height: 1;
    bottom: 0;
    right: 0;
    color: #F0F5FA;
  }

  #mangaCreatorsInterviewSec01 {
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 80px;
  }
  #mangaCreatorsInterviewSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 230px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F0F5FA;
  }
  #mangaCreatorsInterviewSec01 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #mangaCreatorsInterviewSec01 .inner .head {
    text-align: center;
    margin-bottom: 40px;
  }
  #mangaCreatorsInterviewSec01 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #mangaCreatorsInterviewSec01 .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
  }

  #mangaCreatorsInterviewSec02 {
    margin-bottom: 120px;
  }
  #mangaCreatorsInterviewSec02 .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #mangaCreatorsInterviewSec02 .inner .head {
    padding: 0 100px;
    margin-bottom: 50px;
  }
  #mangaCreatorsInterviewSec02 .inner .head span.ja {
    font-size: 20px;
    font-weight: 900;
  }
  #mangaCreatorsInterviewSec02 .inner .head h2 {
    font-size: 30px;
    font-weight: 900;
  }
  #mangaCreatorsInterviewSec02 .inner .content {
    padding: 0 130px;
    margin-bottom: 70px;
  }
  #mangaCreatorsInterviewSec02 .inner .content h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .content p {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .imgBox {
    margin-bottom: 60px;
  }
  #mangaCreatorsInterviewSec02 .inner .imgBox .imgClm {
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .imgBox .imgClm span.caption {
    padding-top: 12px;
    display: block;
    font-size: 12px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox {
    padding: 0 130px;
    margin-bottom: 80px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl {
    margin-bottom: 50px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl dt {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl dd {
    font-size: 16px;
    line-height: 1.625;
    padding-left: 50px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl:last-of-type {
    margin-bottom: 0;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox .date {
    margin-top: 70px;
    text-align: right;
    font-size: 16px;
    line-height: 1.625;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox.mb120 {
    margin-bottom: 120px;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox {
    margin-bottom: 100px;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul {
    padding: 0 130px;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li {
    margin-bottom: 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li .link {
    display: block;
    border: 1px solid #000;
    padding: 10px 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li .link:hover {
    opacity: 0.7;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li .link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 18px;
    top: 50%;
    margin-top: -5px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox {
    margin-bottom: 60px;
    background: #F0F5FA;
    padding: 50px 90px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap {
    padding: 0 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox {
    width: 200px;
    min-width: 200px;
    margin-right: auto;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .imgClm {
    margin-bottom: 18px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 25px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .btn:hover {
    opacity: 0.7;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .datailtbl {
    width: 500px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table {
    width: 100%;
    font-size: 16px;
    line-height: 1.625;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table tr {
    border-bottom: 1px solid #000;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table th {
    padding: 15px 0;
    text-align: left;
    font-weight: 900;
    width: 120px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table td {
    padding: 15px 0;
    line-height: 1.875;
  }
  #mangaCreatorsInterviewSec02 .inner .btnBox {
    margin-top: 120px;
    text-align: center;
  }
  #mangaCreatorsInterviewSec02 .inner .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #mangaCreatorsInterviewSec02 .inner .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  #mangaCreatorsInterviewSec02 .inner .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #interviewLinkSec {
    margin-bottom: 140px;
  }
  #interviewLinkSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #interviewLinkSec .inner .bnr {
    margin-bottom: 20px;
  }
  #interviewLinkSec .inner .bnr a {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #interviewLinkSec .inner .bnr a:hover {
    opacity: 0.7;
  }
  #interviewLinkSec .inner .bnr a .imgClm {
    width: 660px;
    min-width: 660px;
  }
  #interviewLinkSec .inner .bnr a .txtClm {
    width: 340px;
    padding: 70px 50px 0;
    background: #000;
    color: #fff;
    position: relative;
  }
  #interviewLinkSec .inner .bnr a .txtClm span.en {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    display: inline-block;
  }
  #interviewLinkSec .inner .bnr a .txtClm span.ja {
    font-size: 16px;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
  }
  #interviewLinkSec .inner .bnr a .txtClm h3 {
    font-size: 26px;
    line-height: 1.38;
    font-weight: 900;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  #interviewLinkSec .inner .bnr a .txtClm span.date {
    display: block;
    text-align: right;
    font-size: 12px;
  }
  #interviewLinkSec .inner .bnr a .txtClm:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 62px;
    height: 12px;
    right: 40px;
    bottom: 27px;
  }

  #newsSec .inner .head {
    width: 1000px;
    margin: 0 auto 20px;
    text-align: center;
  }
  #newsSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #newsSec .inner .head p {
    font-size: 18px;
    font-weight: 900;
  }
  #newsSec .inner .cateList {
    padding: 20px 0;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
  }
  #newsSec .inner .cateList ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 16px;
  }
  #newsSec .inner .cateList ul li {
    margin: 0 20px;
    position: relative;
  }
  #newsSec .inner .cateList ul li:after {
    position: absolute;
    content: '|';
    top: 0;
    right: -20px;
  }
  #newsSec .inner .cateList ul li:last-of-type:after {
    display: none;
  }
  #newsSec .inner .archiveTagList {
    margin-bottom: 60px;
  }
  #newsSec .inner .archiveTagList > ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #newsSec .inner .archiveTagList > ul > li {
    margin: 0 10px;
    width: 170px;
    height: 40px;
    border: 1px solid #000;
    position: relative;
  }
  #newsSec .inner .archiveTagList > ul > li span.openBtn {
    cursor: pointer;
    font-size: 16px;
    display: block;
    height: 100%;
    line-height: 38px;
    text-align: center;
    position: relative;
  }
  #newsSec .inner .archiveTagList > ul > li span.openBtn:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 6px;
    background: url(../images/svg/ico_down.svg) no-repeat center;
    left: 17px;
    top: 50%;
    margin-top: -3px;
  }
  #newsSec .inner .archiveTagList > ul > li .sub {
    overflow: auto;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 100%;
    left: 0;
    max-height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #F0F5FA;
    padding: 15px 0;
    margin-top: 1px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  #newsSec .inner .archiveTagList > ul > li .sub ul li {
    font-size: 16px;
  }
  #newsSec .inner .archiveTagList > ul > li .sub ul li a {
    font-size: 16px;
    display: block;
    padding: 2px 20px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #newsSec .inner .archiveTagList > ul > li .sub ul li a:hover {
    background: #F0F5FA;
  }
  #newsSec .inner .archiveTagList > ul > li .sub.open {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  #newsSec .inner .entryBox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  #newsSec .inner .entryBox .grid {
    position: relative;
  }
  #newsSec .inner .entryBox .grid > li {
    position: absolute;
    width: 24.9%;
    padding: 0 20px 80px;
  }
  #newsSec .inner .entryBox .grid > li .imgClm {
    margin-bottom: 20px;
  }
  #newsSec .inner .entryBox .grid > li .imgClm a {
    display: block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #newsSec .inner .entryBox .grid > li .imgClm a:hover {
    opacity: 0.7;
  }
  #newsSec .inner .entryBox .grid > li .imgClm img {
    width: 100%;
    height: auto;
  }
  #newsSec .inner .entryBox .grid > li .txtClm h3 {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.625;
    margin-bottom: 10px;
  }
  #newsSec .inner .entryBox .grid > li .txtClm h3 a {
    display: block;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #newsSec .inner .entryBox .grid > li .txtClm h3 a:hover {
    opacity: 0.7;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .post-categories {
    margin-bottom: 10px;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .post-categories li a {
    text-decoration: underline;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 900;
    color: #808080;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .post-categories li a:hover {
    text-decoration: none;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .tags {
    margin-bottom: 10px;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .tags a {
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
    text-decoration: underline;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .tags a:hover {
    text-decoration: none;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .time {
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
  }

  #pager {
    margin-bottom: 120px;
  }
  #pager .inner {
    border-top: 1px solid #000;
    padding-top: 20px;
    width: 1240px;
    margin: 0 auto;
    text-align: center;
  }
  #pager .inner .wp-pagenavi {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #pager .inner a, #pager .inner span {
    display: inline-block;
    font-size: 20px;
    margin: 0 10px 10px;
    padding: 5px;
    height: 43px;
  }
  #pager .inner a.nextpostslink .next {
    margin: 0;
    display: block;
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 62px;
    height: 11px;
    height: 90%;
  }
  #pager .inner a.previouspostslink .prev {
    margin: 0;
    display: block;
    background: url(../images/svg/ico_arrow_prev.svg) no-repeat center;
    width: 62px;
    height: 11px;
    height: 90%;
  }
  #pager .inner .current {
    border-bottom: 1px solid #000;
  }

  #container {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
  }
  #container #main {
    float: left;
    width: 700px;
  }
  #container #side {
    float: right;
    width: 260px;
  }

  #singleSec {
    margin-bottom: 120px;
  }
  #singleSec .inner .head {
    margin-bottom: 60px;
  }
  #singleSec .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.31;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
  }
  #singleSec .inner .head .metaBox {
    position: relative;
  }
  #singleSec .inner .head .metaBox .post-categories {
    font-size: 12px;
    margin-bottom: 10px;
  }
  #singleSec .inner .head .metaBox .post-categories a {
    text-decoration: underline;
  }
  #singleSec .inner .head .metaBox .post-categories a:hover {
    text-decoration: none;
  }
  #singleSec .inner .head .metaBox .tags {
    font-size: 12px;
    margin-bottom: 10px;
  }
  #singleSec .inner .head .metaBox .tags a {
    text-decoration: underline;
  }
  #singleSec .inner .head .metaBox .tags a:hover {
    text-decoration: none;
  }
  #singleSec .inner .head .metaBox .time {
    font-size: 12px;
  }
  #singleSec .inner .head .metaBox .share {
    position: absolute;
    right: 0;
    top: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #singleSec .inner .head .metaBox .share li {
    margin-left: 20px;
  }
  #singleSec .inner .content {
    margin-bottom: 50px;
  }
  #singleSec .inner .content * {
    font-size: 16px;
    line-height: 1.625;
  }
  #singleSec .inner .content h2 {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.33;
    margin-bottom: 1.5em;
  }
  #singleSec .inner .content p {
    margin-bottom: 2em;
  }
  #singleSec .inner .content h3 {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 1.5em;
  }
  #singleSec .inner .content h4 {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.55;
    border-bottom: 1px solid #808080;
    margin-bottom: 1em;
    padding-bottom: 15px;
  }
  #singleSec .inner .content .wp-caption {
    max-width: 100%;
    margin-bottom: 30px;
  }
  #singleSec .inner .content .wp-caption img {
    max-width: 100%;
  }
  #singleSec .inner .content .wp-caption .wp-caption-text {
    font-size: 12px;
    margin: 0;
  }
  #singleSec .inner .content a {
    text-decoration: underline;
  }
  #singleSec .inner .content a:hover {
    text-decoration: none;
  }
  #singleSec .inner .content .box {
    border: 1px solid #808080;
    padding: 40px 40px 10px;
    margin-bottom: 30px;
  }
  #singleSec .inner .content .aligncenter {
    display: block;
    margin: 0 auto;
  }
  #singleSec .inner .content .alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
  }
  #singleSec .inner .content .alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
  }
  #singleSec .inner .content img[class*="wp-image-"],
  #singleSec .inner .content img[class*="attachment-"] {
    max-width: 100%;
    height: auto;
  }
  #singleSec .inner .content .wp-caption-text {
    font-size: 16px;
    margin: 10px 0 0;
  }
  #singleSec .inner .content blockquote {
    background-color: #f8f8f8;
    padding: 20px 30px 20px;
  }
  #singleSec .inner .content a {
    text-decoration: underline;
  }
  #singleSec .inner .content a:hover {
    text-decoration: none;
  }
  #singleSec .inner > .btnBox .btn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #singleSec .inner > .btnBox .btn:hover {
    opacity: 0.7;
  }
  #singleSec .inner > .btnBox .btn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  aside.sideRel {
    border: 1px solid #000;
    padding: 20px;
    margin-bottom: 20px;
  }
  aside.sideRel h4 {
    font-size: 16px;
    font-weight: 900;
  }
  aside.sideRel ul li {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  aside.sideRel ul li a {
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  aside.sideRel ul li a:hover {
    opacity: 0.7;
  }
  aside.sideRel ul li h5 {
    font-size: 12px;
    font-weight: 400;
    margin-top: 15px;
  }
  aside.sideRel ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  aside.sideBnr ul li {
    margin-bottom: 20px;
  }
  aside.sideBnr ul li a {
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  aside.sideBnr ul li a:hover {
    opacity: 0.7;
  }

  #companySec {
    margin-bottom: 120px;
  }
  #companySec .inner {
    width: 820px;
    margin: 0 auto;
  }
  #companySec .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #companySec .inner .head h1, #companySec .inner .head h2 {
    font-size: 32px;
    font-weight: 900;
  }
  #companySec .inner .linkBox {
    margin-bottom: 80px;
  }
  #companySec .inner .linkBox ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #companySec .inner .linkBox ul li {
    margin: 0 10px;
    width: 23%;
  }
  #companySec .inner .linkBox ul li a.btn {
    display: block;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #companySec .inner .linkBox ul li a.btn:hover {
    opacity: 0.7;
  }
  #companySec .inner .linkBox ul li a.btn:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -4px;
    right: 15px;
  }
  #companySec .inner .linkBox .l2 {
    margin-top: 20px;
    justify-content: flex-start;
  }
  #companySec .inner .linkBox .l2 li {
    width: auto;
  }
  #companySec .inner .linkBox .l2 li a {
    padding-right: 40px;
  }
  #companySec .inner .linkBox .l2 li.small {
    width: 23%;
  }
  #companySec .inner .linkBox .l2 li.small a {
    padding-right: 20px;
    padding-left: 20px;
  }
  #companySec .inner .comtbl {
    width: 740px;
    margin: 0 auto;
    border-top: 1px solid #000;
    font-size: 16px;
    line-height: 1.625;
  }
  #companySec .inner .comtbl tr {
    border-bottom: 1px solid #000;
  }
  #companySec .inner .comtbl tr th {
    width: 130px;
    text-align: left;
    padding: 15px 0;
  }
  #companySec .inner .comtbl tr td {
    padding: 15px 0;
  }
  #companySec .inner .comtbl tr td dl {
    overflow: hidden;
  }
  #companySec .inner .comtbl tr td dl dt {
    float: left;
    width: 130px;
  }
  #companySec .inner .comtbl tr td dl dd {
    margin-left: 130px;
  }
  #companySec .inner .comtbl tr td .address {
    margin-bottom: 15px;
  }
  #companySec .inner .comtbl tr td .mapBox {
    margin-bottom: 10px;
  }
  #companySec .inner .comtbl tr td .mapBox iframe {
    width: 100%;
  }
  #companySec .inner .comtbl tr td .btnBox {
    text-align: right;
  }
  #companySec .inner .comtbl tr td .btnBox .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #companySec .inner .comtbl tr td .btnBox .btn:hover {
    opacity: 0.7;
  }
  #companySec .inner .comtbl tr td .btnBox .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #companySec .inner .comtbl tr td.access {
    padding-bottom: 20px;
  }
  #companySec .inner .head2 {
    margin-bottom: 38px;
  }
  #companySec .inner .head2 h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #companySec .inner .historyBox {
    width: 740px;
    margin: 0 auto;
  }
  #companySec .inner .historyBox .years {
    display: none;
  }
  #companySec .inner .historyBox .years .yearBox {
    width: 160px;
    position: relative;
  }
  #companySec .inner .historyBox .years .yearBox span#yearBtn {
    display: block;
    font-size: 16px;
    height: 40px;
    border: 1px solid #000;
    line-height: 38px;
    padding-left: 40px;
    position: relative;
    cursor: pointer;
  }
  #companySec .inner .historyBox .years .yearBox span#yearBtn:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 6px;
    background: url(../images/svg/ico_down.svg) no-repeat center;
    left: 15px;
    top: 50%;
    margin-top: -3px;
  }
  #companySec .inner .historyBox .years .yearBox span#yearBtn.open:before {
    background: url(../images/svg/ico_up.svg) no-repeat center;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    background: #fff;
    width: 100%;
    border: 1px solid #F0F5FA;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList li {
    cursor: pointer;
    text-align: center;
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    opacity: 0.5;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList li.active {
    opacity: 1;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList li:hover {
    background: #F0F5FA;
    opacity: 1;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList.open {
    opacity: 1;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
  }
  #companySec .inner .historyBox .historytbl {
    font-size: 16px;
    line-height: 1.625;
  }
  #companySec .inner .historyBox .historytbl tr {
    border-bottom: 1px solid #000;
  }
  #companySec .inner .historyBox .historytbl tr th {
    text-align: left;
    padding: 35px 0;
    width: 140px;
  }
  #companySec .inner .historyBox .historytbl tr td {
    padding: 35px 0;
  }
  #companySec .inner .historyBox .historytbl tr td p {
    margin-bottom: 20px;
  }
  #companySec .inner .historyBox .historytbl tr td p:last-of-type {
    margin-bottom: 0;
  }
  #companySec .inner .historyBox .historytbl tr.bnon {
    border: none;
  }
  #companySec .inner .historyBox .historytbl tr.bnon th, #companySec .inner .historyBox .historytbl tr.bnon td {
    padding-bottom: 0;
  }
  #companySec .inner .historyBox .historytbl:first-of-type {
    border-top: 1px solid #000;
  }
  #companySec .inner .recruitBox {
    width: 740px;
    margin: 0 auto;
  }
  #companySec .inner .recruitBox h2 {
    width: 180px;
    font-size: 16px;
  }
  #companySec .inner .recruitBox .recruitClm {
    width: 560px;
  }
  #companySec .inner .recruitBox .recruitClm h3 {
    cursor: pointer;
    background: #000;
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 900;
    position: relative;
  }
  #companySec .inner .recruitBox .recruitClm h3:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_down_w.svg) no-repeat center;
    width: 12px;
    height: 6px;
    top: 50%;
    margin-top: -3px;
    right: 20px;
  }
  #companySec .inner .recruitBox .recruitClm h3.open:after {
    background: url(../images/svg/ico_up_w.svg) no-repeat center;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl {
    width: 100%;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl tr {
    border-bottom: 1px solid #000;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl tr:last-of-type {
    border: none;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl th {
    font-size: 12px;
    font-weight: 400;
    width: 120px;
    text-align: left;
    padding: 15px 0;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl td {
    padding: 15px 0;
    font-size: 16px;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl td a {
    text-decoration: underline;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl td a:hover {
    text-decoration: none;
  }
  #companySec .inner .recruitBox p.noRecruitment {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    padding: 100px 0;
  }
  #companySec .inner .recruitBox ul li a.link {
    font-size: 16px;
    display: block;
    border: 1px solid #000;
    padding: 30px 30px;
    position: relative;
    transition: 0.2s;
  }
  #companySec .inner .recruitBox ul li a.link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    left: 210px;
    top: 50%;
    margin-top: -5px;
  }
  #companySec .inner .recruitBox ul li a.link:hover {
    opacity: 0.7;
  }
  #companySec .inner .linkBpx2 {
    width: 740px;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 30px 0;
  }
  #companySec .inner .linkBpx2 h2 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #companySec .inner .linkBpx2 ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 35px;
  }
  #companySec .inner .linkBpx2 ul:after {
    position: relative;
    content: '';
    width: 240px;
  }
  #companySec .inner .linkBpx2 ul li {
    width: 240px;
    margin-bottom: 20px;
  }
  #companySec .inner .linkBpx2 ul li a {
    border: 1px solid #F0F5FA;
    display: block;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #companySec .inner .linkBpx2 ul li a:hover {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }

  #contactSec {
    margin-bottom: 120px;
  }
  #contactSec .inner {
    width: 820px;
    margin: 0 auto;
  }
  #contactSec .inner .head {
    text-align: center;
    margin-bottom: 90px;
  }
  #contactSec .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
  }
  #contactSec .inner .contactBox ul li {
    margin-bottom: 20px;
  }
  #contactSec .inner .contactBox ul li a {
    display: block;
    border: 1px solid #000;
    padding-left: 40px;
    padding: 30px 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #contactSec .inner .contactBox ul li a span.txt1 {
    font-size: 18px;
    font-weight: 900;
    display: block;
    padding-left: 50px;
    background: url(../images/svg/ico_mail_b.svg) no-repeat left center;
    margin-bottom: 10px;
  }
  #contactSec .inner .contactBox ul li a span.txt2 {
    font-size: 16px;
    display: block;
    padding-left: 50px;
  }
  #contactSec .inner .contactBox ul li a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    right: 40px;
  }
  #contactSec .inner .contactBox ul li a:hover {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }

  #formSec {
    margin-bottom: 120px;
  }
  #formSec .inner {
    width: 740px;
    margin: 0 auto;
  }
  #formSec .inner .head {
    text-align: center;
    margin-bottom: 15px;
  }
  #formSec .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
    padding-bottom: 75px;
    background: url(../images/svg/ico_mail_b.svg) no-repeat center bottom;
  }
  #formSec .inner .formBox .msg {
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
  }
  #formSec .inner .formBox .msgBox {
    border: 1px solid #000;
    margin: 40px 0;
    padding: 20px 30px;
  }
  #formSec .inner .formBox .msgBox h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
  }
  #formSec .inner .formBox .msgBox .txt {
    font-size: 16px;
  }
  #formSec .inner .formBox .formtbl {
    margin-bottom: 50px;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 16px;
  }
  #formSec .inner .formBox .formtbl tr {
    border-bottom: 1px solid #F0F5FA;
  }
  #formSec .inner .formBox .formtbl tr:last-of-type {
    border: none;
  }
  #formSec .inner .formBox .formtbl th {
    width: 200px;
    text-align: left;
    font-weight: 400;
    padding: 20px 0;
  }
  #formSec .inner .formBox .formtbl th span {
    display: block;
    color: #E31C24;
    font-size: 12px;
  }
  #formSec .inner .formBox .formtbl th.ta {
    vertical-align: top;
  }
  #formSec .inner .formBox .formtbl td {
    padding: 20px 0;
  }
  #formSec .inner .formBox .formtbl td input[type=text], #formSec .inner .formBox .formtbl td input[type=tel], #formSec .inner .formBox .formtbl td input[type=email], #formSec .inner .formBox .formtbl td textarea {
    border: 1px solid #000;
    padding: 10px 10px;
    width: 100%;
    background: #fff;
  }
  #formSec .inner .formBox .formtbl td.name {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #formSec .inner .formBox .formtbl td.name p {
    width: 260px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  #formSec .inner .formBox .formtbl td.name p > span.name {
    margin-right: 5px;
  }
  #formSec .inner .formBox .formtbl td.name p input {
    width: 240px;
  }
  #formSec .inner .formBox .formtbl td.name p:first-of-type {
    margin-right: auto;
  }
  #formSec .inner .formBox .cautoon {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
  }
  #formSec .inner .formBox .cautoon a {
    text-decoration: underline;
  }
  #formSec .inner .formBox .cautoon a:hover {
    text-decoration: none;
  }
  #formSec .inner .formBox .check {
    text-align: center;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 40px;
    position: relative;
  }
  #formSec .inner .formBox .check .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    width: 500px;
    text-align: left;
    left: 0;
    display: block;
  }
  #formSec .inner .formBox .check a {
    text-decoration: underline;
  }
  #formSec .inner .formBox .check a:hover {
    text-decoration: none;
  }
  #formSec .inner .formBox .btnBox {
    text-align: center;
  }
  #formSec .inner .formBox .btnBox input {
    font-size: 16px;
    font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
    width: 150px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    text-align: left;
    padding-left: 20px;
    margin: 0 10px;
  }
  #formSec .inner .formBox .btnBox input.confirm, #formSec .inner .formBox .btnBox input.send {
    background: url(../images/svg/ico_btn_arrow.svg) no-repeat 126px center;
  }
  #formSec .inner .wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: bold;
    color: #E31C24;
  }

  form.wpcf7-form {
    margin-top: -100px;
    padding-top: 100px;
  }

  #privacySec {
    margin-bottom: 120px;
  }
  #privacySec .inner {
    width: 820px;
    margin: 0 auto;
  }
  #privacySec .inner .head {
    text-align: center;
    margin-bottom: 60px;
  }
  #privacySec .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
  }
  #privacySec .inner .privacyBox h2 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #privacySec .inner .privacyBox .privacyClm {
    padding: 0 40px;
  }
  #privacySec .inner .privacyBox .privacyClm .box {
    margin-bottom: 40px;
  }
  #privacySec .inner .privacyBox .privacyClm p {
    font-size: 16px;
    line-height: 1.625;
  }
  #privacySec .inner .privacyBox .privacyClm ul {
    font-size: 16px;
    line-height: 1.625;
  }
  #privacySec .inner .privacyBox .privacyClm dl {
    font-size: 16px;
    line-height: 1.625;
  }
  #privacySec .inner .privacyBox .privacyClm h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 1em;
  }
  #privacySec .inner .privacyBox .privacyClm a {
    text-decoration: underline;
  }
  #privacySec .inner .privacyBox .privacyClm a:hover {
    text-decoration: none;
  }

  #nspSec {
    margin-bottom: 120px;
  }
  #nspSec .inner {
    width: 820px;
    margin: 0 auto;
  }
  #nspSec .inner .head {
    text-align: center;
    margin-bottom: 60px;
  }
  #nspSec .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
  }
  #nspSec .inner h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #nspSec .inner .nspBox {
    margin-bottom: 80px;
    padding: 0 40px;
  }
  #nspSec .inner .nspBox .img {
    text-align: center;
    margin-bottom: 35px;
  }
  #nspSec .inner .nspBox .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 2em;
  }
  #nspSec .inner .nspBox .right {
    text-align: right;
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 2em;
  }
  #nspSec .inner .contactBox {
    padding-top: 30px;
    width: 740px;
    margin: 0 auto;
    border-top: 1px solid #000;
  }
  #nspSec .inner .contactBox dl dt {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #nspSec .inner .contactBox dl dd {
    margin-bottom: 20px;
    font-size: 12px;
  }
  #nspSec .inner .contactBox dl dd a {
    color: #E31C24;
    text-decoration: underline;
  }
  #nspSec .inner .contactBox dl dd a:hover {
    text-decoration: none;
  }
  #nspSec .inner .btnBox {
    padding-top: 50px;
    width: 740px;
    margin: 0 auto;
    border-top: 1px solid #000;
    text-align: center;
  }
  #nspSec .inner .btnBox .btn {
    background: #143C8C;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.04em;
    width: 600px;
    height: 120px;
    line-height: 120px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #nspSec .inner .btnBox .btn:hover {
    opacity: 0.7;
  }
  #nspSec .inner .btnBox .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    top: 50%;
    margin-top: -6px;
    right: 25px;
    transform: rotate(45deg);
  }

  #resultSec {
    margin-bottom: 120px;
  }
  #resultSec .inner {
    width: 820px;
    margin: 0 auto;
  }
  #resultSec .inner .head {
    text-align: center;
    margin-bottom: 60px;
  }
  #resultSec .inner .head h1 {
    font-size: 32px;
    font-weight: 900;
  }
  #resultSec .inner .resultBox .gs-title {
    font-size: 18px;
    font-weight: 900;
  }
  #resultSec .inner .resultBox .gsc-url-top {
    font-size: 16px;
  }
  #resultSec .inner .resultBox .gsc-table-result {
    font-size: 16px;
  }
  #resultSec .inner .resultBox .gs-image-box {
    margin-right: 15px;
    margin-bottom: 15px;
  }
  #resultSec .inner .resultBox .img.gs-image {
    width: 100px;
    height: auto;
  }
  #resultSec .inner .resultBox .gsc-cursor-box {
    margin-top: 40px;
    font-size: 18px;
    font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
  }
  #resultSec .inner .resultBox .gsc-cursor-page {
    border: 1px solid #000;
    padding: 2px 9px;
  }
  #resultSec .inner .resultBox .gsc-cursor-current-page {
    font-weight: 900;
    background: #000;
    color: #fff;
  }

  #contentsSec {
    margin-bottom: 120px;
  }
  #contentsSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #contentsSec .inner .head {
    margin-bottom: 50px;
  }
  #contentsSec .inner .head h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
  }
  #contentsSec .inner .box {
    margin-bottom: 70px;
  }
  #contentsSec .inner .box .head2 {
    border-bottom: 2px solid #000;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  #contentsSec .inner .box .head2 h2 {
    margin-right: auto;
    font-size: 24px;
    font-weight: 900;
  }
  #contentsSec .inner .box .head2 h2 span {
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
  }
  #contentsSec .inner .box .head2 .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #contentsSec .inner .box .head2 .btn:hover {
    opacity: 0.7;
  }
  #contentsSec .inner .box .head2 .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #contentsSec .inner .box h3.ttl {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
  }
  #contentsSec .inner .box h3.ttl:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 30px;
    background: #000;
    left: 0;
    top: 50%;
    margin-top: -15px;
  }
  #contentsSec .inner .box .list1 {
    overflow: hidden;
  }
  #contentsSec .inner .box .list1 li {
    width: 180px;
    float: left;
    margin: 0 0 30px 20px;
  }
  #contentsSec .inner .box .list1 li .imgClm {
    margin-bottom: 5px;
  }
  #contentsSec .inner .box .list1 li .imgClm img {
    border: 1px solid #000;
  }
  #contentsSec .inner .box .list1 li .txtClm h3 {
    font-size: 16px;
    line-height: 1.625;
    text-indent: -0.1em;
    font-weight: 400;
  }
  #contentsSec .inner .box .list1 li .txtClm .link {
    margin-top: 10px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    text-decoration: underline;
  }
  #contentsSec .inner .box .list1 li .txtClm .link:hover {
    text-decoration: none;
  }
  #contentsSec .inner .box .list1 li .txtClm .link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: -18px;
    top: 50%;
    margin-top: -5px;
  }
  #contentsSec .inner .box .list2 {
    padding: 0 0 0 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #contentsSec .inner .box .list2 li {
    width: 33.33%;
    margin-bottom: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  #contentsSec .inner .box .list2 li .imgClm {
    width: 120px;
    min-width: 120px;
  }
  #contentsSec .inner .box .list2 li .imgClm img {
    border: 1px solid #000;
  }
  #contentsSec .inner .box .list2 li .txtClm {
    padding: 0 20px;
  }
  #contentsSec .inner .box .list2 li .txtClm h4 {
    font-size: 16px;
    line-height: 1.625;
    font-weight: 400;
  }
  #contentsSec .inner > .btnBox {
    text-align: center;
    margin-top: 100px;
  }
  #contentsSec .inner > .btnBox .backbtn {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #contentsSec .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  #contentsSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #zenonVideoSec {
    margin-bottom: 100px;
  }
  #zenonVideoSec .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #zenonVideoSec .inner .videoBox {
    width: 800px;
    margin: 0 auto;
  }

  .fadein {
    opacity: 0;
    -moz-transition: ease 0.8s;
    -o-transition: ease 0.8s;
    -webkit-transition: ease 0.8s;
    transition: ease 0.8s;
  }
  .fadein.inview {
    opacity: 1;
  }

  .fadeinbox {
    opacity: 0;
    -moz-transition: 1.2s;
    -o-transition: 1.2s;
    -webkit-transition: 1.2s;
    transition: 1.2s;
  }

  .inview .fadeinbox {
    opacity: 1;
  }

  .fadeinup {
    opacity: 0;
    -moz-transition: ease 0.8s;
    -o-transition: ease 0.8s;
    -webkit-transition: ease 0.8s;
    transition: ease 0.8s;
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
  .fadeinup.inview {
    opacity: 1;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .fadeinupbox {
    opacity: 0;
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    -moz-transition: 1.2s;
    -o-transition: 1.2s;
    -webkit-transition: 1.2s;
    transition: 1.2s;
  }

  .inview .fadeinupbox {
    opacity: 1;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .fadeinrightbox {
    opacity: 0;
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    -moz-transition: 1.2s;
    -o-transition: 1.2s;
    -webkit-transition: 1.2s;
    transition: 1.2s;
  }

  .inview .fadeinrightbox {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  .fadeinleftbox {
    opacity: 0;
    -moz-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
    -moz-transition: 1.2s;
    -o-transition: 1.2s;
    -webkit-transition: 1.2s;
    transition: 1.2s;
  }

  .inview .fadeinleftbox {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  .delay1 {
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }

  .delay2 {
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .delay3 {
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .delay4 {
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .delay5 {
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  .delay6 {
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  .delay7 {
    -moz-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }

  .delay8 {
    -moz-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }

  .delay9 {
    -moz-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }

  .delay10 {
    -moz-transition-delay: 1s;
    -o-transition-delay: 1s;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }

  .delay11 {
    -moz-transition-delay: 1.1s;
    -o-transition-delay: 1.1s;
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
  }

  .delay12 {
    -moz-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }

  .delay13 {
    -moz-transition-delay: 1.3s;
    -o-transition-delay: 1.3s;
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
  }

  .delay14 {
    -moz-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
  }

  .delay15 {
    -moz-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }

  .delay16 {
    -moz-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
  }

  .delay17 {
    -moz-transition-delay: 1.7s;
    -o-transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
  }

  .delay18 {
    -moz-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
  }

  .delay19 {
    -moz-transition-delay: 1.9s;
    -o-transition-delay: 1.9s;
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
  }

  .delay20 {
    -moz-transition-delay: 2s;
    -o-transition-delay: 2s;
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
  }

  div.switcher {
    position: absolute;
    right: 255px;
    top: 23px;
  }

  #header .inner .lang {
    width: 167px !important;
  }
  #header .inner .lang h4, #header .inner .lang ul {
    display: none;
  }

  div.btnBox2 {
    margin: 70px 0;
  }
  div.btnBox2 .inner {
    width: 740px;
    margin: 0 auto;
  }
  div.btnBox2 .inner a {
    display: block;
    width: 100%;
    border: 1px solid #000;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    transition: 0.2s;
  }
  div.btnBox2 .inner a:hover {
    opacity: 0.7;
  }
  div.btnBox2 .inner a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    background-size: 100% auto;
    width: 8px;
    height: 100%;
    top: 0;
    right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  video {
    max-width: 100%;
  }

  iframe {
    max-width: 100%;
  }

  .embed-container {
    height: 0;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
    position: relative;
  }

  .embed-container iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  body {
    background-size: 100% auto;
    padding-top: 50px;
    width: 100vw;
    width: 100%;
    overflow-x: hidden;
  }

  body.open {
    overflow: hidden;
  }

  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    height: 50px;
    border-bottom: 2px solid #000;
  }
  #header .langBox {
    position: absolute;
    top: 4px;
    left: 60px;
  }
  #header .langBox .switcher {
    font-size: 10px;
    width: 160px;
  }
  #header .langBox .switcher .selected {
    height: 40px;
    overflow: hidden;
    background: #fff;
    width: 160px;
  }
  #header .langBox .switcher .selected a {
    width: 100%;
    border: none;
    font-size: 14px;
  }
  #header .langBox .switcher .selected a:after {
    top: 5px;
  }
  #header .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    height: 48px;
  }
  #header .inner .logo {
    height: 50px;
    margin-right: auto;
  }
  #header .inner .logo a {
    height: 50px;
    display: inline-block;
  }
  #header .inner .logo a img {
    height: 100%;
    width: auto;
  }
  #header .inner .btnBox {
    display: none;
  }
  #header .inner .lang {
    display: none;
  }
  #header .inner #menuBtn {
    width: 60px;
    border-left: 1px solid #000;
    height: 48px;
    text-align: center;
    cursor: pointer;
    padding-top: 7px;
  }
  #header .inner #menuBtn .humb {
    display: inline-block;
    position: relative;
    width: 30px;
  }
  #header .inner #menuBtn .humb:before, #header .inner #menuBtn .humb:after {
    position: absolute;
    content: '';
    width: 24px;
    background: #000;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #header .inner #menuBtn .humb:before {
    height: 5px;
    left: 0;
    top: -6px;
  }
  #header .inner #menuBtn .humb:after {
    height: 4px;
    right: 0;
    bottom: -6px;
  }
  #header .inner #menuBtn .menu {
    display: none;
  }
  #header .inner #menuBtn .menu2 {
    display: none;
  }
  #header .inner #menuBtn.open .humb:before {
    height: 4px;
    left: 3px;
    top: -2px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .inner #menuBtn.open .humb:after {
    height: 4px;
    right: auto;
    left: 3px;
    top: -2px;
    bottom: auto;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #header .inner .contact {
    width: 90px;
    height: 48px;
    background: #000;
  }
  #header .inner .contact a {
    padding-top: 12px;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
  }
  #header .inner .contact a span {
    display: block;
  }
  #header .inner .contact a span.ico img {
    width: 24px;
    height: auto;
  }
  #header .inner .contact a span.menu {
    display: none;
  }

  #gNavi {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    position: fixed;
    z-index: 888;
    height: 100vh;
    top: 0;
    right: 0;
    background: #fff;
    padding-top: 50px;
    padding-bottom: 100px;
    overflow: auto;
    border-left: 1px solid #000;
    width: 84%;
  }
  #gNavi .box {
    border-bottom: 1px solid #ccc;
    padding: 20px;
  }
  #gNavi .box ul.linkBtn {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-bottom: 20px;
  }
  #gNavi .box ul.linkBtn li {
    margin-right: 10px;
  }
  #gNavi .box ul.linkBtn li a {
    display: inline-block;
    border: 1px solid #000;
    font-size: 12px;
    height: 25px;
    line-height: 23px;
    padding: 0 12px;
  }
  #gNavi .box h4 {
    font-size: 14px;
    font-weight: 900;
    position: relative;
    margin-bottom: 20px;
  }
  #gNavi .box h4:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_nav_arrow.svg) no-repeat center;
    background-size: 100% auto;
    width: 12px;
    height: 6px;
    left: 0;
    top: 50%;
    margin-top: -3px;
  }
  #gNavi .box h4 a {
    padding-left: 20px;
    color: #E21C24;
    display: inline-block;
  }
  #gNavi .box ul.main {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #gNavi .box ul.main > li {
    position: relative;
    margin-bottom: 20px;
    font-size: 14px;
  }
  #gNavi .box ul.main > li a {
    padding-left: 20px;
    display: inline-block;
  }
  #gNavi .box ul.main > li span.openBtn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/ico_plus.svg) no-repeat center;
    margin-left: 13px;
    position: relative;
    top: 4px;
    cursor: pointer;
  }
  #gNavi .box ul.main > li span.openBtn.open {
    background: url(../images/svg/ico_minus.svg) no-repeat center;
  }
  #gNavi .box ul.main > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
  }
  #gNavi .box ul.main > li.search:before {
    width: 15px;
    height: 15px;
    background: url(../images/svg/nav_marker01.svg) no-repeat center;
    background-size: 100% auto;
    margin-top: -5px;
  }
  #gNavi .box ul.main > li.book:before {
    width: 15px;
    height: 20px;
    background: url(../images/svg/nav_marker02.svg) no-repeat center;
    background-size: 100% auto;
    margin-top: -10px;
  }
  #gNavi .box ul.main > li.business:before {
    width: 15px;
    height: 20px;
    background: url(../images/svg/nav_marker03.svg) no-repeat center;
    background-size: 100% auto;
    top: 2px;
  }
  #gNavi .box ul.main > li .sub {
    font-size: 14px;
    font-weight: 400;
    padding: 15px 0 1px;
    display: none;
  }
  #gNavi .box ul.main > li .sub ul {
    padding-left: 20px;
  }
  #gNavi .box ul.main > li .sub ul li {
    margin-bottom: 10px;
  }
  #gNavi .box ul.main > li .sub ul li a {
    padding-left: 20px;
    position: relative;
  }
  #gNavi .box ul.main > li .sub ul li a:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 1px;
    background: #E21C24;
    left: 0;
    top: 50%;
  }
  #gNavi .box ul.main:last-of-type {
    margin-bottom: 0;
  }
  #gNavi .box ul.main2 {
    display: none;
  }
  #gNavi .box.b2 {
    padding: 15px 20px;
  }
  #gNavi .box.b2 h4 {
    margin-bottom: 0;
  }
  #gNavi .box.b2 h4 a {
    display: block;
  }
  #gNavi .searchBox form {
    display: block;
    width: 100%;
  }
  #gNavi .searchBox form input.gsc-input {
    width: 100%;
    border: 1px solid #000;
    font-size: 16px;
    font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
    padding: 5px 10px;
  }
  #gNavi .searchBox .gsc-input-box {
    padding-top: 4px;
    padding-bottom: 3px;
  }
  #gNavi .searchBox .gscb_a {
    display: none !important;
  }
  #gNavi .searchBox .gsc-search-button, #gNavi .searchBox .gsc-search-button-v2 {
    width: 100%;
  }
  #gNavi .searchBox .gsc-search-box {
    width: 100%;
    max-width: 100%;
  }
  #gNavi .searchBox .gstl_50.gsc-input {
    width: 80%;
  }
  #gNavi .searchBox .gsc-input {
    padding-right: 0;
  }
  #gNavi .searchBox td.gsc-search-button {
    width: 20%;
  }
  #gNavi .searchBox td.gsc-search-button button {
    background: #000;
    border: 1px solid #000;
  }
  #gNavi .langBox {
    padding: 20px;
  }
  #gNavi .langBox select {
    border: 1px solid #000;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
  }
  #gNavi.open {
    opacity: 1;
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  #overlay {
    position: fixed;
    z-index: 777;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
  #overlay.open {
    opacity: 1;
    visibility: visible;
  }

  #fv .wrap1 {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  #fv .wrap1 .mv {
    background: #000;
    width: 100%;
    overflow: hidden;
  }
  #fv .wrap1 .mv .slideBox {
    width: 100%;
    overflow: hidden;
  }
  #fv .wrap1 .mv .slideBox .img {
    text-align: center;
  }
  #fv .wrap1 .mv .slideBox .txt1, #fv .wrap1 .mv .slideBox .txt2, #fv .wrap1 .mv .slideBox .txt3, #fv .wrap1 .mv .slideBox .txt4, #fv .wrap1 .mv .slideBox .txt5 {
    display: none;
    position: absolute;
    width: 100%;
    padding: 0 20px;
    left: 0px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
  }
  #fv .wrap1 .mv .slideBox .txt1 {
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    z-index: 1;
    top: 20px;
  }
  #fv .wrap1 .mv .slideBox .txt1 img {
    max-height: 25px;
    width: auto;
    max-width: 100%;
  }
  #fv .wrap1 .mv .slideBox .txt4 {
    height: 34px;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 4;
    top: 60px;
  }
  #fv .wrap1 .mv .slideBox .txt4 img {
    height: 100%;
    width: auto;
  }
  #fv .wrap1 .mv .slideBox .txt5 {
    -moz-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
    z-index: 7;
    bottom: 23px;
  }
  #fv .wrap1 .mv .slideBox.slide02 .txt1 img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
  }
  #fv .wrap1 .mv .slideBox.slide02 .txt4 {
    top: 85px;
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .img {
    opacity: 1;
  }
  #fv .wrap1 .mv .slideBox.swiper-slide-active .txt1, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt2, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt3, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt4, #fv .wrap1 .mv .slideBox.swiper-slide-active .txt5 {
    opacity: 1;
  }
  #fv .wrap2 {
    border-top: 1px solid #000;
  }
  #fv .wrap2 ul li {
    color: #fff;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 28px 45px;
  }
  #fv .wrap2 ul li h3 {
    font-size: 17px;
    font-weight: 900;
    position: relative;
    padding-top: 32px;
    margin-bottom: 20px;
  }
  #fv .wrap2 ul li h3:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
  }
  #fv .wrap2 ul li h3.book:before {
    background: url(../images/svg/ico_first.svg) no-repeat center;
    background-size: 100% auto;
    width: 20px;
    height: 15px;
    margin-left: -10px;
  }
  #fv .wrap2 ul li h3.business:before {
    background: url(../images/svg/ico_business.svg) no-repeat center;
    background-size: 100% auto;
    width: 20px;
    height: 15px;
    margin-left: -10px;
  }
  #fv .wrap2 ul li p {
    font-size: 12px;
    line-height: 1.64;
    margin-bottom: 30px;
  }
  #fv .wrap2 ul li .btn {
    display: block;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    padding: 20px 0;
    position: relative;
  }
  #fv .wrap2 ul li .btn:after {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: -30px;
    content: '';
    width: 61px;
    height: 12px;
    background: url(../images/svg/ico_arrow_w.svg) no-repeat center;
  }
  #fv .wrap2 ul li.b1 {
    background: url(../images/bg_box01.jpg) no-repeat center;
    background-size: cover;
  }
  #fv .wrap2 ul li.b2 {
    background: url(../images/bg_box02.jpg) no-repeat center;
    background-size: cover;
  }

  #topSec01 {
    background: url(../images/sp_bg_top01.jpg) no-repeat center top;
    background-size: 100% auto;
    padding-top: 35px;
    margin-bottom: 40px;
    overflow: hidden;
  }
  #topSec01 .inner .wrap1 {
    padding: 0 20px;
  }
  #topSec01 .inner .wrap1 .about {
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
  }
  #topSec01 .inner .wrap1 .about a {
    display: block;
    padding: 10px;
  }
  #topSec01 .inner .wrap1 .about .imgClm {
    margin-bottom: 10px;
    width: 100%;
    height: 196px;
  }
  #topSec01 .inner .wrap1 .about .imgClm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #topSec01 .inner .wrap1 .about .videoWrap {
    margin-bottom: 10px;
    width: 100%;
    height: 196px;
  }
  #topSec01 .inner .wrap1 .about .videoWrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #topSec01 .inner .wrap1 .about h2 {
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 900;
    position: relative;
    padding-left: 60px;
  }
  #topSec01 .inner .wrap1 .about h2:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_logo.svg) no-repeat center;
    width: 50px;
    height: 40px;
    left: 0;
    top: 50%;
    margin-top: -20px;
  }
  #topSec01 .inner .wrap1 .about h2:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 8px;
    right: 0px;
    top: 50%;
    margin-top: -4px;
  }
  #topSec01 .inner .wrap1 .enterprise {
    margin-bottom: 40px;
  }
  #topSec01 .inner .wrap1 .enterprise ul li a {
    border: 1px solid #000;
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 10px 30px;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  #topSec01 .inner .wrap1 .enterprise ul li a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 8px;
    right: 20px;
    top: 50%;
    margin-top: -4px;
  }
  #topSec01 .inner .wrap2 ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #topSec01 .inner .wrap2 ul li {
    width: 72%;
  }
  #topSec01 .inner .wrap2 ul li a {
    display: block;
  }
  #topSec01 .inner .wrap2 ul li .imgClm {
    margin-bottom: 10px;
  }
  #topSec01 .inner .wrap2 ul li h3 {
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 900;
    padding-left: 50px;
    position: relative;
  }
  #topSec01 .inner .wrap2 ul li h3:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 20px;
    left: 20px;
    top: 50%;
    margin-top: -10px;
  }
  #topSec01 .inner .wrap2 ul li h3:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 8px;
    right: 20px;
    top: 50%;
    margin-top: -4px;
  }
  #topSec01 .inner .wrap2 ul li.interview {
    margin-bottom: 18px;
  }
  #topSec01 .inner .wrap2 ul li.interview h3:before {
    background: url(../images/svg/ico_interview.svg) no-repeat center;
    background-size: 100% auto;
  }
  #topSec01 .inner .wrap2 ul li.workers {
    margin-left: auto;
  }
  #topSec01 .inner .wrap2 ul li.workers h3:before {
    background: url(../images/svg/ico_workers.svg) no-repeat center;
    background-size: 100% auto;
  }

  #pickupSec {
    position: relative;
    margin-bottom: 35px;
  }
  #pickupSec:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 40px;
    left: 0;
    right: 0;
    height: 200px;
    background: #F0F5FA;
  }
  #pickupSec .inner h2 {
    font-size: 50px;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #F0F5FA;
  }
  #pickupSec .inner .slideBox .swiper-container {
    width: 100%;
    padding-top: 50px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide {
    padding: 0 30px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .imgClm {
    height: 210px;
    margin-bottom: 15px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .imgClm a {
    display: block;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .imgClm a img {
    max-width: 100%;
    max-height: 100%;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm h3 {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .post-categories {
    margin-bottom: 10px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .post-categories li a {
    text-decoration: underline;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 900;
    color: #808080;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .post-categories li a:hover {
    text-decoration: none;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .tags {
    margin-bottom: 10px;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .tags a {
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
    text-decoration: underline;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .tags a:hover {
    text-decoration: none;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-slide .txtClm .time {
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
  }
  #pickupSec .inner .slideBox .swiper-container .control {
    position: absolute;
    top: 0px;
    right: 0;
    width: 80px;
    height: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    background: #fff;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    margin: 0;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-prev:after {
    display: none;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    margin: 0;
  }
  #pickupSec .inner .slideBox .swiper-container .control .swiper-button-next:after {
    display: none;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-pagination {
    position: absolute;
    width: 100%;
    top: 0;
    text-align: left;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
  }
  #pickupSec .inner .slideBox .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
  }

  #whatsNew {
    overflow: hidden;
    margin-bottom: 60px;
  }
  #whatsNew .inner .head {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px 0 30px;
    margin-bottom: 30px;
  }
  #whatsNew .inner .head h2 {
    font-size: 30px;
    letter-spacing: 0.04em;
    margin-right: auto;
  }
  #whatsNew .inner .head h2 span {
    display: inline-block;
    position: relative;
    padding: 0 5px;
  }
  #whatsNew .inner .head h2 span:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 1px;
    background: #000;
    right: 100%;
    top: 50%;
  }
  #whatsNew .inner .head .btnBox .btn {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.04em;
    border: 1px solid #000;
    height: 30px;
    line-height: 28px;
    padding: 0 24px 0 10px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #whatsNew .inner .head .btnBox .btn:hover {
    opacity: 0.7;
  }
  #whatsNew .inner .head .btnBox .btn:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -4px;
    right: 10px;
  }
  #whatsNew .inner ul.grid {
    padding: 0 30px;
  }
  #whatsNew .inner ul.grid > li {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 30px;
  }
  #whatsNew .inner ul.grid > li .imgClm {
    width: 140px;
    min-width: 140px;
  }
  #whatsNew .inner ul.grid > li .imgClm a {
    display: block;
  }
  #whatsNew .inner ul.grid > li .imgClm img {
    width: 100%;
    height: auto;
  }
  #whatsNew .inner ul.grid > li .txtClm {
    padding-left: 20px;
  }
  #whatsNew .inner ul.grid > li .txtClm h3 {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  #whatsNew .inner ul.grid > li .txtClm h3 a {
    display: block;
  }
  #whatsNew .inner ul.grid > li .txtClm .post-categories {
    margin-bottom: 10px;
  }
  #whatsNew .inner ul.grid > li .txtClm .post-categories li a {
    text-decoration: underline;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 900;
    color: #808080;
  }
  #whatsNew .inner ul.grid > li .txtClm .post-categories li a:hover {
    text-decoration: none;
  }
  #whatsNew .inner ul.grid > li .txtClm .tags {
    margin-bottom: 10px;
  }
  #whatsNew .inner ul.grid > li .txtClm .tags a {
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
    text-decoration: underline;
  }
  #whatsNew .inner ul.grid > li .txtClm .tags a:hover {
    text-decoration: none;
  }
  #whatsNew .inner ul.grid > li .txtClm .time {
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
  }

  #topBooks {
    margin-bottom: 60px;
  }
  #topBooks .inner .head {
    position: relative;
    margin-bottom: 30px;
  }
  #topBooks .inner .head h2 {
    font-size: 28px;
    letter-spacing: 0.04em;
    font-weight: 900;
    text-align: center;
  }
  #topBooks .inner .head h2 span {
    position: relative;
    display: inline-block;
    padding-left: 50px;
  }
  #topBooks .inner .head h2 span:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_newbook.svg) no-repeat center;
    width: 30px;
    height: 40px;
    left: 0;
    top: 50%;
    margin-top: -20px;
  }
  #topBooks .inner .sideBox .newbookslider {
    padding: 5px 0;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide {
    width: 140px;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide a {
    display: block;
    padding: 7px 20px;
    background: #fff;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide .imgClm {
    text-align: center;
  }
  #topBooks .inner .sideBox .newbookslider .swiper-slide .imgClm img {
    height: 126px;
    width: auto;
  }

  #footer {
    border-top: 1px solid #000;
    padding-top: 35px;
  }
  #footer .inner {
    padding: 0 20px;
  }
  #footer .inner .btnBox {
    text-align: center;
    margin-bottom: 40px;
  }
  #footer .inner .btnBox a.btn {
    display: block;
    border: 1px solid #000;
    position: relative;
    height: 50px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    padding-right: 20px;
    background: #fff;
  }
  #footer .inner .btnBox a.btn span.en {
    display: none;
  }
  #footer .inner .btnBox a.btn span.ja {
    position: relative;
    font-size: 13px;
    font-weight: 900;
    display: inline-block;
    padding-left: 50px;
    line-height: 48px;
  }
  #footer .inner .btnBox a.btn span.ja:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    content: '';
    background: url(../images/svg/nav_marker04.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 20px;
  }
  #footer .inner .fnavi1 {
    margin-bottom: 60px;
    border-top: 1px solid #000;
  }
  #footer .inner .fnavi1 ul li a {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
    font-weight: 900;
    border-bottom: 1px solid #000;
    padding: 15px 0px 15px 35px;
    position: relative;
  }
  #footer .inner .fnavi1 ul li a:before {
    position: absolute;
    content: '';
    width: 14px;
    height: 8px;
    left: 0;
    top: 50%;
    background: url(../images/svg/ico_nav_arrow.svg) no-repeat center;
    background-size: 100% auto;
    margin-top: -4px;
  }
  #footer .inner .fnavi1 ul li a.link {
    position: relative;
  }
  #footer .inner .fnavi1 ul li a.link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    left: 95px;
    top: 50%;
    margin-top: -5px;
  }
  #footer .inner .bnrBox {
    margin-bottom: 40px;
  }
  #footer .inner .bnrBox ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #footer .inner .bnrBox ul:after {
    width: 100px;
    content: '';
  }
  #footer .inner .bnrBox ul li {
    width: 100px;
    margin-bottom: 20px;
  }
  #footer .inner .bnrBox ul li a {
    display: block;
    border: 1px solid #F0F5FA;
  }
  #footer .inner2 {
    padding: 0 20px;
  }
  #footer .inner2 .fnavi2 {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 15px 0 10px;
  }
  #footer .inner2 .fnavi2 li {
    margin: 0 15px 10px;
    position: relative;
    font-size: 12px;
  }
  #footer .inner2 .fnavi2 li a {
    display: inline-block;
  }
  #footer .inner2 .fnavi2 li:after {
    position: absolute;
    content: '|';
    right: -15px;
  }
  #footer .inner2 .fnavi2 li:last-of-type:after {
    display: none;
  }
  #footer .inner3 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px 40px;
    position: relative;
  }
  #footer .inner3 .logo {
    display: none;
  }
  #footer .inner3 .sns {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    margin-right: auto;
  }
  #footer .inner3 .sns h4 {
    margin-right: 20px;
    position: relative;
    padding-right: 40px;
    letter-spacing: 0.04em;
  }
  #footer .inner3 .sns h4:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 1px;
    background: #000;
    right: 0;
    top: 50%;
  }
  #footer .inner3 .copy {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  #footer .inner3 #gotop {
    display: none;
  }

  #mvSub {
    margin-bottom: 35px;
  }
  #mvSub .inner .imgClm {
    width: 100%;
    height: 120px;
  }
  #mvSub .inner .imgClm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #mvSub .inner .imgClm2 {
    width: 100%;
    height: 120px;
    padding-right: 20px;
  }
  #mvSub .inner .imgClm2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  #mvSub .inner .breadcrumbs {
    display: none;
  }
  #mvSub .inner .txtClm {
    position: relative;
    text-align: center;
  }
  #mvSub .inner .txtClm span {
    pointer-events: none;
    position: absolute;
    top: -30px;
    width: 100%;
    z-index: 5;
    display: block;
    font-size: 40px;
    line-height: 1;
    color: #fff;
  }
  #mvSub .inner .txtClm h1, #mvSub .inner .txtClm h2 {
    padding-top: 18px;
    font-size: 20px;
    font-weight: 900;
  }
  #mvSub .inner .txtClm .txt {
    margin-top: 25px;
    padding: 0 20px;
    font-size: 13px;
    line-height: 1.38;
  }
  #mvSub.mb20 {
    margin-bottom: 15px;
  }
  #mvSub.mb0 {
    margin-bottom: 15px;
  }
  #mvSub.interview {
    margin-bottom: 15px;
  }

  div.bnrSec {
    margin-bottom: 40px;
  }
  div.bnrSec .inner {
    padding: 0 20px;
  }
  div.bnrSec .inner a {
    display: inline-block;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  div.bnrSec .inner a:hover {
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: none;
  }

  #booksSec {
    margin-bottom: 110px;
  }
  #booksSec .inner {
    padding: 0 20px;
  }
  #booksSec .inner .box {
    background: #F0F5FA;
    margin-bottom: 40px;
    padding: 20px;
  }
  #booksSec .inner .box .imgClm {
    width: 100%;
    height: 120px;
  }
  #booksSec .inner .box .imgClm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #booksSec .inner .box .txtClm .head {
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    position: relative;
    margin-bottom: 20px;
  }
  #booksSec .inner .box .txtClm .head span.en {
    position: absolute;
    right: 10px;
    bottom: 2px;
    font-size: 60px;
    line-height: 1;
    color: #fff;
  }
  #booksSec .inner .box .txtClm .head h2 {
    font-size: 17px;
    font-weight: 900;
    position: relative;
    padding-left: 30px;
  }
  #booksSec .inner .box .txtClm .head h2:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 20px;
    background: url(../images/svg/hx_books.svg) no-repeat center;
    left: 0;
    top: 50%;
    margin-top: -10px;
  }
  #booksSec .inner .box .txtClm .txt {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 15px;
  }
  #booksSec .inner .box .txtClm .btnBox {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #booksSec .inner .box .txtClm .btnBox li {
    margin-right: 10px;
  }
  #booksSec .inner .box .txtClm .btnBox li .btn {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 12px;
    width: 120px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #booksSec .inner .box .txtClm .btnBox li .btn:hover {
    opacity: 0.7;
  }
  #booksSec .inner .box .txtClm .btnBox li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #booksSec .inner .box .txtClm .btnBox li .link {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    font-size: 12px;
    width: 150px;
    height: 40px;
    line-height: 38px;
    padding-left: 20px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #booksSec .inner .box .txtClm .btnBox li .link:hover {
    opacity: 0.7;
  }
  #booksSec .inner .box .txtClm .btnBox li .link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #booksSec .inner .box .txtClm h3.ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #booksSec .inner .box .txtClm .pdfList {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  #booksSec .inner .box .txtClm .pdfList li {
    width: 48%;
    margin-bottom: 10px;
  }
  #booksSec .inner .box .txtClm .pdfList li .btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    padding-left: 17px;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #booksSec .inner .box .txtClm .pdfList li .btn:hover {
    opacity: 0.7;
  }
  #booksSec .inner .box .txtClm .pdfList li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }

  section.booksSec {
    margin-bottom: 50px;
    position: relative;
  }
  section.booksSec:before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 250px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F0F5FA;
  }
  section.booksSec .inner .wrap .head.sp {
    text-align: center;
    font-weight: 900;
    margin-bottom: 25px;
  }
  section.booksSec .inner .wrap .head.sp span.ja {
    font-size: 15px;
  }
  section.booksSec .inner .wrap .head.sp h1 {
    font-size: 20px;
  }
  section.booksSec .inner .wrap .imgClm {
    text-align: center;
    margin-bottom: 30px;
  }
  section.booksSec .inner .wrap .imgClm img {
    max-width: 265px;
    height: auto;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  section.booksSec .inner .wrap .txtClm {
    padding: 0 20px 60px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox {
    margin-bottom: 20px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li {
    margin-bottom: 10px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    position: relative;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn2 {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    position: relative;
  }
  section.booksSec .inner .wrap .txtClm .btnBox li .btn2:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.booksSec .inner .wrap .txtClm .txt {
    font-size: 13px;
    line-height: 1.38;
  }
  section.booksSec .inner .wrap .txtClm .info {
    padding-top: 50px;
    overflow: hidden;
  }
  section.booksSec .inner .wrap .txtClm .info .logo {
    width: 100%;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  section.booksSec .inner .wrap .txtClm .info a {
    text-decoration: underline;
  }

  section.booksSec2 {
    margin-bottom: 60px;
  }
  section.booksSec2 .inner .box {
    margin-bottom: 70px;
  }
  section.booksSec2 .inner .box h2 {
    font-size: 16px;
    font-weight: 900;
    padding-left: 14px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  section.booksSec2 .inner .box h2 span {
    display: inline-block;
    padding: 0 8px;
    position: relative;
  }
  section.booksSec2 .inner .box h2 span:before, section.booksSec2 .inner .box h2 span:after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -4px;
    height: 8px;
  }
  section.booksSec2 .inner .box h2 span:before {
    width: 64px;
    background: url(../images/svg/hx_line_l.svg) no-repeat right center;
    right: 100%;
  }
  section.booksSec2 .inner .box h2 span:after {
    width: 820px;
    background: url(../images/svg/hx_line_r.svg) no-repeat left center;
    left: 100%;
  }
  section.booksSec2 .inner .box .shop {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 0 0 0 30px;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .box .shop li {
    margin-right: 22px;
    width: 90px;
  }
  section.booksSec2 .inner .box .shop li a {
    border: 1px solid #F0F5FA;
    display: block;
  }
  section.booksSec2 .inner .box .pickup {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  section.booksSec2 .inner .box .pickup:after {
    position: relative;
    content: '';
    width: 31%;
  }
  section.booksSec2 .inner .box .pickup li {
    width: 31%;
    margin-bottom: 10px;
  }
  section.booksSec2 .inner .box .pickup li a {
    border: 1px solid #F0F5FA;
    display: block;
  }
  section.booksSec2 .inner .box .app {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .box .app li {
    margin-right: 10px;
    margin-bottom: 10px;
    height: 40px;
  }
  section.booksSec2 .inner .box .app li a {
    height: 40px;
    display: inline-block;
  }
  section.booksSec2 .inner .box .app li a img {
    height: 100%;
    width: auto;
  }
  section.booksSec2 .inner .box .caution {
    padding: 0 30px;
    font-size: 12px;
  }
  section.booksSec2 .inner .wrap {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  section.booksSec2 .inner .wrap .imgClm {
    text-align: center;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .wrap .txtClm h3 {
    font-size: 18px;
    font-weight: 900;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .wrap .txtClm .txt {
    font-size: 13px;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  section.booksSec2 .inner .wrap .txtClm .txt.mb0 {
    margin-bottom: 10px;
  }
  section.booksSec2 .inner .wrap .txtClm .editor {
    font-size: 16px;
    font-weight: 900;
  }
  section.booksSec2 .inner .wrap .txtClm .editor span {
    display: block;
    font-size: 13px;
  }
  section.booksSec2 .inner > .btnBox {
    margin-top: 60px;
    padding: 0 20px;
  }
  section.booksSec2 .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    text-align: right;
    text-align: center;
    position: relative;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  section.booksSec2 .inner > .btnBox .backbtn:hover {
    opacity: 0.7;
  }
  section.booksSec2 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #businessSec .inner {
    padding: 0 20px;
  }
  #businessSec .inner ul li {
    margin-bottom: 20px;
  }
  #businessSec .inner ul li a {
    display: block;
    background: #fff;
    padding: 20px 35px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
  }
  #businessSec .inner ul li a .imgClm {
    margin-bottom: 10px;
  }
  #businessSec .inner ul li a h2 {
    font-size: 15px;
    font-weight: 900;
    padding-left: 30px;
    position: relative;
    line-height: 1.3;
  }
  #businessSec .inner ul li a h2:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 20px;
    left: 0;
    top: 50%;
    margin-top: -10px;
    background: url(../images/svg/nav_marker03.svg) no-repeat center;
  }
  #businessSec .inner ul li a h2:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 0;
    top: 50%;
    margin-top: -10px;
  }

  section.businessSec1 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
  }
  section.businessSec1:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 105px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F0F5FA;
  }
  section.businessSec1 .inner {
    padding: 0 20px;
  }
  section.businessSec1 .inner .txtClm {
    margin-bottom: 30px;
  }
  section.businessSec1 .inner .txtClm .head {
    text-align: center;
    margin-bottom: 20px;
  }
  section.businessSec1 .inner .txtClm .head span.ja {
    font-size: 15px;
    font-weight: 900;
  }
  section.businessSec1 .inner .txtClm .head h1 {
    font-size: 20px;
  }
  section.businessSec1 .inner .txtClm > .txt {
    text-align: center;
    font-size: 13px;
    line-height: 1.38;
  }
  section.businessSec1 .inner .txtClm .btnBox {
    margin-top: 20px;
  }
  section.businessSec1 .inner .txtClm .btnBox li {
    margin-bottom: 10px;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn {
    text-align: center;
    background: #fff;
    display: block;
    font-size: 13px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    position: relative;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn2 {
    text-align: center;
    background: #fff;
    display: block;
    font-size: 13px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    position: relative;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn2:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 12px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn3 {
    text-align: center;
    background: #fff;
    display: block;
    font-size: 13px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    position: relative;
  }
  section.businessSec1 .inner .txtClm .btnBox li .btn3:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec1 .inner .slideClm .businessslider {
    padding-bottom: 25px;
  }
  section.businessSec1 .inner .slideClm .businessslider .swiper-pagination {
    bottom: 0;
    text-align: right;
  }
  section.businessSec1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
    margin: 0 0 0 8px;
  }
  section.businessSec1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
  }

  section.businessSec2 {
    margin-bottom: 60px;
  }
  section.businessSec2 .inner {
    padding: 0 20px;
  }
  section.businessSec2 .inner .box {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
  }
  section.businessSec2 .inner .box h2 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  section.businessSec2 .inner .box .wrap {
    margin-bottom: 30px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
  }
  section.businessSec2 .inner .box .wrap .imgClm {
    width: 90px;
    min-width: 90px;
    margin-right: auto;
  }
  section.businessSec2 .inner .box .wrap .imgClm img {
    border: 1px solid #000;
  }
  section.businessSec2 .inner .box .wrap > .editor {
    width: calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    font-size: 15px;
    font-weight: 900;
  }
  section.businessSec2 .inner .box .wrap > .editor span {
    display: block;
    font-size: 12px;
  }
  section.businessSec2 .inner .box .wrap .txtClm {
    margin-top: 20px;
    width: 100%;
  }
  section.businessSec2 .inner .box .wrap .txtClm .txt {
    font-size: 14px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .editor {
    font-size: 13px;
    font-weight: 900;
  }
  section.businessSec2 .inner .box .wrap .txtClm .editor span {
    display: block;
    font-size: 12px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .prof {
    margin-top: 20px;
    background: #F0F5FA;
    padding: 20px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .prof h4 {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
  }
  section.businessSec2 .inner .box .wrap .txtClm .prof .txt {
    font-size: 12px;
    line-height: 1.66;
    margin: 0;
  }
  section.businessSec2 .inner .box ul.link {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
  }
  section.businessSec2 .inner .box ul.link:after {
    position: relative;
    content: '';
    width: 32%;
  }
  section.businessSec2 .inner .box ul.link li {
    margin-bottom: 20px;
    width: 32%;
  }
  section.businessSec2 .inner .box ul.link li a {
    border: 1px solid #F0F5FA;
    display: block;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.businessSec2 .inner .box.bn {
    border: none;
    padding: 0;
  }
  section.businessSec2 .inner .box .content .txt {
    font-size: 16px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box .content .box2 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 40px;
  }
  section.businessSec2 .inner .box .content .box2 .imgClm {
    width: 90px;
    min-width: 90px;
    margin-right: 20px;
  }
  section.businessSec2 .inner .box .content .box2 .imgClm img {
    border: 1px solid #000;
  }
  section.businessSec2 .inner .box .content .box2 h3 {
    width: calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    font-size: 16px;
    font-weight: 900;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm {
    margin-top: 20px;
    width: 100%;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm h4 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.625;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm a.btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    width: 100%;
    height: 40px;
    line-height: 38px;
    position: relative;
    text-align: center;
  }
  section.businessSec2 .inner .box .content .box2 .txtClm a.btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec2 .inner .box .content .box2:last-of-type {
    margin-bottom: 0;
  }
  section.businessSec2 .inner .box .projectlist {
    padding-bottom: 20px;
  }
  section.businessSec2 .inner .box .projectlist li {
    margin-bottom: 20px;
  }
  section.businessSec2 .inner .box .projectlist li a {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    background: #fff;
    padding: 20px 35px;
    border: 1px solid #F0F5FA;
  }
  section.businessSec2 .inner .box .projectlist li a .imgClm {
    margin-bottom: 10px;
  }
  section.businessSec2 .inner .box .projectlist li a h3 {
    font-size: 15px;
    font-weight: 900;
    position: relative;
  }
  section.businessSec2 .inner .box .projectlist li a h3:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 0;
    top: 50%;
    margin-top: -10px;
  }
  section.businessSec2 .inner .box .projectlist li a h3.link:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_link.svg) no-repeat center;
    width: 12px;
    height: 12px;
    right: 0;
    top: 50%;
    margin-top: -6px;
  }
  section.businessSec2 .inner .box .projectlist li a:hover {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.businessSec2 .inner > .btnBox {
    text-align: center;
    margin-top: 50px;
  }
  section.businessSec2 .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
  }
  section.businessSec2 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #breadCrumb {
    display: none;
  }

  section.mangaResearchAi1 {
    margin-bottom: 40px;
    padding-top: 20px;
  }
  section.mangaResearchAi1 .inner .slideClm {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider {
    padding-bottom: 25px;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider .swiper-pagination {
    bottom: 0;
    text-align: right;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
    margin: 0 0 0 8px;
  }
  section.mangaResearchAi1 .inner .slideClm .businessslider .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
  }
  section.mangaResearchAi1 .inner .txtClm {
    position: relative;
    padding: 0 20px 30px;
  }
  section.mangaResearchAi1 .inner .txtClm:before {
    position: absolute;
    z-index: -1;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    top: 65px;
    background: #F0F5FA;
  }
  section.mangaResearchAi1 .inner .txtClm .head {
    font-weight: 900;
    margin-bottom: 20px;
  }
  section.mangaResearchAi1 .inner .txtClm .head span.ja {
    display: block;
    font-size: 10px;
    margin-bottom: 5px;
  }
  section.mangaResearchAi1 .inner .txtClm .head p {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 10px;
  }
  section.mangaResearchAi1 .inner .txtClm .head h1 {
    font-size: 25px;
  }
  section.mangaResearchAi1 .inner .txtClm p.txt {
    font-size: 13px;
    line-height: 1.38;
  }
  section.mangaResearchAi1 .inner .txtClm .sns {
    margin-top: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  section.mangaResearchAi1 .inner .txtClm .sns h4 {
    margin-right: 20px;
    position: relative;
    padding-right: 50px;
    letter-spacing: 0.04em;
    font-size: 12px;
  }
  section.mangaResearchAi1 .inner .txtClm .sns h4:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 1px;
    background: #000;
    right: 0;
    top: 50%;
  }
  section.mangaResearchAi1 .inner .txtClm .sns ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  section.mangaResearchAi1 .inner .txtClm .sns ul li {
    margin-right: 20px;
  }

  section.mangaResearchAi2 {
    margin-bottom: 60px;
  }
  section.mangaResearchAi2 .inner .box {
    padding: 0 20px 60px;
    border-bottom: 1px solid #000;
    margin-bottom: 60px;
  }
  section.mangaResearchAi2 .inner .box .headClm {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
  }
  section.mangaResearchAi2 .inner .box .headClm h2 {
    font-size: 19px;
    line-height: 1.58;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .headClm h2:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: #000;
  }
  section.mangaResearchAi2 .inner .box .headClm .txt {
    font-size: 12px;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .headClm .small {
    font-size: 12px;
    line-height: 1.58;
  }
  section.mangaResearchAi2 .inner .box .headClm .small a {
    text-decoration: underline;
  }
  section.mangaResearchAi2 .inner .box .headClm hr {
    margin: 30px 0;
    height: 0;
    border-top: 1px solid #000;
  }
  section.mangaResearchAi2 .inner .box .headClm .img {
    margin-bottom: 25px;
  }
  section.mangaResearchAi2 .inner .box .headClm .img img {
    width: 100%;
    height: auto;
  }
  section.mangaResearchAi2 .inner .box .headClm .btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    position: relative;
    text-align: center;
  }
  section.mangaResearchAi2 .inner .box .headClm .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.mangaResearchAi2 .inner .box .mainClm p.txt {
    font-size: 16px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .img {
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .img img {
    width: 100%;
    height: auto;
  }
  section.mangaResearchAi2 .inner .box .mainClm .videoBox {
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .videoBox a {
    display: block;
    position: relative;
  }
  section.mangaResearchAi2 .inner .box .mainClm .videoBox a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_play.svg) no-repeat center;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 {
    background: #F0F5FA;
    padding: 20px 20px;
    margin-bottom: 30px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 p.txt2 {
    font-size: 14px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box2 hr {
    margin: 20px 0;
    border-top: 1px solid #000;
    height: 0;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .img {
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .img:last-of-type {
    margin-bottom: 0;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .txt {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 .data {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3 hr {
    margin: 20px 0;
    height: 0;
    border-top: 1px solid #000;
  }
  section.mangaResearchAi2 .inner .box .mainClm .box3:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  section.mangaResearchAi2 .inner .box .mainClm a {
    text-decoration: underline;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox:after {
    position: relative;
    content: '';
    width: 32%;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox li {
    width: 32%;
    min-width: 32%;
    margin-bottom: 20px;
  }
  section.mangaResearchAi2 .inner .box .mainClm .linkBox li a {
    display: block;
    border: 1px solid #F0F5FA;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.mangaResearchAi2 .inner .box:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
  section.mangaResearchAi2 .inner > .btnBox {
    padding: 0 20px;
    text-align: center;
    margin-top: 40px;
  }
  section.mangaResearchAi2 .inner > .btnBox .backbtn {
    text-align: center;
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    position: relative;
  }
  section.mangaResearchAi2 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.mediamixSec {
    margin-bottom: 60px;
  }
  section.mediamixSec .inner {
    padding: 0 10px;
  }
  section.mediamixSec .inner .grid {
    position: relative;
    margin-bottom: 50px;
  }
  section.mediamixSec .inner .grid li {
    width: 49%;
    position: absolute;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  section.mediamixSec .inner .grid li .imgClm {
    margin-bottom: 15px;
  }
  section.mediamixSec .inner .grid li h3 {
    font-size: 13px;
    line-height: 1.38;
    font-weight: 400;
    margin-bottom: 10px;
  }
  section.mediamixSec .inner .grid li .meta .time {
    display: block;
    font-size: 12px;
  }
  section.mediamixSec .inner .grid li .meta a {
    display: inline-block;
    font-size: 12px;
    border-bottom: 1px solid #000;
  }
  section.mediamixSec .inner > .btnBox {
    text-align: center;
    margin-top: 50px;
    padding: 0 10px;
  }
  section.mediamixSec .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    position: relative;
    text-align: center;
  }
  section.mediamixSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.collaborationSec {
    margin-bottom: 50px;
  }
  section.collaborationSec .inner {
    padding: 0 10px;
  }
  section.collaborationSec .inner h2 {
    padding: 0 10px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
  }
  section.collaborationSec .inner h2:after {
    position: absolute;
    left: 10px;
    bottom: 0;
    content: '';
    width: calc(100% - 20px);
    width: -webkit-calc(100% - 20px);
    height: 1px;
    background: #000;
  }
  section.collaborationSec .inner .grid1, section.collaborationSec .inner .grid2, section.collaborationSec .inner .grid3, section.collaborationSec .inner .grid4, section.collaborationSec .inner .grid5 {
    position: relative;
    margin-bottom: 50px;
    padding: 0 10px;
  }
  section.collaborationSec .inner .grid1 li, section.collaborationSec .inner .grid2 li, section.collaborationSec .inner .grid3 li, section.collaborationSec .inner .grid4 li, section.collaborationSec .inner .grid5 li {
    position: absolute;
    width: 49.9%;
    padding: 0 10px 20px;
  }
  section.collaborationSec .inner .grid1 li a, section.collaborationSec .inner .grid2 li a, section.collaborationSec .inner .grid3 li a, section.collaborationSec .inner .grid4 li a, section.collaborationSec .inner .grid5 li a {
    display: block;
  }
  section.collaborationSec .inner > .btnBox {
    text-align: center;
    margin-top: 50px;
    padding: 0 10px;
  }
  section.collaborationSec .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    position: relative;
    text-align: center;
  }
  section.collaborationSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  section.realplacesSec {
    margin-bottom: 50px;
  }
  section.realplacesSec .inner .box {
    padding: 0 20px 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #000;
  }
  section.realplacesSec .inner .box .headClm {
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .headClm h2 {
    font-size: 18px;
    line-height: 1.58;
    position: relative;
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .headClm .txt {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .headClm .img {
    margin-bottom: 20px;
    text-align: center;
  }
  section.realplacesSec .inner .box .headClm a.btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    position: relative;
    text-align: center;
  }
  section.realplacesSec .inner .box .headClm a.btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  section.realplacesSec .inner .box .mainClm ul li {
    margin-bottom: 10px;
  }
  section.realplacesSec .inner .box .mainClm .linkBox {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
  }
  section.realplacesSec .inner .box .mainClm .linkBox:after {
    position: relative;
    content: '';
    width: 32%;
  }
  section.realplacesSec .inner .box .mainClm .linkBox li {
    width: 32%;
    min-width: 32%;
    margin-bottom: 20px;
  }
  section.realplacesSec .inner .box .mainClm .linkBox li a {
    display: block;
    border: 1px solid #F0F5FA;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  section.realplacesSec .inner .box:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
  section.realplacesSec .inner > .btnBox {
    padding: 0 20px;
    text-align: center;
    margin-top: 50px;
  }
  section.realplacesSec .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    text-align: center;
  }
  section.realplacesSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  div.videoSec {
    margin-bottom: 30px;
  }
  div.videoSec .inner {
    padding: 0 20px;
  }

  #conceptSec {
    margin-bottom: 60px;
  }
  #conceptSec .inner {
    padding: 0 20px;
  }
  #conceptSec .inner .head {
    margin-bottom: 30px;
  }
  #conceptSec .inner .head span.en {
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
  }
  #conceptSec .inner .head h2 {
    position: relative;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.33;
  }
  #conceptSec .inner .content .txt {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.38;
  }
  #conceptSec .inner .content .big {
    font-size: 14px;
    line-height: 1.38;
    font-weight: 900;
  }

  div.bnrSec2 {
    margin-bottom: 50px;
  }
  div.bnrSec2 .inner {
    padding: 0 20px;
  }
  div.bnrSec2 .inner .bnr1 {
    margin-bottom: 30px;
  }
  div.bnrSec2 .inner .bnr1 a {
    display: block;
    color: #fff;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm {
    background: #000;
    padding: 20px;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm h3 {
    font-size: 14px;
    font-weight: 900;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm h3 span {
    font-weight: 400;
  }
  div.bnrSec2 .inner .bnr1 a .txtClm p {
    font-size: 14px;
    line-height: 1.38;
    font-weight: 900;
  }
  div.bnrSec2 .inner .bnr2 a {
    display: block;
    width: 100%;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm {
    background: #F0F5FA;
    padding: 20px;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm h3 {
    font-size: 12px;
    font-weight: 900;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm h3 span {
    font-weight: 400;
  }
  div.bnrSec2 .inner .bnr2 a .txtClm p {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.38;
  }

  #workersList {
    overflow: hidden;
    padding: 40px 0 60px;
    position: relative;
  }
  #workersList:before {
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    height: 180px;
    background: #F0F5FA;
  }
  #workersList .inner .wrap {
    position: relative;
    z-index: 5;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-left: 20px;
  }
  #workersList .inner .head {
    width: 140px;
    min-width: 140px;
  }
  #workersList .inner .head h2 {
    padding-top: 30px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.4;
    position: relative;
    margin-bottom: 20px;
  }
  #workersList .inner .head h2:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 20px;
    background: url(../images/svg/ico_workers.svg) no-repeat center;
    background-size: 100% auto;
    top: -0;
    left: 0;
  }
  #workersList .inner .head .control {
    width: 80px;
    height: 40px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    background: #fff;
  }
  #workersList .inner .head .control .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    margin: 0;
  }
  #workersList .inner .head .control .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    background: url(../images/svg/ico_next.svg) no-repeat center;
    margin: 0;
  }
  #workersList .inner .slideBox {
    width: calc(100% - 140px);
    width: -webkit-calc(100% - 140px);
  }
  #workersList .inner .slideBox .workerslider {
    padding-bottom: 10px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide {
    width: 170px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a {
    display: block;
    background: #fff;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm {
    padding: 20px 20px 25px;
    position: relative;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm .name {
    font-size: 12px;
    margin-bottom: 10px;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm h3 {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.55;
  }
  #workersList .inner .slideBox .workerslider .swiper-slide a .txtClm:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    background-size: 100% auto;
    width: 30px;
    height: 7px;
    right: 20px;
    bottom: 20px;
  }

  #interviewSec01 {
    margin-bottom: 40px;
    padding-bottom: 30px;
    position: relative;
  }
  #interviewSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 65px;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #F0F5FA;
  }
  #interviewSec01 .inner {
    padding: 0 20px;
  }
  #interviewSec01 .inner .txtClm h1 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  #interviewSec01 .inner .imgClm {
    margin-bottom: 20px;
  }
  #interviewSec01 .inner .sp h3 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  #interviewSec01 .inner .sp ul.prof li {
    font-size: 14px;
    line-height: 1.66;
  }

  div.interviewVideoSec {
    margin-bottom: 50px;
  }
  div.interviewVideoSec .inner {
    padding: 0 20px;
  }
  div.interviewVideoSec .inner a {
    display: block;
    position: relative;
  }
  div.interviewVideoSec .inner a:after {
    position: absolute;
    z-index: 3;
    content: '';
    background: url(../images/svg/ico_play.svg) no-repeat center;
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    margin-top: -45px;
    margin-left: -45px;
  }

  #interviewSec02 {
    margin-bottom: 50px;
  }
  #interviewSec02 .inner {
    padding: 0 20px;
  }
  #interviewSec02 .inner .head {
    margin-bottom: 30px;
  }
  #interviewSec02 .inner .head span.en {
    font-size: 22px;
    display: inline-block;
    margin-bottom: 15px;
  }
  #interviewSec02 .inner .head h2 {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.5;
  }
  #interviewSec02 .inner .interviewBox dl.box strong {
    background: #FFFF00;
    font-weight: 400;
  }
  #interviewSec02 .inner .interviewBox dl.box > dt {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd {
    margin-bottom: 40px;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd dl {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd dl dt {
    width: 50px;
    min-width: 50px;
    font-size: 13px;
  }
  #interviewSec02 .inner .interviewBox dl.box > dd dl dd {
    font-size: 16px;
  }
  #interviewSec02 .inner .interviewBox .imgClm {
    margin-bottom: 40px;
  }
  #interviewSec02 .inner .interviewBox hr {
    margin-bottom: 30px;
    height: 0;
    border-top: 1px solid #000;
  }
  #interviewSec02 .inner .imgClm2 {
    margin-bottom: 40px;
  }
  #interviewSec02 .inner .date {
    text-align: right;
  }
  #interviewSec02 .inner .date p {
    font-size: 12px;
    line-height: 1.4;
  }
  #interviewSec02 .inner .interviewNavi {
    margin-top: 40px;
  }
  #interviewSec02 .inner .interviewNavi ul li {
    margin-bottom: 10px;
  }
  #interviewSec02 .inner .interviewNavi ul li a {
    display: block;
    background: #F0F5FA;
    padding: 20px 20px 50px;
    position: relative;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  #interviewSec02 .inner .interviewNavi ul li a h4 {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  #interviewSec02 .inner .interviewNavi ul li a .big {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #interviewSec02 .inner .interviewNavi ul li a h3 {
    font-size: 16px;
    font-weight: 400;
  }
  #interviewSec02 .inner .interviewNavi ul li:first-of-type a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    right: 20px;
    bottom: 20px;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  #interviewSec02 .inner .interviewNavi ul li:last-of-type a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 61px;
    height: 12px;
    left: 20px;
    bottom: 20px;
  }

  #workerSec01 {
    margin-bottom: 50px;
    padding-bottom: 30px;
    position: relative;
  }
  #workerSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 60px;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #F0F5FA;
  }
  #workerSec01 .inner {
    padding: 0 20px;
  }
  #workerSec01 .inner .txtClm {
    margin-bottom: 20px;
  }
  #workerSec01 .inner .txtClm p {
    font-size: 14px;
    font-weight: 900;
    line-height: 2;
    margin-bottom: 15px;
  }
  #workerSec01 .inner .txtClm p br {
    display: none;
  }
  #workerSec01 .inner .txtClm h1 {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  #workerSec01 .inner .txtClm h3 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #workerSec01 .inner .txtClm ul.prof li {
    font-size: 12px;
    line-height: 1.66;
  }

  #workerSec02 {
    margin-bottom: 50px;
  }
  #workerSec02 .inner .box {
    margin-bottom: 40px;
  }
  #workerSec02 .inner .box h2 {
    font-size: 16px;
    font-weight: 900;
    padding-left: 14px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  #workerSec02 .inner .box h2 span {
    display: inline-block;
    padding: 0 8px;
    position: relative;
  }
  #workerSec02 .inner .box h2 span:before, #workerSec02 .inner .box h2 span:after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -4px;
    height: 8px;
  }
  #workerSec02 .inner .box h2 span:before {
    width: 64px;
    background: url(../images/svg/hx_line_l.svg) no-repeat right center;
    right: 100%;
  }
  #workerSec02 .inner .box .content {
    padding: 0 20px;
  }
  #workerSec02 .inner .box .content h3 {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #workerSec02 .inner .box .content .txt {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  #workerSec02 .inner .box .content .img {
    margin-bottom: 20px;
  }
  #workerSec02 .inner .box:last-of-type {
    margin-bottom: 0;
  }

  #newBusinessSec01 {
    margin-bottom: 50px;
  }
  #newBusinessSec01 h1 {
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
  }
  #newBusinessSec01 .inner {
    background: url(../images/bg_new_business.jpg) repeat-x center top;
    background-size: auto 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 40px 50px 25px;
  }
  #newBusinessSec01 .inner .wrap.left {
    margin-bottom: 30px;
  }
  #newBusinessSec01 .inner .wrap.left .box {
    background: #fff;
    border: 1px solid #000;
    padding: 40px 40px 40px;
  }
  #newBusinessSec01 .inner .wrap.left .box h2 {
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #newBusinessSec01 .inner .wrap.left .box h2:after {
    position: absolute;
    content: '';
    width: 40px;
    height: 4px;
    background: #000;
    left: 0;
    bottom: 0;
  }
  #newBusinessSec01 .inner .wrap.left .box .txt {
    font-size: 14px;
    line-height: 1.38;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #newBusinessSec01 .inner .wrap.right .box {
    text-align: center;
    background: #fff;
    border: 1px solid #000;
    padding: 20px 20px;
  }
  #newBusinessSec01 .inner .wrap.right .box h2 {
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #newBusinessSec01 .inner .wrap.right .box h2:after {
    position: absolute;
    content: '';
    width: 40px;
    height: 4px;
    background: #000;
    left: 50%;
    margin-left: -20px;
    bottom: 0;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #000;
    display: block;
    height: 40px;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 38px;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn span {
    display: inline-block;
    height: 100%;
    position: relative;
  }
  #newBusinessSec01 .inner .wrap.right .box .btnBox .btn span:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_mail_b.svg) no-repeat center;
    background-size: 100% auto;
    width: 15px;
    height: 10px;
    left: 0;
    top: 50%;
    margin-top: -5px;
    margin-left: -8px;
  }

  #newBusinessSec02 {
    margin-bottom: 50px;
  }
  #newBusinessSec02 .inner {
    padding: 0 20px;
  }
  #newBusinessSec02 .inner h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #newBusinessSec02 .inner .wrap .imgClm {
    margin-bottom: 30px;
    overflow: auto;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #newBusinessSec02 .inner .wrap .imgClm .img {
    width: 240px;
    min-width: 240px;
    margin-right: 10px;
  }
  #newBusinessSec02 .inner .wrap .txtClm dl {
    border-top: 1px solid #000;
    margin-bottom: 20px;
  }
  #newBusinessSec02 .inner .wrap .txtClm dl dt {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
  }
  #newBusinessSec02 .inner .wrap .txtClm dl dd {
    font-size: 15px;
  }
  #newBusinessSec02 .inner .wrap .txtClm .caution {
    font-size: 12px;
    margin-bottom: 30px;
  }
  #newBusinessSec02 .inner .wrap .txtClm .btn {
    border: 1px solid #000;
    display: block;
    height: 40px;
    font-size: 13px;
    line-height: 38px;
    text-align: center;
    position: relative;
  }
  #newBusinessSec02 .inner .wrap .txtClm .btn:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    width: 6px;
    height: 12px;
    right: 20px;
    top: 50%;
    margin-top: -6px;
  }

  #newBusinessSec03 {
    margin-bottom: 50px;
    border-top: 1px solid #000;
    padding-top: 50px;
  }
  #newBusinessSec03 .inner {
    padding: 0 20px;
  }
  #newBusinessSec03 .inner h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #newBusinessSec03 .inner ul.grid {
    padding: 0 35px;
  }
  #newBusinessSec03 .inner ul.grid li {
    display: block;
    margin-bottom: 25px;
  }
  #newBusinessSec03 .inner ul.grid li a {
    display: block;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }

  #projextSec01 {
    padding-top: 20px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 40px;
  }
  #projextSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 150px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F0F5FA;
  }
  #projextSec01 .inner {
    padding: 0 20px;
  }
  #projextSec01 .inner .head {
    text-align: center;
    margin-bottom: 20px;
  }
  #projextSec01 .inner .head span.ja {
    font-size: 15px;
    font-weight: 900;
  }
  #projextSec01 .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }

  #projextSec02 {
    margin-bottom: 50px;
  }
  #projextSec02 .inner {
    padding: 0 20px;
  }
  #projextSec02 .inner .head {
    margin-bottom: 20px;
  }
  #projextSec02 .inner .head span.ja {
    font-size: 15px;
    font-weight: 900;
  }
  #projextSec02 .inner .head h2 {
    font-size: 20px;
    font-weight: 900;
  }
  #projextSec02 .inner .content {
    padding: 0 10px;
    margin-bottom: 30px;
  }
  #projextSec02 .inner .content h3 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #projextSec02 .inner .content p {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
  }
  #projextSec02 .inner .imgBox {
    margin-bottom: 50px;
  }
  #projextSec02 .inner .imgBox .imgClm {
    margin-bottom: 30px;
  }
  #projextSec02 .inner .imgBox .imgClm span.caption {
    padding-top: 5px;
    display: block;
    font-size: 12px;
  }
  #projextSec02 .inner .gellery {
    margin-bottom: 30px;
  }
  #projextSec02 .inner .gellery ul li {
    text-align: center;
    max-width: 100%;
    margin-bottom: 10px;
  }
  #projextSec02 .inner .detailBox {
    margin-bottom: 30px;
    background: #F0F5FA;
    padding: 20px 20px 30px;
  }
  #projextSec02 .inner .detailBox h3 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #projextSec02 .inner .detailBox .tableWrap {
    padding: 0 10px;
  }
  #projextSec02 .inner .detailBox table {
    width: 100%;
    font-size: 13px;
    line-height: 1.38;
    overflow: hidden;
  }
  #projextSec02 .inner .detailBox table tr {
    border-bottom: 1px solid #000;
  }
  #projextSec02 .inner .detailBox table th {
    padding: 15px 0 0;
    text-align: left;
    font-weight: 900;
    width: 100%;
    float: left;
  }
  #projextSec02 .inner .detailBox table td {
    padding: 8px 0 15px;
    width: 100%;
    float: left;
  }
  #projextSec02 .inner > .btnBox {
    text-align: center;
    margin-top: 50px;
  }
  #projextSec02 .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    position: relative;
    text-align: center;
  }
  #projextSec02 .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    right: 18px;
  }

  #forMangaCreatorsSec01 {
    border-bottom: 2px solid #000;
    margin-bottom: 45px;
  }
  #forMangaCreatorsSec01 h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    padding: 20px;
  }

  #forMangaCreatorsSec02 {
    margin-bottom: 50px;
  }
  #forMangaCreatorsSec02 .inner {
    padding: 0 20px;
  }
  #forMangaCreatorsSec02 .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec02 .inner .head h2 {
    font-size: 20px;
    font-weight: 900;
  }
  #forMangaCreatorsSec02 .inner .head span.ja {
    font-size: 13px;
    font-weight: 900;
  }
  #forMangaCreatorsSec02 .inner .bnr {
    margin-bottom: 20px;
    border: 1px solid #000;
  }
  #forMangaCreatorsSec02 .inner .bnr a {
    width: 100%;
  }
  #forMangaCreatorsSec02 .inner .bnr a .imgClm {
    width: 100%;
    height: auto;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm {
    padding: 35px 35px 50px;
    position: relative;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm span.en {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm span.ja {
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
    text-indent: -0.5em;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm h3 {
    font-size: 13px;
    line-height: 1.38;
    font-weight: 400;
    margin-bottom: 15px;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm h3 br {
    display: none;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm .txt {
    font-size: 16px;
    font-weight: 900;
    text-indent: -0.5em;
    margin-bottom: 20px;
    line-height: 1.56;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm span.date {
    display: block;
    font-size: 12px;
    text-align: right;
  }
  #forMangaCreatorsSec02 .inner .bnr a .txtClm:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 62px;
    height: 12px;
    right: 35px;
    bottom: 20px;
  }

  #forMangaCreatorsSec03 {
    margin-bottom: 50px;
    border-top: 1px solid #000;
    padding-top: 50px;
  }
  #forMangaCreatorsSec03 .inner {
    padding: 0 20px;
  }
  #forMangaCreatorsSec03 .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec03 .inner .head h2 {
    font-size: 20px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .head span.ja {
    font-size: 13px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .box {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .head2 {
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .head2 .name {
    font-size: 12px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .head2 h3 {
    font-size: 16px;
    font-weight: 900;
  }
  #forMangaCreatorsSec03 .inner .box .txtClm .txt {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec03 .inner .box .profClm {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #forMangaCreatorsSec03 .inner .box .profClm .imgClm {
    width: 40%;
    min-width: 40%;
  }
  #forMangaCreatorsSec03 .inner .box .profClm .txtClm2 {
    width: 60%;
    min-width: 60%;
    padding-left: 10px;
  }
  #forMangaCreatorsSec03 .inner .box .profClm .txtClm2 p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  #forMangaCreatorsSec03 .inner .box:last-of-type {
    border-bottom: none;
    padding: 0;
    margin: 0;
  }

  #forMangaCreatorsSec04 {
    margin-bottom: 50px;
    border-top: 1px solid #000;
    padding-top: 50px;
  }
  #forMangaCreatorsSec04 .inner {
    padding: 0 20px;
  }
  #forMangaCreatorsSec04 .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec04 .inner .head h2 {
    font-size: 20px;
    font-weight: 900;
  }
  #forMangaCreatorsSec04 .inner .head span.ja {
    font-size: 13px;
    font-weight: 900;
  }
  #forMangaCreatorsSec04 .inner .grid li {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  #forMangaCreatorsSec04 .inner .grid li .imgClm {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm {
    position: relative;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm span.small {
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 5px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .txt {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 30px;
    font-weight: 400;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .caution {
    font-size: 12px;
    margin-bottom: 20px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    position: relative;
    text-align: center;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #forMangaCreatorsSec04 .inner .grid li .txtClm .num {
    position: absolute;
    z-index: -1;
    display: inline-block;
    font-size: 60px;
    line-height: 1;
    bottom: 80px;
    right: 0;
    color: #F0F5FA;
  }

  #mangaCreatorsInterviewSec01 {
    margin-bottom: 50px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  #mangaCreatorsInterviewSec01:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: 160px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F0F5FA;
  }
  #mangaCreatorsInterviewSec01 .inner {
    padding: 0 20px;
  }
  #mangaCreatorsInterviewSec01 .inner .head {
    text-align: center;
    margin-bottom: 25px;
  }
  #mangaCreatorsInterviewSec01 .inner .head span.ja {
    font-size: 13px;
    font-weight: 900;
  }
  #mangaCreatorsInterviewSec01 .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }

  #mangaCreatorsInterviewSec02 {
    margin-bottom: 50px;
  }
  #mangaCreatorsInterviewSec02 .inner {
    padding: 0 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .head {
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .head span.ja {
    font-size: 15px;
    font-weight: 900;
  }
  #mangaCreatorsInterviewSec02 .inner .head h2 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
  }
  #mangaCreatorsInterviewSec02 .inner .content {
    margin-bottom: 30px;
    padding: 0 10px;
  }
  #mangaCreatorsInterviewSec02 .inner .content h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .content p {
    font-size: 16px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .imgBox {
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .imgBox .imgClm span.caption {
    padding-top: 10px;
    display: block;
    font-size: 12px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox {
    padding: 0 10px;
    margin-bottom: 40px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl {
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl dt {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.625;
    margin-bottom: 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl dd {
    font-size: 16px;
    line-height: 1.625;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox dl:last-of-type {
    margin-bottom: 0;
  }
  #mangaCreatorsInterviewSec02 .inner .interviewBox .date {
    margin-top: 30px;
    text-align: right;
    font-size: 16px;
    line-height: 1.625;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox {
    margin-bottom: 60px;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li {
    margin-bottom: 15px;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li .link {
    display: block;
    border: 1px solid #000;
    padding: 10px 35px 10px 30px;
    position: relative;
    font-size: 13px;
    line-height: 1.8;
    text-indent: -0.5em;
  }
  #mangaCreatorsInterviewSec02 .inner .linkBox ul li .link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 17px;
    top: 50%;
    margin-top: -5px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox {
    margin-bottom: 30px;
    background: #F0F5FA;
    padding: 20px 20px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap {
    padding: 0 10px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .imgClm {
    text-align: center;
    margin-bottom: 18px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .imgClm img {
    width: 100%;
    height: auto;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .txt {
    font-size: 13px;
    line-height: 1.56;
    margin-bottom: 18px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    position: relative;
    text-align: center;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox .tableWrap .imgBox .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table {
    width: 100%;
    font-size: 13px;
    line-height: 1.38;
    overflow: hidden;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table tr {
    border-bottom: 1px solid #000;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table th {
    padding: 15px 0 0;
    text-align: left;
    font-weight: 900;
    width: 100%;
    float: left;
  }
  #mangaCreatorsInterviewSec02 .inner .detailBox table td {
    float: left;
    padding: 13px 0;
    width: 100%;
  }
  #mangaCreatorsInterviewSec02 .inner .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    text-align: right;
    text-align: center;
    position: relative;
  }
  #mangaCreatorsInterviewSec02 .inner .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #interviewLinkSec {
    margin-bottom: 50px;
  }
  #interviewLinkSec .inner {
    padding: 0 20px;
  }
  #interviewLinkSec .inner .bnr {
    margin-bottom: 20px;
  }
  #interviewLinkSec .inner .bnr a {
    width: 100%;
  }
  #interviewLinkSec .inner .bnr a .txtClm {
    padding: 10px 10px 20px;
    background: #000;
    color: #fff;
    position: relative;
  }
  #interviewLinkSec .inner .bnr a .txtClm span.en {
    font-size: 10px;
    display: block;
    padding-left: 25px;
  }
  #interviewLinkSec .inner .bnr a .txtClm span.ja {
    font-size: 12px;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    padding-left: 25px;
  }
  #interviewLinkSec .inner .bnr a .txtClm h3 {
    font-size: 15px;
    line-height: 1.38;
    font-weight: 900;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    padding-left: 25px;
  }
  #interviewLinkSec .inner .bnr a .txtClm h3 br {
    display: none;
  }
  #interviewLinkSec .inner .bnr a .txtClm span.date {
    display: block;
    font-size: 12px;
    padding-left: 25px;
  }
  #interviewLinkSec .inner .bnr a .txtClm:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 62px;
    height: 12px;
    right: 10px;
    bottom: 20px;
  }

  #newsSec {
    margin-bottom: 50px;
  }
  #newsSec .inner {
    padding: 0 20px;
  }
  #newsSec .inner .head {
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  #newsSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #newsSec .inner .head p {
    font-size: 14px;
    font-weight: 900;
  }
  #newsSec .inner .cateList {
    margin-bottom: 20px;
    position: relative;
  }
  #newsSec .inner .cateList h3 {
    text-align: center;
    font-size: 13px;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    position: relative;
  }
  #newsSec .inner .cateList h3:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 6px;
    background: url(../images/svg/ico_down.svg) no-repeat center;
    right: 17px;
    top: 50%;
    margin-top: -3px;
  }
  #newsSec .inner .cateList .sub {
    overflow: auto;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 100%;
    left: 0;
    max-height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #F0F5FA;
    padding: 15px 0;
    margin-top: 1px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  #newsSec .inner .cateList .sub ul li {
    font-size: 14px;
  }
  #newsSec .inner .cateList .sub ul li a {
    font-size: 14px;
    display: block;
    padding: 2px 20px;
  }
  #newsSec .inner .cateList .sub.open {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  #newsSec .inner .archiveTagList {
    margin-bottom: 30px;
  }
  #newsSec .inner .archiveTagList > ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #newsSec .inner .archiveTagList > ul > li {
    width: 48%;
    height: 40px;
    border: 1px solid #000;
    position: relative;
  }
  #newsSec .inner .archiveTagList > ul > li span.openBtn {
    cursor: pointer;
    font-size: 13px;
    display: block;
    height: 100%;
    line-height: 38px;
    text-align: center;
    position: relative;
  }
  #newsSec .inner .archiveTagList > ul > li span.openBtn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 6px;
    background: url(../images/svg/ico_down.svg) no-repeat center;
    right: 17px;
    top: 50%;
    margin-top: -3px;
  }
  #newsSec .inner .archiveTagList > ul > li .sub {
    overflow: auto;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 100%;
    left: 0;
    max-height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #F0F5FA;
    padding: 15px 0;
    margin-top: 1px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  #newsSec .inner .archiveTagList > ul > li .sub ul li {
    font-size: 16px;
  }
  #newsSec .inner .archiveTagList > ul > li .sub ul li a {
    font-size: 16px;
    display: block;
    padding: 2px 20px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #newsSec .inner .archiveTagList > ul > li .sub ul li a:hover {
    background: #F0F5FA;
  }
  #newsSec .inner .archiveTagList > ul > li .sub.open {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  #newsSec .inner .entryBox .grid > li {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-bottom: 30px;
  }
  #newsSec .inner .entryBox .grid > li .imgClm {
    width: 115px;
    min-width: 115px;
    margin-right: 20px;
  }
  #newsSec .inner .entryBox .grid > li .imgClm a {
    display: block;
  }
  #newsSec .inner .entryBox .grid > li .imgClm img {
    width: 100%;
    height: auto;
  }
  #newsSec .inner .entryBox .grid > li .txtClm h3 {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.38;
    margin-bottom: 10px;
  }
  #newsSec .inner .entryBox .grid > li .txtClm h3 a {
    display: block;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .post-categories {
    margin-bottom: 10px;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .post-categories li a {
    text-decoration: underline;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 900;
    color: #808080;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .post-categories li a:hover {
    text-decoration: none;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .tags {
    margin-bottom: 10px;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .tags a {
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
    text-decoration: underline;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .tags a:hover {
    text-decoration: none;
  }
  #newsSec .inner .entryBox .grid > li .txtClm .time {
    text-align: right;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #808080;
  }

  #pager {
    margin-bottom: 50px;
  }
  #pager .inner {
    border-top: 1px solid #000;
    padding: 20px 20px 0;
    text-align: center;
  }
  #pager .inner .wp-pagenavi {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #pager .inner a, #pager .inner span {
    display: inline-block;
    font-size: 16px;
    margin: 0 10px 10px;
    padding: 5px;
  }
  #pager .inner a.nextpostslink .next {
    margin: 0;
    display: block;
    background: url(../images/svg/ico_arrow.svg) no-repeat center;
    width: 62px;
    height: 11px;
    height: 90%;
  }
  #pager .inner a.previouspostslink .prev {
    margin: 0;
    display: block;
    background: url(../images/svg/ico_arrow_prev.svg) no-repeat center;
    width: 62px;
    height: 11px;
    height: 90%;
  }
  #pager .inner .current {
    border-bottom: 1px solid #000;
  }

  #container {
    margin-bottom: 50px;
  }
  #container #side {
    padding: 0 20px;
  }

  #singleSec {
    padding-top: 20px;
    margin-bottom: 50px;
  }
  #singleSec .inner {
    padding: 0 20px;
  }
  #singleSec .inner .head {
    margin-bottom: 30px;
  }
  #singleSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.31;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
  }
  #singleSec .inner .head .metaBox {
    position: relative;
  }
  #singleSec .inner .head .metaBox .post-categories {
    font-size: 12px;
    margin-bottom: 10px;
  }
  #singleSec .inner .head .metaBox .post-categories a {
    text-decoration: underline;
  }
  #singleSec .inner .head .metaBox .tags {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
  }
  #singleSec .inner .head .metaBox .tags a {
    text-decoration: underline;
  }
  #singleSec .inner .head .metaBox .time {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
  }
  #singleSec .inner .head .metaBox .share {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  #singleSec .inner .head .metaBox .share li {
    margin-left: 20px;
  }
  #singleSec .inner .content {
    margin-bottom: 30px;
  }
  #singleSec .inner .content * {
    font-size: 16px;
    line-height: 1.625;
  }
  #singleSec .inner .content h2 {
    font-weight: 900;
    font-size: 19px;
    line-height: 1.33;
    margin-bottom: 1.5em;
  }
  #singleSec .inner .content p {
    margin-bottom: 2em;
  }
  #singleSec .inner .content h3 {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1.5em;
  }
  #singleSec .inner .content h4 {
    font-weight: 900;
    font-size: 17px;
    line-height: 1.55;
    border-bottom: 1px solid #808080;
    margin-bottom: 1em;
    padding-bottom: 15px;
  }
  #singleSec .inner .content .wp-caption {
    width: 100% !important;
    margin-bottom: 30px;
  }
  #singleSec .inner .content .wp-caption .wp-caption-text {
    font-size: 12px;
    margin: 0;
  }
  #singleSec .inner .content a {
    text-decoration: underline;
  }
  #singleSec .inner .content a:hover {
    text-decoration: none;
  }
  #singleSec .inner .content .box {
    border: 1px solid #808080;
    padding: 20px 20px 10px;
    margin-bottom: 30px;
  }
  #singleSec .inner .content .aligncenter {
    display: block;
    margin: 0 auto;
  }
  #singleSec .inner .content .alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
  }
  #singleSec .inner .content .alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
  }
  #singleSec .inner .content img[class*="wp-image-"],
  #singleSec .inner .content img[class*="attachment-"] {
    max-width: 100%;
    height: auto;
  }
  #singleSec .inner .content .wp-caption-text {
    font-size: 16px;
    margin: 10px 0 0;
  }
  #singleSec .inner .content blockquote {
    background-color: #f8f8f8;
    padding: 20px 30px 20px;
  }
  #singleSec .inner .content a {
    text-decoration: underline;
  }
  #singleSec .inner .content a:hover {
    text-decoration: none;
  }
  #singleSec .inner > .btnBox .btn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    position: relative;
    text-align: center;
  }
  #singleSec .inner > .btnBox .btn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  aside.sideRel {
    border: 1px solid #000;
    padding: 20px;
    margin-bottom: 20px;
  }
  aside.sideRel h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  aside.sideRel ul li {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  aside.sideRel ul li a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  aside.sideRel ul li a img {
    width: 115px;
    min-width: 115px;
    margin-right: 20px;
    height: auto;
  }
  aside.sideRel ul li a h5 {
    font-size: 12px;
    font-weight: 400;
  }
  aside.sideRel ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  aside.sideBnr ul li {
    margin-bottom: 20px;
    text-align: center;
  }
  aside.sideBnr ul li a {
    display: inline-block;
  }

  #companySec {
    margin-bottom: 50px;
    padding-top: 20px;
  }
  #companySec .inner {
    padding: 0 20px;
  }
  #companySec .inner .head {
    text-align: center;
    margin-bottom: 20px;
  }
  #companySec .inner .head h1, #companySec .inner .head h2 {
    font-size: 20px;
    font-weight: 900;
  }
  #companySec .inner .linkBox {
    margin-bottom: 30px;
  }
  #companySec .inner .linkBox ul li {
    margin-bottom: 10px;
  }
  #companySec .inner .linkBox ul li a.btn {
    display: block;
    border: 1px solid #000;
    height: 40px;
    line-height: 38px;
    font-size: 13px;
    position: relative;
    text-align: center;
  }
  #companySec .inner .linkBox ul li a.btn:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -4px;
    right: 15px;
  }
  #companySec .inner .linkBox .l2 li a.btn {
    text-align: left;
    padding-left: 12px;
    font-size: 12px;
    letter-spacing: -0.05em;
  }
  #companySec .inner .linkBox .l2 li.small a.btn {
    font-size: 13px;
    text-align: center;
    padding-left: 0px;
    letter-spacing: 0.05em;
  }
  #companySec .inner .comtbl {
    border-top: 1px solid #000;
    font-size: 13px;
    line-height: 1.38;
    overflow: hidden;
  }
  #companySec .inner .comtbl tr {
    border-bottom: 1px solid #000;
  }
  #companySec .inner .comtbl tr th {
    width: 100%;
    text-align: left;
    padding: 15px 0 0;
    float: left;
  }
  #companySec .inner .comtbl tr td {
    width: 100%;
    float: left;
    padding: 10px 0 15px;
  }
  #companySec .inner .comtbl tr td dl {
    overflow: hidden;
  }
  #companySec .inner .comtbl tr td dl dt {
    float: left;
    width: 120px;
  }
  #companySec .inner .comtbl tr td dl dd {
    margin-left: 120px;
  }
  #companySec .inner .comtbl tr td .address {
    margin-bottom: 10px;
  }
  #companySec .inner .comtbl tr td .mapBox {
    margin-bottom: 10px;
  }
  #companySec .inner .comtbl tr td .mapBox iframe {
    width: 100%;
  }
  #companySec .inner .comtbl tr td .btnBox .btn {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    position: relative;
    text-align: center;
  }
  #companySec .inner .comtbl tr td .btnBox .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #companySec .inner .comtbl tr td.access {
    padding-bottom: 20px;
  }
  #companySec .inner .head2 {
    margin-bottom: 10px;
  }
  #companySec .inner .head2 h1 {
    font-size: 16px;
    font-weight: 900;
  }
  #companySec .inner .historyBox .years {
    display: none;
  }
  #companySec .inner .historyBox .years .yearBox {
    width: 160px;
    position: relative;
  }
  #companySec .inner .historyBox .years .yearBox span#yearBtn {
    display: block;
    font-size: 13px;
    height: 40px;
    border: 1px solid #000;
    line-height: 38px;
    padding-left: 40px;
    padding-right: 30px;
    position: relative;
  }
  #companySec .inner .historyBox .years .yearBox span#yearBtn:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 6px;
    background: url(../images/svg/ico_down.svg) no-repeat center;
    left: 15px;
    top: 50%;
    margin-top: -3px;
  }
  #companySec .inner .historyBox .years .yearBox span#yearBtn.open:before {
    background: url(../images/svg/ico_up.svg) no-repeat center;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    background: #fff;
    width: 100%;
    border: 1px solid #F0F5FA;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList li {
    display: block;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    opacity: 0.5;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList li.active {
    opacity: 1;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList li:hover {
    background: #F0F5FA;
    opacity: 1;
  }
  #companySec .inner .historyBox .years .yearBox ul.yearsList.open {
    opacity: 1;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
  }
  #companySec .inner .historyBox .historytbl {
    font-size: 13px;
    line-height: 1.38;
  }
  #companySec .inner .historyBox .historytbl tr {
    border-bottom: 1px solid #000;
  }
  #companySec .inner .historyBox .historytbl tr th {
    text-align: left;
    padding: 20px 0;
    width: 80px;
  }
  #companySec .inner .historyBox .historytbl tr td {
    padding: 20px 0;
  }
  #companySec .inner .historyBox .historytbl tr td p {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  #companySec .inner .historyBox .historytbl tr td p:last-of-type {
    margin-bottom: 0;
  }
  #companySec .inner .historyBox .historytbl tr td p img {
    width: 50%;
  }
  #companySec .inner .historyBox .historytbl tr.bnon {
    border: none;
  }
  #companySec .inner .historyBox .historytbl tr.bnon th, #companySec .inner .historyBox .historytbl tr.bnon td {
    padding-bottom: 0;
  }
  #companySec .inner .historyBox .historytbl.show {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    opacity: 1;
  }
  #companySec .inner .historyBox .historytbl:first-of-type {
    border-top: 1px solid #000;
  }
  #companySec .inner .recruitBox {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 20px 0;
  }
  #companySec .inner .recruitBox h2 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #companySec .inner .recruitBox .recruitClm h3 {
    cursor: pointer;
    background: #000;
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 900;
    position: relative;
  }
  #companySec .inner .recruitBox .recruitClm h3:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_down_w.svg) no-repeat center;
    width: 12px;
    height: 6px;
    top: 50%;
    margin-top: -3px;
    right: 20px;
  }
  #companySec .inner .recruitBox .recruitClm h3.open:after {
    background: url(../images/svg/ico_up_w.svg) no-repeat center;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl {
    width: 100%;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl tr {
    border-bottom: 1px solid #000;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl tr:last-of-type {
    border: none;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl th {
    font-size: 12px;
    font-weight: 400;
    width: 100px;
    text-align: left;
    padding: 15px 0;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl td {
    padding: 15px 0;
    font-size: 13px;
  }
  #companySec .inner .recruitBox .recruitClm .box .recruittbl td a {
    text-decoration: underline;
  }
  #companySec .inner .recruitBox p.noRecruitment {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    padding: 50px 0;
  }
  #companySec .inner .recruitBox ul li a.link {
    font-size: 15px;
    display: block;
    border: 1px solid #000;
    padding: 15px 20px 13px;
    position: relative;
    transition: 0.2s;
  }
  #companySec .inner .recruitBox ul li a.link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    left: 185px;
    top: 50%;
    margin-top: -5px;
  }
  #companySec .inner .recruitBox ul li a.link:hover {
    opacity: 0.7;
  }
  #companySec .inner .linkBpx2 {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 20px 0;
  }
  #companySec .inner .linkBpx2 h2 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #companySec .inner .linkBpx2 ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  #companySec .inner .linkBpx2 ul:after {
    position: relative;
    content: '';
    width: 32%;
  }
  #companySec .inner .linkBpx2 ul li {
    width: 32%;
    margin-bottom: 15px;
  }
  #companySec .inner .linkBpx2 ul li a {
    display: block;
    border: 1px solid #F0F5FA;
  }

  #contactSec {
    margin-bottom: 50px;
    padding-top: 20px;
  }
  #contactSec .inner {
    padding: 0 20px;
  }
  #contactSec .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #contactSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #contactSec .inner .contactBox ul li {
    margin-bottom: 20px;
  }
  #contactSec .inner .contactBox ul li a {
    display: block;
    border: 1px solid #000;
    padding-left: 15px;
    padding-right: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  }
  #contactSec .inner .contactBox ul li a span.txt1 {
    font-size: 13px;
    font-weight: 900;
    display: block;
    padding-left: 40px;
    background: url(../images/svg/ico_mail_b.svg) no-repeat left center;
    margin-bottom: 10px;
  }
  #contactSec .inner .contactBox ul li a span.txt2 {
    font-size: 12px;
    padding-left: 40px;
    display: block;
  }
  #contactSec .inner .contactBox ul li a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    right: 10px;
  }

  #formSec {
    margin-bottom: 50px;
    padding-top: 20px;
  }
  #formSec .inner {
    padding: 0 20px;
  }
  #formSec .inner .head {
    text-align: center;
    margin-bottom: 20px;
  }
  #formSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
    padding-bottom: 45px;
    background: url(../images/svg/ico_mail_b.svg) no-repeat center bottom;
  }
  #formSec .inner .formBox .msg {
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
  }
  #formSec .inner .formBox .msgBox {
    border: 1px solid #000;
    margin: 30px 0;
    padding: 20px 20px;
  }
  #formSec .inner .formBox .msgBox h2 {
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
  }
  #formSec .inner .formBox .msgBox .txt {
    font-size: 12px;
  }
  #formSec .inner .formBox .formtbl {
    margin-bottom: 20px;
    width: 100%;
    border-top: 1px solid #000;
    font-size: 14px;
    overflow: hidden;
  }
  #formSec .inner .formBox .formtbl tr:last-of-type {
    border: none;
  }
  #formSec .inner .formBox .formtbl th {
    float: left;
    width: 100%;
    text-align: left;
    font-weight: 400;
    padding: 15px 0 0;
  }
  #formSec .inner .formBox .formtbl th span {
    padding-left: 10px;
    display: inline-block;
    color: #E31C24;
    font-size: 12px;
  }
  #formSec .inner .formBox .formtbl th.ta {
    vertical-align: top;
  }
  #formSec .inner .formBox .formtbl td {
    float: left;
    width: 100%;
    padding: 10px 0 15px;
  }
  #formSec .inner .formBox .formtbl td input[type=text], #formSec .inner .formBox .formtbl td input[type=tel], #formSec .inner .formBox .formtbl td input[type=email], #formSec .inner .formBox .formtbl td textarea {
    border: 1px solid #000;
    padding: 10px 10px;
    width: 100%;
    background: #fff;
    font-size: 16px;
  }
  #formSec .inner .formBox .formtbl td.name {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  #formSec .inner .formBox .formtbl td.name p {
    width: 50%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  #formSec .inner .formBox .formtbl td.name p span.name {
    margin-right: 10px;
  }
  #formSec .inner .formBox .formtbl td.name p input {
    width: 92%;
  }
  #formSec .inner .formBox .formtbl td.name p:first-of-type {
    margin-right: auto;
  }
  #formSec .inner .formBox .cautoon {
    text-align: center;
    font-size: 14px;
    line-height: 1.38;
    margin-bottom: 20px;
  }
  #formSec .inner .formBox .cautoon a {
    text-decoration: underline;
  }
  #formSec .inner .formBox .check {
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.38;
    margin-bottom: 40px;
    position: relative;
  }
  #formSec .inner .formBox .check .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    width: 300px;
    left: 0px;
    display: block;
  }
  #formSec .inner .formBox .check a {
    text-decoration: underline;
  }
  #formSec .inner .formBox .btnBox {
    text-align: center;
  }
  #formSec .inner .formBox .btnBox input {
    color: #000000;
    width: 100%;
    font-size: 13px;
    font-family: YakuHanJP, 'Noto Sans JP','Noto Sans Japanese', sans-serif;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    text-align: center;
    margin-bottom: 20px;
  }
  #formSec .inner .formBox .btnBox input.confirm, #formSec .inner .formBox .btnBox input.send {
    background: url(../images/svg/ico_btn_arrow.svg) no-repeat right 20px center;
  }
  #formSec .inner .wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: bold;
    color: #E31C24;
  }

  form.wpcf7-form {
    margin-top: -60px;
    padding-top: 60px;
  }

  #privacySec {
    margin-bottom: 50px;
    padding-top: 20px;
  }
  #privacySec .inner {
    padding: 0 20px;
  }
  #privacySec .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #privacySec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #privacySec .inner .privacyBox h2 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #privacySec .inner .privacyBox .privacyClm {
    padding: 0 10px;
  }
  #privacySec .inner .privacyBox .privacyClm .box {
    margin-bottom: 30px;
  }
  #privacySec .inner .privacyBox .privacyClm p {
    font-size: 13px;
    line-height: 1.38;
  }
  #privacySec .inner .privacyBox .privacyClm ul {
    font-size: 13px;
    line-height: 1.38;
  }
  #privacySec .inner .privacyBox .privacyClm dl {
    font-size: 13px;
    line-height: 1.38;
  }
  #privacySec .inner .privacyBox .privacyClm h3 {
    font-size: 13px;
    line-height: 1.38;
    font-weight: 900;
    margin-bottom: 1em;
  }
  #privacySec .inner .privacyBox .privacyClm a {
    text-decoration: underline;
  }

  #nspSec {
    margin-bottom: 50px;
    padding-top: 20px;
  }
  #nspSec .inner {
    padding: 0 20px;
  }
  #nspSec .inner .head {
    text-align: center;
    margin-bottom: 30px;
  }
  #nspSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #nspSec .inner h2 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #nspSec .inner .nspBox {
    margin-bottom: 20px;
  }
  #nspSec .inner .nspBox .img {
    text-align: center;
    margin-bottom: 35px;
  }
  #nspSec .inner .nspBox .txt {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 2em;
    padding: 0 10px;
  }
  #nspSec .inner .nspBox .right {
    text-align: right;
    font-size: 14px;
    line-height: 1.625;
    margin-bottom: 2em;
  }
  #nspSec .inner .contactBox {
    padding-top: 20px;
    border-top: 1px solid #000;
  }
  #nspSec .inner .contactBox dl dt {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #nspSec .inner .contactBox dl dd {
    margin-bottom: 20px;
    font-size: 13px;
  }
  #nspSec .inner .contactBox dl dd a {
    color: #E31C24;
    text-decoration: underline;
    word-wrap: break-word;
  }
  #nspSec .inner .btnBox {
    padding-top: 30px;
    border-top: 1px solid #000;
    text-align: center;
  }
  #nspSec .inner .btnBox .btn {
    background: #143C8C;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.04em;
    width: 240px;
    height: 60px;
    line-height: 60px;
    position: relative;
  }
  #nspSec .inner .btnBox .btn:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    top: 50%;
    margin-top: -6px;
    right: 20px;
    transform: rotate(45deg);
  }

  #resultSec {
    margin-bottom: 50px;
    padding-top: 20px;
  }
  #resultSec .inner .head {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 30px;
  }
  #resultSec .inner .head h1 {
    font-size: 20px;
    font-weight: 900;
  }
  #resultSec .inner .resultBox .gsc-control-cse, #resultSec .inner .resultBox .gsc-control-cse-ja {
    padding: 0 20px;
  }

  #contentsSec {
    margin-bottom: 50px;
  }
  #contentsSec .inner {
    padding: 0 20px;
  }
  #contentsSec .inner .head h1 {
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
  }
  #contentsSec .inner .box {
    margin-bottom: 40px;
  }
  #contentsSec .inner .box .head2 {
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #contentsSec .inner .box .head2 h2 {
    font-size: 19px;
    font-weight: 900;
  }
  #contentsSec .inner .box .head2 h2 span {
    display: block;
    font-size: 13px;
    font-weight: 400;
  }
  #contentsSec .inner .box .head2 .btn {
    margin-top: 15px;
    text-align: center;
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 13px;
    height: 40px;
    line-height: 38px;
    position: relative;
  }
  #contentsSec .inner .box .head2 .btn:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: 15px;
    top: 50%;
    margin-top: -6px;
  }
  #contentsSec .inner .box h3.ttl {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
  }
  #contentsSec .inner .box h3.ttl:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 30px;
    background: #000;
    left: 0;
    top: 50%;
    margin-top: -15px;
  }
  #contentsSec .inner .box .list1 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #contentsSec .inner .box .list1 li {
    width: 47%;
    margin-bottom: 25px;
  }
  #contentsSec .inner .box .list1 li .imgClm {
    margin-bottom: 10px;
  }
  #contentsSec .inner .box .list1 li .imgClm img {
    border: 1px solid #000;
  }
  #contentsSec .inner .box .list1 li .txtClm h3 {
    font-size: 13px;
    line-height: 1.38;
    text-indent: -0.5em;
    font-weight: 400;
  }
  #contentsSec .inner .box .list1 li .txtClm .link {
    margin-top: 10px;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    text-decoration: underline;
  }
  #contentsSec .inner .box .list1 li .txtClm .link:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: url(../images/svg/ico_link.svg) no-repeat center;
    right: -18px;
    top: 50%;
    margin-top: -5px;
  }
  #contentsSec .inner .box .list2 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #contentsSec .inner .box .list2:after {
    content: '';
    width: 30%;
    position: relative;
  }
  #contentsSec .inner .box .list2 li {
    width: 30%;
    margin-bottom: 20px;
  }
  #contentsSec .inner .box .list2 li .imgClm {
    margin-bottom: 10px;
  }
  #contentsSec .inner .box .list2 li .imgClm img {
    border: 1px solid #000;
  }
  #contentsSec .inner .box .list2 li .txtClm h4 {
    text-indent: -0.5em;
    font-size: 13px;
    line-height: 1.38;
    font-weight: 400;
  }
  #contentsSec .inner > .btnBox {
    margin-top: 60px;
  }
  #contentsSec .inner > .btnBox .backbtn {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #000;
    font-size: 13px;
    text-align: right;
    text-align: center;
    position: relative;
  }
  #contentsSec .inner > .btnBox .backbtn:before {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_prev.svg) no-repeat center;
    width: 6px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 18px;
  }

  #zenonVideoSec {
    margin-bottom: 50px;
  }
  #zenonVideoSec .inner {
    padding: 0 20px;
  }

  .fadeinup {
    opacity: 0;
    -moz-transition: ease 0.8s;
    -o-transition: ease 0.8s;
    -webkit-transition: ease 0.8s;
    transition: ease 0.8s;
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
  .fadeinup.inview {
    opacity: 1;
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .delay3 {
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .delay5 {
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  .delay8 {
    -moz-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }

  div.btnBox2 {
    margin: 35px 0;
  }
  div.btnBox2 .inner {
    padding: 0 25px;
  }
  div.btnBox2 .inner a {
    display: block;
    width: 100%;
    border: 1px solid #000;
    padding: 10px 20px 10px 10px;
    font-size: 13px;
    font-weight: bold;
    position: relative;
    letter-spacing: 0;
  }
  div.btnBox2 .inner a:after {
    position: absolute;
    content: '';
    background: url(../images/svg/ico_next.svg) no-repeat center;
    background-size: 100% auto;
    width: 5px;
    height: 100%;
    top: 0;
    right: 10px;
  }
}
