@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body {
    font-family: 'Noto Sans JP',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #1C4369;
}
/* ヘッダー
------------------------------------------------------------*/
#header{
    position:fixed;
    top:0;
    margin:0;
    padding:0px;
    width:100%;
    background: #1C4369;
    color: #FFFFFF;
    z-index:99;
    height:50px;
    display: flex;
}
div.rogen_kana{
  margin-left: 10px;
  margin-top: 15px;
}
/* ショッピングカート
------------------------------------------------------------*/
div.card-link-top{
  /* 上下 | 左右 */
  margin: 10px 0;
}

div.shoppingcart{
margin: 8px 0;
color: #ffffff;
margin-left: auto;
padding-right: 85px;
}

.shoppingcart a:link { /*アクセスしたことのないリンク*/
color:#ffffff;
}
.shoppingcart a:visited { /*アクセスしたことのあるリンク*/
color:#ffffff;
}

/* ここから下がボタンのCSS　*/
.btn-gradation {
  display: inline-block;
  /*text-align: left;*/
  background-image: linear-gradient(#eaeaea 0%, #c6c6c6 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
  color: #a5a5a5;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
  margin-top: 15%;
  margin-right: 50%;
  padding: 16% 32%;
  border-radius: 4px;
}

.btn-gradation:hover {
  opacity: 0.8;
}

/*ハンバーガーメニュー
------------------------------------------------------------*/
/*
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  background-color: #1C4369;
  box-shadow: 0 2px 6px rgba(0,0,0,.16);
}
*/
.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: #1C4369;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 70px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
  color: #FFFFFF;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #FFFFFF;
}
.global-nav__item a:hover {
/*  background-color: #eee;*/
}
.hamburger__line {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
  transition: all .6s;
}
.hamburger__line--1 {
  top:20%;
}
.hamburger__line--2 {
  top:34%;
}
.hamburger__line--3 {
  top:50%;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top:30%;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top:30%;
}

/* 各セクションのタイトル
------------------------------------------------------------*/
header.sec{
      text-align: center;
      /*上　左右　下*/
      padding: 4% 10% 2%;
}

/* ヘッダー
------------------------------------------------------------*/
main{
  margin:0;
  padding:0;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
  }
  #mainImg{
    margin:  0;
    padding:0;
  }
  .main_txt {/*親div*/
    position: relative;/*相対配置*/
    }

  .main_txt p {
    position: absolute;/*絶対配置*/
    font-size: 2.34vw;
    /*font-size: 230%;*/
    color: white;/*文字は白に*/
    background: #1C4369;
    padding:   0.5% 1%; /*[上下][左右]*/
    top: 35%;
    /*left: 13%;*/
    left: 8%;
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;

    }

  .main_txt img {
    width: 100%;
    }

  .box {
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 150px; /*追加*/
    border: 1px solid #1C4369; /* 枠線を付加 */
    margin:  0 auto;
  }
  .image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /*調整*/

  }

  .logo_n {
    text-align: left !important;
    /*上　左右　下*/
    margin-left: 0;
    height:30px;
    width: auto;    /* 横幅を割合で指定 */
/*    width: 15%;    /* 横幅を割合で指定 */
/*    height: auto;  /* 高さは自動指定 */
  }
.logo_w {
  width: 31%;    /* 横幅を割合で指定 */
  height: auto;  /* 高さは自動指定 */
}
.logo_footer {
  width: 20%;    /* 横幅を割合で指定 */
  height: auto;  /* 高さは自動指定 */
}

.conImg{
/*  max-width: 80%;*/
}



/* SECLOGO
------------------------------------------------------------*/
.seclogo{
  background: #EDEFEF;
}
/* SEC02
------------------------------------------------------------*/
.sec02{
  /*background: #CCFFFF;*/
}
/* SEC03
------------------------------------------------------------*/
.sec03{
  /*background: #CCFFCC;*/
  background: #EDEFEF;
}
/* sec04
------------------------------------------------------------*/
.sec04{
  /*background: #CCFF99;*/
}
/* sec05
------------------------------------------------------------*/
.sec05{
  /*background: #CCFF66;*/
  background: #EDEFEF;
}
/* sec06
------------------------------------------------------------*/
.sec06{
  /*background: #CCFF33;*/
}
/* sec07
------------------------------------------------------------*/
.sec07{
  /*background: #CCCCFF;*/
  background: #EDEFEF;
  h3 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
  }
    h3 br {
      display: none;
    }
  @media screen and (max-width: 480px) {
    h3 br {
      display: block;
    }
  }

}
/* sec08
------------------------------------------------------------*/
.sec08{
  /*background: #CCCCFF;*/

}
/* sec09
------------------------------------------------------------*/
.sec09{
  /*background: #CCCCFF;*/
  background: #EDEFEF;
}
/* sec10
------------------------------------------------------------*/
.sec10{
  margin-top: 2%;
  margin-bottom: 2%;
}
/* sec11
------------------------------------------------------------*/
.sec11{
  /*background: #CCCCFF;*/
  background: #EDEFEF;
}

