@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Work+Sans");
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

/* bBootstrap v3.3.7の変数のみinclude */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
 /* Component */
.ol,
.ul {
  padding: 0;
  list-style-type: none;
}

/* Project */
a:hover img{
  opacity: 0.7 ;
  transition: .3s;
}
.p-main {
  color: #000000;
}
.p-main a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
.p-main a:hover {
  text-decoration: none;
}
.lead_text {
  text-align: center;
  margin: 5% 0 6%;
  padding: 0 5%;
  font-size: 1.3em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .lead_text {
    font-size: 1.3em;
    line-height: 1.8em;
  }
}
.p-main .navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
  width: 90%;
  max-width: 920px;
  margin: 4.5% auto 0;
}
.p-main .navi li {
  width: 32%;
  max-width: 294px;
  margin-bottom: 2%;
}
.p-main .line {
  margin: 12% 0;
  height: 120px;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-main .line {
    margin: 2.6% 0;
    height: 100%;
    overflow: auto;
  }
}
.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  margin: 0 auto;
  padding: 0;
  font-smoothing: antialiased;
  font-size: 12px;
  line-height: 1.8 !important;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 980px) {
  .content_wrap {
    font-size: 14px;
  }
}
.content_wrap * {
  box-sizing: border-box;
}
.main-img {
  text-align: center;
  margin: 0;
}
.item {
  margin: 20% auto 35%;
  width: 90%;
}
.item#item_06 {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .item {
    width: 100%;
    margin: 4% auto 22%;
  }
}
.item__body {
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .item__body {
    width: 100%;
    max-width: 1104px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
  }
  .item__body.item__body--rev {
    width: 90%;
    max-width: 984px;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.item__body .item__main,
.item__body .item__sub {
  width: 100%;
}
.item__body.item__main > div {
  margin: 5% 0;
}
.item__body .item__sub > div {
  position: relative;
  left: 7%;
}
.item__body .item__sub div.item_credit {
  left: 0
}
.item__body .item__sub .sub_img_smp {
  position: relative;
  left: -12%;
}
.item__body.item__body--rev .item__sub > div {
  margin: 5% auto;
  position: static;
}
.item__body .item__sub .sub_img_smp {
  width: 90%;
  margin-top: 5%;
}
@media screen and (min-width: 980px) {
  .item__body .item__main {
    width: 50%;
    max-width: 490px;
    margin-top: 8%;
    position: relative;
    z-index: 1;
  }
  .item__body.item__body--rev .item__main {
    margin-top: 17%;
    margin-left: -12%;
  }
  .item__body .item__sub {
    width: 57%;
    max-width: 545px;
  }
  .item__body .item__main > div,
  .item__body .item__sub > div {
    margin: 0;
    position: static;
  }
}
.item__body .item__main h3 {
  width: 70%;
  max-width: 400px;
}
.item__body .item__main p {
  margin: 9% 0;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 980px) {
  .item__body .item__main h3 {
    width: 85%;
  }
  .item__body.item__body--rev .item__main p {
    margin-bottom: 33%;
  }
}
.item__body .item__sub .item_credit ul {
  margin-top: 14%;
}
.item__body .item__sub .item_credit ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
}
.item__body .item__sub .item_credit .item_img {
  width: 54%;
  max-width: 132px;
  margin-right: 2%;
}
.item__body .item__sub .item_credit .item_txt {
  width: 40%;
  font-family: roboto, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.1em;
  line-height: 2em;
}
.item__body .item__sub .item_credit .item_txt a {
  text-decoration: none;
  transition: 0.5s;
}
.item__body .item__sub .item_credit .item_txt a:hover {
  color: #db5d38;
}
@media screen and (min-width: 980px) {
  .item__body .item__sub .item_credit ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .item__body .item__sub .item_credit ul li {
    width: 48%;
    -webkit-box-pack: start;
       -ms-flex-pack: start;
     justify-content: flex-start;
  }
  .item__body.item__body--rev .item__sub .item_credit ul li {
    width: 100%;
  }
}
.listbtn_wrap {
  margin: 8.5% 0 0;
}
.listbtn a,.listbtn a:hover,.listbtn a:active,.listbtn a:link,.listbtn a:visited {
  display: block;
  width: 90%;
  max-width: 777px;
  background: #858585;
  margin: 0 auto 2%;
  padding: 3% 0;
  color: #fff;
  text-align: center;
  font-size: 1.3em;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.listbtn a .en {
  font-family: roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.listbtn a:hover {
  background: #cf3927; 
}
@media screen and (min-width: 980px) {
  .listbtn a,.listbtn a:hover,.listbtn a:active,.listbtn a:link,.listbtn a:visited {
    padding: 1.33% 0;
    letter-spacing: 0.05em;
  }
}

@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.item__body .auto-fade {
  position: absolute;
  top: 0;
  right: 24px;
  animation-name: auto-fade_kf;
  animation-duration: 12s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 2s;
}

/* Utility */
.hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.fluid_img {
  max-width: 100%;
  height: auto;
}

.none {
  display: none;
}

.flo-left {
  float: left;
}

.flo-right {
  float: right;
}

.text_left {
  text-align: left;
}

@media screen and (min-width: 980px) {
  .text_left--md {
    text-align: left !important;
  }
}

.text_right {
  text-align: right;
}

@media screen and (min-width: 980px) {
  .text_right--md {
    text-align: right !important;
  }
}

.text_center {
  text-align: center;
}

.font_small {
  font-size: 80%;
}

.opa-0,
.ani-fadeIn,
.ani-fadeInLeft {
  opacity: 0;
}

.flex-outer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.flex-child {
  width: 50%;
}

.u-none {
  display: none;
}
.item__body .img_block a span.u-none,
.item__body .img_block a span.u-none::after {
  display: none;
}

@media screen and (min-width: 980px) {
  .u-md-block {
    display: block;
  }
}

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

@media screen and (min-width: 768px) {
  .u-sm-inline {
    display: inline;
  }
  .item__body .img_block a span.u-sm-inline,
  .item__body .img_block a span.u-sm-inline::after {
    display: inline;
  }
}

@media screen and (min-width: 980px) {
  .u-md-inline {
    display: inline;
  }
}

.u-table {
  display: table;
}

@media screen and (min-width: 980px) {
  .u-md-table {
    display: table;
  }
}

@media screen and (min-width: 480px) {
  .u-xs-none {
    display: none;
  }
}

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

@media screen and (min-width: 980px) {
  .u-md-none {
    display: none;
  }
}

@media screen and (min-width: 980px) {
  .mt-md_-35px {
    margin-top: -35px !important;
  }
}

@media screen and (min-width: 980px) {
  .md-mt-80 {
    margin-top: 80px;
  }
}

@media screen and (min-width: 980px) {
  .md-mt-170 {
    margin-top: 170px;
  }
}

.abs-left {
  left: 0;
}

.u-max-486px {
  max-width: 486px !important;
}

@media screen and (min-width: 980px) {
  .u-max-486px {
    max-width: 540px !important;
  }
}

.u-max-464px {
  max-width: 464px !important;
}

@media screen and (min-width: 980px) {
  .u-max-464px {
    max-width: 540px !important;
  }
}


/*================================================================================

state

================================================================================*/

@media screen and (min-width: 650px){ 
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 650px){ 
  .pc { display:none; }
  .sp { display:block; }
}