/* index.php common */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 見出し */
.top_h01 {
  width: fit-content;
  margin: 80px auto 60px;
  font-family: "Yusei Magic", sans-serif;
  font-size: 170%;
  letter-spacing: 2px;
  position: relative;
}
.top_h01::before {
  content: "";
  width: 30vw;
  max-width: 160px;
  height: 85px;
  background: url(../images/index/top-h_sun.png) no-repeat bottom center;
  background-size: contain;
  position: absolute;
  left: calc(50% - 80px);
  top: -90px;
}
.top_h01 .em01 {
  font-size: 120%;
  color: #229f46;
}
.top_h01 span {
  position: relative;
}
.top_h01 span::before,
.top_h01 span::after {
  content: "";
  width: 210px;
  height: 10px;
  background: url(../images/index/top-h_line.png) no-repeat center;
  background-size: contain;
}
.top_h01 span::before {
  position: absolute;
  left: -250px;
  bottom: 16px;
}
.top_h01 span::after {
  position: absolute;
  right: -250px;
  bottom: 16px;
}

@media screen and (max-width: 1081px) {
  .top_h01::before {
    content: "";
    width: 16vw;
    height: 8vw;
    top: -8vw;
    left: calc(50% - 8vw);
  }
}
@media screen and (max-width: 768px) {
  .top_h01 {
    font-size: 140%;
  }
  .top_h01::before {
    width: 30vw;
    height: 12vw;
    top: -12vw;
    left: calc(50% - 15vw);
  }
  .top_h01 span::before,
  .top_h01 span::after {
    width: 50vw;
    height: 2vw;
  }
  .top_h01 span::before {
    left: -52vw;
    bottom: 3vw;
  }
  .top_h01 span::after {
    right: -52vw;
    bottom: 3vw;
  }
}

.top_h02 {
  width: fit-content;
  margin-bottom: 20px;
  font-size: 150%;
  font-weight: 700;
  color: #229f46;
  position: relative;
}
.top_h02::before {
  content: "";
  width: 10vw;
  max-width: 30px;
  height: 35px;
  background: url(../images/index/top-h2_wai.png) no-repeat bottom center;
  background-size: contain;
  position: absolute;
  left: -20px;
  top: -25px;
}
.top_h02::after {
  content: "";
  width: 20vw;
  max-width: 60px;
  height: 60px;
  background: url(../images/index/top-h2_sun.png) no-repeat bottom center;
  background-size: contain;
  position: absolute;
  right: -40px;
  top: -30px;
}
@media screen and (max-width: 768px) {
  .top_h02::before {
    top: -5vw;
  }
  .top_h02::after {
    top: -5vw;
    background: url(../images/index/top-h2_sun.png) no-repeat top center;
  }
}

/* main visual */
#index .mv_copy {
  font-size: calc(100vw / 28);
  font-family: "Yusei Magic", sans-serif;
  font-size: 260%;
  font-weight: 900;
  line-height: 1.4;
  color: #229f46;
  text-align: left;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin-top: 24vh;
  margin-left: calc(50vw - 50px);
}

#index .mv {
  width: 100%;
  height: 94vh;
  position: relative;
}

#index .mv .mv_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

@keyframes flowimg {
  0% {
    transform: translateX(-0);
  }
  100% {
    transform: translateX(100%);
  }
}
#index .mv .mv_wrap::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 50vh;
  background: url(../images/index/mv_yane.gif) no-repeat center top;
  background-size: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
#index .mv .mv_wrap::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background: url(../images/index/mv_bottom.png) no-repeat center bottom;
  background-size: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#index .mv .mv_ttl {
  width: 85%;
  max-width: 670px;
  height: fit-content;
  margin: auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

#index .mv .mv_box {
  width: 100%;
  height: 100%;
  position: relative;
}
#index .mv .mv_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#index .mv .mv_img:nth-of-type(1) {
  background: url(../images/index/mv_01.jpg) no-repeat bottom 20% center;
  background-size: cover;
}
#index .mv .mv_img:nth-of-type(2) {
  background: url(../images/index/mv_02.jpg) no-repeat bottom 75% center;
  background-size: cover;
}
#index .mv .mv_img:nth-of-type(3) {
  background: url(../images/index/mv_03.jpg) no-repeat top 60% center;
  background-size: cover;
}
#index .mv .mv_img:nth-of-type(4) {
  background: url(../images/index/mv_04.jpg) no-repeat top 10% center;
  background-size: cover;
}
#index .mv .mv_box li {
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s ease 0s;
}
#index .mv .mv_box li.mv-fadein {
  overflow: visible;
  opacity: 1;
  transition: all 0.8s ease 0s;
}