/* section
------------------------------------------------------------*/
section {
clear:both;
}
.innerS{
/*上　左右　下*/
padding: 1% 8% 10%;
}

/* コンテナー
------------------------------------------------------------*/
.container01{
    width: 68%;
    margin:  0 auto;
}

.container02{
  display: flex;
  margin: 1% 8%;
  justify-content: space-around;
  align-items:center;
}
.container02_tokucho{
  display: flex;
  margin: 1% 8%;
  justify-content: space-around;
  align-items:center;

}
.item{
  width: 50%;
  margin: 0% 2%;
}

.container02_component{
  margin: 1% 20%;
  display: flex;
}
.container02_component.item{
  margin: 0%;
}
.container02_component .item_text{
  width: 100%;
  margin: 0%;
}

.container03{
  display: flex;
  flex-wrap: wrap;
  margin: 5% 9%;
  justify-content: space-around;
  align-content: space-around;
}
.container03 .item{
  width: 27%;
  margin: 3%;
  margin:  0 auto;
}
.container03 .item .itemlist{
  font-size: 80%;
  margin-top: 2%;
  margin-left: 10%;
}
.container03_fushiyo{
  display: flex;
  flex-wrap: wrap;
  /*上　右　下 左*/
  margin: 9% 9% 0% 9%;
  justify-content: space-around;
  align-content: space-around;
  height: auto;
  align-items: flex-start;
}
.container04{
  display: flex;
  flex-wrap: nowrap;
  margin: 9%;
  justify-content: space-around;
}
.container04 .item{
  text-align: center;
}

h1 {
  /*上　右　下 左*/
  padding: 0% 0% 0% 2%;
}
h2{
  display:inline-block;
  font-size: 200%;
  background-color:  #1C4369;
  color: #ffffff;
  /*上下 左右*/
  padding: 1% 2%;
}
/* サークル付き
------------------------------------------------------------*/
h3.check:before {
  content: "check!";
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1C4369;
  color: #FFFFFF;
  text-align:center;
  font-size: 97%;
  transform: rotate(-12deg);
  line-height: 70px;
  margin-right: 10px;
}

div.s10 {
  position: relative;
  border-top: solid 2px #80c8d1;
  border-bottom: solid 2px #80c8d1;
  background: #f4f4f4;
  line-height: 1.4;
  padding: 0.4em 0.5em;
  margin: 2em 0 0.5em;
}

div.s10:after {
  /*タブ*/
  position: absolute;
  content: '10秒';
  background: #80c8d1;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 5px 7px 3px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.kome{
  font-size: 70%;
}

p.kome_review{
  font-size: 70%;
  text-align:center;
}

.list{
  line-height: 3.2em;
}
ul.list{
  margin-left: 20%;
}
div.green_txt{
  text-align: center;
}
.green p{
  font-size: 110%;
  font-weight: bold;
  text-align: center;
  /*上下　左右*/
  margin: 5% 0;
}
.green ul{
  margin-left: 25%;
  margin-bottom: 10%
}
dl.seibun{
  /*上下　左右*/
  margin: 5% 0;
}
.seibun dt{
  font-size: 110%;
  font-weight: bold;
  /*上下　左右*/
  margin: 2% 0;
}
.seibun dd{
  /*上下　左右*/
  margin: 0 2%;
}
.seibun li{
  display: inline;
}
ul.seibunhoka{
  margin: 0 5%;
}
.seibunhoka li{
display: inline;
}

div.fushiyo{
  display:inline-block;
  /*上、右、下、左*/
  margin: 5% 2% 0% 2%;
  /*上下　左右*/
  padding: 0.5% 1%;
  background-color:  #1C4369;
  color: #ffffff;

}
ul.fushiyo{
  font-size: 80%;
  /*上下　左右*/
  margin: 0 5%;
}
ul.fushiyo li{
  display: inline;
}
img.fushiyo{
  width: 900px;
}
/*PC用画像を表示*/
img.fushiyo_pc {
   display: block !important;
  }
img.fushiyo_sp {
   display: none !important;
  }

span.no-wrap{
  white-space: nowrap;
}
.container02_component li:before{
  content:"・";
}

.media-link {
  text-align: center;
  margin-top: 40px;
}

