@charset "UTF-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');
body {
  background: url("../images/body_bg.webp") repeat #000;
  color: #222222;
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: 3px;
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}

@media screen and (max-width: 900px) {
  body {
    line-height: 1.5;
    font-size: 14px;
    position: relative;
  }
}

h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Cardo', serif;
  position: relative;
}

h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #bc9d51;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.txt_gld {
  color: #bc9d51;
}

.nodisp_pc {
  display: none;
}

.nodisp_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .nodisp_sp {
    display: inherit;
  }
}


/*========= レイアウトのためのCSS ===============*/

h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #eee;
  text-shadow: 0 0 15px #666;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width:768px) {
  h1 img{
  width: 50%;
  }
}
#header {
  width: 100%;
  height: 100vh;
  position: relative;
}

/*#header:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/top_main.jpg) no-repeat center;
  background-size: cover;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}


@media screen and (max-width:768px) {
  #header:before {
    background-image: url(../images/main_visual_sp.jpg);
  }
  #header, #header:before {
    height: 90vh;
  }
}
*/
.slick01{
  position: absolute !important;
  top: 0;
  left: 0;
   z-index: -1; 
  width: 100%;
  overflow: hidden;
}
.slick01 img{
  max-width: 100%;
  height: auto;
  transform-origin: center top;
  transform: scale(1.1);
  transition: 5s ease-out;
  }
.slick-active img {
  transform: scale(1.0);
  }
  .slick-slide img.mainV_sp{
      display: none;
      }
@media screen and (max-width:768px) {

  .slick-slide img.mainV_sp{
      display: inherit;
      }
    .slick-slide img.mainV_pc{
      display: none;
      }
}
/* #main_visual
----------------------------------------------------------- */

@keyframes fadeIn {
  /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
  0% {
    opacity: 0
  }
  /* 始め */
  100% {
    opacity: 1
  }
  /* 終わり */
}


/* nav*/

#main_visual nav {
  padding: 0px 10%;
  width: 100%;
  font-size: 13px;
  font-family: 'Cardo', serif;
  position: fixed;
  z-index: 999;
  margin: 30px 0;
}
#main_visual #nav_pc ul {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
}

#main_visual nav ul li a {
  position: relative;
  display: inline-block;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#main_visual nav ul li a:hover {
  color: #bc9d51;
}

#main_visual nav ul li a:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #bc9d51;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#main_visual nav ul li a:hover:after {
  width: 100%;
}

#nav_sp, .openbtn1 {
  display: none;
}
#sidebar {
    color: #fff;
    letter-spacing: 1px;
    font-size: 12px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    position: fixed;
    z-index: 999;
    padding-right: 10%;
}
#sidebar .gtranslate_wrapper{
    display: flex;
    justify-content: flex-end;
}

#sidebar a:first-child{
  display: flex;
  align-items: center;
  position: inherit;
}
#sidebar a:first-child:after {
    content: "/";
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    line-height: 0;
    position: inherit;
    height: inherit;
    width: inherit;
}
#sidebar a:hover{
  color: #fff;
  opacity: 0.6;
}
#sidebar li a:hover:after{
  width: inherit;
  opacity: 1;
}
#sidebar a:first-child:before {
  content: "";
  background: url(../images/ionic-globe.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  #sidebar .gtranslate_wrapper{
      display: flex;
      justify-content: flex-end;
  }
  #sidebar {
      padding-right: 60px;
      margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {}


/* h1*/

#main_visual h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}


/* #main
----------------------------------------------------------- */

#main {
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../images/body_bg.png) repeat;
}

#main img {
  width: 100%;
}

#main .main_inner {
  max-width: 1248px;
  padding: 0 18px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  #main .main_inner {
    max-width: 100%;
    padding: 0;
  }
}


/* #concept
----------------------------------------------------------- */

#concept {
  margin: 210px 0;
  zoom: 1;
  position: relative;
}

#concept:before, #concept:after {
  /* content: " "; */
  display: table;
}

#concept .concept_img {
  width: 88%;
  margin: 0 0 0 -14%;
  float: left;
}

#concept .concept_txt {
  background: #000;
  width: 360px;
  height: 360px;
  text-align: center;
  margin: 70px 0 0;
  position: relative;
  color: #ffffff;
  float: right;
  margin: -50px 0 0 -14%;
  border: #bc9d51 1px solid;
  transform: rotate(45deg);
  position: relative;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 100;
}