@media screen and (max-width: 1500px) {
}
@media screen and (max-width: 1081px) {
}
@media screen and (max-width: 768px) {
  #index .mv_copy {
    margin-top: 20vh;
  }

  #index .mv .mv_wrap::before {
    background: url(../images/index/mv_yane_sp.gif) no-repeat center top;
    background-size: 100%;
  }
  #index .mv .mv_wrap::after {
    background: url(../images/index/mv_bottom_sp.png) no-repeat center bottom;
    background-size: 100%;
  }
  #index .mv {
    width: 100%;
    height: 85vh;
    position: relative;
  }
}
@media screen and (max-width: 430px) {
}

/* introducs */
#index .intro_box {
  padding: 120px 0 60px;
  position: relative;
  z-index: 0;
}
#index .intro_box .intro_video {
  width: 100%;
  background: url(../images/index/top_bg.png) no-repeat center center;
  background-size: contain;
  position: relative;
}
#index .intro_box .intro_video .video_wrap {
  width: fit-content;
  width: 70%;
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}
#index .intro_box .intro_ani1 {
  width: 18vw;
  height: auto;
  max-width: 240px;
  max-height: 280px;
  position: absolute;
  top: 1vw;
  right: 5vw;
}
#index .intro_box .intro_conts {
  background: url(../images/common/kusa.gif) no-repeat center center;
  background-size: contain;
  position: relative;
}
#index .intro_box .intro_conts .cotns_box {
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
#index .intro_box .intro_conts .cotns_box .intro_txt {
  width: 50%;
  max-width: 680px;
  line-height: 2.2;
}
#index .intro_box .intro_txt p {
  width: 100%;
  max-width: 640px;
  margin: 0 0 0 2%;
}
#index .intro_img {
  width: 45%;
  overflow: hidden;
  line-height: 0;
  border: 5px #fff solid;
  box-shadow: 0 0 10px #49382155;
  opacity: 0;
}
#index .intro_box .intro_conts .cotns_box:nth-of-type(even) {
  flex-direction: row-reverse;
}
#index .intro_box .intro_conts .cotns_box:nth-of-type(even) .intro_txt h2 {
  margin: 0 40px 20px auto;
}
#index .intro_box .intro_conts .cotns_box:nth-of-type(even) .intro_txt p {
  text-align: right;
}

#index .intro_box .intro_ani2 {
  width: 20vw;
  height: auto;
  max-width: 220px;
  max-height: 260px;
  position: absolute;
  top: 32vh;
  left: 0;
  z-index: -1;
  transition: all 0.7s ease;
}

