@charset "UTF-8";
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

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

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

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

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* 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)
 */
.flash {
  -webkit-animation: flash 1.5s infinite linear;
          animation: flash 1.5s infinite linear;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.fadeIn-Loop {
  -webkit-animation: fadeIn-Loop 16s 8s infinite linear;
          animation: fadeIn-Loop 16s 8s infinite linear;
}

@-webkit-keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* 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 {
  -webkit-transform: scale(1.2, 1.2);
      -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: 1200px) {
  .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
 */
/* Project */

.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.8;
  /* position: relative; */
  margin: 0 auto;
  background: url("https://ds-assets.s3.amazonaws.com/e-look.jp/2017/andcurtaincall/1110_thanksfair/base_smp_02.jpg") no-repeat;
  background-position: top;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .content_wrap {
    background: url("https://ds-assets.s3.amazonaws.com/e-look.jp/2017/andcurtaincall/1110_thanksfair/base_tab.jpg") no-repeat;
    padding: 2px 0;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap {
    background: url("https://ds-assets.s3.amazonaws.com/e-look.jp/2017/andcurtaincall/1110_thanksfair/base.jpg") no-repeat;
    padding: 2px 0;
  }
}

.content_wrap * {
  box-sizing: border-box;
}
.content_wrap a{
  text-decoration:none;
}
.content_wrap_inner{
  margin: 3px 5px;
  padding: 2px 0;
  border: 1px solid #ffffff;
}

@media screen and (min-width: 980px) {
  .content_wrap_inner{
    margin: 3px 5px;
    padding: 2px 7px;
  }
}

.content_wrap .header {
  text-align: center;
  margin-bottom: 9%;
}

.content_wrap .header > *:not(.header--lace-header) {
  /* margin: 0 30px; */
}

.content_wrap .header .header--lace-header {
  background-position: top -15px center;
  background-repeat: repeat-x;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
}

@media screen and (min-width: 980px) {
  .content_wrap .header .header--lace-header {
    margin-bottom: 80px;
  }
}

.content_wrap .header .header--lace-header.animated {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.content_wrap .header .header__title {
  /* margin-bottom: 2%; */
}

@media screen and (min-width: 690px) {
  .content_wrap .header .header__title {
    /* margin-bottom: 50px; */
  }
}

.content_wrap .header .header__title .animated {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.content_wrap .header .header__sub-title {
  max-width: 670px;
  margin: 0 auto 15px auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
}

@media screen and (min-width: 690px) {
  .content_wrap .header .header__sub-title {
    margin-bottom: 40px;
  }
}

.content_wrap .header .header__sub-title > p {
  -webkit-flex: 0 1 60%;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  padding: 0 3%;
  margin-bottom: 0;
}

.content_wrap .header .header__sub-title:before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #a39898;
  -webkit-flex: 0 1 20%;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}

.content_wrap .header .header__sub-title:after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #a39898;
  -webkit-flex: 0 1 20%;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}

.content_wrap .header .header__sub-title .animated {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.content_wrap .header .hader__text {
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.12em;
  margin-top: 2%;
}
@media screen and (min-width: 690px) {
  .content_wrap .header .hader__text {
    font-size: 19px;
    line-height: 1.8em;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .header .hader__text {
    font-size: 26px;
  }
}

.content_wrap .header .hader__text.animated {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.content_wrap .profile {
  text-align: center;
  margin: 0 auto 7% auto;
}

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

.content_wrap .profile .profile__img {
  position: relative;
  margin-bottom: 20%;
}
@media screen and (min-width: 640px) {
  .content_wrap .profile .profile__img {
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 767px) {
  .content_wrap .profile .profile__img {
    margin-bottom: 11%;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .profile .profile__img {
    margin-bottom: 14%;
  }
}

.content_wrap .profile .profile__img__main img {
  max-width: 390px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .content_wrap .profile .profile__img__main img {
    max-width: 600px;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .profile .profile__img__main img {
    max-width: 860px;
  }
}

.content_wrap .profile .profile__img__maru {
  position: absolute;
  left: -3%;
  bottom: -7%;
}
.content_wrap .profile .profile__img__maru img {
  max-width:150px;
  width: 75%;
}
@media screen and (min-width: 540px) {
  .content_wrap .profile .profile__img__maru {
    left: 3%;
    bottom: -6%;
  }
}
@media screen and (min-width: 640px) {
  .content_wrap .profile .profile__img__maru {
    left: 11%;
    bottom: -5%;
  }
}
@media screen and (min-width: 767px) {
  .content_wrap .profile .profile__img__maru {
    left: 77%;
    bottom: -21%;
  }
  .content_wrap .profile .profile__img__maru img {
    max-width:150px;
    width: 85%;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .profile .profile__img__maru{
  right: 2%;
  bottom: -17%;
  }
  .content_wrap .profile .profile__img__maru img{
  max-width:150px;
  width:100%;
  }
}
@media screen and (min-width: 1200px) {
  .content_wrap .profile .profile__img__maru{
  right: 7%;
  bottom: -16%;
  }
}


.content_wrap .profile .profile__title {
  margin-bottom: 50px;
  font-size: 26px;
}

.content_wrap .profile .profile__title img {
  margin-bottom: 30px;
}

.content_wrap .profile .profile__title .sml {
  margin-left: 10px;
  font-size: 70%;
}


.content_wrap .profile .profile__discription {
  font-size: 14px;
  line-height: 2.2em;
  text-align:left;
  letter-spacing: 0.08em;
  padding: 0 12%;
  clear:both;
  margin-bottom: 20%;
}


@media screen and (min-width: 640px) {
  .content_wrap .profile .profile__discription {
    font-size: 14px;
    line-height:2.5em;
    letter-spacing: 0.05em;
    text-align:center;
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  .content_wrap .profile .profile__discription {
    font-size: 14px;
    padding: 0;
  }
}
@media screen and (min-width: 980px) {
.content_wrap .profile .profile__discription {
  font-size: 16px;
}
}


.content_wrap .profile span.pink_em {
  color: #f14e71;
  font-weight: bold;
}

@media screen and (min-width: 980px) {
  .content_wrap .profile span.pink_em {
  color: #f14e71;
  font-weight: bold;
  }
}
.content_wrap .information {
  text-align: center;
  margin: 0 auto 8% auto;
  background-color: #d1eff7;
  width: 90%;
  padding: 2% 4% 8%;
}
@media screen and (min-width: 640px) {
  .content_wrap .information {
    margin: 0 auto 6% auto;
    width: 90%;
    padding: 1% 4% 6% 4%;
  }
}
@media screen and (min-width: 768px) {
  .content_wrap .information {
    margin: 0 auto 5% auto;
    width: 90%;
    padding: 0.1% 3% 5%;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .information {
    margin: 0 auto 4% auto;
    width: 80%;
    padding: 5% 4%;
  }
}

.content_wrap .information .information__title {
  text-align: center;
  font-size: 18px;
  line-height: 2.5em;
  color:#fff;
  letter-spacing: 0.4em;
  border:1px #000 solid;
  width:180px;
  margin: 10% auto 4% auto;
  display:block;
  background-color:#000;
}
@media screen and (min-width: 980px) {
  .content_wrap .information .information__title {
    font-size: 20px;
  margin: 20px auto;
  }
}




.content_wrap .information .information__detail{
  line-height: 2.2em;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
}
.content_wrap .information .information__detail:nth-child(2){
  text-align: center;
}
@media screen and (min-width: 640px) {
  .content_wrap .information .information__detail{
    font-size: 15px;
    text-align:center;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .information .information__detail{
    font-size: 15px;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .information .information__detail{
    font-size: 16px;
  }
}

.content_wrap .information .information__detail span{
  font-size:13px;
}
@media screen and (min-width: 980px) {
  .content_wrap .information .information__detail span{
    font-size:14px;
  }
}

.content_wrap .attention {
  text-align: center;
  margin: 0 auto 8% auto;
  font-size: 18px;
  line-height:2.5em;
  color:#666666;
}
@media screen and (min-width: 980px) {
    .content_wrap .attention {
    text-align: center;
    margin: 0 auto 4% auto;
    /* font-size: 18px; */
    line-height:2.5em;
    color:#666666;
  }
}

.content_wrap .attention .attention__title {
  text-align: center;
  border-bottom:1px #666666 solid;
  padding-bottom: 3%;
  width: 90%;
  margin: 0 auto;
  font-size: 18px;
  letter-spacing:0.15em;
}

@media screen and (min-width: 980px) {
  .content_wrap .attention .attention__title {
  text-align: center;
  border-bottom:1px #666666 solid;
  padding-bottom: 3%;
  width: 80%;
  margin: 0 auto;
  font-size: 20px;
  letter-spacing:0.15em;
}





}
.content_wrap .attention .attention__detail{
  text-align: left;
  font-size: 14px;
  line-height:2em;
  padding: 2% 5%;
}
.content_wrap .attention .attention__detail li{
  padding-left: 20px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2.2em;
 }
@media screen and (min-width: 768px) {
  .content_wrap .attention .attention__detail {
    text-align: center;
    font-size: 15px;
    padding: 2% 0;
    line-height:2.5em;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .attention .attention__detail {
    text-align: center;
    font-size: 16px;
    padding: 2% 0;
    line-height:2.5em;
  }
}


.content_wrap .btn_thankfair{
  padding:0 0 20% 0;
}
@media screen and (min-width: 768px) {
  .content_wrap .btn_thankfair{
    padding: 0 0 8% 0;
  }
}



.content_wrap .btn_thankfair .btn_acc a:hover{
  background-color:#ffffff;
}

.content_wrap .btn_thankfair .btn_acc a{
  font-size: 16px;
  display:block;
  background-color:#feeded;
  width: 96%;
  padding: 6% 0%;
  margin: 0 auto 2% auto;
  border: none;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .content_wrap .btn_thankfair .btn_acc a{
    font-size: 18px;
    width: 65%;
    padding: 3% 0;
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .btn_thankfair .btn_acc a{
    text-align: center;
    font-size: 20px;
    background-color:#feeded;
    width: 50%;
    padding: 2.5%;
    margin: 0 auto;
    letter-spacing: 0.2em;
  }
}
.content_wrap .btn_thankfair .btn_acc p{
  margin:0 auto;
}






.btn-9 {
  $btn-color: random-color($max:200);
  $btn-color-dark: shade($btn-color, 40%);
  color: tint($btn-color);
  
  &:before,
  &:after,
  span:before,
  span:after {
    content: '';
    @include absolute(0,null,null,0);
    @include size(100%, 0);
    background-color: rgba($btn-color-dark, 0.25);
    transition: 0.4s ease-in-out;
  }
  
  &:after,
  span:before {
    top: auto;
    bottom: 0;
  }
  
  span:before,
  span:after {
    transition-delay: 0.4s;
  }
  
  &:hover {
    color: tint($btn-color, 75%);
    
    &:before,
    &:after,
    span:before,
    span:after {
      height: $btn-height;
    }
  }
  
  &:active {
    background-color: $btn-color;
  }
}




.content_wrap .disabled {
  text-decoration: none !important;
  cursor: default;
}

@-moz-document url-prefix() {
  .content_wrap .item-block__inner img {
    width: 100%;
    max-width: 100%;
  }
}

@media all and (-ms-high-contrast: none) {
  .content_wrap .item-block__inner img {
    width: 100%;
    max-width: 100%;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 980px) {
  .content_wrap .item-block .item-block__inner:first-child {
    -webkit-flex: 0 0 42% !important;
        -ms-flex: 0 0 42% !important;
            flex: 0 0 42% !important;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 980px) {
  .content_wrap .item-block .item-block__inner:last-child {
    -webkit-flex: 0 0 32% !important;
        -ms-flex: 0 0 32% !important;
            flex: 0 0 32% !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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-child {
  width: 50%;
}

.u-none {
  display: none;
}

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

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

.u-font-sml {
  font-size: 80%;
}

.u-pos-relative {
  position: relative;
}

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

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


img.pc_view,
br.pc_view,
span.pc_view {
  display: inline;
}

img.smp_view,
br.smp_view,
span.smp_view {
  display: none;
}

@media (max-width: 767px) {
  img.pc_view,
  br.pc_view,
  span.pc_view {
    display: none;
  }

  img.smp_view,
  br.smp_view,
  span.smp_view {
    display: inline;
  }
}