@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  color: #333;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}
body * {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

p {
  margin-bottom: 1.5em;
}
p:last-of-type {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/*---------------------------------------------------------------
基本レイアウト
---------------------------------------------------------------*/
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .blContainer {
    width: 92%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .blContainer {
    width: 95%;
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }
}

.pageContainer {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .pageContainer {
    display: block;
  }
}
.pageContainer__main {
  flex: 1 1 800px;
  margin-right: 80px;
}
@media screen and (max-width: 1200px) {
  .pageContainer__main {
    width: 100%;
    flex-wrap: wrap;
  }
}
.pageContainer__sidebar {
  flex: 1 1 320px;
}
@media screen and (max-width: 1200px) {
  .pageContainer__sidebar {
    width: 100%;
  }
}

/*====================================================================
tab-----CSS(SCSS)
======================================================================*/
@media screen and (max-width: 767px) { 
/* メインビジュアル */
.mainVisual{
  background-image: url(../img/mainVisual.png);
  /* max-height:100%; */
  height: 300px;

  display: flex;
  align-items: flex-end; /* 縦方向：下に寄せる */


}

.mainVisual__item{

}
.mainVisual__logo img{
  width: 70px;
  height: auto;
}
.mainVisual__logo{
  position: fixed;
  top: 0px;      /* 上から */
  left: 40px;     /* 左から */
  width: 200px;   /* ロゴサイズ調整 */ 
}

.mainVisual__zyusyo{
  text-align: right;
  padding-bottom: 2rem;
}
.mainVisual__zyusyo img{
  text-align: right;
   width: 300px;
  height: auto;
}





/* 新発売 */
.shinhatsubai{
  background-image: url(../img/sinhatsubai.png);
  height: 330px;
  margin-top: 0;
  display: flex;
  align-items: flex-start; /* 縦方向：下に寄せる */
}

.shinhatsubai_block {
  position: relative;
  width: auto;              /* ← 100%をやめる */
  max-width: 600px;
  width: 95%;
  background-color: rgba(227, 168, 173, 0.9);
  padding: 1rem;
  margin: 0 auto;           /* ← 強制的に中央 */
  box-sizing: border-box;   /* ← 超重要 */
}
.shinhatsubai_block::before{
  content: "";
  position: absolute;
  top: -6px;      /* 外側に出す距離 */
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 4px solid rgba(227, 168, 173, 0.9);     /* 外枠 */
  pointer-events: none;
}

.shinhatsubai_imgBlock_1_taitle{
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.shinhatsubai_imgBlock_1_text{
  display: flex;
  width: 100%;
  justify-content: center;
  margin: auto;
}

.shinhatsubai_imgBlock_1_text_1{
  position: relative;
  width: 100%;
  background-color: #fff; /* 半透明 */
  padding: 0.5rem;
  margin: 0.5rem;
  border-radius: 999px;
  text-align: center;
}

.shinhatsubai_imgBlock_1_text_1 span{
 font-size: 1.5rem;
 font-weight: bold;
}



.shinhatsubai_block_text_1{
  padding-top: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}

.shinhatsubai_block_text_2{
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
  color: #ff9;
  text-shadow: 1px 1px 1px #292929;
}

/* 国際特許も取得した特殊加工について */
.topWT{
  margin-top: 5rem;
  
}
.toptopWT__Taitl{
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.2;
}
.toptopWT__Taitl span{
  color: #e3a8ad;
}

.toptopWT__item{
  margin-top: 3rem;
  display: block;
}

.toptopWT__imgblock{
  width: 100%;
  margin: auto;
}

.toptopWT__imgblock img{
  width: 100%;
  margin: auto;

}

.toptopWT__taxtblock{
    width: 100%;
     margin: auto;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Super Brown Rice Powder（超高水圧加工玄米粉）とは */
.SuperBrownRicePowde{
  margin-top: 5rem;
}

.SuperBrownRicePowde__inner{
  display: block;
  border: 2px solid #292929;
  padding: 1rem 2rem;;
}

.SuperBrownRicePowde_tatle{
  font-size:1.3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;

}

.SuperBrownRicePowde_block{
  margin-top: 0rem;
  display: block;
  align-items: start;
  padding: 0rem 0rem;;
}
.SuperBrownRicePowde_logo{
  display: none;
}

.SuperBrownRicePowde_text__1{
  margin-left: 0rem;
  margin-top: 1rem;
}

.SuperBrownRicePowde_text span{
  font-weight: bold;
}

/* Super Brown Rice Powder 文字のみ */
.SuperBrownRicePowde_text{
  margin-top: 5rem;
}

.SuperBrownRicePowde_text__inner{
 line-height: 1.1;
}
.SuperBrownRicePowde_text_1{
    text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: end;
}
.SuperBrownRicePowde_text_1 span{
    text-align: center;
  font-size: 4rem;
  font-weight: bold;
}

/* 特徴 */
.tokutyo{
  background-color: #f0d5d2;
  margin-top: 5rem;
}

.tokutyo__block_1{
line-height: 0.7;
}

.tokutyo__text{
    padding-top: 2rem;
    font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.tokutyo__text span{

}

.tokutyo__imgText img{
  padding-top: 3rem;
  align-items: center;
  margin: auto;

}

.tokutyo__img{
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.tokutyo__img img{
  width: 600px;      /* 好きなサイズに変更 */
  height: auto;      /* 縦横比を保つ（重要） */
}

.tokutyo__imgText_1{
    font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: #292929;
}

.tokutyo__block_2_title{
  margin-top: 3rem;
  margin-bottom: 0rem;
  font-size: 2rem;
  font-weight: bold;
  color: #292929;
  border-left: 10px solid #fff;
  padding-left: 1rem;
}


.tokutyo__block_3{
  display: block;
  width: 100%;
justify-content: center;
align-items: center;
}

.tokutyo__block_3_text_1_tatle{
    font-size: 1.5rem;
  font-weight: bold;
  color: #292929;
}

.tokutyo__block_3_text_1 span{
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

.tokutyo__block_3_text_1{
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding-bottom: 1rem;
  width: 100%;
}

.tokutyo__block_3_text_1_text span{
  font-weight: bold;
}

.tokutyo__block_3_img{
  width: 100%;
  margin-right: 0px;
  padding-left: 0rem;
  text-align: center;
  display: none;
}

.tokutyo__block_3_img img{
   width: auto;      /* 好きなサイズに変更 */
  height: 400px;      /* 縦横比を保つ（重要） */
  padding-left: 0rem;
}

.tokutyo__space{
  padding: 1rem;
}

.tokutyo__block_3_imgR{
  padding-right: 0rem;
  width: auto;      /* 好きなサイズに変更 */
  height: 400px;      /* 縦横比を保つ（重要） */
  display: none;
}

.tokutyo__block_3_text_1_text_sp{
  display: block;
  margin-top: 1rem;
}

.tokutyo__block_3_text_1_text_sp span{
  font-weight: bold;
}

.tokutyo__block_3_text_1_text{
  display: none;
}

.tokutyo__block_3_img_sp{
  display: block;
  width: 100%;
  margin-right: 0px;
  padding-left: 0rem;
  text-align: center;
}

.tokutyo__block_3_img_sp img{
   width: auto;      /* 好きなサイズに変更 */
  height: 300px;      /* 縦横比を保つ（重要） */
  padding-left: 0rem;
}

/* riyou */

.riyou{
    margin-top: 5rem;
}
.riyou_tatle{
  color: #e3a8ad;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.riyou_tatle span{
  font-size: 2rem;
}

.riyou_imgBlock{
  display: inline-block;
}

.riyou_imgBlock_1{
  background-image: url(../img/riyou_1.png);
  background-size: cover;
  background-position: center;
  height: 500px;

  display: flex;              /* ← 超重要 */
  align-items: flex-end;      /* 下に寄せる */
  
  border: 5px solid gray;
  box-shadow: 4px 4px 4px #292929;
}

.riyou_imgBlock_1_1{
  background-image: url(../img/riyou_2.png);
  background-size: cover;
  background-position: center;
  height: 500px;

  display: flex;              /* ← 超重要 */
  align-items: flex-end;      /* 下に寄せる */
  
  border: 5px solid gray;
  box-shadow: 4px 4px 4px #292929;
}

.riyou_imgBlock_1_2{
  background-image: url(../img/riyou_3.png);
  background-size: cover;
  background-position: center;
  height: 500px;

  display: flex;              /* ← 超重要 */
  align-items: flex-end;      /* 下に寄せる */
  
  border: 5px solid gray;
  box-shadow: 4px 4px 4px #292929;
}

.riyou_imgBlock_2{
  display: block;
  background-color: #e3a8ad;
}

.riyou_imgBlock_1_taitle{
    color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.riyou_imgBlock_1_text{
  line-height: 1.2;
}

.riyou_textBox {
  position: relative;
  width: 100%;
  background-color: rgba(227, 168, 173, 0.9); /* 半透明 */
  padding: 1rem;
  margin: 1rem;
}
.riyou_textBox::before{
  content: "";
  position: absolute;
  top: -6px;      /* 外側に出す距離 */
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 4px solid rgba(227, 168, 173, 0.9);     /* 外枠 */
  pointer-events: none;
}

/* 商品情報 */
.product{
  margin-top: 5rem;
}

.product__inner{
  display: block;
  border: 2px solid #292929;
  padding: 0.3rem 0rem;
}

.product_tatle{
  font-size: 1.3rem;
  font-weight: bold;
  text-align: start;

}

.product_img img{
  width: 400px;
}

.product_block{
  margin-top: 1rem;
  display: block;
  text-align: start;
  align-items: center;
  padding: 0rem 0.5rem;;
}
.product_tatle{
  margin-left: 1rem;
}
.product_text{
  margin-left: 1rem;
}

.product_text span{
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
}

/* 購入方法 */
.buy_box{
   margin-top: 5rem;
}

.buy_box_tatle{
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.buy_box_block{
  display: block;
  width: 100%;
  padding-top: 2rem;
  align-items: center;
}

.buy_box_block_img{
 width: 100%;
 text-align: center;
 
}

.buy_box_block_img img{
  width: 100%;
  text-align: center;
}

.buy_box_block_text{
  width: 100%;
  align-items: center;
  font-size: 1.2rem;
}

.buy_box_block_text span{
  font-weight: bold;
}

.buy_box_map{
  margin-top: 2rem;
  margin-bottom: 0rem;
}

.buy_box_map{
  display: none;
}

.buy_box_map_sp{
  display: block;
}



/* フッター */

.footer{
  background: rgba(227, 168, 173, 0.9);
  margin-top: 2rem;
  margin-left: 0;
  margin-right: 0;
  width: auto;
}

.footer_block{
text-align: center;
padding: 1rem;
color: #fff;
}

.footer__company{
 font-weight: bold;
 font-size: 1.5rem;
 color: #fff;
}

}
/*# sourceMappingURL=sp.css.map