html {
    /* font-family: 'Dancing Script', cursive; */
    font-family: 'Noto Sans JP', sans-serif;
    /* font-family: 'Poppins', sans-serif; */
}

  /*htmlにあったstyle*/
*{ margin: 0px; padding: 0px;}

.middle {
  /*真ん中の要素*/
  background: white;
  padding-left: 20px;
  margin-top: 50px;
}
.above {
  background: black;
}
.taitai {
  background:#FF0066;padding:20px;
}
.under {
  background: black;
     position: absolute;
    width: 100%;
}
  /*htmlにあったstyle*/




.pop {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.link {
  text-decoration: none;
}


/* ヘッダー */
header {
    padding: 27px 0;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em; 
}

.logo span {
    color: #000000;
}

.logo span2 {
    color: #FF0066;
}

.header_menu li {
    margin-left: 40px;
}

.header_menu li a {
    transition: .3s;
}
.header_menu li a:hover {
    color: #000000;
    transition: .3s;
}

@media only screen and (max-width: 768px) {
    header .container {
        justify-content: center;
        .header_menu li {
            margin: 20px 16px 0;
        }
    }
}



@media only screen and (max-width: 768px) {
    #hero {
        height: 460px;
    }
    .hero_inner p {
        font-size: 15px;
    }
    .hero_inner h1 {
        font-size: 17px;
    }
}



/* メイン */
#hero {
    background-image: url(hero.jpg);
    background-position: center;
    background-size: cover;
    height: 540px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 90px;
    overflow: hidden;
}
#hero::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 1;
}
.hero_inner {
    z-index: 2;
    color: #ffffff;
    width: 100%;
    text-align: center;
}
.hero_inner p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}
.hero_inner h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}


@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}

  to {
  transform: translateX(-100%);
}
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
}

.scroll-infinity__item>img {
  width: 100%;
}





ul.price_list{
  list-style:none;
  column-count: 2;
  column-gap: 40px;
  margin:5%;
  padding:0;
}
ul.price_list li{
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: #d2d2d2 1px dotted;
  margin-bottom: 8px;
  width: 100%;
  color:#cc0000;
}
ul.price_list li strong{
  font-weight:normal;
  color:#333;
  margin-right:auto;
}
@media screen and (max-width: 500px){
  ul.price_list{
    column-count: 1;
  }
}




.button a {
    background: #FF0066;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 160px;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    line-height: 1.8;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.button a:hover {
    background: #330011;
    color: #FFF;
}
.button a:hover:before {
    color: #fff;
}
body{
    vertical-align:middle; 
    padding: 50px 0;
    text-align: center;
}

a {
  text-decoration: none;
}

ul {
      list-style: none;
    }



/* コンセプト */
#concept {
    margin-bottom: 120px;
}
.title {
    font-size: 20px;
    font-weight: 500;
    color: #80BA4A;
    margin-bottom: 40px;
}
#concept h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.column-2 {
    width: 48%;
}
.text {
    line-height: 2;
}
.concept-img {
    background-image: url(../images/IMG_3136.jpg);
    background-position: center;
    background-size: cover;
    height: 340px;
    border-radius: 20px;
}
.heading {
    font-family: 'Dancing Script', cursive;
    font-size: 200px;
    font-weight: 700;
    color: #ff8899;
    opacity: 0.1;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-30%);
    z-index: -1;
}




 .button01 {
  background-color: #fff;
  border: solid 2px #FF0066;
  color: FF0066;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
}
.button01:hover {
  color: #FFF;
  background-color: #FF0066;
}