div.subTitle{
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}
/* レビュー
------------------------------------------------------------*/
.review{
  display: flex;
  align-items: center;
  margin-top: 10%;
}
.reviewer{
    background-image:url(../images/reviewer01.png);             /* 画像のURLを指定       */
    background-repeat:  no-repeat;                /* 画像の繰り返しを指定  */
    background-position: center center;                    /* 画像の横・縦の位置を指定*/
    width: auto;                                   /* 横幅のサイズを指定    */
    height: 150pX;                                 /* 縦幅のサイズを指定    */
}
.reviewer p{
  padding-top: 150px;
  font-size: 80%;
  width: 160px;
  text-align:center;
}
.reviewcomment {
    position: relative;
    background: #e0edff;
    border-radius: 15px;
    padding: 2%;
  }

  .reviewcomment:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #e0edff;
  }



/* Q&A
------------------------------------------------------------*/
dl.faq dt:before{
  font-size: 2em;
  margin-right: .5em;
}

dl.faq dd:before{
  font-size: 1.7em;
  margin-right: .5em;
}
dl.faq dt:before{
  content:"Q.";
}
dl.faq dd:before{
  content:"A.";
}
dl.faq dd{
  margin-left: 0%;
  margin-bottom: 5%
}
dl.faq dt{
  font-weight: bolder;
}

/*newsの行間隔
------------------------------------------------------------*/
dl.news dt{
    padding-top: 5%;
}

p.links{
  display:inline-block;
  font-size: 80%;
  background-color:  #1C4369;
  color: #ffffff;
  /*上下 左右*/
  padding: 0.5% 1%;
}
/* 販売サイトへのリンクカード
------------------------------------------------------------*/
.card {
  text-align : center;
  margin: 0 auto;
  width: 350px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
  margin-top: 4%;
}
.card-img {
  border-radius: 5px 5px 0 0;
  max-width: 100%;
  height: auto;
}
.card-content {
  padding: 20px;
}
.card-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}
.card-text {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
}
.card-link {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 20px;
}
.card-link a {
  text-decoration: none;
  color: #0bd;
  margin: 0 10px;
}
.card-link a:hover {
  color: #0090aa;
}

/*購入ボタン
------------------------------------------------------------*/
.raised2{
  display: inline-block;
  background-color: #26a69b;/*背景色*/
  color: #FFFFFF;/*文字色*/
  font-size: 1em;/*文字サイズ*/
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.05em;/*字間*/
  padding: 1em 2em;/*ボタン内の余白*/
  border-radius: 3px;/*角の丸み*/
    cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);/*影*/
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;/*変化を緩やかに*/
}
a.raised2:link, a.raised2:visited, a.raised2:hover, a.raised2:active {
  color: #FFFFFF;
}
.raised2:hover{
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);/*浮き上がるように*/
}


/*ページ内リンクの調整用
------------------------------------------------------------*/
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/*フェードインエフェクト
------------------------------------------------------------*/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 900ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

