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





.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; */
}
.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/2018/andcurtaincall/0518_fair/bg.jpg") no-repeat;
  background-position: top;
  padding: 1px 0;
}
.content_wrap .header {
  text-align: center;
  margin-bottom: 7%;
}
.content_wrap .header .header--lace-header {
  background-position: top 0 center;
  background-repeat: repeat-x;
  width: 100%;
  /* height: 30px; */
  margin: 9% auto;
}
.content_wrap .header h1.header__logo{
  margin: 0 auto;
  width: 20%;
}
.content_wrap .header h2.header__title{
  margin: 3% auto 7%;
  width: 64%;
}
.content_wrap .header .header--lace-header.animated {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.content_wrap .header .header__title .animated {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.content_wrap .header .header__text {
  font-size: 19px;
  line-height: 1.8em;
  letter-spacing: 0.12em;
  margin-top: 2%;
}
.content_wrap .header .header__text.animated {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.content_wrap .header .header__text {
  /* margin: 6% auto; */
  }
.content_wrap .header .header__text .text_01{
    font-size:18px;
    display: inline-block;
    padding: 0 7em;
    text-decoration: none;
    background: #fffed7;/*ボタン色*/
    color: #000;
    border-bottom: solid 2px #969696;
    border-radius: 15px;
}
.content_wrap .header .header__text .text_02{
  font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
  font-size:30px;
  margin: 0.8% auto 1.5%;
}
.content_wrap .header .header__text .text_03{
  font-size: 27px;
  letter-spacing:0.1em;
}
.content_wrap .header .header__text .text_03 span{
  padding: 0;
  margin: 0 1px;
}
.content_wrap .header .header__text .text_03 span.color_purple{
  background:#ecf0ff;
}
.content_wrap .header .header__text .text_03 span.color_yellow{
  background:#fffed7;
}
.content_wrap .header .header__text .text_03 span.color_blue{
  background:#ccfefb;
}
.content_wrap .header .header__text .text_03 span.color_white{
  background:#fff;
}
.content_wrap .header .header__text .text_04{
  font-size: 15px;
  letter-spacing:0.1em;
  margin: 2% auto 0;
}
.content_wrap .header .header__text .text_04 span{
  font-size:18px;
}
.content_wrap .profile {
  padding:  0;
  text-align: center;
  margin: 0 auto;
}
.content_wrap .profile .profile__img{
  margin: 0 auto;
  text-align:  center;
  display:  flex;
  max-width: 800px;
  justify-content: space-around;
}
.content_wrap .profile .profile__img  > *{
    -webkit-flex: 0 0 48%;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    -webkit-flex: 0 0 calc(50% - 40px);
    -ms-flex: 0 0 calc(50% - 40px);
    flex: 0 0 calc(50% - 20px);
}
.content_wrap .profile p{ 
  font-size: 15px;
  line-height: 2.2em;
  text-align: center;
  letter-spacing: 0.08em;
  clear:both;
}
.content_wrap .profile .profile__discription {
  padding: 0;
  margin: 4% auto 0;
}
.content_wrap .profile .discription_block{margin: 4% 4% 6%;}
.content_wrap .profile .profile__discription span.theme{
  font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
  font-size:30px;
}
.content_wrap .profile .profile__discription span.example{
  background:linear-gradient(transparent 40%, #ffffff 40%);
}
.content_wrap .information {
  text-align: center;
  margin: 0 auto 4% auto;
  background-color: #ecf0ff;
  width: 80%;
  padding: 6% 0;
}
.content_wrap .information .information__title {
  text-align: center;
  font-size: 20px;
  line-height: 2.5em;
  color:#fff;
  letter-spacing: 0.4em;
  border:1px #000 solid;
  width:180px;
  margin: 20px auto;
  display:block;
  background-color:#000;
}
.content_wrap .information .information__detail{
  line-height: 2.2em;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
}
.content_wrap .information .information__detail:nth-child(2){
  text-align: center;
  margin-bottom: 6%;
}
.content_wrap .attention {
  text-align: center;
  margin: 0 auto 5% auto;
  line-height:2.5em;
  color: #000;
}
.content_wrap .attention .attention__title {
  text-align: center;
  border-bottom: 2px #000 solid;
  padding-bottom: 2%;
  width: 80%;
  margin: 0 auto;
  letter-spacing:0.15em;
  font-size: 20px;
  font-weight: 500;
}
.content_wrap .attention .attention__detail {
  text-align: center;
  font-size: 14px;
  padding: 1% 0;
  line-height:2.5em;
}
.content_wrap .attention .attention__detail li{
  max-width;462px;
  padding-left: 20px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2.2em;
}
.content_wrap .btn_thankfair{
  padding: 0 0 4%;
}
.content_wrap .btn_thankfair .btn_acc a{
  text-align: center;
  font-size: 20px;
  background-color: #ecf0ff;
  width: 50%;
  padding: 2.5%;
  margin: 0 auto;
  letter-spacing: 0.2em;
  display:block;
  border: none;
}
.content_wrap .btn_thankfair .btn_acc a:hover {
  text-decoration: none;
  opacity: 1;
  background-color: #d0f7f4;
}
.content_wrap .btn_thankfair .btn_acc p{
  margin:0 auto;
}


@media (max-width: 980px) {
  .content_wrap .profile ul.images_block{
  }

}


@media (max-width: 768px) {
  .content_wrap .header{
    margin: 11% auto 10%;
  }
  .content_wrap .header h1.header__logo{
    width: 40%;
    }
  .content_wrap .header h2.header__title{
  width: 90%;
  margin: 5% auto 11%;
  }
  .content_wrap .header .header__text .text_01{
  padding: 0 5.5em;
  font-size: 14px;
  }
  .content_wrap .header .header__text .text_02{
  font-size: 20px;
  margin: 0.2% auto 1%;
  font-weight: 500;
  }
  .content_wrap .header .header__text .text_03{
    font-size: 18px;
    margin-bottom: 3%;
  }
  .content_wrap .header .header__text .text_03 span{
    padding: 0;
    margin: 0 1px;
  }
  .content_wrap .header .header__text .text_04{
    font-size: 14px;
    margin: 0 auto;
    text-align: justify;
    padding: 0 7%;
    line-height: 2em;
  }
  .content_wrap .header .header__text .text_04 span.text_sizeup{
    font-size: 14px;
  }
  .content_wrap .information {
  margin: 0 auto 7% auto;
  width: 90%;
  padding: 6% 6% 9%;
  }
  .content_wrap .information .information__title {
  font-size: 16px;
  margin: 10% auto 5% auto;
  }
  .content_wrap .profile p{
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.08em;
  clear:both;
  }
  .content_wrap .profile p{
  font-size: 14px;
  line-height: 2.2em;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 0;
  }
  .content_wrap .profile .profile__discription{
  padding:0;
  margin: 6% auto 0;
  }
  .content_wrap .profile .discription_block{
  text-align:left;
  padding: 0 7%;
  margin: 4% auto 11%;
  line-height: 2em;
  }
  .content_wrap .profile .profile__discription span.theme{
    font-size: 20px;
    font-weight: 500;
  }
  .content_wrap .attention {
  margin: 0 auto 8% auto;
  font-size: 18px;
  }
  .content_wrap .attention .attention__title {
  width: 90%;
  font-size: 16px;
  padding-bottom: 3%;
  }
  .content_wrap .attention .attention__detail{
  text-align: left;
  font-size: 13px;
  line-height:2em;
  padding: 2% 5%;
  letter-spacing:  0.05em;
  }
  .content_wrap .information .information__detail{
  line-height: 2em;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  }
  .content_wrap .btn_thankfair{
  padding:0 0 20% 0;
  }
  .content_wrap .btn_thankfair .btn_acc a{
  font-size: 16px;
  width: 96%;
  padding: 6% 0%;
  margin: 0 auto 2% auto
  letter-spacing: 0.05em;
  }
}


@media (max-width: 640px) {
}

@media (max-width: 320px) {
}







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





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



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

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




@-ms-viewport {
  width: device-width;
}

.hidden {
  display: none;
  visibility: hidden;
}

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

.visible-desktop {
  display: inherit !important;
}

@media (max-width: 979px) and (min-width: 414px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 414px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}


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

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

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