@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;
  background-image:none;
  background-color: white;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@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;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation-name: bounce;
}

/* 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)
 */
/* Layout */
/* Component */
.sd-btn {
  border: 0;
  color: #FFFFFF;
  background-color: #0B6CCF;
  border-radius: 4px;
  display: inline-block;
  padding: 5px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.44;
}

.sd-btn a, .sd-btn:hover, .sd-btn:focus,
.sd-btn a:hover,
.sd-btn a:focus {
  color: #FFFFFF;
}

.zoom:hover {
  -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
  transition: all 0.5s ease 0s;
}

.ol--reset,
.ul--reset {
  padding: 0;
  list-style-type: none;
}

.ol,
.ul {
  padding: 0;
  list-style-type: none;
}

.ol li,
.ul li {
  border-bottom: 1px dotted #cccccc;
}

.ol li:last-child,
.ul li:last-child {
  border-bottom: none;
}

.hr {
  clear: both;
  border: 0;
  height: 1px;
  border-bottom: 1px solid #000000;
}

.form textarea,
.form input {
  border: 1px solid #000000;
}

.form label {
  margin-right: 15px;
}

.form textarea,
.form input[type="text"] {
  padding: 5px;
  width: 100%;
  font-size: 1rem;
}

@media screen and (min-width: 1020px) {
  .form textarea,
  .form input[type="text"] {
    font-size: 1.6rem;
  }
}

.form textarea {
  min-height: 200px;
}

.form input[type="submit"] {
  padding: 5px;
  margin: 5px;
}

.sd-table {
  width: 100%;
  max-width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-collapse: collapse;
}

.sd-table caption {
  font-weight: bold;
  font-size: 110%;
}

