* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  height: 100%;
  margin: 0px;
  line-height: 1.5;
  font-family: "Noto Serif JP";
  height: 1000px;
  color: #444444; }

h1, h2 {
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 10px; }
  @media screen and (max-width: 868px) {
    h1, h2 {
      font-size: 35px; } }
  @media screen and (max-width: 500px) {
    h1, h2 {
      font-size: 25px;
      letter-spacing: 5px; } }

h3 {
  font-size: 35px;
  font-weight: 400;
  margin: 0px;
  letter-spacing: 5px; }
  @media screen and (max-width: 868px) {
    h3 {
      font-size: 28px; } }
  @media screen and (max-width: 500px) {
    h3 {
      font-size: 19px; } }

@media screen and (max-width: 868px) {
  p {
    font-size: 18px; } }

@media screen and (max-width: 500px) {
  p {
    font-size: 13px;
    color: #222222; } }

.header {
  position: fixed;
  z-index: 2;
  width: 100%;
  background: url(../img/black1.png);
  height: 80px;
  top: 0px;
  left: 0px; }
  @media screen and (max-width: 868px) {
    .header {
      height: 55px; } }
  .header__container {
    position: relative; }
  .header__background {
    position: absolute;
    height: 80px;
    width: 100%; }
  .header__logo {
    position: absolute;
    background-size: contain;
    padding-top: 13px;
    height: 80px;
    -webkit-filter: invert(90%);
    filter: invert(90%); }
    @media screen and (max-width: 868px) {
      .header__logo {
        padding-top: 9px;
        height: 60px; } }
  .header nav {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0px;
    height: 80px;
    right: 100px;
    right: 0px; }
    @media screen and (max-width: 868px) {
      .header nav {
        margin-left: 0px; } }
  .header ul {
    padding-left: 0px;
    padding-top: 10px;
    width: 830px; }
    @media screen and (max-width: 868px) {
      .header ul {
        display: none; } }
    @media screen and (max-width: 500px) {
      .header ul {
        display: none; } }
  .header li {
    display: inline;
    color: white;
    font-size: 15px;
    height: 80px;
    padding-right: 55px; }
    .header li a {
      text-decoration: none;
      color: white;
      position: relative;
      display: inline-block;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      padding-bottom: 5px; }
      .header li a::after {
        position: absolute;
        bottom: 0;
        left: 50%;
        content: '';
        width: 0;
        margin-top: 30px;
        height: 1px;
        background-color: white;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
      .header li a:hover::after {
        width: 100%; }
  .header__menu-trigger {
    display: none; }
    @media screen and (max-width: 868px) {
      .header__menu-trigger {
        top: 17px;
        position: relative;
        display: inline-block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 0 0 auto;
        float: right;
        right: 10px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
        width: 30px;
        height: 20px; }
        .header__menu-trigger span {
          display: inline-block;
          -webkit-transition: all .4s;
          -o-transition: all .4s;
          transition: all .4s;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
          position: absolute;
          left: 0;
          width: 100%;
          height: 2px;
          background-color: #fff;
          border-radius: 4px; }
        .header__menu-trigger span:nth-of-type(1) {
          top: 0; }
        .header__menu-trigger span:nth-of-type(2) {
          top: 9px; }
        .header__menu-trigger span:nth-of-type(3) {
          bottom: 0; } }
    .header__menu-trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(-45deg);
      -ms-transform: translateY(9px) rotate(-45deg);
      transform: translateY(9px) rotate(-45deg); }
    .header__menu-trigger.active span:nth-of-type(2) {
      left: 50%;
      opacity: 0;
      -webkit-animation: active-menu-bar02 .8s forwards;
      animation: active-menu-bar02 .8s forwards; }

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0; } }

@keyframes active-menu-bar02 {
  100% {
    height: 0; } }
    .header__menu-trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-9px) rotate(45deg);
      -ms-transform: translateY(-9px) rotate(45deg);
      transform: translateY(-9px) rotate(45deg); }

.menu {
  z-index: 1;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  margin: 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .menu.active {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .menu ul {
    margin: 0;
    padding: 0;
    margin-top: 70px; }
  .menu li {
    font-size: .8em;
    line-height: 1.4; }
    .menu li:not(:first-child) {
      border-top: 1px solid rgba(255, 255, 255, 0.6); }
  .menu a {
    display: block;
    padding: 1em 2em;
    text-decoration: inherit;
    -webkit-transition: background .6s;
    -o-transition: background .6s;
    transition: background .6s;
    color: white; }
    .menu a:hover {
      background: black; }

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(600px, 0, 0);
    transform: translate3d(600px, 0, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); } }

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(600px, 0, 0);
    transform: translate3d(600px, 0, 0); }
  100% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0); } }

