<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

body{
  --c_dino_red: #D31E1E;
}

#mainvisual::after{
  transform: translate(0, 110%);
}
#mainvisual .bg{
  background-image: url("../img/dino/hero_bg.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
#mainvisual .bg::after{
  display: none;
}
@media screen and (max-width: 520px){
  body{
    font-feature-settings: 'palt';
  }
}

/*--------------------------------------------------------------------*/

.bg_wrapper{
  overflow: hidden;
}
.bg_wrapper::after{
  left: 0;
  bottom: 0;
  width: 945px;
  height: 782px;
  max-width: 100vw;
  max-height: 82.7513vw;
  background-image: url(../img/bg_blob_green.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  transform: translate(-10%, 38%);
}

/*--------------------------------------------------------------------*/

#mainvisual .bg::before{
  content: "";
  display: block;
  position: absolute;
  right: 15vw;
  top: 0;
  width: 47.23%;
  height: 100%;
  background-image: url("../img/dino/hero_title_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  mix-blend-mode: multiply;
}
#mainvisual .container{
  justify-content: flex-end;
  align-items: stretch;
}
#mainvisual .container .box{
  width: 47.23vw;
  margin-right: 15vw;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainvisual .title{
  width: 24.47vw;
  background-image: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 520px){
  #mainvisual .bg::before{
    width: 100%;
    background-position: right 7vw top 5vw;
    background-size: 55% auto;
    right: 0;
  }
  #mainvisual .container{
    justify-content: center;
    align-items: stretch;
  }
  #mainvisual .container .box{
    width: 60vw;
    margin: 5vw 0 0 35vw;
  }
  #mainvisual .title{
    width: 36vw;
  }
}

/*--------------------------------------------------------------------*/

