@charset "utf-8";

/**********************************************************************/
/*  共通部分
/**********************************************************************/
#main{
  position: relative;
  z-index: 2;
}
img{
  height: auto;
}
footer{
  background-color: var(--c_body_bg);
}

/**********************************************************************/
/*  ヒーロー
/**********************************************************************/

.video{

}
.video video{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  min-width: 1200px;
}
@media screen and (max-width: 520px){
  .video video{
    min-width: 0;
    height: clamp(320px, 90vh, 480px);
  }
}

/*--------------------------------------------------------------------*/

section.hero{
  margin-top: 80vh;
  position: relative;
}
section.hero::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/dogrun/common_bg_wave_w.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 20%;
}
section.hero .wrapper{
  width: 100%;
  position: relative;
  z-index: 2;
}
section.hero .wrapper .title{
  position: relative;
  margin-bottom: 5em;
}
section.hero .wrapper .description{
  background-image: url("../img/dogrun/hero_blob.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 30em auto;
  padding-bottom: 6em;
}
section.hero .wrapper .message{
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 520px){
  section.hero{
    margin-top: clamp(270px, 70vh, 360px);
  }
  section.hero .wrapper{
    box-sizing: border-box;
  }
  section.hero .wrapper .title{
    position: relative;
    margin-bottom: 3em;
    transform: scale(1.05);
  }
  section.hero .wrapper .description{
    background-position: center bottom;
    background-size: contain;
    padding-bottom: 14%;
  }
  section.hero .wrapper .description .image{
    width: 70vw;
    margin: 0 auto;
  }
  section.hero .wrapper .description .message{
    font-size: clamp(1.1rem, 3.2vw, 1.6rem);
    white-space: nowrap;
    left: 51%;
  }
}

/**********************************************************************/
/*  イントロ
/**********************************************************************/

section.intro{
  background-color: #fff;
  padding: 7em 0 7em 0;
  position: relative;
  z-index: 2;
}
section.intro .heading{
  margin-bottom: 3em;
}
section.intro .heading .title{
  display: inline-block;
  padding: 1em 10em;
  background-image: url("../img/dogrun/common_title_bg_l.svg"), url("../img/dogrun/common_title_bg_r.svg");
  background-repeat: no-repeat;
  background-position: left center, right bottom;
  background-size: auto;
}
section.intro .bodying{
  max-width: 760px;
  margin: 0 auto;
}
section.intro .bodying .lower{
  margin-top: 4em;
  padding-top: 2em;
  position: relative;
}
section.intro .bodying .lower::before{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 90%;
  height: 0px;
  border-bottom: 1px dotted #707070;
}
section.intro .bodying .lower .image{

}
section.intro .bodying .lower .description{
  flex: 1;
}
section.intro .bodying .lower .description .annotation{
  margin-top: 1.25em;
}
@media screen and (max-width: 520px){
  section.intro{
    padding: 3em 4vw 3em 4vw;
  }
  section.intro .heading{
    margin-bottom: 2em;
  }
  section.intro .heading .title{
    display: inline-block;
    padding: 1em 4em;
    background-image: url("../img/dogrun/common_title_bg_l.svg"), url("../img/dogrun/common_title_bg_r.svg");
    background-repeat: no-repeat;
    background-position: left center, right bottom;
    background-size: 2em auto;
  }
  section.intro .bodying > .description{
    padding: 0 1em;
    font-size: clamp(1.4rem, 3.8vw, 2rem);
    text-align: left;
  }
  section.intro .bodying .lower{
    gap: 0;
    margin-top: 2em;
  }
  section.intro .bodying .lower .image{
    width: 7em;
  }
  section.intro .bodying .lower .description{
    font-size: clamp(1.4rem, 3.8vw, 2rem);
  }
  section.intro .bodying .lower .description .text{
    font-size: clamp(1.3rem, 3.4vw, 1.6rem);
  }
  section.intro .bodying .lower .description .annotation{
    font-size: clamp(1rem, 3vw, 1.6rem);
    letter-spacing: 0;
    font-feature-settings: "palt";
  }
}

/**********************************************************************/
/*  ギャラリー
/**********************************************************************/

section.gallery{
  background-color: #F9F9F9;

  --image_width: 580px;
  --image_gap: 1em;
  --image_num: 9;
  --gallery_spped: 40s;
}
section.gallery .box{
  will-change: transform;
  animation: gallery_slide var(--gallery_spped) infinite linear;
}
section.gallery .box:nth-of-type(even){
  animation: gallery_slide_backwards calc(var(--gallery_spped) * 1.5) infinite linear;
}
section.gallery .box img{
  width: var(--image_width);
  height: auto;
  margin: calc(var(--image_gap) / 2);
}
@media screen and (max-width: 520px){
  section.gallery{
    background-color: #F9F9F9;

    --image_width: 32vw;
    --image_gap: 2vw;
    --image_num: 9;
    --gallery_spped: 30s;
  }
}

@keyframes gallery_slide{
  to{
    transform: translate(calc((-1 * ((var(--image_width) + var(--image_gap)) * var(--image_num)))), 0);
  }
}

@keyframes gallery_slide_backwards{
  from{
    transform: translate(calc((-1 * ((var(--image_width) + var(--image_gap)) * var(--image_num)))), 0);
  }
  to{
    transform: translate(0,0);
  }
}

/**********************************************************************/
/*  ラムの肉団子
/**********************************************************************/

section.nikudango{
  background-image: url("../img/dogrun/common_bg_wave_b.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding: 10em 0 8em 0;
  margin-top: -3em;
  position: relative;
  z-index: 2;
}
section.nikudango .wrapper{
  gap: 3em;
}
section.nikudango .wrapper .image{
  position: relative;
  z-index: 3;
}
section.nikudango .wrapper .info{
  padding-bottom: 8em;
  position: relative;
}
section.nikudango .wrapper .info::after{
  position: absolute;
  content: "";
  display: block;
  width: 811px;
  padding-top: 795px;
  aspect-ratio: 811 / 795;
  background-image: url("../img/dogrun/nikudango_blob.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  left: 5%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section.nikudango .wrapper .info > *{
  position: relative;
  z-index: 3;
}
section.nikudango .wrapper .info .title{
  margin-bottom: 2em;
}
section.nikudango .wrapper .info .description{
  margin-bottom: 1.5em;
}
section.nikudango .wrapper .info .ingredients{
  margin-bottom: 1.5em;
  line-height: 1.25;
  white-space: nowrap;;
}
section.nikudango .wrapper .info .ingredients .index{
  margin-right: 1.25em;
  padding-right: 1.25em;
  border-right: 1px solid #000;
}
section.nikudango .wrapper .info .price{
  margin-bottom: 1.5em;
}
section.nikudango .wrapper .info .price span{
  background-color: #B93D52;
  color: #fff;
  padding: .25em .1em .25em 1em;
}
section.nikudango .wrapper .info .shop{
  margin-top: 3em;
}
section.nikudango .wrapper .info .shop .banner{
  background-color: #7A77CB;
  color: #fff;
  padding: 1em 2em;
  border-radius: 1.5em;
  padding-left: 9em;
  max-width: 15em;
  font-weight: 700;
  background-image: url("../img/dogrun/nikudango_image_2.webp");
  background-repeat: no-repeat;
  background-position: left 2em center;
  background-size: 6em auto;
}
section.nikudango .wrapper .info .shop .link{
  margin-top: 1em;
}
section.nikudango .wrapper .info .shop .link a{
  padding-left: 2em;
  background-image: url("../img/dogrun/arrow_p.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5em auto;
}
@media screen and (max-width: 520px){
  section.nikudango {
    padding: 2em 8vw 3em 8vw;
    margin-top: -3vw;
  }
  section.nikudango .wrapper{
    flex-direction: column;
  }
  section.nikudango .wrapper .info{
    padding-bottom: 0em;
  }
  section.nikudango .wrapper .info::after{
    position: absolute;
    content: "";
    display: block;
    width: 120vw;
    padding-top: 120vw;
    aspect-ratio: 811 / 795;
    background-image: url("../img/dogrun/nikudango_blob.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  section.nikudango .wrapper .info .description{
    font-size: clamp(1.3rem, 3.7vw, 1.6rem);
  }
  section.nikudango .wrapper .info .ingredients{
    font-size: clamp(1.3rem, 3.7vw, 1.6rem);
  }
  section.nikudango .wrapper .info .price{
    font-size: clamp(1.3rem, 3.7vw, 1.6rem);
  }
  section.nikudango .wrapper .info .image{
    margin-top: 1em;
  }
  section.nikudango .wrapper .info .shop{
    font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  }
}

/**********************************************************************/
/*  営業時間
/**********************************************************************/

section.open{
  background-color: #ECF7FB;
  padding: 13em 3em 8em 3em;
  background-image: url("../img/dogrun/open_blob.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
section.open .heading{
  margin-bottom: 1em;
}
section.open .heading .title{
  display: inline-block;
  padding: 1em 7em;
  background-image: url("../img/dogrun/common_title_bg_b_l.svg"), url("../img/dogrun/common_title_bg_b_r.svg");
  background-repeat: no-repeat;
  background-position: left center, right bottom;
  background-size: auto;
}
section.open .bodying .image{
  margin-top: 3em;
}
@media screen and (max-width: 520px){
  section.open{
    background-color: #ECF7FB;
    padding: 5em 6vw 5em 6vw;
    background-image: url("../img/dogrun/open_blob.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 90% auto;
  }
  section.open .heading{
    margin-bottom: 1em;
  }
  section.open .heading .title{
    display: inline-block;
    padding: 1em 4em;
    background-image: url("../img/dogrun/common_title_bg_b_l.svg"), url("../img/dogrun/common_title_bg_b_r.svg");
    background-repeat: no-repeat;
    background-position: left center, right bottom;
    background-size: 2em auto;
  }
  section.open .heading .title img{
    width: 35vw;
  }
  section.open .bodying .open_time{
    font-size: clamp(2rem, 6vw, 3rem);
  }
  section.open .bodying .annotation{
    margin-top: 1em;
    font-size: clamp(1rem, 2.7vw, 1.6rem);
  }
  section.open .bodying .image{
    margin-top: 2em;
  }
  section.open .bodying .image img{
    max-width: 50vw;
  }
}

/**********************************************************************/
/*  ご注意事項
/**********************************************************************/

section.precautions{
  background-image: url("../img/dogrun/common_bg_wave_w.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  margin-top: -3em;
  padding: 10em 0 0 0;
  position: relative;
  z-index: 2;
}
section.precautions .bg{
  background-color: #fff;
  padding-bottom: 8em;
}
section.precautions .heading{
  margin-bottom: 3em;
}
section.precautions .heading .title{
  display: inline-block;
  padding: 1em 6em;
  background-image: url("../img/dogrun/common_title_bg_l.svg"), url("../img/dogrun/common_title_bg_r.svg");
  background-repeat: no-repeat;
  background-position: left center, right bottom;
  background-size: auto;
  padding-bottom: 4em;
}
section.precautions .selector{
  margin: 2em 0;
  gap: 4em;
  font-size: 125%;
  font-weight: 700;
}
section.precautions .selector [data-lang]{
  opacity: .5;
  cursor: pointer;
}
section.precautions .selector [data-lang].selected{
  opacity: 1;
}
section.precautions .bodying .multilang{
  display: none;
}
section.precautions .bodying .multilang.visible{
  display: block;
}
section.precautions .bodying .box{
  background-color: #F9F7F4;
  border-radius: 1em;
  padding: 2em;
  max-width: 920px;
  margin: 0 auto;
  margin-top: 2em;
  font-weight: 700;
}
section.precautions .bodying .box .index{
  padding: 2em 0 3em 0;
}
section.precautions .bodying .box .index img,
section.precautions .bodying .box .index .val{
  padding-bottom: .5em;
  border-bottom: 3px solid #A10000;
  font-size: 165%;
}
section.precautions .bodying .box .description{
  border-radius: .75em;
  background-color: #fff;
  padding: 3em;
}
section.precautions .bodying .box .description .first{
  font-size: 150%;
  padding-bottom: .75em;
  margin-bottom: .75em;
  border-bottom: 1px dotted #000;
}
section.precautions .bodying .box .description .list{
  gap: 4em;
  letter-spacing: 0;
  font-size: 115%;
}
section.precautions .bodying .box .description .list li{
  padding: .15em 0;
  padding-left: .75em;
  position: relative;
  line-height: 1.5;
  margin-bottom: .5em;
}
section.precautions .bodying .box .description .list li:before{
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #217A98;
  left: 0;
  top: .75em;
  position: absolute;
}
section.precautions .bodying .ownrisk{
  letter-spacing: 0;
  font-weight: 700;
  color: #A10000;
  max-width: 820px;
  margin: 0 auto;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 520px){
  section.precautions{
    margin-top: -2vw;
    padding: 5em 2vw 0 2vw;
  }
  section.precautions .bg{
    background-color: #fff;
    padding-bottom: 4em;
  }
  section.precautions .heading .title{
    display: inline-block;
    padding: 1em 4em;
    background-image: url("../img/dogrun/common_title_bg_l.svg"), url("../img/dogrun/common_title_bg_r.svg");
    background-repeat: no-repeat;
    background-position: left center, right bottom;
    background-size: 2em auto;
  }
  section.precautions .heading .title img{
    width: 35vw;
    max-width: 256px;
  }
  section.precautions .selector{
    margin: 1em 0;
    gap: 2em;
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 700;
  }
  section.precautions .bodying .box{
    background-color: #F9F7F4;
    border-radius: 1em;
    padding: 3vw;
    margin-top: 2em;
  }
  section.precautions .bodying .box .index{
    padding: 2em 0 2em 0;
  }
  section.precautions .bodying .box .index img,
  section.precautions .bodying .box .index .val{
    padding-bottom: .25em;
    font-size: 135%;
    max-height: 1em;
  }
  section.precautions .bodying .box .description{
    border-radius: .75em;
    background-color: #fff;
    padding: 5vw 6vw;
  }
  section.precautions .bodying .box .description .first{
    font-size: clamp(1.4rem, 3.7vw, 1.8rem);
    white-space: nowrap;
  }
  section.precautions .bodying .box .description .list{
    gap: 0;
    letter-spacing: 0;
    font-size: clamp(1.2rem, 3.3vw, 1.6rem);
    flex-direction: column;
  }
  section.precautions .bodying .box .description .list li{
    padding: .15em 0;
    padding-left: .75em;
    position: relative;
  }
  section.precautions .bodying .box .description .list li:before{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #217A98;
    left: 0;
    top: 1em;
    position: absolute;
  }
  section.precautions .bodying .ownrisk{
    font-size: 4.5vw;
    padding: 0 .75em;
    margin-top: 2em;
    font-feature-settings: "palt";
  }
  section.precautions .bodying .ownrisk .text{
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-align: left;
  }
}