@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: #3DA9F7;
    --color-secondary: #F2F8F8;
    --color-accent: #FE931E;
    --color-text: #6A6F6F;

    /* フォント */
    --font-base:  'Noto Sans JP','sans-serif';
    --font-subtitle:'Zen Maru Gothic';
    --font-size-base: 17px;

    /**/
    --contents-width-pc: 980px;
    --contents-width-sp: 84%;
}


@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) { 
}



/* ---------------------------------------
    フェードイン
--------------------------------------- */

.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-element.show {
  opacity: 1;
  transform: translateY(0);
}


/* ---------------------------------------
    共通見出し
--------------------------------------- */

.icon-topic{
  margin: 0 auto;
}

.title h2{
  font-family: var(--font-subtitle);
  font-size: 20px;
  display: inline-block;
  padding-bottom: 3px;
  /*border-bottom: 4px dotted #D5E4E8;*/
  background-image: radial-gradient(circle, #d5e4e8 2px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 9px 4px;
}

@media (max-width: 767px) { 
  .icon-topic img{ width: 21%;}
  .title h2{ font-size: 1.4rem;}
}
@media (min-width: 768px) { 
  .icon-topic{ margin: 0 0 0.7rem 0;}
  .icon-topic img{ width: 108px; max-width: 108px;}
  .title h2{ font-size: 24px;}
}


/* ---------------------------------------
    MainVisual
--------------------------------------- */
.MVWrap .notes{
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .MVWrap{
      margin-bottom: 2rem;
      width: 100%;
  }

  .MVWrap .MainVisual {
    width: 100%;
    max-width: 100%;
  }

  .MVWrap .MainVisual .SpMv{
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .MVWrap .MainVisual .SpMv img{
    width: 100%;
  }

  .MVWrap .notes{
    width: var(--contents-width-sp);
    max-width: var(--contents-width-sp);
    max-width: 90%;
    font-size: 80%;
  } 
}

@media (min-width: 768px) { 
    .MVWrap{
      margin-bottom: 3rem;
    }

    .MVWrap h1 img{
      display: none;
    }

    .MVWrap .MainVisual {
      background-image: url('../img/mv_pc.jpg');
      background-size: 1800px auto;
      background-repeat: no-repeat;
      background-position: center top;
      background-attachment: scroll;
      background-origin: content-box;
      height: 720px;
    }

    .MVWrap .notes{
      width: var(--contents-width-pc);
      max-width: 80%;
      font-size: 80%;
    }
}




/* ---------------------------------------
    ポイント
--------------------------------------- */
.POINT .container {
  width: 100%;
  max-width: 900px;
  margin: 1em auto;
  box-sizing: border-box;
}

.POINT .container img {
}

.POINT .container h2 {
  margin: 0 0 1em 0;
}

.POINT .container p {
  margin: 0;
  margin-block-start: 1em;
  margin-block-end: 1em;
  background-color: rgba(242,248,248,0.8);
  padding: 1rem 2rem;
  text-align: left;
  font-weight: 500;
}


/* ======== スマホ表示 (〜767px) ======== */
@media (max-width: 767px) {
  section.POINT {
    margin-bottom: 3rem;
  }

  .POINT .headline{
    margin: 0 auto;
  }

  .POINT .headline h2 img{
    height: 60px;
  }

  .POINT .container{
    margin-bottom: 3rem;
  }

  .POINT .left-image {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .POINT .right-image {
    /* 縦並びのFlexコンテナにする */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .POINT .left-image .LeftWrap {
    align-self: flex-start;
  }

  .POINT .left-image .RightWrap {
    align-self: flex-end;
  }

  .POINT .right-image .LeftWrap {
    order: 2;
    align-self: flex-start;
  }

  .POINT .right-image .RightWrap {
    order: 1;
    align-self: flex-end;
    text-align: right;
  }

  .POINT .left-image .RightWrap p {
    border-radius: 10px 0 0 10px;
    margin-top: -1rem;
  }

  .POINT .right-image .LeftWrap p {
    border-radius: 0 10px 10px 0;
    margin-top: -1rem;
  }

  .POINT .LeftWrap img,.POINT .RightWrap img{
    width: 74%;
  }
}


/* ======== PC表示 (768px〜) ======== */
@media (min-width: 768px) {
  section.POINT {
    margin-top: 60px;
    margin-bottom: 70px;
  }

  .POINT h2.headline img{
    max-height: 72px;
  }

  .POINT .container {
    width: var(--contents-width-pc);
    max-width: 84%;
    margin: 0 auto;
    padding: 2rem 0 1rem 0;
    display: flex;
    gap: 2em;
    align-items: center;
  }

  .POINT .container p {
    border-radius: 10px;
    width: 360px;
    font-size: 17px;
  }

  .POINT .left-image .LeftWrap {
    width: 50%;
    text-align: right;
  }

  .POINT .left-image .RightWrap {
    width: 50%;
    text-align: left;
  }

  .POINT .right-image .LeftWrap {
    width: 50%;
    text-align: left;
    padding-left: 120px;
  }

  .POINT .right-image .RightWrap {
    width: 50%;
    text-align: left;
  }

}



/* ---------------------------------------
    毎日の除菌をもっと手軽に！
--------------------------------------- */
section.TOPIC {

}

section.TOPIC .type-image {
   
}


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

  .TOPIC .type-image {
    margin-top: 2rem; 
  }

  .TOPIC .type-image img {
    width: 80%;
    max-width: 80%;
  }
}

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

  .TOPIC .type-image {
    margin-top: 3rem; 
  }

  .TOPIC .type-image img {
    width: 90%;
    max-width: 900px;
  }
}



/* ---------------------------------------
    選ばれる理由
--------------------------------------- */
.REASON .title{
  background-color: #fff;
  background-image: url(../img/bg_parts-left.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100px;
}

.REASON .InnerWrap{
  background-color: #F2F8F8;
  background-image: url(../img/bg_parts-right.svg), url(../img/bg_parts-leftbottom.svg);
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 100px, 100px;
}

.REASON .InnerFrame{
  background-color: #fff;
  border-radius: 2rem;
  margin: 0 auto;
}

.REASON .InnerFrame h4{
  border-top: #D5E4E8 solid 2px;
  border-bottom: #D5E4E8 solid 2px;
  margin: 0 auto;
  font-weight: 500;
}

.REASON .InnerFrame .content{

}

.REASON .InnerFrame .caption {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.REASON .InnerFrame .caption-txt {
  background-color: #F5FAFC;
  flex: 1;
  padding: 1rem;
  box-sizing: border-box;
}

.REASON .InnerFrame .caption-txt p {
  margin: 0 0 8px;
}
.REASON .InnerFrame .caption-txt p:last-child {
  margin-bottom: 0;
}

.REASON .InnerFrame .caption-txt p.use {
  font-weight: 700;
}

.REASON .InnerFrame .caption-txt p.attention {
  font-weight: 700;
  color: var(--color-primary);
}


@media (max-width: 767px) {
  .REASON .title h3{
    width: var(--contents-width-sp);
    max-width: 94%;
    text-align: left;
  }

  .REASON .title h3 img{
    margin: 4rem 0 -3rem 2rem;    
    max-width: 66%;
  }

  .REASON .InnerWrap{
    padding: 5rem 0 3rem 0;
  }

  .REASON .InnerFrame{
    width: var(--contents-width-sp);
    margin-bottom: 2rem;
    padding: 2rem 0;
  }

  .REASON .InnerFrame h4{
    font-size: 1.2rem;
    width: 80%;
    max-width: 80%;
    padding: 0.3rem 0;
    margin-bottom: 2rem;
  }

  .REASON .InnerFrame img{
    max-width: 84%;
  }

  .REASON .InnerFrame .content{

  }

  .REASON .InnerFrame .note{
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }

  .REASON .InnerFrame .caption {
    max-width: 90%;
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .REASON .InnerFrame .icon {
    width: 150px;
    height: 150px;
    text-align: center;
    margin: 1.5rem 0 0.5rem 0;
  }

  .REASON .InnerFrame .icon img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .REASON .InnerFrame .caption-txt {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .REASON .title h3{
    display: inline-block;
    width: var(--contents-width-pc);
    max-width: 90%;
    text-align: left;
  }

  .REASON .title img{
    margin: 5rem 0 -3rem -8rem;    
    max-width: 60%;
  }

  .REASON .title h3 img{ 
    margin-left: 0;
    margin-bottom: -5rem;  
    max-width: 47%;
  }

  .REASON .InnerWrap{
    padding:8rem 0 4rem 0;
  }

  .REASON .InnerFrame{
    width: var(--contents-width-pc);
    max-width: 80%;
    margin-bottom: 3rem;
    padding: 3rem 0;
  }

  .REASON h4{
    font-size: 19px;
    width: 80%;
    max-width: 800px;
    padding: 0.3rem 0;
  }

  .REASON .InnerFrame .content{
    padding: 2rem 0 1.5rem 0;
  }

  .REASON .InnerFrame .caption{
    padding: 2rem 0;
  }

  .REASON .InnerFrame .caption-txt p.use {
    font-size: 17px;
  }

  .REASON .InnerFrame .caption-txt p.attention {
    font-size: 19px;
  }

  .REASON .InnerFrame .note{
    font-size: 17px;
    margin-bottom: 1rem;
  }

  .REASON .InnerFrame img{
    width: 90%;
    max-width: 800px;
  }

  .REASON .InnerFrame .icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
  }
}



/* ---------------------------------------
  3つのモード
--------------------------------------- */
section.MODE {
   
}

@media (max-width: 767px) {
  section.MODE {
   margin-top: 3rem;
  }

  .MODE .mode-image{
    margin: 2rem 0 4rem 0;
  }

  .MODE .mode-image img{
    width: 84%;
    max-width: 84%;
  }
}

@media (min-width: 768px) {
  section.MODE {
   margin-top: 5rem;
  }

  .MODE .mode-image{
    margin: 50px 0 120px 0;
  }

  .MODE .mode-image img{
    width: 80%;
    max-width: 800px;
  }
}




/* ---------------------------------------
  お客様の声
--------------------------------------- */
section.VOICE {
  border-top: 1.5px solid #C2D7DD;
  border-bottom: 1.5px solid #C2D7DD;
  background-image: url('../img/bg_grid.svg'); 
  background-repeat: repeat;
  position: relative; 
  padding-top: 60px; 
  padding-bottom: 30px;
  display: flex;
  width: 100%;
  margin: 60px auto 30px;
  box-sizing: border-box;
}

.VOICE .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px; 
  z-index: 10;
}

.VOICE .title img {
  display: block;
}

.VOICE .voiceWrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.VOICE .voice01, .VOICE .voice02 {
    display: flex;
    align-items: flex-start;
}

.VOICE .user-image {
    flex-shrink: 0;
}

.VOICE .user-image img{
    max-width: 160px;
}

.VOICE .commentWrap {
    flex-grow: 1;
    text-align: left;
    margin-left: 15px;
}

.VOICE .voice02 {
    flex-direction: row-reverse;
}

.VOICE .voice02 .user-image {
    margin-left: 15px;
    margin-right: 0;
}

.VOICE .voice02 .commentWrap {
    margin-right: 15px;
    margin-left: 0;
}

.VOICE .voice01 {
    position: relative;
    padding-bottom: 20px;
}

.VOICE .voice01::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 90%;
    height: 2px;
    border-bottom: 1.5px solid #C2D7DD;
    left: 50%; 
    transform: translateX(-50%);
}

.VOICE .commentWrap .ttl {
    font-family: var(--font-subtitle);
    font-weight: bold;
    color: #7C9BA3;
    line-height: 1.6;
    display: inline;
  
    /* マーカー */
    background: linear-gradient(
    transparent 60%,
    #FEFEBD 60%, 
    #FEFEBD 100%
  );
}

.VOICE .commentWrap .comment{
    line-height: 1.7;
    padding-top: 0.5rem;
}


@media screen and (min-width: 768px) {
  .VOICE {
    flex-direction: row; 
    justify-content: space-between; 
    gap: 40px;
  }

  .VOICE .title{
    width: 100%;
  }

  .VOICE .title img {
     max-width: 50%;
     margin-left: 5rem;
  }

  .VOICE .voiceWrap {
    width: 980px;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5rem;
  }

  .VOICE .commentWrap .ttl{
     font-size: 19px;
  }

  .VOICE .commentWrap .comment{
     font-size: 17px;
  }
    
  .VOICE .voice01, .VOICE .voice02 {
    flex-basis: 50%;
  }

  .VOICE .voice01 {
    padding-right: 25px;
    padding-bottom: 0;
    border-right: 1.5px solid #C2D7DD;
  }

  .VOICE .voice01::after {
    content: none;
  }

  .VOICE .voice01, .VOICE .voice02 {
    flex-direction: row;
  }
    
  .VOICE .voice02 {
    padding-left: 10px;
  }
    
  .VOICE .voice01 .user-image, .VOICE .voice02 .user-image {
    margin-right: 15px;
    margin-left: 0;
  }
    
  .VOICE .voice01 .commentWrap, .VOICE .voice02 .commentWrap {
    margin-left: 0;
    margin-right: 0;
  }
  
}

@media screen and (max-width: 767px) {
  .VOICE {
    flex-direction: column; 
    gap: 30px;
    padding-top: 40px;
    width: 95%;
  }

  .VOICE .title {
    top: -30px;
    width: 100%;
  }
  
  .VOICE .title img {
     max-width: 60%;
     margin-left: 1rem;
  }

  .VOICE .voiceWrap {
    width: 100%;
    margin-top: 1rem;
  }

  .VOICE .commentWrap .ttl{
     font-size: 19px;
  }

  .VOICE .user-image img{
    max-width: 162px;
  }

  .VOICE .voice01 .commentWrap{
    padding: 3rem 1.3rem 1rem 0;
  }

  .VOICE .voice01 .user-image img{
    margin-left: -1rem;
  }

  .VOICE .voice02{
    padding-top: 1rem;
  }

  .VOICE .voice02 .commentWrap{
    margin-right: 0;
    padding: 3rem 0 0 2.5rem;
  }

  .VOICE .voice02 .user-image img{
    margin-right: -1rem; 
  }

  .VOICE .voice02 .user-image{
    overflow: hidden;
  }

}




/* ---------------------------------------
    ご購入・詳しくはこちら/ストアボタンcssは下部に記述
--------------------------------------- */
.Store {
    background-color: #ffffff;
}

.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-bottom: 30px;
    }
    .Store .ttlIcon{
        width: 100px;
        margin-bottom: 30px;
    }
    .Store h2{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .Store .balloon {
        top: -40px;
        right: 15px;
    }
    .Store .balloon img {
        width: 100px;
    }
}

/* デスクトップ */
@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: 0;
        right: 60px;
    }
    .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;
  }
  /*------ストアボタン　ここまで---------*/
  