@charset "utf-8";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

body {
    font-family: var(--font-base);
    color:var(--color-text);
    line-height: 1.6;
}

a{
  text-decoration: none;
}


:root {
    /* カラー設定 */
    --color-primary: ;
    --color-secondary: ;
    --color-accent: ;
    --color-text: #6A5F5F

    /* フォント */
    --font-base:  'Noto Sans JP','sans-serif';
    --font-subtitle:'Zen Maru Gothic';
    --font-size-base: 16px;
    --font-size-large: 1.25rem;
    --font-size-small: 0.875rem;
}


@media (max-width: 767px) { .displayPc{ display: none;} }
@media (min-width: 768px) { .displaySp { display: none;} }


section {
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

@media (max-width: 767px) { 
}
@media (min-width: 768px) { 
}


/* ---------------------------------------
    MainVisual
--------------------------------------- */
.MainVisual {
    background-color: #FFEFD1;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.MainVisual img {
    display: block;
    margin: 0 auto;
    height: auto;
}

@media (max-width: 767px) { 
     .MainVisual {
        background-image: url('../img/mvBG_sp.png');
        background-size: 100% auto;
        background-position: center 40px;
        padding: 160px 0 220px 0;
      }
      .MainVisual img {
        width: 60%;
      }
}
@media (min-width: 768px) { 
    .MainVisual {
        background-image: url('../img/mvBG_web.png');
        background-size: 1136px auto;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: scroll;
        background-origin: content-box;
        padding: 20px;
        height: 800px;
    }
    .MainVisual img {
        width: 450px;
        margin: 0 auto;
    }
}

/* ---------------------------------------
    ProductVisual
--------------------------------------- */
.ProductVisual {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    position: relative;
}

@media (max-width: 767px) {
    .ProductVisual{
        padding: 0;
        background-image: url('../img/visualBG_sp.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;
        background-size:cover;
    }
    .ProductVisual img {
        width: 100%;
        max-width: 100%;
      }
}

@media (min-width: 768px) { 
    .ProductVisual{
        padding: 80px 0;
        background-repeat: no-repeat, no-repeat;
        background-position: top center, bottom center;
        background-size: cover, cover;
        background-image: url('../img/visualBG_top_web.png'), url('../img/visualBG_bottom_web.png');
        background-size: 100% auto, 100% auto;
    }
    .ProductVisual img {
        width: 90%;
        max-width: 940px;
    }
}


/* ---------------------------------------
    Concept
--------------------------------------- */
    .Concept {
      margin: 0 auto;
      background-color: #EFFDF8;
    }
    .Concept .wrap{
      background-color: #fff;
      display: flex;
      flex-wrap: wrap;
      margin: 0 auto;
      padding: 0;
    }
    .Concept .wrap h2{
      margin: 0;
      padding: 0;
      border: none;
    }
    .Concept .wrap .left,
    .Concept .wrap .right {
      box-sizing: border-box;
      padding: 0;
    }
    .Concept .wrap .left {
      width: 48%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .Concept .wrap .left img {
      height: auto;
    }
    .Concept .wrap .right {
      width: 52%;
      padding: 0;
    }
    .Concept .wrap .right img {
      width: 100%;
      height: auto;
      margin: 0;
      vertical-align: bottom;
    }

@media (max-width: 767px) { 
  .Concept {
      padding: 60px 0;
    }
     .Concept .wrap {
        width: 100%;
        flex-direction: column;
        border-radius: 70px;
      }
      .Concept .wrap .left,
      .Concept .wrap .right {
        width: 100%;
        padding: 0;
      }
      .Concept .wrap .left {
        padding: 20px;
      }
      .Concept .wrap .left img {
        max-width: 84%;
      }
      .Concept .wrap .right img {
        width: 100%;
        vertical-align: bottom;
      }
}

@media (min-width: 768px) {
  .Concept {
      padding: 20px 0;
    }

    .Concept .wrap{
      width: 94%;
      max-width: 1000px;
      border-radius: 40px;
    }

    .Concept .wrap .left img {
      max-width: 70%;
    }
}



/* ---------------------------------------
    LineUp
--------------------------------------- */
.LineUp {
  background-color: #EFFDF8;
}

.LineUp h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #6A5F5F;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.LineUp .itemList {
  margin: 0 auto;
}

.LineUp .itemWrap {
    box-sizing: border-box;
    display: flex; /* itemFrameを中央に配置するため */
    justify-content: center;
    align-items: center;
    min-height: 150px;
    margin-bottom: 10px;
}

.LineUp .itemFrame {
    background-color: #fff;
    display: flex;
    flex-direction: column; /* 子要素を縦に並べる */
    justify-content: center; /* 垂直方向の中央揃え */
    align-items: center; /* 水平方向の中央揃え */
    box-sizing: border-box; /* paddingとborderをwidthに含める */
    border-style: dotted; /* 丸ドットの枠線 */
    border-color: #93DFE2; /* 枠線の色 */
    width: 100%; /* itemWrapの幅に合わせる */
    height: 100%; /* itemWrapの高さに合わせる */
    padding: 10px; /* 必要に応じて調整 */
}

.LineUp .visual {
    text-align: center;
}

.LineUp .visual img {
    display: block; /* 画像の下に余白ができないように */
    margin-left: auto;
    margin-right: auto;
}

.LineUp .name {
    color: #6A5F5F;
    text-align: center;
    padding: 5px 0;
    font-weight: 600;
}

.LineUp .btn {
    text-align: center;
}

.LineUp .btn img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
  .LineUp {
    padding: 70px 0;
  }

  .LineUp h2{
    font-size: 24px;
  }

  .LineUp .itemWrap {
    width: calc(50% - 5px);
    float: left;
    margin-right: 10px;
  }

  .LineUp .itemWrap:nth-child(2n) {
    margin-right: 0;
  }

  .LineUp .itemWrap:nth-child(7) {
    width: 50%;
    float: none;
    margin-right: 0;
    clear: both;
    margin: 10px auto 0;
  }

  .LineUp .itemList {
    width: 90%;
    margin: 0 auto;
  }
  
  .LineUp .itemList::after {
    content: "";
    display: block;
    clear: both;
  }

  .LineUp .itemFrame {
    border-width: 3px;
    border-radius: 20px;
  }

  .LineUp .visual img {
    width: 90%;
    margin-top: 10px;
  }

  .LineUp .name {
    font-size: 15px;
  }

  .LineUp .btn img {
    width: 90%;
  }

  .LineUp .btn {
    margin-top: 8px;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .LineUp {
    padding: 120px 0 80px 0;
  }
  
  .LineUp h2{
    font-size: 27px;
  }

  .LineUp .itemList {
    max-width: 980px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .LineUp .itemWrap {
    flex-grow: 1;
    margin: 5px;
    padding-bottom: 15px;
  }

  .LineUp .itemWrap:nth-child(1),
  .LineUp .itemWrap:nth-child(2) {
    width: calc(50% - 10px);
    max-width: 480px;
  }

  .LineUp .itemWrap:nth-child(3),
  .LineUp .itemWrap:nth-child(4),
  .LineUp .itemWrap:nth-child(5) {
    width: calc(33.333% - 10px);
    max-width: 313px;
  }

  .LineUp .itemWrap:nth-child(6),
  .LineUp .itemWrap:nth-child(7) {
    width: calc(50% - 10px);
    max-width: 480px;
  }

  .LineUp .itemWrap:nth-child(1),
  .LineUp .itemWrap:nth-child(6){
    padding-left: 167px;
  }
  .LineUp .itemWrap:nth-child(2),
  .LineUp .itemWrap:nth-child(7){
    padding-right: 167px;
  }

  .LineUp .itemFrame {
    width: 300px;
    border-width: 6px;
    border-radius: 30px;
  }

  .LineUp .visual img {
    width: 200px;
    margin-top: 19px;
  }

  .LineUp .name {
    font-size: 18px;
  }

  .LineUp .btn img {
    width: 150px;
  }

  .LineUp .btn {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


/* ---------------------------------------
    ご購入・詳しくはこちら
--------------------------------------- */
.Store {
    background-color: #ffffff;
    padding: 70px 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.Store .ttlIcon{
    margin: 0 auto;
}

.Store h2{
    color: #6A5F5F;
    font-family: var(--font-subtitle);
    font-weight: 700;
}

.Store .titleArea{
    position: relative;
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
}

.Store .balloon {
    position: absolute;
}

.Store .balloon img {
    height: auto;
}

/* モバイル */
@media (max-width: 767px) {
    .Store {
        padding: 50px 0 30px 0;
    }
    .Store .ttlIcon{
        width: 80px;
        margin-bottom: 30px;
    }
    .Store h2{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .Store .balloon {
        top: -60px;
        right: 15px;
    }
    .Store .balloon img {
        width: 120px;
    }
}

/* デスクトップ */
@media (min-width: 768px) {
    .Store {
        padding-bottom: 40px;
    }
    .Store .ttlIcon{
        width: 130px;
        margin-bottom: 20px;
    }
    .Store h2{
        font-size: 30px;
        margin-bottom: 50px;
    }
    .Store .balloon {
        top: -20px;
        right: 70px;
    }
    .Store .balloon img {
        width: 150px;
    }
}

/* ---------------------------------------
    ストアボタン／サイト全体をこのコードに統一
--------------------------------------- */
.StoreWrap {
    width: 700px;
    max-width: 70%;
    margin: 0 auto;
    padding: 0 0 40px 0;
  }
  
  .StoreWrap .ttlMgn{
    margin-bottom: 3rem;
  }
  
  .StoreWrap .ttlMgn h3{
    
  }
  
  .StoreWrap .StoreBtn_Official{
    margin-bottom: 2rem;
  }
  
  .StoreWrap .StoreBtn_Official a{
    font-size: 19px;
    border-radius: 100vh;
    display: inline-block;
    align-items: center;
    width: 97%;
    padding: 1rem 0;
    position: relative;
    -webkit-transition: 0.2s all ease-out;
    -o-transition: 0.2s all ease-out;
    transition: 0.2s all ease-out;
    color: #fff;
    background-color: #06c1aa;
    border: #06c1aa solid 2px;
  }
  
  .StoreWrap .StoreBtn_Official a:after {
    content: "";
    top: 50%;
    margin-top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    position: absolute;
  }
  
  .StoreWrap .StoreBtn_Official a:hover {
    text-decoration: none;
    background: #fff;
    color: #06c1aa;
    border: #06c1aa solid 2px;
    opacity: 0.6;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .StoreWrap .storeBtnWrap {
    display: flex;
    justify-content: flex-start;
    padding-inline-start: 0;
  }
  
  .StoreWrap .storeBtnWrap li.storeBtn {
    width: 100%;
    text-align: center;
    list-style: none;
  }
  
  .StoreWrap .storeBtnWrap .storeBtn a {
    list-style: none;
    font-size: 15px;
    border-radius: 5rem;
    display: inline-block;
    align-items: center;
    width: 90%;
    padding: 0.8rem 0;
    position: relative;
    -webkit-transition: 0.2s all ease-out;
    -o-transition: 0.2s all ease-out;
    transition: 0.2s all ease-out;
  }
  
  @media only screen and (max-width: 767px) {
    .StoreWrap {
      width: 86%;
      max-width: 86%;
      padding: 0;
    }
  }
  
  .StoreWrap .storeBtn a:after {
    content: "";
    top: 50%;
    margin-top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    position: absolute;
  }
  
  .StoreWrap .storeBtn a:hover {
    text-decoration: none;
    opacity: 0.6;
    -webkit-transition: 0.2s all ease-out;
    -o-transition: 0.2s all ease-out;
    transition: 0.2s all ease-out;
  }
  
  
  .StoreWrap .storeBtn._official a {
    color: #fff;
    background-color: #06c1aa;
    border: #06c1aa solid 2px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .StoreWrap .storeBtn._official a:hover {
    background: #fff;
    color: #06c1aa;
    border: #06c1aa solid 2px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .StoreWrap .storeBtn._rakuten a {
    color: #fff;
    background-color: #bf0b0b;
    border: #bf0b0b solid 2px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .StoreWrap .storeBtn._rakuten a:hover {
    background: #fff;
    color: #bf0b0b;
    border: #bf0b0b solid 2px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .StoreWrap .storeBtn._amazon a {
    color: #fff;
    background-color: #eb9500;
    border: #eb9500 solid 2px;
  }
  
  .StoreWrap .storeBtn._amazon a:hover {
    background: #fff;
    color: #eb9500;
    border: #eb9500 solid 2px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .StoreWrap .storeBtn._yahoo a {
    background: #f7181c;
    color: #fff;
    border: #f7181c solid 2px;
  }
  
  .StoreWrap .storeBtn._yahoo a:hover {
    background: #fff;
    color: #f7181c;
    border: #f7181c solid 2px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  /*------ストアボタン　ここまで---------*/
  