#concept .concept_txt p {
  transform: rotate(-45deg);
  line-height: 2.5;
  letter-spacing: 3px;
  text-align: center;
}

#concept .concept_txt p:before, #concept .concept_txt p:after {
  content: "";
  display: block;
  width: 60%;
  border-top: #bc9d51 1px solid;
  margin: 20px auto;
}

.concept_img_s {
  width: 360px;
  position: relative;
  top: -50px;
  float: left;
}
#concept .concept_txt p br {
    line-height: 0;
}
#concept .concept_txt p font,#course p font {
    letter-spacing: 1;
    width: 90%;
    margin: 0 auto;
}
#concept .concept_txt p font+br,
#course p font+br {
  display: none;
}

@media screen and (max-width: 900px) {
  #concept {
    margin: 100px 0 320px 0;
    padding-top: 240px;
  }
  #concept .concept_img {
    width: 100%;
    margin: 0 0 0 0;
  }
  #concept .concept_txt {
    width: 250px;
    height: 250px;
    float: none;
    margin: 0;
    font-size: 12px;
    top: 0px;
    right: 0;
    position: absolute;
  }
  #concept .concept_txt p {
    line-height: 1.5;
    letter-spacing: 1.5;
  }
  #concept .concept_txt p:before, #concept .concept_txt p:after {
    width: 40%;
  }
  .concept_img_s {
    width: 50vw;
    top: -20px;
    left: 5%;
    float: none;
  }
}

@media screen and (max-width: 500px) {
  #concept .concept_txt {
    width: 240px;
    height: 240px;
    top: -20px;
  }
}


/* #course
----------------------------------------------------------- */

#course {
  /* margin: 210px 0; */
  zoom: 1;
  position: relative;
  clear: both;
  padding: 210px 0;
}

#course:before, #course:after {
  /* content: " "; */
  display: table;
}

#course .course_img {
  width: 88%;
  margin: 0 -14% 0 0;
  float: right;
}

#course .course_txt {
  background: #000;
  width: 340px;
  height: 340px;
  text-align: center;
  margin: 70px 0 0;
  position: relative;
  color: #ffffff;
  float: left;
  margin: -120px -14% 0 0;
  border: #bc9d51 1px solid;
  transform: rotate(45deg);
  position: relative;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 100;
}

#course .course_txt_inner {
  transform: rotate(-45deg);
  line-height: 1.5;
  letter-spacing: 3px;
  text-align: center;
}

.course_txt_in:before {
  content: "";
  display: block;
  width: 60%;
  border-top: #bc9d51 1px solid;
  margin: 15px auto;
}

.course_img_s {
  width: 360px;
  position: relative;
  top: -50px;
  float: right;
}

@media screen and (max-width: 900px) {
  #course {
    margin: -240px 0 0 0;
    padding: 240px 0 0 0;
  }
  #course .course_img {
    width: 100%;
    margin: 0;
  }
  #course .course_txt {
    width: 240px;
    height: 240px;
    float: none;
    margin: 0;
    font-size: 12px;
    top: 0;
    left: 0;
    position: absolute;
  }
  #course .course_txt p {
    line-height: 1.5;
    letter-spacing: 1.5;
  }
  .course_txt_in:before {
    width: 40%;
  }
  .course_img_s {
    width: 50vw;
    top: -15px;
    right: 5%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 500px) {
  #course .course_txt {
        top: -20px;
  }
}


/* #floor
----------------------------------------------------------- */

#floor {
  clear: both;
}

.floor_txt {
  text-align: center;
  line-height: 2.25;
  color: #ffffff;
  /* letter-spacing: 3px; */
  background: url(../images/logo_bg.png) no-repeat 50% center;
  background-size: contain;
  padding: 60px 0;
  margin-bottom: 50px;
}

.floor_pic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.floor_pic_l {
  background: url(../images/top_img05.jpg) no-repeat;
  width: 50%;
  min-height: 450px;
  background-size: cover;
  position: relative;
}

.floor_pic_r {
  background: url(../images/top_img06.jpg) no-repeat;
  width: 50%;
  min-height: 450px;
  background-size: cover;
  position: relative;
}

.floor_pic_l:before, .floor_pic_r:before {
  content: "";
  display: block;
  width: calc( 100% - 20px);
  height: 100%;
  border: #bc9d51 1px solid;
  min-height: 450px;
  margin: 10px;
}

.floor_pic_l p, .floor_pic_r p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 20px;
  line-height: 2.5;
  text-align: center;
}

