.top-contact {
  background: #eae5ca;
  padding: 80px 0;
}

.sp-scroll {
  overflow-y: hidden;
  overflow-x: auto;
  margin: 0 -10px;
  padding: 12px 10px;
}

.top-fb {
  width: 340px;
}

.main-visual {
  overflow: hidden;
  position: relative;
  min-height: calc(100vh - 90px);
  background: #ccc;
  /*
  .slick-list, .slick-track {
    height: 100%;
  }*/
}

.main-visual .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-bottom: 100px;
  z-index: 100;
}

.main-visual__catch {
  line-height: 1.8;
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 3rem;
}

.main-visual__catch .text {
  display: inline-block;
  opacity: 0;
}

.is-catch-fadein .main-visual__catch .text {
  -webkit-animation: text-animation 1s forwards;
  animation: text-animation 1s forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  will-change: animation, transform, opacity;
}

.main-visual__catch .bg {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.main-visual__catch .bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: 1;
}

@supports (-ms-accelerator: true) {
  .main-visual__catch .bg::after {
    display: none;
  }
}

@supports (-ms-ime-align: auto) {
  .main-visual__catch .bg::after {
    display: none;
  }
}

.is-catch-fadein .main-visual__catch .bg::after {
  -webkit-animation: bg-animation 1.5s forwards;
  animation: bg-animation 1.5s forwards;
  will-change: animation, transform, width;
}

.main-visual__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 764px;
  margin: 0 auto;
}

.main-visual__point > li {
  opacity: 0;
  display: block;
  width: 100%;
  max-width: 210px;
  height: 42px;
  line-height: 38px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
}

.is-catch-fadein .main-visual__point > li {
  -webkit-animation: fadein 0.7s forwards;
  animation: fadein 0.7s forwards;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.main-visual__point > li:nth-child(2) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.main-visual__point > li:nth-child(3) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.main-visual__filter {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-visual__filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 151, 224, 0.4);
  z-index: 1;
}

.main-visual__filter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url(../_images/main-visual_bg01.png) center bottom repeat-x;
  z-index: 2;
}

.main-visual__item {
  width: 100%;
  height: 100% !important;
}

.main-visual__item:first-child {
  background: url(../_images/top-main-visual_img01.jpg) center bottom/cover no-repeat;
}

.main-visual__item:nth-child(2) {
  background: url(../_images/top-main-visual_img02.jpg) center bottom/cover no-repeat;
}

.main-visual__item:nth-child(3) {
  background: url(../_images/top-main-visual_img03.jpg) center top/cover no-repeat;
}