.sd-table > thead tr > th,
.sd-table > tbody tr > th,
.sd-table > tfoot tr > th {
  background: #f2f2f2;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}

.sd-table > thead tr > th, .sd-table > thead tr > td,
.sd-table > tbody tr > th,
.sd-table > tbody tr > td,
.sd-table > tfoot tr > th,
.sd-table > tfoot tr > td {
  vertical-align: middle;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  padding: 15px;
}

/*グラデーション*/
.gradation {
  background-color: transparent;
  background-image: linear-gradient(to bottom, #FFFFFF 0%, rgba(250, 250, 250, 0.4) 100%);
}

/*テキストシャドウ*/
.text-shadow--gray {
  text-shadow: 0 1px 0 rgba(150, 150, 150, 0.6);
}

.text-shadow--white {
  text-shadow: 0 1px 0 #FFFFFF;
}

/*ボックスシャドウ*/
.box-shadow--gray {
  box-shadow: 0 0 10px 1px #CCCCCC;
}

.box-shadow--white {
  box-shadow: 0 0 15px #FFFFFF #CCCCCC;
}

.sd-label {
  padding: 5px;
  font-size: 85%;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: #000000;
}

.sd-picture {
  border: 5px solid #FFFFFF;
}

/**
 * animation
 */
/*点滅設定*/
@keyframes sdKeyframes--opacity-flashing {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

/*点滅*/
.sd-flashing {
  animation: sdKeyframes--opacity-flashing 1s infinite;
}

/* Project */
/* smp1列 pc2列 可変レイアウト */
@media screen and (min-width: 690px) {
  .c-row:before,
  .c-row:after {
    content: " ";
    display: table;
  }
  .c-row:after {
    clear: both;
  }
  .c-row-child-left {
    width: 49%;
    margin-right: 1%;
    float: left;
  }
  .c-row-child-right {
    width: 49%;
    float: right;
  }
}

.btn {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 15px;
  display: block;
  margin: 0 auto;
  position: relative;
  background-image: url("images/arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  letter-spacing: 0.1px;
  border-radius: 4px;
  text-decoration: none;
}

.btn:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn a {
  display: block;
  color: #FFFFFF;
  padding: 10px 13px;
}

@media screen and (min-width: 980px) {
  .btn a {
    padding: 5px 13px;
  }
}

a:hover, a:focus {
  text-decoration: none;
  color: #000;
}

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

.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  /*font-family: 'Noto Sans Japanese',"ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",MS PGothic,sans-serif;*/
  font-smoothing: antialiased;
  font-size: 15px !important;
  line-height: 2 !important;
  padding: 0 10px;
  background-color: white;
  letter-spacing:0.08em;
}

@media screen and (min-width: 980px) {
  .content_wrap {
    padding: 0;
  }

  .content_wrap .header_area {
    text-align: center;
    margin: 65px 0 90px 0;
  }
}

.content_wrap * {
  box-sizing: border-box;
}

.content_wrap .header_area {
  text-align: center;
  margin: 50px 0 40px 0;
}

.content_wrap .header_area .header__logo {
  /*margin-bottom: 20px;*/
  margin:0 auto;
  width: 47%;
}

@media screen and (min-width: 690px) {
  .content_wrap .header_area .header__logo {
    /*margin-bottom: -60px;*/
    max-width: 208px;
    width: 14%;
    margin: 0 auto;
  }
}

.content_wrap .header_area .link-prev {
  float: left;
  margin-left: 10px;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  margin-top: 50px;
  font-size:13px;
}

.content_wrap .header_area .link-prev a{
  color:#999
}

@media screen and (min-width: 980px) {
  .content_wrap .header_area .link-prev {
  margin-left: 40px;
  margin-bottom: 40px;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 15px;
  }
}

.content_wrap .header_area .link-prev a {
  display: block;
}

.content_wrap .header_area .link-prev a::before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0px;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  border-top: solid 1px #999;
  border-right: solid 1px #999;
  margin-top: 9px;
  display: block;
  float: left;
  opacity: 1;
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  margin-right: 10px;
}

@media screen and (min-width: 980px) {
  .content_wrap .header_area .link-prev a::before {
  margin-right: 60px;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 13px;
  width: 10px;
  height: 10px;
  }
  .coming_soon{
  color:#cccccc;
  }
}

.content_wrap .header_area .link-next {
  float: right;
  display: block;
  margin-right: 10px;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 13px;
  margin-top:50px;
}
.coming_soon{
  color:#cccccc;
}

@media screen and (min-width: 980px) {
  .content_wrap .header_area .link-next {
    margin-right: 40px;
    margin-bottom: 40px;
    font-size: 15px;
  }
}

.content_wrap .header_area .link-next a {
  display: block;
  color: #999;
}

.content_wrap .header_area .link-next a::after {
  content: '';
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: solid 1px #999;
  border-right: solid 1px #999;
  margin-top: 9px;
  display: block;
  float: right;
  opacity: 1;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 10px;
}

@media screen and (min-width: 980px) {
  .content_wrap .header_area .link-next a::after {
    margin-left: 60px;
    width: 10px;
    height: 10px;
  }
}


.content_wrap .hero-img {
  position: relative;
  margin-bottom: 90px;
}

@media screen and (min-width: 980px) {
  .content_wrap .hero-img {
    margin-bottom: 240px;
  }
}

.content_wrap .hero-img .title-circle {
  margin-top: 30px;
  max-width: 80%;
}

@media screen and (min-width: 980px) {
  .content_wrap .hero-img .title-circle {
    max-width: none;
    margin-top: 0;
    max-width: 30%;
    position: absolute;
    top: -5%;
    left: 1%;
  }
}

.content_wrap .block__num {
  margin: 0 auto 60px auto;
  max-width: 20%;
}

.content_wrap .block__text--long {
  text-align: left;
}


@media screen and (min-width: 980px) {
  .content_wrap .block__num {
    max-width: none;
    width: 15%;
  }
  .content_wrap .block__text--long {
  margin-top: 30px;
  margin-bottom: 90px;
  display: block;
  text-align: center;
  }
}

.content_wrap .block__main-img {
  width: 55%;
  /*margin-bottom: 90px;*/
  margin: 0 auto 90px auto;
}
@media screen and (min-width: 980px) {
  .content_wrap .block__main-img {
    width: 45%;
  }
}

.content_wrap .block__title {
  margin-bottom: 20px;
  font-size: 19px !important;
  font-weight: normal;
  letter-spacing: 0.01em;
}

.content_wrap .block__text {
  margin-bottom: 100px;
  font-family: Georgia, Times, "ヒラギノ明朝 Pro W3", HGS明朝B, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  /* text-align: left; */
}

.content_wrap .block__text__left{
  text-align:left
}

.content_wrap .block__text--long {
  margin-top: 30px;
  margin-bottom: 90px;
  display: block;
}

.content_wrap .block__img_2nd_4th img{
  width: 90%;
  padding-bottom:20px;
}

.content_wrap .block__img_5th img{
  width: 1048px;
  margin:0 auto;
  max-width: 80%;
}

.content_wrap .block__img_7th img{
  width: 530px;
  margin:0 auto;
  max-width: 70%;
  padding-top:40px;
  padding-bottom: 25px;
}
.content_wrap .block__img_2nd_5th img{
  padding-bottom:200px;
}
.content_wrap .block__img_2nd_2nd img{
  width: 90%;
  margin: 0 auto;
}




@media screen and (min-width: 980px) {

  .content_wrap .block__title {
    font-size: 23px !important;
    letter-spacing: 0.08em;
  }
  .content_wrap .block__text--long{
  margin-bottom: 140px;
  }
  .content_wrap .block__text {
  text-align: center;
  margin-bottom: 150px;
  }
  .content_wrap .block__text__left{
  text-align:center;
  }
  .content_wrap .block__img_2nd{
   width: 1048px;
   margin:0 auto;
   max-width: 90%;
   margin-bottom:100px;
  }
  .content_wrap .block__img_3rd img{
   width: 1048px;
   margin:0 auto;
   max-width: 90%;
  }
  .content_wrap .block__img_5th img{
   width: 962px;
   margin:0 auto;
   max-width: 50%;
  }
  .content_wrap .block__img_2nd_2nd img{
    max-width: 900px;
    width: 60%;
    margin: 0 auto;
  }
  .content_wrap .block__img_2nd_4th img{
   max-width: 900px;
   margin:0 auto;
   width: 60%;
  }
  .content_wrap .block__img_2nd_5th img{
   width: 1094px;
   margin:0 auto;
   max-width: 95%;
  }
}




.content_wrap .block__img {
  margin-bottom: 30px;
}

.content_wrap .block__img-bottom img {
  margin-bottom: 10px;
}

.content_wrap .block__flat-img {
  margin-left: -2px;
  margin-right: -2px;
  margin-bottom: 40px;
}

.content_wrap .block__flat-img img {
  width: 23%;
  margin-left: 2px;
  margin-right: 2px;
}

.content_wrap .first.block {
  padding-bottom: 10px;
}

.content_wrap .profile {
  padding-bottom: 10px;
}

.content_wrap .profile__headline {
  font-size: 12px;
}

.content_wrap .profile__title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.content_wrap .profile__title .profile__sub-title {
  display: block;
  font-size: 14px;
  font-style: italic;
}

.content_wrap .profile__content {
  margin: 0 auto 80px auto;
  font-size: 14px;
  text-align: left;
  /*text-align: justify;*/
  text-justify: inter-ideograph;
}

@media screen and (min-width: 980px) {
  .content_wrap .profile__content {
    width: 700px;
    margin: 0 auto 170px auto;
  }
  .content_wrap .profile {
    padding-bottom: 140px;
  }
  .content_wrap .first.block {
    padding-bottom: 30px;
  }
  .content_wrap .block__img-bottom img {
    margin-bottom: 25px;
  }
}

.content_wrap .profile__staff {
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (min-width: 1020px) {
  .content_wrap .profile__staff {
    display: -ms-flexbox;
    display: flex;
    min-width: 900px;
    max-width: 1140px;
  }
}

.content_wrap .profile__staff dl {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  text-align: left;
}

.content_wrap .profile__staff dl dt {
  font-size: 12px;
  padding-top: 5px;
}

@media screen and (min-width: 690px) {
  .content_wrap .profile__staff dl dt {
    width: 28%;
    float: left;
  }
}

@media screen and (min-width: 690px) {
  .content_wrap .profile__staff dl dd {
    float: left;
    width: 70%;
  }
}

.content_wrap .profile__staff dl dd span {
  font-size: 12px;
}

.content_wrap .last {
  margin-top: 90px;
  margin-bottom: 150px;
}
@media screen and (min-width: 980px) {
.content_wrap .last {
  margin-top: -160px;
  margin-bottom: 150px;
}
}





.content_wrap .profile__staff__center {
  margin: 0 auto;
  padding:0;
  text-align:center;
}

@media screen and (min-width: 1020px) {
  .content_wrap .profile__staff__center {
    display: -ms-flexbox;
    display: flex;
    min-width: 900px;
    max-width: 1140px;
  }
}

.content_wrap .profile__staff__center dl {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  /*text-align: left;*/
  letter-spacing:0.08em;
}

.content_wrap .profile__staff__centerdl dt {
  font-size: 12px;
  padding-top: 5px;
}

.content_wrap .profile__staff__center dl dt {
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size:13px;

}

.content_wrap .profile__staff__center dl dd {
  padding-bottom:20px;
}

@media screen and (min-width: 690px) {
  .content_wrap .profile__staff__center dl dt {
    width: 28%;
    margin:0 auto;
    text-align: center;
    font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    font-size: 12px;
  }
}

@media screen and (min-width: 690px) {
  .content_wrap .profile__staff__center dl dd {
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
}

.content_wrap .profile__staff__center dl dd span {
  font-size: 12px;
}




.content_wrap .icon-facebook{
  width: 11%;
}


@media screen and (min-width: 690px) {
.content_wrap .icon-facebook{
  width: 4%;
}

}






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

.content_wrap .last .last__folow {
  margin-top: 90px;
  margin-bottom: 80px;
}

@media screen and (min-width: 980px) {
  .content_wrap .last .last__folow {
    margin-top: 130px;
  }
  .content_wrap .hr {
  max-width: 1140px;
  margin: 0 auto 200px auto;
}
}

.content_wrap .last .last__folow img {
  margin-top: 10px;
}

.content_wrap .last .last__title {
  font-size: 12px;
  margin-bottom: 5px;
}

.content_wrap .last .last__url {
  font-size: 15px;
  font-weight: bold;
}

.content_wrap .copylight {
  color: #7A7A7A;
  font-size: 10px;
  margin-top: 60px;
  padding-bottom: 60px;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}


.content_wrap .hr {
  max-width: 1140px;
  margin: 50px auto;
}

@media screen and (min-width: 980px) {
    .content_wrap .hr {
    max-width: 1140px;
    margin: 0 auto 200px auto;
    }
}
.content_wrap .before_02{
  margin: 0 auto 100px auto;
}

@media screen and (min-width: 980px) {
.content_wrap .before_02{
  margin: 0 auto 175px auto;
}
}

.content_wrap h4,
.content_wrap .cms-no-found h3 {
  font-size: 18px !important;
}

/* 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;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.font_small {
  font-size: 80%;
}

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

.flex-wrapper,
.flex-outer,
.flex-parent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.flex-child {
  width: 50%;
}

.u-none {
  display: none;
}
.u-on{
  display: block;
}
.u-inline{
  display: inline;
}

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

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

@media screen and (min-width: 690px) {
  .u-sm-inline {
    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: 690px) {
  .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;
  }
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-cb {
  color: #000000 !important;
}

.u-cb::before {
  content: '-' !important;
}

@media screen and (min-width: 980px) {
  .u-r-up .coordinate__single:nth-child(1) {
    margin-top: 120px !important;
  }
  .u-r-up .coordinate__single:nth-child(2) {
    margin-top: 80px !important;
  }
  .u-r-up .coordinate__single:nth-child(3) {
    margin-top: 0px !important;
  }
}

@media screen and (min-width: 980px) {
  .u-l-up .coordinate__single:nth-child(1) {
    margin-top: 0px !important;
  }
  .u-l-up .coordinate__single:nth-child(2) {
    margin-top: 80px !important;
  }
  .u-l-up .coordinate__single:nth-child(3) {
    margin-top: 120px !important;
  }
}

.u-opa {
  opacity: 0.3;
}

.u-white {
  color: #FFFFFF;
}

.u-mb-60-sm {
  margin-bottom: 60px;
}

@media screen and (min-width: 980px) {
  .u-mb-60-sm {
    margin-bottom: auto;
  }
}

.u-fs-120p {
  font-size: 120%;
}

@media screen and (min-width: 690px) {
  #page-body .light_outer .credit__data .cdu-l {
    width: 40%;
  }
}

@media screen and (min-width: 690px) {
  #page-body .light_outer .credit__data .cdu-r {
    width: 60%;
  }
}

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

state

================================================================================*/
.is-fade-in {
  transition: opacity 0.2s linear;
  opacity: 1 !important;
}

.is-fade-out {
  transition: opacity 0.6s ease-in-out;
  opacity: 0 !important;
}

.is-fade-out--long {
  transition: opacity 1s ease-in-out;
  opacity: 0 !important;
}

.is-nav-on {
  display: table-cell !important;
  vertical-align: middle;
  height: 100vh;
  padding: 20vh 0;
}

.is-title-circle-scroll {
  max-width: 20% !important;
  position: fixed !important;
  top: 1% !important;
}











/***NAV***/

.content_wrap_nav{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 140px auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.content_wrap_nav img{
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.content_wrap_nav a{
  text-decoration: none;
  color: #333;
}
.content_wrap_nav a:hover{
  text-decoration: none;
  color: #555;
  opacity: 0.9;
}
.flexslider ul.slides li p{
  margin: 2% 0;
  color: #333;
  text-align: right;
  line-height: 1.6 !important;
}
.interview_outter{
  /* margin-right: -20px; */
  /* margin-left: -20px; */
}
/*.interview{
  width: 33.3%;
  float: left;
}*/
.interview li{
  width: 21%;
  float: left;
  padding: 0 2%;
  box-sizing: initial;
}
.interview dt{
  font-size:18px;
  text-align:left;
  line-height: 1.5em;
  letter-spacing:0.1em;
}
.interview dt p{
  padding:15px 0 15px 0;
}
.interview dt:first-child:after{
  content: '';
  width: 25px;
  height: 20px;
  border-top: 1px solid #000;
  position: relative;
  /* top: 119%; */
  /* right: 118%; */
  display: block;
}
.interview dt span.occupation{
  font-size: 10.5px;
  font-style: italic;
}
.interview dt span.numbers{
  font-size: 20px;
  line-height: 2.5em;
}
.interview span{
  font-size: 17px;
  vertical-align: top;
}
.interview span.readmore{
  font-size:10px;
  padding:10px 10px 10px 10px;
  text-align:center;
  letter-spacing:0.1em;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
.interview dd{
  line-height:1.8em;
  text-align:left;
}
dd.name_ja{
  font-size: 15px;
}
dd.name_ja p{
  font-size:11px;
  line-height: 1.8em;
}
dd.short_esssay{
  font-size:12px;
  margin-top: 15px;
}
dd.short_esssay p{
  font-size:15px;
  padding: 8% 0 3% 0;
}
dd.coming_soon{
  background-image: url('https://ds-assets.s3.amazonaws.com/repetto/2017/sp/70th_specialissue/top/bracket_000.png');
  background-repeat:no-repeat;
  text-align:center;
  width: 220px;
/*  height: 50px;*/
  height: 43px;
  margin: 25px auto;
  line-height: 40px;
  letter-spacing: 0.15em;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  color: #666;
}
img.pc_view,
br.pc_view,
span.pc_view {
  display: inline;
}
div.pc_view {
  display: block;
}
img.smp_view,
br.smp_view,
span.smp_view,
div.smp_view {
  display: none;
}



@media (max-width: 980px){
  .content_wrap_nav{
    max-width: 980px;
    margin-bottom:70px;
  }
  .interview_outter{
    margin-right: -15px;
    margin-left: -15px;
  }
  .interview li{
  }
  .interview li:first-child{
    /* margin-left:65px; */
  }
  dd.coming_soon{
    background-image: url('https://ds-assets.s3.amazonaws.com/repetto/2017/sp/70th_specialissue/top/bracket_tablet_01.png');
    font-size: 12px;
    width: 169px;
    line-height: 30px;
  }
}


@media (max-width: 768px){
  .main_text{
    margin: 50px 20px;
  }
  .interview_outter{
    margin-right: -40px;
    margin-left: -40px;
  }
  .interview{
    width: 100%;
    float: none;
  }
  .interview li{
  width: 80%;
  float: none;
  padding: 40px 0;
  margin:0 auto;
  }
  .interview li:first-child{
    margin: 0 auto;
  }
  .interview dt, .interview dd{
    text-align:center;
  }
  .interview dt img{
    max-width:775px;
    width:70%;
  }
  dd.coming_soon{
    background-image: url('https://ds-assets.s3.amazonaws.com/repetto/2017/sp/70th_specialissue/top/bracket_tablet_01.png');
    font-size: 13px;
    width: 162px;
  }
  .interview dt:first-child:after{
    margin: 0 auto;
  }
  img.pc_view,
  br.pc_view,
  span.pc_view,
  div.pc_view {
    display: none;
  }
  img.smp_view,
  br.smp_view,
  span.smp_view {
    display: inline;
  }
  div.smp_view {
    display: block;
  }
}

/**NAV***/