@media screen and (max-width: 900px) {
.floor_txt {
width: 90%;
margin: 0 auto;
}
  .floor_pic_l {
    background: url(../images/top_img05.jpg) no-repeat;
    width: 50%;
    min-height: 250px;
    background-size: cover;
    position: relative;
  }
  .floor_pic_r {
    background: url(../images/top_img06.jpg) no-repeat;
    width: 50%;
    min-height: 250px;
    background-size: cover;
    position: relative;
  }
  .floor_pic_l:before, .floor_pic_r:before {
    min-height: 450px;
  }
}

@media screen and (max-width: 900px) {
  .floor_pic_l, .floor_pic_r {
    min-height: 250px;
  }
  .floor_pic_l:before, .floor_pic_r:before {
    height: calc( 100% - 20px);
    min-height: inherit;
  }
}

@media screen and (max-width: 500px) {
  .floor_txt {
    line-height: 1.75;
    margin-bottom: 50px;
    margin-bottom: 2em;
  }
  .floor_pic {
    flex-direction: column;
    width: 100%;
  }
  .floor_pic_l {
    width: 100%;
    height: 200px;
    min-height: inherit;
  }
  .floor_pic_r {
    width: 100%;
    height: 200px;
    min-height: inherit;
  }
  .floor_pic_l:before, .floor_pic_r:before {
    height: calc( 100% - 20px);
    min-height: inherit;
  }
  .floor_pic_l p, .floor_pic_r p {
    font-size: 16px;
    line-height: 2;
  }
}


/* #news
----------------------------------------------------------- */

#news {
  max-width: 1248px;
  margin: 120px auto;
  color: #ffffff;
}

#news dl {
  display: flex;
  margin: 0 10% 20px 10%;
  border-bottom: 1px solid #aaaaaa;
  padding: 0 10px 5px;
}

#news dl dt {
  width: 20%;
  font-size: 13px;
}

#news dl dd {
  width: 80%;
}

#news dl a {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

#news dl a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  #news dl {
    /* margin: 0 5%; */
  }
  #news dl dt {
    width: 30%;
  }
}

@media screen and (max-width: 500px) {
  #news {
    max-width: 100%;
  }
  #news dl {
    flex-direction: column;
    /* margin: 0 10%; */
  }
  #news dl dt {
    width: 100%;
  }
  #news dl dd {
    width: 100%;
  }
}


/* #access
----------------------------------------------------------- */

#access {
  width: 100%;
}

#access .access_inner {
  display: flex;
  justify-content: space-between;
}

#access iframe, #access .access_txt {
  width: 50%
}

#access .access_txt {
  background: #e7dcc0;
  padding: 30px 6%;
}

h2.access_tit {
  text-align: left;
  color: #222222;
}

h2.access_tit:after {
  left: 0;
  transform: inherit;
  -webkit-transform: inherit;
  -ms-transform: inherit;
}

#access .access_inner dl {
  display: flex;
  margin-bottom: 20px;
  line-height: 1.5;
}

#access .access_inner dt {
  width: 35%;
  font-family: 'Cardo', serif;
}

#access .yoyaku_btn a {
  display: block;
  width: 100%;
  height: 60px;
  margin: 40px 0 0 0;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

#access .yoyaku_btn a:hover {
  color: #bc9d51;
  cursor: pointer;
}

#access .yoyaku_btn a:after {
  content: "";
  display: block;
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  width: 60px;
  height: 20px;
  margin-left: 30px;
  position: absolute;
  right: 35px;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

#access .yoyaku_btn a:hover:after {
  position: absolute;
  right: 15px;
}

@media screen and (max-width: 900px) {
  #access .access_txt {
    padding: 20px 6%;
  }
  #access .yoyaku_btn a {
    justify-content: space-between;
    padding-left: 20%;
  }
  #access .access_inner dl {
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
  #access .access_txt {
    padding: 30px 6%;
  }
  #access .access_inner {
    flex-direction: column-reverse;
  }
  #access iframe, #access .access_txt {
    width: 100%
  }
  #access .yoyaku_btn a:after {
    width: 40px;
    height: 15px;
    background-size: contain;
    right: 15px;
  }
  #access .yoyaku_btn a:hover:after {
    right: 5px;
  }
}


/* #recruit
----------------------------------------------------------- */

#recruit {
  padding: 120px;
  background: #000000;
  color: #ffffff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

#recruit p {
  padding: 0 6%;
}