.footer-yohaku {
  height: 50px;
  width: 50px; }

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 70px;
  background-color: #222222;
  color: #aaaaaa;
  width: 100%; }
  @media screen and (max-width: 868px) {
    footer {
      font-size: 13px; } }

.top1 {
  height: 100vh;
  background-image: url(../img/cal6-1.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center; }
  @media screen and (max-width: 868px) {
    .top1 {
      background: url(../img/cal6_sp-2.jpg);
      background-size: cover;
      background-position: center center;
      height: 600px; } }
  @media screen and (max-width: 500px) {
    .top1 {
      height: 560px; } }

.top2 {
  height: auto;
  padding-bottom: 80px;
  background: url(../img/texture/cal2-1.jpg);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }
  @media screen and (max-width: 868px) {
    .top2 {
      height: auto;
      padding-bottom: 40px; } }
  @media screen and (max-width: 500px) {
    .top2 {
      font-size: 10px; } }
  .top2__prof-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
    @media screen and (max-width: 868px) {
      .top2__prof-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        position: relative; } }
    .top2__prof-area__left {
      padding-left: 80px;
      margin-top: -50px;
      width: 20%;
      color: #444444;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 868px) {
        .top2__prof-area__left {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          width: 100%;
          padding-left: 0px;
          margin-top: 0px;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          margin-top: 30px;
          margin-bottom: 30px; } }
      @media screen and (max-width: 500px) {
        .top2__prof-area__left {
          margin-top: 0px;
          margin-bottom: 0px; } }
      .top2__prof-area__left__title {
        letter-spacing: 10px;
        margin: 0px;
        padding-top: 80px;
        padding-bottom: 40px;
        height: wrap;
        position: relative;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        float: left; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__left__title {
            -webkit-writing-mode: vertical-rl;
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            height: 390px;
            padding: 0px;
            margin-top: -20px;
            margin-right: 10px;
            letter-spacing: 4px; } }
      .top2__prof-area__left__title-en {
        font-size: 16px;
        letter-spacing: 10px;
        height: 530px;
        position: relative;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        float: left; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__left__title-en {
            height: 270px;
            margin-left: 0px;
            margin-right: 5px;
            font-size: 13px;
            letter-spacing: 8px; } }
      .top2__prof-area__left__yohaku {
        margin: 0px;
        padding: 0px;
        float: left; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__left__yohaku {
            display: none; } }
      .top2__prof-area__left__deco {
        margin-left: 85px;
        margin-right: 35px;
        margin-top: 30px;
        float: left;
        width: 1px;
        background-color: #444444;
        height: 550px; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__left__deco {
            display: none; } }
    .top2__prof-area__centre1 {
      width: 15%; }
      @media screen and (max-width: 868px) {
        .top2__prof-area__centre1 {
          display: none; } }
    .top2__prof-area__right {
      margin-top: -50px;
      padding-top: 250px;
      width: 40%;
      font-size: 16px;
      color: #444444;
      font-weight: 100;
      letter-spacing: 2px; }
      @media screen and (max-width: 868px) {
        .top2__prof-area__right {
          padding-top: 0px;
          width: 80%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          margin-bottom: 100px; } }
      @media screen and (max-width: 500px) {
        .top2__prof-area__right {
          margin-bottom: 50px; } }
      .top2__prof-area__right__name {
        height: 100px;
        width: 423.48px;
        margin-right: 100px;
        opacity: 0.8; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__right__name {
            height: 80px;
            width: 338.78px;
            margin-right: 0px; } }
        @media screen and (max-width: 500px) {
          .top2__prof-area__right__name {
            height: 58px;
            width: 251.42px;
            margin-right: 0px; } }
      .top2__prof-area__right__pict {
        height: 300px;
        float: left;
        padding-top: 30px;
        margin-right: auto; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__right__pict {
            height: 250px;
            width: 290.75px;
            margin-right: 0px; } }
        @media screen and (max-width: 500px) {
          .top2__prof-area__right__pict {
            height: 200px;
            width: 232.6px;
            margin-right: 0px; } }
      .top2__prof-area__right__line1 {
        clear: both;
        padding-top: 50px; }
      .top2__prof-area__right__line2 {
        padding-top: 15px; }
      .top2__prof-area__right__line3 {
        text-align: left;
        padding-top: 15px;
        padding-left: 60px; }
      .top2__prof-area__right__line4 {
        text-align: left;
        padding-top: 15px;
        padding-left: 60px; }
      .top2__prof-area__right__social {
        padding-left: 5px;
        padding-top: 10px;
        height: 0px; }
      .top2__prof-area__right ul {
        text-align: left; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__right ul {
            font-size: 18px; } }
        @media screen and (max-width: 500px) {
          .top2__prof-area__right ul {
            font-size: 13px; } }
      .top2__prof-area__right__yakusyoku1 {
        padding-top: 20px; }
      .top2__prof-area__right li {
        padding-top: 8px;
        list-style-type: circle; }
    .top2__prof-area__centre2 {
      margin-top: -50px;
      width: 25%;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      @media screen and (max-width: 868px) {
        .top2__prof-area__centre2 {
          position: absolute;
          right: 70px;
          width: auto;
          top: 370px; } }
      @media screen and (max-width: 500px) {
        .top2__prof-area__centre2 {
          right: 15px; } }
      .top2__prof-area__centre2__deco1 {
        width: 150px;
        padding-top: 150px;
        opacity: 0.3; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__centre2__deco1 {
            padding-top: 0px;
            width: 80px; } }
        @media screen and (max-width: 500px) {
          .top2__prof-area__centre2__deco1 {
            padding-top: 0px;
            width: 45px; } }
      .top2__prof-area__centre2__deco2 {
        width: 120px;
        padding-top: 170px;
        opacity: 0.3; }
        @media screen and (max-width: 868px) {
          .top2__prof-area__centre2__deco2 {
            width: 70px;
            padding-top: 30px; } }
        @media screen and (max-width: 500px) {
          .top2__prof-area__centre2__deco2 {
            width: 45px;
            padding-top: 30px; } }

.greeting {
  height: 1000px;
  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;
  color: #444444;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  background-image: url(../img/texture/mizutama5.jpg);
  background-size: cover; }
  @media screen and (max-width: 868px) {
    .greeting {
      background-image: url(../img/texture/mizutama5-sp3.jpg);
      background-size: cover;
      background-position: center center;
      height: auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      -webkit-box-pack: none;
      -ms-flex-pack: none;
      justify-content: none;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  @media screen and (max-width: 500px) {
    .greeting {
      -webkit-box-align: none;
      -ms-flex-align: none;
      align-items: none; } }
  .greeting__title {
    letter-spacing: 10px;
    margin-top: -200px;
    margin-right: -50px;
    font-size: 80px;
    font-family: "Hannari";
    height: wrap;
    position: relative;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    float: left; }
    @media screen and (max-width: 868px) {
      .greeting__title {
        font-size: 50px;
        margin-top: 100px;
        letter-spacing: 5px;
        padding-top: 0px;
        margin-right: 0px;
        float: none;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb; } }
    @media screen and (max-width: 500px) {
      .greeting__title {
        margin-top: 50px;
        font-size: 30px; } }
  .greeting__p {
    width: 700px;
    margin-right: 30px;
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse; }
    @media screen and (max-width: 868px) {
      .greeting__p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        width: 75%;
        margin-right: 0px;
        margin-top: 25px;
        margin-bottom: 100px;
        padding-bottom: 0px; } }
    @media screen and (max-width: 500px) {
      .greeting__p {
        width: 85%;
        margin-top: 5px;
        margin-bottom: 50px; } }
  .greeting p {
    margin-left: 5px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl; }
    @media screen and (max-width: 868px) {
      .greeting p {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        margin-top: 5px; } }

.classes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media screen and (max-width: 868px) {
    .classes {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }
  .classes__h {
    text-align: center;
    margin: 60px auto 60px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl; }
    .classes__h h2 {
      margin-left: 5px; }
    .classes__h p {
      font-size: 16px;
      letter-spacing: 10px;
      margin-top: -40px; }
      @media screen and (max-width: 868px) {
        .classes__h p {
          font-size: 13px;
          margin-top: 0px;
          margin-left: 0px; } }
  .classes__kyoto {
    margin-left: 70px;
    clear: both;
    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;
    margin-top: 75px; }
    @media screen and (max-width: 868px) {
      .classes__kyoto {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-left: 0px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        width: 70%; } }
    @media screen and (max-width: 500px) {
      .classes__kyoto {
        width: 90%; } }
    .classes__kyoto h3 {
      padding-bottom: 15px; }
    .classes__kyoto__text {
      width: 500px;
      float: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media screen and (max-width: 868px) {
        .classes__kyoto__text {
          width: 80%;
          margin-top: 40px;
          padding-bottom: 40px; } }
      .classes__kyoto__text__line {
        height: 1px;
        width: 350px;
        background-color: #444444; }
        @media screen and (max-width: 868px) {
          .classes__kyoto__text__line {
            width: 90%; } }
      .classes__kyoto__text table {
        padding-top: 15px;
        border-style: none; }
        @media screen and (max-width: 868px) {
          .classes__kyoto__text table {
            font-size: 18px -3px; } }
        @media screen and (max-width: 500px) {
          .classes__kyoto__text table {
            font-size: 13px; } }
        .classes__kyoto__text table td {
          vertical-align: top;
          padding-right: 10px;
          padding-bottom: 10px; }
      .classes__kyoto__text a {
        margin-top: 10px;
        margin-left: auto;
        margin-right: 100px;
        display: inline-block; }
        @media screen and (max-width: 868px) {
          .classes__kyoto__text a {
            margin-right: 30px;
            margin-top: 0px; } }
        .classes__kyoto__text a:hover img {
          -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg); }
        .classes__kyoto__text a img {
          width: 100px;
          display: inline-block;
          -webkit-transition: .8s;
          -o-transition: .8s;
          transition: .8s; }
          @media screen and (max-width: 868px) {
            .classes__kyoto__text a img {
              width: 95px; } }
          @media screen and (max-width: 500px) {
            .classes__kyoto__text a img {
              width: 80px; } }

@-webkit-keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

@keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }
      .classes__kyoto__text__deco {
        width: 450px;
        height: 58px;
        margin-left: -50px; }
        @media screen and (max-width: 868px) {
          .classes__kyoto__text__deco {
            width: 400px;
            height: 48px;
            margin-left: -15px;
            margin-top: 20px; } }
        @media screen and (max-width: 500px) {
          .classes__kyoto__text__deco {
            width: 300px;
            height: 38px;
            margin-top: 0px; } }
        @media screen and (max-width: 345px) {
          .classes__kyoto__text__deco {
            width: 230px;
            height: 34px; } }
    .classes__kyoto__img {
      width: 500px;
      border-radius: 10px; }
      @media screen and (max-width: 868px) {
        .classes__kyoto__img {
          width: 400px;
          margin-top: 60px; } }
      @media screen and (max-width: 500px) {
        .classes__kyoto__img {
          width: 300px;
          margin-top: 40px; } }
      @media screen and (max-width: 345px) {
        .classes__kyoto__img {
          width: 250px; } }
    @media screen and (max-width: 868px) {
      .classes__kyoto {
        margin-top: 0px; } }
  .classes__nanba {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-left: 70px;
    clear: both;
    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;
    margin-top: 75px; }
    @media screen and (max-width: 868px) {
      .classes__nanba {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-left: 0px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        width: 70%; } }
    @media screen and (max-width: 500px) {
      .classes__nanba {
        width: 90%; } }
    .classes__nanba h3 {
      padding-bottom: 15px; }
    .classes__nanba__text {
      width: 500px;
      float: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media screen and (max-width: 868px) {
        .classes__nanba__text {
          width: 80%;
          margin-top: 40px;
          padding-bottom: 40px; } }
      .classes__nanba__text__line {
        height: 1px;
        width: 350px;
        background-color: #444444; }
        @media screen and (max-width: 868px) {
          .classes__nanba__text__line {
            width: 90%; } }
      .classes__nanba__text table {
        padding-top: 15px;
        border-style: none; }
        @media screen and (max-width: 868px) {
          .classes__nanba__text table {
            font-size: 18px -3px; } }
        @media screen and (max-width: 500px) {
          .classes__nanba__text table {
            font-size: 13px; } }
        .classes__nanba__text table td {
          vertical-align: top;
          padding-right: 10px;
          padding-bottom: 10px; }
      .classes__nanba__text a {
        margin-top: 10px;
        margin-left: auto;
        margin-right: 100px;
        display: inline-block; }
        @media screen and (max-width: 868px) {
          .classes__nanba__text a {
            margin-right: 30px;
            margin-top: 0px; } }
        .classes__nanba__text a:hover img {
          -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg); }
        .classes__nanba__text a img {
          width: 100px;
          display: inline-block;
          -webkit-transition: .8s;
          -o-transition: .8s;
          transition: .8s; }
          @media screen and (max-width: 868px) {
            .classes__nanba__text a img {
              width: 95px; } }
          @media screen and (max-width: 500px) {
            .classes__nanba__text a img {
              width: 80px; } }

@keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }
      .classes__nanba__text__deco {
        width: 450px;
        height: 58px;
        margin-left: -50px; }
        @media screen and (max-width: 868px) {
          .classes__nanba__text__deco {
            width: 400px;
            height: 48px;
            margin-left: -15px;
            margin-top: 20px; } }
        @media screen and (max-width: 500px) {
          .classes__nanba__text__deco {
            width: 300px;
            height: 38px;
            margin-top: 0px; } }
        @media screen and (max-width: 345px) {
          .classes__nanba__text__deco {
            width: 230px;
            height: 34px; } }
    .classes__nanba__img {
      width: 500px;
      border-radius: 10px; }
      @media screen and (max-width: 868px) {
        .classes__nanba__img {
          width: 400px;
          margin-top: 60px; } }
      @media screen and (max-width: 500px) {
        .classes__nanba__img {
          width: 300px;
          margin-top: 40px; } }
      @media screen and (max-width: 345px) {
        .classes__nanba__img {
          width: 250px; } }
    .classes__nanba__text {
      margin-left: 75px; }
      @media screen and (max-width: 868px) {
        .classes__nanba__text {
          margin-left: 0px; } }
  .classes__yodo {
    margin-left: 70px;
    clear: both;
    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;
    margin-top: 75px; }
    @media screen and (max-width: 868px) {
      .classes__yodo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-left: 0px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        width: 70%; } }
    @media screen and (max-width: 500px) {
      .classes__yodo {
        width: 90%; } }
    .classes__yodo h3 {
      padding-bottom: 15px; }
    .classes__yodo__text {
      width: 500px;
      float: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media screen and (max-width: 868px) {
        .classes__yodo__text {
          width: 80%;
          margin-top: 40px;
          padding-bottom: 40px; } }
      .classes__yodo__text__line {
        height: 1px;
        width: 350px;
        background-color: #444444; }
        @media screen and (max-width: 868px) {
          .classes__yodo__text__line {
            width: 90%; } }
      .classes__yodo__text table {
        padding-top: 15px;
        border-style: none; }
        @media screen and (max-width: 868px) {
          .classes__yodo__text table {
            font-size: 18px -3px; } }
        @media screen and (max-width: 500px) {
          .classes__yodo__text table {
            font-size: 13px; } }
        .classes__yodo__text table td {
          vertical-align: top;
          padding-right: 10px;
          padding-bottom: 10px; }
      .classes__yodo__text a {
        margin-top: 10px;
        margin-left: auto;
        margin-right: 100px;
        display: inline-block; }
        @media screen and (max-width: 868px) {
          .classes__yodo__text a {
            margin-right: 30px;
            margin-top: 0px; } }
        .classes__yodo__text a:hover img {
          -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg); }
        .classes__yodo__text a img {
          width: 100px;
          display: inline-block;
          -webkit-transition: .8s;
          -o-transition: .8s;
          transition: .8s; }
          @media screen and (max-width: 868px) {
            .classes__yodo__text a img {
              width: 95px; } }
          @media screen and (max-width: 500px) {
            .classes__yodo__text a img {
              width: 80px; } }

@keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }
      .classes__yodo__text__deco {
        width: 450px;
        height: 58px;
        margin-left: -50px; }
        @media screen and (max-width: 868px) {
          .classes__yodo__text__deco {
            width: 400px;
            height: 48px;
            margin-left: -15px;
            margin-top: 20px; } }
        @media screen and (max-width: 500px) {
          .classes__yodo__text__deco {
            width: 300px;
            height: 38px;
            margin-top: 0px; } }
        @media screen and (max-width: 345px) {
          .classes__yodo__text__deco {
            width: 230px;
            height: 34px; } }
    .classes__yodo__img {
      width: 500px;
      border-radius: 10px; }
      @media screen and (max-width: 868px) {
        .classes__yodo__img {
          width: 400px;
          margin-top: 60px; } }
      @media screen and (max-width: 500px) {
        .classes__yodo__img {
          width: 300px;
          margin-top: 40px; } }
      @media screen and (max-width: 345px) {
        .classes__yodo__img {
          width: 250px; } }
  .classes__esaka {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-left: 70px;
    clear: both;
    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;
    margin-top: 75px; }
    @media screen and (max-width: 868px) {
      .classes__esaka {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-left: 0px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        width: 70%; } }
    @media screen and (max-width: 500px) {
      .classes__esaka {
        width: 90%; } }
    .classes__esaka h3 {
      padding-bottom: 15px; }
    .classes__esaka__text {
      width: 500px;
      float: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media screen and (max-width: 868px) {
        .classes__esaka__text {
          width: 80%;
          margin-top: 40px;
          padding-bottom: 40px; } }
      .classes__esaka__text__line {
        height: 1px;
        width: 350px;
        background-color: #444444; }
        @media screen and (max-width: 868px) {
          .classes__esaka__text__line {
            width: 90%; } }
      .classes__esaka__text table {
        padding-top: 15px;
        border-style: none; }
        @media screen and (max-width: 868px) {
          .classes__esaka__text table {
            font-size: 18px -3px; } }
        @media screen and (max-width: 500px) {
          .classes__esaka__text table {
            font-size: 13px; } }
        .classes__esaka__text table td {
          vertical-align: top;
          padding-right: 10px;
          padding-bottom: 10px; }
      .classes__esaka__text a {
        margin-top: 10px;
        margin-left: auto;
        margin-right: 100px;
        display: inline-block; }
        @media screen and (max-width: 868px) {
          .classes__esaka__text a {
            margin-right: 30px;
            margin-top: 0px; } }
        .classes__esaka__text a:hover img {
          -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg); }
        .classes__esaka__text a img {
          width: 100px;
          display: inline-block;
          -webkit-transition: .8s;
          -o-transition: .8s;
          transition: .8s; }
          @media screen and (max-width: 868px) {
            .classes__esaka__text a img {
              width: 95px; } }
          @media screen and (max-width: 500px) {
            .classes__esaka__text a img {
              width: 80px; } }

@keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }
      .classes__esaka__text__deco {
        width: 450px;
        height: 58px;
        margin-left: -50px; }
        @media screen and (max-width: 868px) {
          .classes__esaka__text__deco {
            width: 400px;
            height: 48px;
            margin-left: -15px;
            margin-top: 20px; } }
        @media screen and (max-width: 500px) {
          .classes__esaka__text__deco {
            width: 300px;
            height: 38px;
            margin-top: 0px; } }
        @media screen and (max-width: 345px) {
          .classes__esaka__text__deco {
            width: 230px;
            height: 34px; } }
    .classes__esaka__img {
      width: 500px;
      border-radius: 10px; }
      @media screen and (max-width: 868px) {
        .classes__esaka__img {
          width: 400px;
          margin-top: 60px; } }
      @media screen and (max-width: 500px) {
        .classes__esaka__img {
          width: 300px;
          margin-top: 40px; } }
      @media screen and (max-width: 345px) {
        .classes__esaka__img {
          width: 250px; } }
    .classes__esaka__text {
      margin-left: 75px; }
      @media screen and (max-width: 868px) {
        .classes__esaka__text {
          margin-left: 0px; } }
  .classes__kyobashi {
    margin-left: 70px;
    clear: both;
    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;
    margin-top: 75px; }
    @media screen and (max-width: 868px) {
      .classes__kyobashi {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-left: 0px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        width: 70%; } }
    @media screen and (max-width: 500px) {
      .classes__kyobashi {
        width: 90%; } }
    .classes__kyobashi h3 {
      padding-bottom: 15px; }
    .classes__kyobashi__text {
      width: 500px;
      float: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media screen and (max-width: 868px) {
        .classes__kyobashi__text {
          width: 80%;
          margin-top: 40px;
          padding-bottom: 40px; } }
      .classes__kyobashi__text__line {
        height: 1px;
        width: 350px;
        background-color: #444444; }
        @media screen and (max-width: 868px) {
          .classes__kyobashi__text__line {
            width: 90%; } }
      .classes__kyobashi__text table {
        padding-top: 15px;
        border-style: none; }
        @media screen and (max-width: 868px) {
          .classes__kyobashi__text table {
            font-size: 18px -3px; } }
        @media screen and (max-width: 500px) {
          .classes__kyobashi__text table {
            font-size: 13px; } }
        .classes__kyobashi__text table td {
          vertical-align: top;
          padding-right: 10px;
          padding-bottom: 10px; }
      .classes__kyobashi__text a {
        margin-top: 10px;
        margin-left: auto;
        margin-right: 100px;
        display: inline-block; }
        @media screen and (max-width: 868px) {
          .classes__kyobashi__text a {
            margin-right: 30px;
            margin-top: 0px; } }
        .classes__kyobashi__text a:hover img {
          -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg); }
        .classes__kyobashi__text a img {
          width: 100px;
          display: inline-block;
          -webkit-transition: .8s;
          -o-transition: .8s;
          transition: .8s; }
          @media screen and (max-width: 868px) {
            .classes__kyobashi__text a img {
              width: 95px; } }
          @media screen and (max-width: 500px) {
            .classes__kyobashi__text a img {
              width: 80px; } }

@keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }
      .classes__kyobashi__text__deco {
        width: 450px;
        height: 58px;
        margin-left: -50px; }
        @media screen and (max-width: 868px) {
          .classes__kyobashi__text__deco {
            width: 400px;
            height: 48px;
            margin-left: -15px;
            margin-top: 20px; } }
        @media screen and (max-width: 500px) {
          .classes__kyobashi__text__deco {
            width: 300px;
            height: 38px;
            margin-top: 0px; } }
        @media screen and (max-width: 345px) {
          .classes__kyobashi__text__deco {
            width: 230px;
            height: 34px; } }
    .classes__kyobashi__img {
      width: 500px;
      border-radius: 10px; }
      @media screen and (max-width: 868px) {
        .classes__kyobashi__img {
          width: 400px;
          margin-top: 60px; } }
      @media screen and (max-width: 500px) {
        .classes__kyobashi__img {
          width: 300px;
          margin-top: 40px; } }
      @media screen and (max-width: 345px) {
        .classes__kyobashi__img {
          width: 250px; } }
    .classes__kyobashi__altmore {
      height: 60px;
      width: 50px; }
      @media screen and (max-width: 868px) {
        .classes__kyobashi__altmore {
          height: 10px; } }
  .classes__tetuka {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-left: 70px;
    clear: both;
    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;
    margin-top: 75px;
    margin-bottom: 100px; }
    @media screen and (max-width: 868px) {
      .classes__tetuka {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-left: 0px;
        border-radius: 30px;
        -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
        width: 70%; } }
    @media screen and (max-width: 500px) {
      .classes__tetuka {
        width: 90%; } }
    .classes__tetuka h3 {
      padding-bottom: 15px; }
    .classes__tetuka__text {
      width: 500px;
      float: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      @media screen and (max-width: 868px) {
        .classes__tetuka__text {
          width: 80%;
          margin-top: 40px;
          padding-bottom: 40px; } }
      .classes__tetuka__text__line {
        height: 1px;
        width: 350px;
        background-color: #444444; }
        @media screen and (max-width: 868px) {
          .classes__tetuka__text__line {
            width: 90%; } }
      .classes__tetuka__text table {
        padding-top: 15px;
        border-style: none; }
        @media screen and (max-width: 868px) {
          .classes__tetuka__text table {
            font-size: 18px -3px; } }
        @media screen and (max-width: 500px) {
          .classes__tetuka__text table {
            font-size: 13px; } }
        .classes__tetuka__text table td {
          vertical-align: top;
          padding-right: 10px;
          padding-bottom: 10px; }
      .classes__tetuka__text a {
        margin-top: 10px;
        margin-left: auto;
        margin-right: 100px;
        display: inline-block; }
        @media screen and (max-width: 868px) {
          .classes__tetuka__text a {
            margin-right: 30px;
            margin-top: 0px; } }
        .classes__tetuka__text a:hover img {
          -webkit-transform: rotateX(360deg);
          transform: rotateX(360deg); }
        .classes__tetuka__text a img {
          width: 100px;
          display: inline-block;
          -webkit-transition: .8s;
          -o-transition: .8s;
          transition: .8s; }
          @media screen and (max-width: 868px) {
            .classes__tetuka__text a img {
              width: 95px; } }
          @media screen and (max-width: 500px) {
            .classes__tetuka__text a img {
              width: 80px; } }

@keyframes zoom {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }
      .classes__tetuka__text__deco {
        width: 450px;
        height: 58px;
        margin-left: -50px; }
        @media screen and (max-width: 868px) {
          .classes__tetuka__text__deco {
            width: 400px;
            height: 48px;
            margin-left: -15px;
            margin-top: 20px; } }
        @media screen and (max-width: 500px) {
          .classes__tetuka__text__deco {
            width: 300px;
            height: 38px;
            margin-top: 0px; } }
        @media screen and (max-width: 345px) {
          .classes__tetuka__text__deco {
            width: 230px;
            height: 34px; } }
    .classes__tetuka__img {
      width: 500px;
      border-radius: 10px; }
      @media screen and (max-width: 868px) {
        .classes__tetuka__img {
          width: 400px;
          margin-top: 60px; } }
      @media screen and (max-width: 500px) {
        .classes__tetuka__img {
          width: 300px;
          margin-top: 40px; } }
      @media screen and (max-width: 345px) {
        .classes__tetuka__img {
          width: 250px; } }
    .classes__tetuka__text {
      margin-left: 75px; }
      @media screen and (max-width: 868px) {
        .classes__tetuka__text {
          margin-left: 0px; } }
    .classes__tetuka__altmore {
      height: 60px;
      width: 50px; }
      @media screen and (max-width: 868px) {
        .classes__tetuka__altmore {
          height: 10px; } }

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../img/texture/washi3.jpg);
  background-size: cover;
  height: 800px;
  color: white; }
  @media screen and (max-width: 868px) {
    .info {
      height: 700px; } }
  @media screen and (max-width: 868px) {
    .info {
      height: 600px; } }
  .info img {
    margin: 100px auto;
    width: 430px;
    border-radius: 10px;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.8); }
    @media screen and (max-width: 868px) {
      .info img {
        width: 330px; } }
    @media screen and (max-width: 500px) {
      .info img {
        width: 280px; } }

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 900px;
  background-color: #F8F8F8; }
  @media screen and (max-width: 868px) {
    .social {
      height: auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }
  @media screen and (max-width: 868px) {
    .social {
      height: 1500px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }
  .social__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
    height: 180px; }
    @media screen and (max-width: 868px) {
      .social__title {
        height: 230px; } }
    .social__title h2 {
      margin-top: -350px;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      letter-spacing: 10px;
      margin-left: 0px; }
      @media screen and (max-width: 868px) {
        .social__title h2 {
          margin-top: 0px; } }
    .social__title p {
      margin-top: -450px;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      font-size: 16px;
      letter-spacing: 10px;
      float: left; }
      @media screen and (max-width: 868px) {
        .social__title p {
          margin-top: 0px;
          margin-right: 5px;
          margin-left: 0px; } }
  .social a {
    height: 100px;
    margin-left: 30px;
    margin-bottom: 20px; }
    @media screen and (max-width: 868px) {
      .social a {
        margin-left: 0px; } }
  .social__space1 {
    width: 80px;
    height: 500px; }
    @media screen and (max-width: 868px) {
      .social__space1 {
        height: 0px; } }
  .social__space2 {
    width: 120px;
    height: 500px; }
    @media screen and (max-width: 868px) {
      .social__space2 {
        height: 0px; } }
  .social__line2 {
    margin-top: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media screen and (max-width: 868px) {
      .social__line2 {
        margin-top: 50px; } }
    @media screen and (max-width: 868px) {
      .social__line2 {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
  .social__img {
    height: 100px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    clear: both; }
    .social__img:hover {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
    @media screen and (max-width: 868px) {
      .social__img {
        height: 90px; } }
  .social .twitter-timeline {
    margin-left: 30px; }
    @media screen and (max-width: 868px) {
      .social .twitter-timeline {
        margin-left: 0px;
        width: 266px; } }
  .social iframe {
    margin-top: 130px;
    margin-left: 50px; }
    @media screen and (max-width: 868px) {
      .social iframe {
        margin-top: 50px; } }
    @media screen and (max-width: 868px) {
      .social iframe {
        margin-left: 0px; } }

.top3::before {
  background-color: black; }

.top3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 630px;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  position: relative;
  background: url(../img/cal1.jpg);
  background-size: cover; }
  .top3::before {
    background-color: black;
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' '; }
  .top3 ul {
    width: auto;
    padding-top: 100px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin: 0px;
    padding-left: 0px;
    padding-right: 0px; }
    .top3 ul img {
      height: 400px; }
    .top3 ul:first-child {
      -webkit-animation: loop 90s -90s linear infinite;
      animation: loop 90s -90s linear infinite; }
    .top3 ul + ul {
      -webkit-animation: loop2 90s linear infinite;
      animation: loop2 90s linear infinite; }

.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: -webkit-radial-gradient(center center, 50px 50px, transparent, transparent 100px, rgba(0, 0, 0, 0.9) 150px);
  background: -o-radial-gradient(center center, 50px 50px, transparent, transparent 100px, rgba(0, 0, 0, 0.9) 150px);
  background: radial-gradient(50px 50px at center center, transparent, transparent 100px, rgba(0, 0, 0, 0.9) 150px);
  opacity: 0;
  -webkit-animation: fadein 2s 1s 1 both;
  animation: fadein 2s 1s 1 both; }

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

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

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes loop {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

.text-secondary {
  color: #eece1a; }