section.black_panel{
  background-color: #101010;
  color: #fff;
  margin: 2em;
  padding: 4em;
  border-radius: 1.25em;
  box-sizing: border-box;
  background-image: url("../img/dino/black_panel_bg.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}
@media screen and (max-width: 520px){
  section.black_panel{
    margin: 3vw;
    padding: 3em 3vw;
    border-radius: 1em;
    box-sizing: border-box;
    background-image: url("../img/dino/black_panel_bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
  }
}

/*--------------------------------------------------------------------*/

section.intro{
  padding: 4em 0;
}
section.intro .title{
  padding: 0 4em;
}
section.intro .text{
  padding: 2em 4em;
}
section.intro .image{
  padding: 0 4em;
  margin-bottom: 2em;
}
section.intro .gallery{
  --giw: 300px;
  --ggap: 1em;
  
  max-width: 100%;
  overflow: hidden;
}
section.intro .gallery .scroll{
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  gap: var(--ggap);
}
section.intro .gallery .scroll img{
  width: var(--giw);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc((var(--giw) + var(--ggap)) * -8));
  }
}
@media screen and (max-width: 520px){
  section.intro{
    padding: 4em 0;
  }
  section.intro .title{
    padding: 0 8vw;
  }
  section.intro .text{
    padding: 2em 8vw;
    font-size: 1.5rem;
  }
  section.intro .image{
    padding: 0 3vw;
    margin-bottom: 8vw;
  }
  section.intro .gallery{
    --giw: 33vw;
    --ggap: 1vw;
  }
  section.intro .gallery .scroll{
    animation: scroll 20s linear infinite;
  }
}

/*--------------------------------------------------------------------*/

section.enjoy{
  
}
section.enjoy .title{
  margin-bottom: 2em;
}
section.enjoy .container .image{
  width: 484px;
  max-width: 100%;
}
section.enjoy .container .info{
  margin-left: 3em;
  flex: 1;
}
section.enjoy .container .info .name{
  margin-bottom: 1.5em;
}
section.enjoy .container .info .name .en{
  font-weight: 700;
}
section.enjoy .container .info .name::first-letter{
  color: var(--c_dino_red);
}
section.enjoy .container .info .description{
  margin-bottom: 2em;
}
section.enjoy .container .info .detail th,
section.enjoy .container .info .detail td{
  padding: .2em;
}
section.enjoy .container .info .detail .index{
  width: 5em;
  border: 1px solid #fff;
  box-sizing: border-box;
  text-align: center;
}
section.enjoy .container .info .detail .value{
  padding-left: 2em;
}
@media screen and (max-width: 520px){
  section.enjoy .title img{
    height: 1.5em;
  }
  section.enjoy .container{
    flex-direction: column;
  }
  section.enjoy .container .info{
    margin-left: 0;
    font-size: 1.5rem;
    margin-top: 2em;
    padding: 0 1em;
  }
  section.enjoy .container .info .detail .value{
    padding-left: 1em;
  }
}

/*--------------------------------------------------------------------*/

section.shop .heading .title{
  margin-bottom: 2em;
}
section.shop .heading .description{
  max-width: 30em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  font-feature-settings: 'palt';
}
section.shop .gallery{
  margin-bottom: 3em;
}
section.shop .gallery{
  gap: 1em;
}
section.shop .gallery .item{
  flex: 1;
}
section.shop .gallery .item .name{
  margin-top: 1em;
  line-height: 1.25;
}
section.shop .link .button{
  display: inline-block;
}
section.shop .link .button + .button{
  margin-right: 1em;
}
section.shop .link .button a{
  min-width: 15em;
  font-size: 1.5rem;
  padding: .5em 1.5em;
}
@media screen and (max-width: 520px){
  section.shop .heading .title{
    margin-bottom: 2em;
  }
  section.shop .heading .description{
    padding: 0 .75em;
    font-size: 1.5rem;
    text-align: left;
  }
  section.shop .gallery{
    margin-bottom: 3em;
  }
  section.shop .gallery{
    gap: .5em;
    flex-wrap: wrap;
  }
  section.shop .gallery .item{
    width: 48%;
    flex: auto;
    margin-bottom: 2em;
  }
  section.shop .gallery .item .name{
    margin-top: 1em;
    line-height: 1.25;
  }
  section.shop .link .button{
    display: inline-block;
  }
  section.shop .link .button + .button{
    margin-top: 1em;
    margin-right: 0;
  }
  section.shop .link .button a{
    min-width: 20em;
    font-size: 1.3rem;
    padding: .5em 1.5em;
  }
}

/*--------------------------------------------------------------------*/

section.sns .title{
  margin-bottom: 3em;
}
section.sns .links{
  justify-content: space-evenly;
  max-width: 800px;
  margin: 0 auto;
}
section.sns .links .item{
  width: 32%;
  margin-right: 1.33%;
  margin-bottom: 1.33%;
}
section.sns .links .item a{
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 1em;
  padding: 0 1.5em 0 .5em;
  color: #000;
  line-height: 1.25;
  box-sizing: border-box;
}
section.sns .links .item a .label{
  padding: 1.5em 2em 1.5em 4em;
  background-image: url("../img/dino/sns_icon_fb.svg"), url("../img/dino/icon_popup.svg");
	background-repeat: no-repeat;
	background-position: left center, right center;
	background-size: 3em auto, .75em auto;
  white-space: nowrap;
}

/*--------------------------------------------------------------------*/

section.sns .links .item.fb a .label{
  background-image: url("../img/dino/sns_icon_fb.svg"), url("../img/dino/icon_popup.svg");
}
section.sns .links .item.x a .label{
  background-image: url("../img/dino/sns_icon_x.svg"), url("../img/dino/icon_popup.svg");
}
section.sns .links .item.insta a .label{
  background-image: url("../img/dino/sns_icon_insta.svg"), url("../img/dino/icon_popup.svg");
}
section.sns .links .item.line a .label{
  background-image: url("../img/dino/sns_icon_line.svg"), url("../img/dino/icon_popup.svg");
}
section.sns .links .item.yt a .label{
  background-image: url("../img/dino/sns_icon_yt.svg"), url("../img/dino/icon_popup.svg");
}
section.sns .links .item.tiktok a .label{
  background-image: url("../img/dino/sns_icon_tiktok.svg"), url("../img/dino/icon_popup.svg");
}

@media screen and (max-width: 520px){
  section.sns{
    
  }
  section.sns .heading img{
    max-width: 60vw;
  }
  section.sns .links{
    padding: 0 1em;
  }
  section.sns .links .item{
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.33%;
  }
}












</pre></body></html>