#index .intro_box .main_btn {
  margin: 0 auto;
}
@media screen and (max-width: 1081px) {
  #index .intro_box {
    height: auto;
    padding: 6vw 0 6vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #index .intro_box .intro_video {
    background: url(../images/index/top_bg.png) no-repeat center center;
    background-size: 130%;
  }
  #index .intro_box .intro_conts {
    background: url(../images/index/contentback.gif) top center;
    background-size: 130%;
    position: relative;
  }
  #index .intro_box .intro_conts .cotns_box {
    margin: 0 auto 4vh auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
  }
  #index .intro_box .intro_conts .cotns_box .intro_txt {
    width: calc(56% - 20px);
    margin-left: 0;
    padding: 4vw 0 0 0;
  }
  #index .intro_box .intro_conts .cotns_box .intro_txt h2 {
    font-size: 140%;
    text-align: center;
  }
  #index .intro_img {
    width: calc(44% - 20px);
    margin-top: 30px;
  }
  #index .intro_box .intro_ani2 {
    top: -26%;
    transition: all 0.7s ease;
  }
}
@media screen and (max-width: 768px) {
  #index .intro_box {
    min-height: auto;
    height: auto;
    position: static;
    position: relative;
  }
  #index .intro_box .intro_conts .cotns_box {
    margin: 4vh auto;
  }
  #index .intro_box .intro_conts #index .intro_box .intro_conts .cotns_box {
    margin: 8vh auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
  }
  #index .intro_box .intro_conts .cotns_box .intro_txt {
    width: 90%;
    margin: auto;
    max-width: none;
    box-shadow: none;
    position: static;
  }
  #index .intro_box .intro_conts .cotns_box .intro_txt h2 {
    line-height: 1.2;
    font-size: 160%;
    margin: 0 auto 20px auto;
  }
  #index .intro_box .intro_conts .intro_txt p {
    max-width: none;
    margin: 0 0 0 auto;
  }
  #index .intro_box .intro_conts .intro_img {
    width: 80%;
    margin: auto;
    max-width: none;
    border-radius: 0;
  }
  #index .intro_box .intro_conts .cotns_box:nth-of-type(even) .intro_txt h2 {
    margin: 0 auto 20px auto;
  }
  #index .intro_box .intro_conts .cotns_box:nth-of-type(even) .intro_txt p {
    text-align: left;
    margin: 0;
  }
  #index .intro_box .intro_ani2 {
    top: -7vh;
    z-index: -1;
    transition: all 0.7s ease;
  }
}
@media screen and (max-width: 430px) {
}
/* brand */
#index .brand {
  padding: 60px 0;
  background: url(../images/index/top_bg.png) no-repeat center center;
  background-size: contain;
  position: relative;
  z-index: 0;
}
#index .brand .cotns_box {
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
#index .brand .brand_txt {
  width: 54%;
  max-width: 680px;
  letter-spacing: 1px;
  line-height: 2.2;
}
#index .brand .brand_txt p {
  width: 95%;
  max-width: 640px;
  margin: 0 0 0 2%;
}
#index .brand .brand_img {
  width: 45%;
  margin-top: 10px;
  overflow: hidden;
  line-height: 0;
  border: 5px #fff solid;
  box-shadow: 0 0 10px #49382155;
}
#index .brand .brand_ani1 {
  width: 17vw;
  height: auto;
  max-width: 240px;
  max-height: 280px;
  position: absolute;
  top: -10vh;
  right: 2vw;
  transition: all 0.7s ease;
}
#index .brand .main_btn {
  margin-top: 30px;
}
@media screen and (max-width: 1500px) {
  #index .brand .brand_ani1 {
    top: -10vh;
    right: 1vw;
    transition: all 0.7s ease;
  }
  #index .brand .main_btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1081px) {
  #index .brand {
    padding: 6vw 0;
    background: url(../images/index/contentback.gif) top center;
    background-size: 130%;
  }
  #index .brand .cotns_box {
    margin: 6vw auto 0;
  }
  #index .brand .brand_ani1 {
    top: -5vh;
    transition: all 0.7s ease;
  }
}
@media screen and (max-width: 768px) {
  #index .brand .brand_txt {
    width: 90%;
    margin: 3% auto;
    order: 2;
  }
  #index .brand .brand_img {
    width: 80%;
    margin: auto;
    order: 1;
  }
  #index .brand .main_btn {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 430px) {
}

/* aboutus */
#index .aboutus {
  padding: 60px 0;
  position: relative;
  background: url(../images/common/kusa.gif) no-repeat center center;
  background-size: contain;
}
#index .aboutus .aboutus_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#index .aboutus .aboutus_info {
  width: 45%;
  font-size: 130%;
  font-weight: bold;
}
#index .aboutus .aboutus_info .shop-info dt {
  position: relative;
  line-height: 1.4;
}
#index .aboutus .aboutus_info .shop-info dt::before {
  content: "▼";
  display: inline-block;
  margin-right: 5px;
  font-size: 50%;
  transform: rotate(-90deg);
}
#index .aboutus .aboutus_info .shop-info dd {
  padding-left: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
}
#index .aboutus .aboutus_map {
  width: 54%;
  max-width: 750px;
  height: 40vh;
  max-height: 400px;
  overflow: hidden;
}
#index .aboutus .main_btn {
  margin: 40px auto;
}

#index .aboutus .aboutus_ani1 {
  width: 16vw;
  height: 30vh;
  max-width: 180px;
  max-height: 260px;
  position: absolute;
  top: 5%;
  left: 5%;
}
@media screen and (max-width: 1081px) {
  #index .aboutus {
    padding: 6vw 0;
    background: url(../images/index/contentback.gif) top center;
    background-size: 130%;
  }
  #index .aboutus .aboutus_ani1 {
    position: absolute;
    top: auto;
    left: 2%;
    bottom: -10%;
  }
  #index .aboutus .aboutus_map {
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  #index .aboutus .aboutus_info {
    width: fit-content;
    margin: auto;
    font-size: 120%;
    font-weight: bold;
  }
  #index .aboutus .aboutus_map {
    width: 85%;
    margin: auto;
  }
}
@media screen and (max-width: 391px) {
}