.gld_btn a {
  width: 500px;
  background: #000000;
  border: #bc9d51 1px solid;
  padding: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  position: relative;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.gld_btn a:hover {
  color: #bc9d51;
}

.gld_btn a:after {
  content: "";
  display: block;
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  width: 60px;
  height: 20px;
  margin-left: 30px;
  position: absolute;
  right: 25px;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.gld_btn a:hover:after {
  position: absolute;
  right: 15px;
}

@media screen and (max-width: 900px) {
  #recruit {
    padding: 30px 0;
  }
  .gld_btn a {
    width: 290px;
    justify-content: space-between;
  }
  .gld_btn a:hover:after {
    right: 5px;
  }
}


/* footer
----------------------------------------------------------- */

footer {
  text-align: center;
  padding: 20px;
  color: #ffffff;
  border-top: 1px solid #aaaaaa;
  font-size: 13px;
  background: url(../images/body_bg.png) repeat;
  z-index: 10;
  position: relative;
}

#page_top {
  width: 100px;
  height: 82px;
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  position: fixed;
  right: 0;
  bottom: 120px;
  opacity: 0.8;
}

#page_top a {
  position: relative;
  display: block;
  text-decoration: none;
}

#page_top a::before {
  content: "PAGE TOP";
  font-size: 13px;
  color: #fff;
  position: absolute;
  /* width: 80px; */
  height: 84px;
  top: 0;
  bottom: 0;
  right: 24px;
  left: 0;
  margin: auto;
  text-align: center;
  letter-spacing: normal;
  transform: rotate(180deg);
}

@media screen and (max-width: 900px) {
  #page_top {
    width: 80px;
    height: 15px;
    position: absolute;
    right: -10px;
    bottom: 100px;
  }
  #page_top a::before {
    font-size: 10px;
    position: absolute;
    height: 80px;
    top: -15px;
    bottom: 0;
    right: 14px;
    left: 0;
  }
}
#drink{
display: flex;
    justify-content: space-between;
    align-items: center;
    clear: both;
    width: 100%;
    margin: 0 -18px 7rem -18px;
    }
#drink .drink_img{
  width: 50%;
}
#drink .drink_txt{
 line-height: 1.75;
    color: #ffffff;
    width: 45%;
}
@media screen and (max-width: 900px) {
#drink{
flex-direction: column;
    margin: 0 0 4rem;
    }
#drink .drink_img{
  width: 100%;
  margin-bottom: 2rem;
}
#drink .drink_txt{
    width: 90%;
    font-size: 12px;
}
}
/*========= ナビゲーションのためのCSS ===============*/

@media screen and (max-width: 900px) {
  #nav_pc {
    display: none;
  }
  #nav_sp {
    display: inherit;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #282828;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #nav_sp.panelactive {
    right: 0;
    display: flex;
    /* align-items: center; */
    justify-content: center;
  }
  /*ナビゲーションの縦スクロール*/
  #nav_sp.panelactive #nav_sp-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #nav_sp ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: auto;
    width: 100%;
  }
  /*リストのレイアウト設定*/
  #nav_sp li {
    list-style: none;
    text-align: center;
  }
  #nav_sp li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}


/*========= ボタンのためのCSS ===============*/

@media screen and (max-width: 1080px) {
  .openbtn1 {
    display: inherit;
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    background-color: #ffffff;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}


/* 下から上にフェードイン */

.visible.fadeInBottom,.invisible.fadeInBottom {
    transform: translateY(60px);
    transition: all 0.7s 0.5s ease;
}
.invisible.fadeInBottom {
    opacity: 0.0;
}
.visible.fadeInBottom {
    transform: translateY(0);
    opacity: 1.0;
}

/* その場で */

.opacityFadeIn.visible {
  animation-name: opacityFadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*========= アニメーション ===============*/
/* 左から右にふわっとフェードイン */

.fadeInLeft.visible {
  animation: fadeInLeft 0.7s ease 0s 1 normal;
}


/* fadeInLeft */

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


/* 右から左にふわっとフェードイン */

.fadeInRight.visible {
  animation: fadeInRight 0.7s ease 0s 1 normal;
}


/* fadeInRight */

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


/*========= スクロールダウンのためのCSS ===============*/


/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/


/*スクロールダウン全体の場所*/

.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
  z-index: 2;
}


/*下からの距離が変化して全体が下→上→下に動く*/

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}


/*Scrollテキストの描写*/

.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}


/* 矢印の描写 */

.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #eee;
}