@-webkit-keyframes text-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes text-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bg-animation {
  0% {
    opacity: 1;
    width: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  99% {
    opacity: 1;
    width: 100%;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }

  100% {
    opacity: 0;
    width: 100%;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}

@keyframes bg-animation {
  0% {
    opacity: 1;
    width: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  99% {
    opacity: 1;
    width: 100%;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }

  100% {
    opacity: 0;
    width: 100%;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.top-news__ttl {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: #13465d;
  margin-bottom: 36px;
}

.top-news__ttl--en {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #e58a16;
  margin-left: 20px;
}

.top-news__body {
  width: 100%;
  padding-bottom: 56px;
}

.top-tiktok {
  width: calc(100% - 340px);
  padding-right: 28px;
}

.tiktok-embed{
margin: 0 auto !important;
}

.sns{
background-color: #f7f7f7;
padding: 50px 0;
}

.sns .section__ttl--ja span::before,
.sns .section__ttl--ja span::after{
display: none;
}

.sns ul{
display: flex;
justify-content: space-between;
width: 260px;
margin: 0 auto;
}

.sns img{
width: 60px;
}

.top-about {
  overflow: hidden;
  position: relative;
  background: #b7d3de;
}

.top-about .inner{
max-width: 1280px;
}

.top-about .section__ttl {
  color: #fff;
}

.top-about .section__ttl--ja {
  color: #13465d;
}

.top-about .section__ttl--ja span::before,
.top-about .section__ttl--ja span::after {
  background: url(../_images/section-ttl_border_img02.png);
}

.top-about__image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: url(../_images/top-about_img02.webp) center center/contain no-repeat;
  background-color: #fff;
}

.top-about__image::after {
  content: '';
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../_images/top-about_img01.png) center bottom/contain no-repeat;
}

.top-about__body {
  width: 50%;
  padding-right: 4vw;
}

.top-about__read {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.top-about__txt {
  letter-spacing: 0.02em;
  line-height: 2;
  color: #13465d;
  margin-bottom: 28px;
  text-align: justify;
}

.top-about__txt span {
  color: #e58a16;
}

.top-works {
  background: #f5f4f1;
}

.top-works__read {
  font-size: 24px;
  font-size: 2.4rem;
  color: #13465d;
  text-align: center;
  margin-bottom: 60px;
}

.works-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.works-panel li {
  position: relative;
  width: 32%;
  color: #13465d;
  border: 2px solid transparent;
  border-bottom: 2px solid #eae5ca;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.works-panel__image {
  overflow: hidden;
  position: relative;
}

.works-panel__image::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 66.5%;
}

.works-panel__image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.works-panel__ttl {
  position: relative;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  color: #13465d;
  background: #fff;
  margin-bottom: 0;
}

.top-link {
  background: #f5f3e6;
  padding: 64px 0;
}

.top-link .l-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}

.top-link a {
  box-sizing: border-box;
  border: 2px solid #13465d;
  width: 49%;
}

.top-link a:nth-child(2){
  margin-left:2%;
}

.top-link .nurikae {
  border: none;
  width: auto;
  margin-top: 60px;
}

.top-link img{
max-width: 100%;
height: auto;
}

.news-list {
  margin-bottom: 40px;
}

.news-list__item {
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.news-list__item:last-child {
  margin-bottom: 0;
}

.news-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.news-list__head {
  width: 220px;
  margin-bottom: 0;
}

.news-list__head time {
  display: inline-block;
  width: 72px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00537a;
  margin-right: 28px;
}

.news-list__cat {
  display: inline-block;
  min-width: 78px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: #13465d;
  text-align: center;
  padding: 0 4px;
}

.news-list__ttl {
  width: calc(100% - 220px);
  margin-bottom: 0;
}

.news-list a {
  color: #13465d;
  font-weight: bold;
}

.vegas-overlay,
.vegas-slide,
.vegas-slide-inner,
.vegas-timer,
.vegas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
}

.vegas-overlay {
  opacity: .5;
  background: url(overlays/02.png) center center;
}

.vegas-timer {
  top: auto;
  bottom: 0;
  height: 2px;
}

.vegas-timer-progress {
  width: 0;
  height: 100%;
  background: #fff;
  -webkit-transition: width ease-out;
  transition: width ease-out;
}

.vegas-timer-running .vegas-timer-progress {
  width: 100%;
}

.vegas-slide,
.vegas-slide-inner {
  margin: 0;
  padding: 0;
  background: center center no-repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform,opacity;
}

body .vegas-container {
  overflow: hidden !important;
  position: relative;
}

.vegas-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

body.vegas-container {
  overflow: auto;
  position: static;
  z-index: -2;
}

body.vegas-container > .vegas-overlay,
body.vegas-container > .vegas-slide,
body.vegas-container > .vegas-timer {
  position: fixed;
  z-index: -1;
}

:root body.vegas-container > .vegas-overlay,
:root body.vegas-container > .vegas-slide,
_::full-page-media,
_:future {
  bottom: -76px;
}

.vegas-transition-blur,
.vegas-transition-blur2 {
  opacity: 0;
  -webkit-filter: blur(32px);
  filter: blur(32px);
}

.vegas-transition-blur-in,
.vegas-transition-blur2-in {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.vegas-transition-blur2-out {
  opacity: 0;
}

.vegas-transition-burn,
.vegas-transition-burn2 {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%);
}

.vegas-transition-burn-in,
.vegas-transition-burn2-in {
  opacity: 1;
  -webkit-filter: contrast(100%) saturate(100%);
  filter: contrast(100%) saturate(100%);
}

.vegas-transition-burn2-out {
  opacity: 0;
  -webkit-filter: contrast(1000%) saturate(1000%);
  filter: contrast(1000%) saturate(1000%);
}

.vegas-transition-fade,
.vegas-transition-fade2 {
  opacity: 0;
}

.vegas-transition-fade-in,
.vegas-transition-fade2-in {
  opacity: 1;
}

.vegas-transition-fade2-out {
  opacity: 0;
}

.vegas-transition-flash,
.vegas-transition-flash2 {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25);
}

.vegas-transition-flash-in,
.vegas-transition-flash2-in {
  opacity: 1;
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

.vegas-transition-flash2-out {
  opacity: 0;
  -webkit-filter: brightness(25);
  filter: brightness(25);
}

.vegas-transition-negative,
.vegas-transition-negative2 {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.vegas-transition-negative-in,
.vegas-transition-negative2-in {
  opacity: 1;
  -webkit-filter: invert(0);
  filter: invert(0);
}

.vegas-transition-negative2-out {
  opacity: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.vegas-transition-slideDown,
.vegas-transition-slideDown2 {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.vegas-transition-slideDown-in,
.vegas-transition-slideDown2-in {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.vegas-transition-slideDown2-out {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.vegas-transition-slideLeft,
.vegas-transition-slideLeft2 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.vegas-transition-slideLeft-in,
.vegas-transition-slideLeft2-in {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.vegas-transition-slideLeft2-out,
.vegas-transition-slideRight,
.vegas-transition-slideRight2 {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.vegas-transition-slideRight-in,
.vegas-transition-slideRight2-in {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.vegas-transition-slideRight2-out {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.vegas-transition-slideUp,
.vegas-transition-slideUp2 {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.vegas-transition-slideUp-in,
.vegas-transition-slideUp2-in {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.vegas-transition-slideUp2-out {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.vegas-transition-swirlLeft,
.vegas-transition-swirlLeft2 {
  -webkit-transform: scale(2) rotate(35deg);
  transform: scale(2) rotate(35deg);
  opacity: 0;
}

.vegas-transition-swirlLeft-in,
.vegas-transition-swirlLeft2-in {
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
  opacity: 1;
}

.vegas-transition-swirlLeft2-out,
.vegas-transition-swirlRight,
.vegas-transition-swirlRight2 {
  -webkit-transform: scale(2) rotate(-35deg);
  transform: scale(2) rotate(-35deg);
  opacity: 0;
}

.vegas-transition-swirlRight-in,
.vegas-transition-swirlRight2-in {
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
  opacity: 1;
}

.vegas-transition-swirlRight2-out {
  -webkit-transform: scale(2) rotate(35deg);
  transform: scale(2) rotate(35deg);
  opacity: 0;
}

.vegas-transition-zoomIn,
.vegas-transition-zoomIn2 {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.vegas-transition-zoomIn-in,
.vegas-transition-zoomIn2-in {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.vegas-transition-zoomIn2-out,
.vegas-transition-zoomOut,
.vegas-transition-zoomOut2 {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}

.vegas-transition-zoomOut-in,
.vegas-transition-zoomOut2-in {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.vegas-transition-zoomOut2-out {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.vegas-animation-kenburns {
  -webkit-animation: kenburns ease-out;
  animation: kenburns ease-out;
}

@-webkit-keyframes kenburns {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes kenburns {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.vegas-animation-kenburnsDownLeft {
  -webkit-animation: kenburnsDownLeft ease-out;
  animation: kenburnsDownLeft ease-out;
}

@-webkit-keyframes kenburnsDownLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, -10%);
    transform: scale(1.5) translate(10%, -10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsDownLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, -10%);
    transform: scale(1.5) translate(10%, -10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsDownRight {
  -webkit-animation: kenburnsDownRight ease-out;
  animation: kenburnsDownRight ease-out;
}

@-webkit-keyframes kenburnsDownRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, -10%);
    transform: scale(1.5) translate(-10%, -10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsDownRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, -10%);
    transform: scale(1.5) translate(-10%, -10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsDown {
  -webkit-animation: kenburnsDown ease-out;
  animation: kenburnsDown ease-out;
}

@-webkit-keyframes kenburnsDown {
  0% {
    -webkit-transform: scale(1.5) translate(0, -10%);
    transform: scale(1.5) translate(0, -10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsDown {
  0% {
    -webkit-transform: scale(1.5) translate(0, -10%);
    transform: scale(1.5) translate(0, -10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsLeft {
  -webkit-animation: kenburnsLeft ease-out;
  animation: kenburnsLeft ease-out;
}

@-webkit-keyframes kenburnsLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 0);
    transform: scale(1.5) translate(10%, 0);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 0);
    transform: scale(1.5) translate(10%, 0);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsRight {
  -webkit-animation: kenburnsRight ease-out;
  animation: kenburnsRight ease-out;
}

@-webkit-keyframes kenburnsRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 0);
    transform: scale(1.5) translate(-10%, 0);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 0);
    transform: scale(1.5) translate(-10%, 0);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsUpLeft {
  -webkit-animation: kenburnsUpLeft ease-out;
  animation: kenburnsUpLeft ease-out;
}

@-webkit-keyframes kenburnsUpLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 10%);
    transform: scale(1.5) translate(10%, 10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsUpLeft {
  0% {
    -webkit-transform: scale(1.5) translate(10%, 10%);
    transform: scale(1.5) translate(10%, 10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsUpRight {
  -webkit-animation: kenburnsUpRight ease-out;
  animation: kenburnsUpRight ease-out;
}

@-webkit-keyframes kenburnsUpRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 10%);
    transform: scale(1.5) translate(-10%, 10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsUpRight {
  0% {
    -webkit-transform: scale(1.5) translate(-10%, 10%);
    transform: scale(1.5) translate(-10%, 10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

.vegas-animation-kenburnsUp {
  -webkit-animation: kenburnsUp ease-out;
  animation: kenburnsUp ease-out;
}

@-webkit-keyframes kenburnsUp {
  0% {
    -webkit-transform: scale(1.5) translate(0, 10%);
    transform: scale(1.5) translate(0, 10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenburnsUp {
  0% {
    -webkit-transform: scale(1.5) translate(0, 10%);
    transform: scale(1.5) translate(0, 10%);
  }

  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}

@media only screen and (min-width: 768px) {
  .works-panel li:hover {
    border: 2px solid #13465d;
  }

  .top-link img {
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
  }

  .top-link img:hover {
    opacity: 0.8;
  }
}

@media only screen and (max-width: 768px) {
  html,
  body {
    height: 100%;
  }

  .l-wrapper {
    min-height: 100%;
  }

  .footer {
    margin-bottom: 45px;
  }

  .top-contact {
    padding: 40px 0;
  }

  .top-fb {
    width: 100%;
  }

  .main-visual {
    max-height: calc(100% - 105px);
  }

  .main-visual .inner {
    padding-bottom: 50px;
  }

  .main-visual__catch {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .main-visual__catch .bg {
    max-height: none;
  }

  .main-visual__point {
    display: block;
  }

  .main-visual__point > li {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    margin: auto;
    margin-bottom: 12px;
  }

  .main-visual__point > li:last-child {
    margin-bottom: 0;
  }

  .main-visual__filter::after {
    width: 180%;
    height: 80px;
    background-size: contain;
  }

  .top-news__ttl {
    margin-bottom: 20px;
  }

  .top-news__body {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .top-about {
    padding-bottom: 0;
  }

  .top-about__image {
    position: static;
    width: 100%;
    height: 70vw;
  }

  .top-about__body {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }

  .top-works__read {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .works-panel {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .works-panel li {
    width: 49%;
    margin-bottom: 20px;
  }

  .works-panel li:nth-child(1) {
    margin-right: 2%;
  }

  .works-panel li:last-child {
    margin-bottom: 0;
  }

  .works-panel__ttl {
    height: 38px;
    line-height: 38px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .top-link {
    padding: 40px 0;
  }

  .top-link a {
    width: auto;
    margin-bottom: 20px;
  }

  .top-link a:nth-child(2){
  margin-left: 0;
  }

  .top-link a:last-child {
    margin-bottom: 0;
  }

  .top-link img {
    width: 100%;
  }

  .top-link .nurikae {
    margin-top: 20px;
  }

  .news-list {
    margin-bottom: 30px;
  }

  .news-list__item {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .news-list dl {
    display: block;
  }

  .news-list__head {
    width: 100%;
    margin-bottom: 12px;
  }

  .news-list__head time {
    margin-right: 24px;
  }

  .news-list__ttl {
    width: 100%;
  }
  .top-tiktok {
    width: 100%;
    padding:0 0 28px 0;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .main-visual__catch {
    font-size: 3.519vw;
  }
}


@media only screen and (max-width: 500px) {

.vegas-slide-inner[style*="top-main-visual_img01"]{
background-position: 14% center !important;
}

.vegas-slide-inner[style*="top-main-visual_img02"]{
background-position: 18% center !important;
}

.vegas-slide-inner[style*="top-main-visual_img03"]{
background-position: 28% center !important;
}

.vegas-slide-inner[style*="top-main-visual_img04"]{
background-position: 45% center !important;
}

.vegas-slide-inner[style*="top-main-visual_img05"]{
background-position: 70% center !important;
}


}