#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  padding-top: 86px;
}
#hero .copys {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
#hero .copys .maincopy {
  width: 40vw;
  margin: 0 0 1rem;
}
#hero .copys p.en {
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #hero {
    height: 100dvh;
    height: auto;
    padding-top: 0;
  }
  #hero .copys .maincopy {
    width: 70vw;
  }
}

.all_btn a {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  width: 120px;
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.all_btn a:hover {
  background: #fff;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .all_btn a {
    font-size: 10px;
    width: auto;
    padding: 10px;
  }
}

.ticker-wrap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3000;
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: 100%;
  background: none;
  padding: 4px;
  color: #fff;
  background: #000;
  align-items: center;
}
.ticker-wrap.isend {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .ticker-wrap {
    position: static;
    width: 98%;
    margin: 30px auto;
  }
}
.ticker-head {
  width: calc(4em + 8px);
  line-height: 30px;
  padding: 0 4px;
  font-weight: 500;
  color: #fff;
  margin: 0 1em 0 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .ticker-head {
    font-size: 0.8rem;
  }
}
.ticker {
  flex: 1;
  width: 100% s;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  padding: 0 6px;
  overflow: hidden;
}
.ticker ul {
  position: relative;
  list-style: none;
  height: 100%;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .ticker {
    font-size: 0.8rem;
  }
}
.ticker-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 0;
  opacity: 0;
}
.ticker-item a {
  display: inline-block;
  width: auto;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 5s linear;
}

.ticker-date {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 1em 0 0;
}

.ticker-title {
  margin-left: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 768px) {
  .ticker-title {
    letter-spacing: 0;
  }
}
.ticker-new {
  color: red;
  margin-left: 10px;
  animation: blink 1s ease-in-out infinite alternate;
}

.fadeInDown {
  opacity: 0;
}
.fadeInDown.run {
  animation: fadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.fadeOutDown {
  opacity: 1;
}
.fadeOutDown.run {
  animation: fadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes blink {
  0%, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#top-banner {
  position: absolute;
  max-width: 300px;
  width: 30%;
  right: 15px;
  bottom: 15px;
}

@media only screen and (max-width: 1168px) {
  #top-banner {
    bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  #top-banner {
    position: static;
    width: 80%;
    margin: 30px auto 0;
  }
}

section.about {
  padding: 8vw 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
section.about .inner {
  padding: 0 8vw;
}
section.about .inner .topcont_flex {
  display: flex;
  justify-content: space-between;
}
section.about .inner .topcont_flex.mbs {
  margin: 0 0 8rem;
}
section.about .inner .topcont_flex.rv {
  flex-direction: row-reverse;
}
section.about .inner .topcont_flex .txt_block {
  width: 40%;
}
section.about .inner .topcont_flex .txt_block .name_flex {
  display: flex;
  align-items: last baseline;
  color: #112057;
  font-weight: 700;
}
section.about .inner .topcont_flex .txt_block .name_flex p.jp {
  font-size: 1.6rem;
  margin: 0 1rem 0 0;
}
section.about .inner .topcont_flex .txt_block .name_flex p.en {
  font-size: 1rem !important;
}
section.about .inner .topcont_flex .txt_block .title p.en {
  font-size: 5rem;
  font-weight: 500;
}
section.about .inner .topcont_flex .txt_block .title h2 {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
section.about .inner .topcont_flex .txt_block .title .detail_btn {
  margin: 3rem 0 0;
}
section.about .inner .topcont_flex .txt_block .title .detail_btn a {
  display: flex;
  align-items: center;
}
section.about .inner .topcont_flex .txt_block .title .detail_btn p.jp {
  font-weight: 700;
}
section.about .inner .topcont_flex .txt_block .title .detail_btn .icon {
  width: 48px;
  height: 48px;
}
section.about .inner .topcont_flex .image {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  section.about .inner .topcont_flex {
    display: block;
    margin: 0 0 3rem;
  }
  section.about .inner .topcont_flex .txt_block {
    width: 100%;
  }
  section.about .inner .topcont_flex .txt_block .name_flex {
    display: block;
  }
  section.about .inner .topcont_flex .txt_block .title p.en {
    font-size: 3rem;
  }
  section.about .inner .topcont_flex .txt_block .title h2 {
    font-size: 1rem;
  }
  section.about .inner .topcont_flex .txt_block .title .detail_btn {
    margin: 2rem 0 0;
  }
  section.about .inner .topcont_flex .image {
    width: 100%;
  }
}
.image01 {
  width: 50%;
  transform: translate(80%) translateY(-30%);
}

@media only screen and (max-width: 768px) {
  .image01 {
    display: none;
  }
}
.image02 {
  width: 30%;
  transform: translate(20%) translateY(-30%);
}

@media only screen and (max-width: 768px) {
  .image02 {
    display: none;
  }
}
.image03 {
  width: 30%;
  transform: translate(200%) translateY(-100%);
}

@media only screen and (max-width: 768px) {
  .image03 {
    display: none;
  }
}