div.privacypolicy{
  padding-top:  5%;
  text-align: center;
  font-size: 250%;
}
/* フッター
------------------------------------------------------------*/
footer {
    background: #FFFFFF;
    text-align: center;
    padding: 26px 0;
}
footer p {
    color: #1C4369;
    font-size: 0.875rem;
}
div.logo_concept{
  font-style:italic;
  font-size: 80%
}
div.logo_concept_txt{
  font-size: 55%;
  /*[上下][左右]*/
  margin: 1% 0%;
}
div.pagelinks{
  font-size: 90%;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 50px;
  background: #d3d3d3;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* Icons */

	ul.icons {
		cursor: default;
		list-style: none;
		padding-left: 0;
	}

		ul.icons li {
			display: inline-block;
			padding: 0 1em 0 0;
		}

			ul.icons li:last-child {
				padding-right: 0;
			}

			ul.icons li .icon:before {
				font-size: 1.25em;
			}

			ul.icons li a {
				color: inherit;
			}

div.sns{
  letter-spacing:0.2em;
}

img.sns {
width: 35px;
height: 35px;
margin: 0px 5px 0px;
}

/*----------------------------------------------------------*/
/* RESPONSIVE 設定
------------------------------------------------------------*/

/*　画面サイズ 480pxまで適用　iphone小さい方 */
@media screen and (max-width: 480px) {

  html {
      font-size: 80%;
  }
  /* コンテナー
------------------------------------------------------------*/
  .container01{
      width: 95%;
      margin:  0 auto;
  }

  .container02{
    flex-direction: column;
    align-items: center;
    margin: 5% auto;
  }
  .container02_tokucho{
    flex-direction:column-reverse;
    align-items: center;
    margin: 5% auto;
  }

  .item{
    width: 85%;
    margin: 0%;
  }

  .container02_component{
    margin: 9% auto;
    /*margin: 1% auto;
    display: flex;*/

  }
  .container02_component .item .conImg{

  }
  .container02_component.item{

  }
  .container02_component .item_text{

  }

  .container03{
    display: flex;
    flex-direction: column;
    margin: 2%;
  }
  .container03 .item{
    width: 100%;
    margin: 3%;
    margin:  0 auto;
    margin-top: 10%;
  }

  .container03 .item .itemlist{
    font-size: 80%;
    margin-top: 2%;
    margin-left: 10%;
  }
  .container04{
    display: grid;
    grid-template-columns: 1fr 1fr;

  }
  .container04 .item{
    margin: 0% 7%;
    text-align: center;
  }



  div.rogen_kana{
    font-size: 65%;
    margin-left: 10px;
    margin-top: 15px;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px; /* クリックしやすいようにちゃんと幅を指定する */
    height: 70px; /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
  }

  header.sec{
        text-align: center;
        /*上　左右　下*/
        padding: 4% 1% 2%;
  }

  div.shoppingcart{
  margin-top: 15px;
  color: #ffffff;
  margin-left: auto;
  padding-right: 55px;
  font-size: 80%
  }

  .shoppingcart a:link { /*アクセスしたことのないリンク*/
  color:#ffffff;
  }
  .shoppingcart a:visited { /*アクセスしたことのあるリンク*/
  color:#ffffff;
  }
h2{
  margin-top: 10%;
  font-size: 180%;
}

img.fushiyo{
  width: 900px;
  height: auto;
}
/*スマホ用画像を表示*/
img.fushiyo_pc {
   display: none !important;
  }
img.fushiyo_sp {
   display: block !important;
  }

  /* サークル付き
  ------------------------------------------------------------*/
  h3.check:before {
    content: "check!";
    display: inline-block;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #1C4369;
    color: #FFFFFF;
    text-align:center;
    font-size: 32%;
    transform: rotate(-12deg);
    line-height: 23px;
    margin-right: 10px;
  }

  div.logo_concept{
    font-style:italic;
    font-size: 70%
  }
  div.logo_concept_txt{
    font-size: 55%;
    /*[上下][左右]*/
    margin: 1% 0%;
  }

  .main_txt {/*親div*/
    position: relative;/*相対配置*/
    }

  .main_txt p {
    position: absolute;/*絶対配置*/
    /*font-size: 120%;*/
    font-size: 2.4vw;
    color: white;/*文字は白に*/
    background: #1C4369;
    padding:   0.5% 1%; /*[上下][左右]*/
    top: 35%;
    left: 12%;
    }

  .main_txt img {
    width: 100%;
    }
    .list{
      line-height: 250%;
    }
    ul.list{
      margin-left: 10%;
    }
    ol.list{
      margin-left: 10%;
    }
    div.privacypolicy{
      padding-top:  5%;
      text-align: center;
      font-size: 200%;
    }

    /* レビュー
    ------------------------------------------------------------*/
    .review{
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      /* 上下  左右 */
      margin: 15% 0;
    }
    .reviewer{
        background-image:url(../images/reviewer01.png);             /* 画像のURLを指定       */
        background-repeat:  no-repeat;                /* 画像の繰り返しを指定  */
        background-position: center center;                    /* 画像の横・縦の位置を指定*/
        width: auto;                                   /* 横幅のサイズを指定    */
        height: 150pX;                                 /* 縦幅のサイズを指定    */
        margin-top: 10px;
    }
    .reviewer p{
      padding-top: 150px;
      font-size: 95%;
      width: 160px;
      text-align:center;
    }

    .reviewcomment {
      position: relative;
      background: #e0edff;
      border-radius: 15px;
      padding: 5%;
    }

    .reviewcomment:before {
    content: "";
    position: absolute;
    top: 103%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #e0edff;
    }

    /*
    .reviewcomment {
        position: relative;
        background: #e0edff;
        border-radius: 15px;
        padding: 2%;
      }

      .reviewcomment:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -15px;
        border: 15px solid transparent;
        border-top:  15px solid #e0edff;
      }
*/


}


.container01.-abokado {
  text-align: center;
}
.container01.-abokado .item{
  margin: 0px auto;
}
.container03.-plantStemCells {
  background: #fff;
  box-sizing: border-box;
  padding: 60px 30px 30px;
  position: relative;
}
.plantStemCellsCatch {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.abokadoCatch {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin: 20px 0 10px;
}
@media screen and (max-width: 480px) {
  .container03.-plantStemCells {
    padding: 10px 20px 20px;
  }
  .plantStemCellsCatch {
    margin: 0;
  }
  .container01.-abokado {
    margin-bottom: 50px;
  }
  .plantStemCellsCatch {
    font-size: 24px;
  }
  .abokadoCatch {
    font-size: 24px;
  }
}