@charset "UTF-8";
/*=============================================
【リセットCSS__A Modern CSS Reset】
==============================================*/
*****,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*=============================================
【リセットCSS__ここから追記部分】
==============================================*/
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  all: unset;
}

input {
  margin: 0;
}

/*=====================================
【共通_base】
======================================*/
body {
  font-family: "Kiwi Maru", serif;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}
body.scroll-stop {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.main {
  overflow: hidden;
}

/*=====================================
【header】
======================================*/
.header-brand {
  z-index:30!important;
  left: 0;
  width: 100%;
  height: 85px;
  background: #FEEBBE;
  transform: translateY(0);
  position: fixed;
  top: clamp(53.125px, 7.0833333333vw, 136px);
  transition: transform 0.3s ease-in;
  transform: translateY(0);
  opacity: 1;

  /*=====================================
  【ハンバーガーメニュー部分①】
  ======================================*/
}
.header-brand.is-hide {
  transform: translateY(-100%);
  z-index: 0;
  opacity: 0;
}

@media screen and (max-width: 750px){
  .header-brand {
    top: clamp(68px,18.1333333333vw,136px);
  }
}

.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.header__logo-img {
  display: block;
  width: 36%;
  margin-right: 7%;
}
.header__logo-ttl {
  display: block;
  width: 36%;
}
.header__hm-icon {
  position: absolute;
  z-index: 100;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5%;
}
.header__hm-icon-border {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #4A1F0A;
  border-radius: 5px;
  margin-top: 6px;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}
.header__hm-icon-border:first-child {
  margin-top: 0;
}
.header__hm-icon:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.header__nav {
  position: fixed;
  z-index: 90;
}
.header__nav-list-sp {
  position: fixed;
  z-index: 90;
  width: 100%;
  top: clamp(53.125px, 7.0833333333vw, 136px);
  height: calc( 100vh - clamp(53.125px, 7.0833333333vw, 136px));
  left: 100%;
  background-color: #89602E;
  padding: 100px 0px 0 30px;
  font-weight: bold;
  text-align: left;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__nav-list-sp-item {
  color: #fff;
  margin-right: auto;
  margin-bottom: 20px;
}
.header__nav-list-sp-item:last-child {
  margin-left: 46px;
  margin-bottom: 0;
}
.header__nav-list-sp-item:first-child {
  width: 127px;
}
.header__nav-list-sp-item:nth-child(2) {
  margin-left: -17px;
}
.header__nav-list-sp-item:nth-child(3) {
  margin-left: -17px;
}
.header__nav-list-sp-item-icon {
  display: inline-block;
  width: 16px;
  margin-left: 8px;
}
.header__nav-list-sp.active {
  top: 0;
  left: 40%;
}
.header__nav-list-pc {
  display: none;
}

/*=====================================
【ハンバーガーメニュー部分②】
======================================*/
.menu-open .header__hm-icon-border {
  background-color: #fff;
  opacity: 1;
}
.menu-open .header__hm-icon-border:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(405deg);
          transform: translateY(9px) rotate(405deg);
}
.menu-open .header__hm-icon-border:nth-child(2) {
  -webkit-transform: translateX(-9px) scaleX(0);
          transform: translateX(-9px) scaleX(0);
}
.menu-open .header__hm-icon-border:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-405deg);
          transform: translateY(-9px) rotate(-405deg);
}

/*=====================================
【ページ内リンク部分】
======================================*/
.link-jump {
  padding-top: 85px;
  margin-top: -85px;
}

/*=====================================
【フッター】
======================================*/
.footer {
  background-color: #89602E;
}
.footer__inner {
  padding: 14px 30px;
  text-align: center;
  font-size: 11px;
  color: #fff;
}

/*=====================================
【モーダルウィンドウ】
======================================*/
#js-modal-mask {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
#js-modal-mask.hidden {
  display: none;
}
#js-modal-mask:hover {
  cursor: pointer;
}

/*=====================================
【PC用】
======================================*/
#modal-pc-01 {
  position: fixed;
  width: 53vw;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-pc-01.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-pc-02 {
  position: fixed;
  width: 53vw;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-pc-02.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-pc-03 {
  position: fixed;
  width: 53vw;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-pc-03.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-pc-04 {
  position: fixed;
  width: 53vw;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-pc-04.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-pc-05 {
  position: fixed;
  width: 53vw;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-pc-05.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-pc-06 {
  position: fixed;
  width: 53vw;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-pc-06.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}

#modal-close-pc-01 {
  position: fixed;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-pc-01.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-pc-01:hover {
  cursor: pointer;
}
#modal-close-pc-02 {
  position: fixed;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-pc-02.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-pc-02:hover {
  cursor: pointer;
}
#modal-close-pc-03 {
  position: fixed;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-pc-03.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-pc-03:hover {
  cursor: pointer;
}
#modal-close-pc-04 {
  position: fixed;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-pc-04.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-pc-04:hover {
  cursor: pointer;
}
#modal-close-pc-05 {
  position: fixed;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-pc-05.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-pc-05:hover {
  cursor: pointer;
}
#modal-close-pc-06 {
  position: fixed;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-pc-06.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-pc-06:hover {
  cursor: pointer;
}

/*=====================================
【SP用】
======================================*/
.modal-sp {
  position: relative;
}

#modal-sp-01 {
  position: fixed;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow-y: scroll;
  width: 300px;
  height: 75vh;
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-sp-01.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-sp-02 {
  position: fixed;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow-y: scroll;
  width: 300px;
  height: 75vh;
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-sp-02.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-sp-03 {
  position: fixed;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow-y: scroll;
  width: 300px;
  height: 75vh;
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-sp-03.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-sp-04 {
  position: fixed;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow-y: scroll;
  width: 300px;
  height: 75vh;
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-sp-04.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-sp-05 {
  position: fixed;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow-y: scroll;
  width: 300px;
  height: 75vh;
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-sp-05.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}
#modal-sp-06 {
  position: fixed;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow-y: scroll;
  width: 300px;
  height: 75vh;
  z-index: 200;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#modal-sp-06.hidden {
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
  opacity: 0;
}

#modal-close-sp-01 {
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 42px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-sp-01.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-sp-01:hover {
  cursor: pointer;
}
#modal-close-sp-02 {
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 42px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-sp-02.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-sp-02:hover {
  cursor: pointer;
}
#modal-close-sp-03 {
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 42px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-sp-03.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-sp-03:hover {
  cursor: pointer;
}
#modal-close-sp-04 {
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 42px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-sp-04.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-sp-04:hover {
  cursor: pointer;
}
#modal-close-sp-05 {
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 42px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-sp-05.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-sp-05:hover {
  cursor: pointer;
}
#modal-close-sp-06 {
  position: fixed;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 42px;
  z-index: 200;
  font-size: 30px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  overflow: hidden;
}
#modal-close-sp-06.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10000000px);
          transform: translateY(-10000000px);
}
#modal-close-sp-06:hover {
  cursor: pointer;
}

/*=====================================
【横幅320pxより小さい時__スマホ用】
======================================*/
@media screen and (max-width: 340px) {
  #modal-sp-01 {
    width: 280px;
  }
  #modal-sp-02 {
    width: 280px;
  }
  #modal-sp-03 {
    width: 280px;
  }
  #modal-sp-04 {
    width: 280px;
  }
  #modal-sp-05 {
    width: 280px;
  }
  #modal-sp-06 {
    width: 280px;
  }
  #modal-close-sp-01 {
    bottom: 3%;
  }
  #modal-close-sp-02 {
    bottom: 3%;
  }
  #modal-close-sp-03 {
    bottom: 3%;
  }
  #modal-close-sp-04 {
    bottom: 3%;
  }
  #modal-close-sp-05 {
    bottom: 3%;
  }
  #modal-close-sp-06 {
    bottom: 3%;
  }
}
/*=====================================
【横幅1200pxより大きい時__PC用】
======================================*/
/*=====================================
【メインビジュアル】
======================================*/
.mv {
  margin-top: 80px;
}
.mv__img-pc {
  display: none;
}

/*=====================================
【イントロ部分】
======================================*/
.intro {
  background-color: #FDF7EF;
}
.intro__inner {
  max-width: 500px;
  margin: 0 auto;
}
.intro__img-pc {
  display: none;
}

/*=====================================
【ここが嬉しい！3つのポイント】
======================================*/
.three-point {
  background-image: url('../../../img/product/softbran/3-point-bg-sp.png');
}
.three-point__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
}
.three-point__ttl {
  max-width: 500px;
}
.three-point__ttl-pc {
  display: none;
}
.three-point__list-item {
  margin-top: 24px;
}
.three-point__list-item-img-pc {
  display: none;
}
.three-point__list-item-txt {
  margin-top: 8px;
}
.three-point__list-item-label {
  margin-top: 12px;
  width: 100%;
  background-color: #A37D4F;
  color: #fff;
  padding: 16px;
  text-align: center;
  border-radius: 10px;
}

/*=====================================
【400pxより大きい時__スマホ用】
======================================*/
@media screen and (min-width: 400px) {
  .three-point__list-item-label-item-02 {
    display: inline-block;
  }
}
/*=====================================
【はじめる玄米 つづける玄米 ページ内リンク】
======================================*/
.link-btn {
  margin-top: 0px;
}
.link-btn__sec.bg-red {
  background-color: #D55A39;
}
.link-btn__sec.bg-green {
  background-color: #9BA839;
}
.link-btn__sec-inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
}
.link-btn__sec-ttl-pc {
  display: none;
}
.link-btn__sec-list {
  margin-top: 30px;
}
.link-btn__sec-list-item-link {
  padding: 20px 20px 20px 20px;
  background-color: #FDF2EF;
  border-radius: 50px;
  position: relative;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #D55A39;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
  text-align: center;
}
.link-btn__sec-list-item-link:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.link-btn__sec-list-item-link.txt-green {
  color: #9BA839;
  background-color: #FDFDF2;
}
.link-btn__sec-list-item-icon {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}

/*=====================================
【505pxより大きい時__スマホ用】
======================================*/
@media screen and (min-width: 505px) {
  .link-btn-sp-br {
    display: none;
  }
}
/*=====================================
【はじめる玄米01__玄米って何がいいの？】
======================================*/
.start-genmai-01 {
  background-color: #FCF4F2;
}
.start-genmai-01__pc {
  display: none;
}
.start-genmai-01__inner {
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.start-genmai-01__sp-txt {
  margin-top: 16px;
}
.start-genmai-01__sp-img-01 {
  margin-top: 16px;
}
.start-genmai-01__sp-img-02 {
  margin-top: 24px;
}
.start-genmai-01__sp-txt-annotation {
  margin-top: 8px;
}
.start-genmai-01__sp-txt-annotation-txt {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 12px;
}

/*===============================================
【はじめる玄米02__ソフトブラン玄米って玄米と何が違うの？】
================================================*/
.start-genmai-02 {
  background-color: #D55A39;
}
.start-genmai-02__inner {
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.start-genmai-02__pc {
  display: none;
}
.start-genmai-02__sp-txt {
  color: #fff;
  margin-top: 16px;
}
.start-genmai-02__sp-img-01 {
  margin-top: 16px;
}
.start-genmai-02__sp-img-02 {
  margin-top: 16px;
}

/*===============================================
【はじめる玄米03__玄米っておいしいの？】
================================================*/
.start-genmai-03 {
  background-color: #FDF2EF;
}
.start-genmai-03__inner {
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.start-genmai-03__pc {
  display: none;
}
.start-genmai-03__sp-txt {
  margin-top: 16px;
}
.start-genmai-03__sp-img-01 {
  margin-top: 16px;
}
.start-genmai-03__sp-recipe {
  margin-top: 40px;
  text-align: center;
}
.start-genmai-03__sp-recipe-btn {
  width: 60%;
  margin-top: 20px;
  background-color: #D55A39;
  color: #fff;
  border-radius: 25px;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
  position: relative;
}
.start-genmai-03__sp-recipe-btn::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.start-genmai-03__sp-recipe-btn:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.start-genmai-03__sp-recipe-img-02 {
  margin-top: 32px;
}
.start-genmai-03__sp-recipe-btn-arrange {
  width: 100%;
  margin-top: 40px;
  line-height: 1.2;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #D55A39;
  color: #D55A39;
  border-radius: 50px;
  padding: 16px 0;
  display: inline-block;
  text-align: center;
  position: relative;
}
.start-genmai-03__sp-recipe-btn-arrange::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #D55A39;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -9px;
}
.start-genmai-03__sp-recipe-btn-arrange::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 26px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.start-genmai-03__sp-recipe-btn-arrange:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #D55A39;
  color: #fff;
}
.start-genmai-03__sp-recipe-btn-arrange:hover::after {
  border-bottom: solid 2px #D55A39;
  border-right: solid 2px #D55A39;
}
.start-genmai-03__sp-recipe-btn-arrange:hover::before {
  background-color: #fff;
}

/*=====================================
【360pxより小さい時__スマホ用】
======================================*/
@media screen and (max-width: 359px) {
  .start-genmai-03__recipe-btn-arrange-02 {
    display: block;
  }
}
/*===============================================
【続ける玄米01__安心して続けられる国産米】
================================================*/
.continuing-genmai-01 {
  background-color: #9BA839;
}
.continuing-genmai-01__inner {
  padding: 40px 20px 0;
  max-width: 500px;
  margin: 0 auto;
}
.continuing-genmai-01__pc {
  display: none;
}
.continuing-genmai-01__pc-img-03 {
  display: none;
}
.continuing-genmai-01__sp-img-01 {
  margin-top: 20px;
}
.continuing-genmai-01__sp-img-02 {
  width: 64%;
  margin: 20px auto 0;
}
.continuing-genmai-01__sp-txt {
  margin-top: 16px;
  color: #fff;
}
.continuing-genmai-01__sp-tab-img-03 {
  margin-top: 20px;
}

/*===============================================
【続ける玄米02__炊くだけ!続けられる簡単アレンジレシピ】
================================================*/
.continuing-genmai-02 {
  background-color: #FDFDF2;
}
.continuing-genmai-02__inner {
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.continuing-genmai-02__pc {
  display: none;
}
.continuing-genmai-02__sp-recipe {
  margin-top: 40px;
  text-align: center;
}
.continuing-genmai-02__sp-recipe-btn {
  width: 60%;
  display: inline-block;
  margin-top: 20px;
  background-color: #D55A39;
  color: #fff;
  border-radius: 25px;
  padding: 8px 0;
  display: inline-block;
  text-align: center;
  position: relative;
  background-color: #9BA839;
}
.continuing-genmai-02__sp-recipe-btn::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.continuing-genmai-02__sp-recipe-btn:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.continuing-genmai-02__sp-recipe-img-02 {
  margin-top: 32px;
}
.continuing-genmai-02__sp-recipe-img-03 {
  margin-top: 32px;
}
.continuing-genmai-02__sp-recipe-img-04 {
  margin-top: 32px;
}
.continuing-genmai-02__sp-recipe-btn-arrange {
  width: 100%;
  margin-top: 40px;
  display: inline-block;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #9BA839;
  color: #9BA839;
  border-radius: 50px;
  padding: 16px 0;
  text-align: center;
  position: relative;
}
.continuing-genmai-02__sp-recipe-btn-arrange::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #9BA839;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -9px;
}
.continuing-genmai-02__sp-recipe-btn-arrange::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  position: absolute;
  top: 54%;
  right: 26px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.continuing-genmai-02__sp-recipe-btn-arrange:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #9BA839;
  color: #fff;
}
.continuing-genmai-02__sp-recipe-btn-arrange:hover::after {
  border-top: solid 2px #9BA839;
  border-left: solid 2px #9BA839;
}
.continuing-genmai-02__sp-recipe-btn-arrange:hover::before {
  background-color: #fff;
}

/*=====================================
【360pxより小さい時__スマホ用】
======================================*/
@media screen and (max-width: 359px) {
  .continuing-genmai-02__recipe-btn-arrange-02 {
    display: block;
  }
}
/*===============================================
【商品情報】
================================================*/
.product-info {
  background-color: #F8F6F4;
}
.product-info__inner {
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.product-info__pc {
  display: none;
}
.product-info__sp-img {
  width: 64%;
  margin: 40px auto 0;
}
.product-info__sp-dl-list:first-of-type {
  margin-top: 32px;
}
.product-info__sp-dl-list-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #A2A2A2;
  border-left: 1px solid #A2A2A2;
}
.product-info__sp-dl-list-sec:last-child {
  border-bottom: 1px solid #A2A2A2;
}
.product-info__sp-dl-list-sec-dt {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #89602E;
  width: 50%;
  text-align: center;
  padding: 8px 0;
  color: #fff;
  font-weight: bold;
}
.product-info__sp-dl-list-sec-dd {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  width: 50%;
  text-align: left;
  padding: 8px 16px;
}
.product-info__sp-txt {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-top: 16px;
  color: #89602E;
  font-weight: bold;
}

/*===============================================
【お買い求めはこちら】
================================================*/
.purchase__inner {
  padding: 30px 20px 50px;
  max-width: 500px;
  margin: 0 auto;
}
.purchase__ttl {
  display: block;
  margin: 0 auto;
}
.purchase__link {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.purchase__link-btn {
  width: 40%;
}
.purchase__link-btn.l-target {
  margin: 24px auto 0;
  width: 50%;
}
.purchase__link-btn:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}

/*=====================================
【スマホ用_お買い求めはこちらボタン】
======================================*/
.shop-btn-sp {
  position: relative;
}
.shop-btn-sp__img {
  position: fixed;
  top: 59%;
  right: 0;
  width: 70px;
}

/*=====================================
【タブレット用】
======================================*/
@media screen and (min-width: 768px) {
  /*=====================================
  【ヘッダー】
  ======================================*/
  .header__inner {
    padding: 0px 0px 0px 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header__hm-icon {
    display: none;
  }
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
  }
  .header__logo-img {
    width: 108px;
    margin-right: 8px;
  }
  .header__logo-ttl {
    width: 96px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
  }
  .header__nav {
    position: static;
  }
  .header__nav-list-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav-list-pc-item {
    color: #4A1F0A;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
  }
  .header__nav-list-pc-item:first-child {
    margin-left: 0;
  }
  .header__nav-list-pc-item-btn {
    margin-left: 8px;
  }
  .header__nav-list-pc-item-btn-img-tab {
    width: 130px;
  }
  .header__nav-list-pc-item-btn-img-pc {
    display: none;
  }
  /*=====================================
  【メインビジュアル】
  ======================================*/
  .mv__img-sp {
    display: none;
  }
  .mv__img-pc {
    display: block;
  }
  /*=====================================
  【イントロ部分】
  ======================================*/
  .intro__inner {
    max-width: 1280px;
  }
  .intro__img-sp {
    display: none;
  }
  .intro__img-pc {
    display: block;
  }
  /*=====================================
  【ここが嬉しい！3つのポイント】
  ======================================*/
  .three-point__inner {
    max-width: 1128px;
    padding: 100px 20px;
  }
  .three-point__ttl-sp {
    display: none;
  }
  .three-point__ttl-pc {
    display: block;
    width: 660px;
    margin: 0 auto;
  }
  .three-point__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .three-point__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 31%;
  }
  .three-point__list-item-img-pc {
    display: block;
  }
  .three-point__list-item-img-sp {
    display: none;
  }
  .three-point__list-item-txt {
    margin-bottom: 20px;
  }
  .three-point__list-item-label {
    margin-top: auto;
    font-size: 15px;
  }
  .three-point__list-item-label-item-02 {
    display: inline-block;
  }
  /*=====================================
  【はじめる玄米 つづける玄米 ページ内リンク】
  ======================================*/
  .link-btn {
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url('../../../img/product/softbran/link-btn-bg.png');
    background-size: cover;
  }
  .link-btn-sp-br {
    display: block;
  }
  .link-btn__sec-inner {
    max-width: 1128px;
  }
  .link-btn__sec-ttl-sp {
    display: none;
  }
  .link-btn__sec-ttl-pc {
    display: block;
    max-width: 507px;
    height: 126px;
  }
  /*=====================================
  【はじめる玄米01__玄米って何がいいの？】
  ======================================*/
  .start-genmai-01 {
    position: relative;
    z-index: -1;
  }
  .start-genmai-01__inner {
    position: relative;
    max-width: 1087px;
  }
  .start-genmai-01__sp {
    display: none;
  }
  .start-genmai-01__pc {
    display: block;
  }
  .start-genmai-01__pc-bg-img {
    position: absolute;
    z-index: -1;
    top: 100px;
    left: -6%;
    width: 38.5%;
    max-width: 491px;
  }
  .start-genmai-01__pc-ttl {
    max-width: 871px;
    margin: 0 auto;
  }
  .start-genmai-01__pc-txt {
    max-width: 66%;
    font-size: 17px;
    margin-top: 24px;
    margin-left: auto;
  }
  .start-genmai-01__pc-img-01 {
    max-width: 66%;
    margin-top: 40px;
    margin-left: auto;
  }
  .start-genmai-01__pc-img-02 {
    max-width: 1087px;
    margin: 80px auto 0;
  }
  /*===============================================
  【はじめる玄米02__ソフトブラン玄米って玄米と何が違うの？】
  ================================================*/
  .start-genmai-02__inner {
    padding: 104px 20px 78px;
    max-width: 1123px;
    margin: 0 auto;
    position: relative;
  }
  .start-genmai-02__sp {
    display: none;
  }
  .start-genmai-02__pc {
    display: block;
    overflow-x: hidden;
  }
  .start-genmai-02__pc-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
  .start-genmai-02__pc-main-info {
    width: 100%;
  }
  .start-genmai-02__pc-main-info-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
  .start-genmai-02__pc-main-info-media:first-of-type {
    margin-top: 0px;
  }
  .start-genmai-02__pc-main-info-media-txt {
    font-size: 19px;
    color: #fff;
  }
  .start-genmai-02__pc-main-info-media-txt.l-first {
    margin-right: 20px;
  }
  .start-genmai-02__pc-main-info-media-txt.l-second {
    margin-left: 20px;
  }
  .start-genmai-02__pc-main-info-media-img {
    width: 40%;
  }
  .start-genmai-02__pc-main-info-img {
    margin-top: 40px;
    width: 80%;
  }
  .start-genmai-02__pc-main-img {
    width: 40%;
    position: absolute;
    bottom: 0;
    right: -10%;
  }
  /*===============================================
  【はじめる玄米03__玄米っておいしいの？】
  ================================================*/
  .start-genmai-03__inner {
    padding: 90px 20px 100px;
    max-width: 985px;
  }
  .start-genmai-03__sp {
    display: none;
  }
  .start-genmai-03__pc {
    display: block;
  }
  .start-genmai-03__pc-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 89.5%;
    margin: 30px auto 0;
  }
  .start-genmai-03__pc-media-icon {
    width: 126px;
    margin-right: 40px;
  }
  .start-genmai-03__pc-summary-img {
    width: 713px;
    margin: 40px auto 0;
  }
  .start-genmai-03__pc-ttl-img-02 {
    margin-top: 108px;
  }
  .start-genmai-03__pc-recipe {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .start-genmai-03__pc-recipe-sec {
    width: 47%;
    text-align: center;
  }
  .start-genmai-03__pc-recipe-sec-btn {
    background-color: #D55A39;
    color: #fff;
    border-radius: 25px;
    padding: 8px 0;
    display: inline-block;
    text-align: center;
    position: relative;
    width: 54%;
    margin-top: 24px;
  }
  .start-genmai-03__pc-recipe-sec-btn::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 20px;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 6px;
    height: 6px;
  }
  .start-genmai-03__pc-recipe-sec-btn:hover {
    opacity: 0.5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .start-genmai-03__pc-recipe-sec-btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .start-genmai-03__pc-recipe-btn-arrange {
    background-color: #fff;
    border: 1px solid #D55A39;
    color: #D55A39;
    border-radius: 50px;
    padding: 16px 0;
    display: inline-block;
    text-align: center;
    position: relative;
    font-size: 24px;
    display: block;
    width: 447px;
    margin: 56px auto 0;
    line-height: 1.2;
  }
  .start-genmai-03__pc-recipe-btn-arrange::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #D55A39;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -9px;
  }
  .start-genmai-03__pc-recipe-btn-arrange::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 26px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .start-genmai-03__pc-recipe-btn-arrange:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #D55A39;
    color: #fff;
  }
  .start-genmai-03__pc-recipe-btn-arrange:hover::after {
    border-bottom: solid 2px #D55A39;
    border-right: solid 2px #D55A39;
  }
  .start-genmai-03__pc-recipe-btn-arrange:hover::before {
    background-color: #fff;
  }
  /*===============================================
  【続ける玄米01__安心して続けられる国産米】
  ================================================*/
  .continuing-genmai-01__inner {
    padding: 90px 20px 0;
    max-width: 1110px;
    margin: 0 auto;
  }
  .continuing-genmai-01__sp {
    display: none;
  }
  .continuing-genmai-01__pc {
    display: block;
  }
  .continuing-genmai-01__pc-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 64px;
  }
  .continuing-genmai-01__pc-media.l-second {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
  }
  .continuing-genmai-01__pc-media-desc {
    width: 63%;
  }
  .continuing-genmai-01__pc-media-desc-txt {
    color: #fff;
    font-size: 14px;
  }
  .continuing-genmai-01__pc-media-desc-txt.l-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .continuing-genmai-01__pc-media-img {
    width: 33%;
  }
  .continuing-genmai-01__pc-media-img.l-second {
    position: absolute;
    top: -80%;
    left: 0;
  }
  /*===============================================
  【続ける玄米02__炊くだけ!続けられる簡単アレンジレシピ】
  ================================================*/
  .continuing-genmai-02__inner {
    padding: 90px 20px;
    max-width: 1050px;
  }
  .continuing-genmai-02__sp {
    display: none;
  }
  .continuing-genmai-02__pc {
    display: block;
    position: relative;
  }
  .continuing-genmai-02__pc-recipe {
    max-width: 985px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .continuing-genmai-02__pc-recipe-btn {
    background-color: #D55A39;
    color: #fff;
    border-radius: 25px;
    padding: 8px 0;
    display: inline-block;
    text-align: center;
    position: relative;
    background-color: #9BA839;
    width: 245px;
    margin-top: 24px;
  }
  .continuing-genmai-02__pc-recipe-btn::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 20px;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 6px;
    height: 6px;
  }
  .continuing-genmai-02__pc-recipe-btn:hover {
    opacity: 0.5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .continuing-genmai-02__pc-recipe-btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .continuing-genmai-02__pc-recipe-item {
    text-align: center;
    width: 47%;
    margin-top: 70px;
  }
  .continuing-genmai-02__pc-recipe-btn-arrange {
    display: block;
    background-color: #fff;
    border: 1px solid #9BA839;
    color: #9BA839;
    border-radius: 50px;
    padding: 16px 0;
    text-align: center;
    position: relative;
    width: 480px;
    margin: 56px auto 0;
    font-size: 24px;
  }
  .continuing-genmai-02__pc-recipe-btn-arrange::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #9BA839;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -9px;
  }
  .continuing-genmai-02__pc-recipe-btn-arrange::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    position: absolute;
    top: 54%;
    right: 26px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .continuing-genmai-02__pc-recipe-btn-arrange:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #9BA839;
    color: #fff;
  }
  .continuing-genmai-02__pc-recipe-btn-arrange:hover::after {
    border-top: solid 2px #9BA839;
    border-left: solid 2px #9BA839;
  }
  .continuing-genmai-02__pc-recipe-btn-arrange:hover::before {
    background-color: #fff;
  }
  /*===============================================
  【商品情報】
  ================================================*/
  .product-info__inner {
    padding: 74px 20px;
    max-width: 1000px;
  }
  .product-info__sp {
    display: none;
  }
  .product-info__pc {
    display: block;
  }
  .product-info__pc-ttl-img {
    width: 345px;
    margin: 0 auto;
  }
  .product-info__pc-media {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .product-info__pc-media-img {
    width: 28%;
  }
  .product-info__pc-media-desc {
    width: 68%;
  }
  .product-info__pc-media-desc-dl-list-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #A2A2A2;
    border-left: 1px solid #A2A2A2;
  }
  .product-info__pc-media-desc-dl-list-sec:last-child {
    border-bottom: 1px solid #A2A2A2;
  }
  .product-info__pc-media-desc-dl-list-sec-dt {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-color: #89602E;
    width: 142px;
    text-align: center;
    padding: 8px 0;
    color: #fff;
    font-weight: bold;
  }
  .product-info__pc-media-desc-dl-list-sec-dd {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
    text-align: left;
    padding: 8px 16px;
  }
  .product-info__pc-media-desc-dl-list-sec-dd.l-target {
    width: 85px;
  }
  .product-info__pc-media-desc-txt {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #89602E;
    font-weight: bold;
    font-size: 18px;
    margin-top: 24px;
  }
  /*===============================================
  【お買い求めはこちら】
  ================================================*/
  .purchase__inner {
    padding: 64px 0px 108px;
    max-width: 693px;
  }
  .purchase__ttl {
    width: 345px;
  }
  .purchase__link {
    margin-top: 50px;
    width: 693px;
  }
  .purchase__link-btn {
    width: 161px;
  }
  .purchase__link-btn.l-target {
    width: 161px;
    margin: 0;
  }
  /*=====================================
  【スマホ用_お買い求めはこちらボタン】
  ======================================*/
  .shop-btn-sp {
    display: none;
  }
}
/*=====================================
【900pxより大きい時__タブレット用】
======================================*/
@media screen and (min-width: 900px) {
  /*===============================================
  【はじめる玄米02__ソフトブラン玄米って玄米と何が違うの？】
  ================================================*/
  .start-genmai-02__pc-main-info-media-txt {
    font-size: 22px;
  }
  .start-genmai-02__pc-main-info-media-img {
    width: 44%;
  }
  /*===============================================
  【続ける玄米01__安心して続けられる国産米】
  ================================================*/
  .continuing-genmai-01__pc-media-desc-txt {
    font-size: 17px;
  }
  .continuing-genmai-01__pc-media-img.l-second {
    top: -40%;
  }
}
/*=====================================
【PC用】
======================================*/
@media screen and (min-width: 1180px) {
  /*=====================================
  【ヘッダー】
  ======================================*/
  .header__inner {
    padding: 20px 0px 20px 85px;
  }
  .header__logo-img {
    width: 180px;
    margin-right: 20px;
  }
  .header__logo-img:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .header__logo-ttl {
    width: 160px;
  }
  .header__logo-ttl:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .header__nav-list-pc-item {
    font-size: 17px;
    margin-left: 20px;
  }
  .header__nav-list-pc-item:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  .header__nav-list-pc-item-btn {
    margin-left: 25px;
  }
  .header__nav-list-pc-item-btn:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    cursor: pointer;
  }
  /*=====================================
  【ここが嬉しい！3つのポイント】
  ======================================*/
  .three-point__list-item-img-pc {
    height: 275px;
  }
  /*=====================================
  【はじめる玄米 つづける玄米 ページ内リンク】
  ======================================*/
  .link-btn-sp-br {
    display: none;
  }
  .link-btn__sec-inner {
    padding: 80px 48px;
  }
  /*=====================================
  【はじめる玄米01__玄米って何がいいの？】
  ======================================*/
  .start-genmai-01__inner {
    width: 1287px;
    padding: 100px 0;
  }
  .start-genmai-01__pc-bg-img {
    top: 100px;
    left: -16%;
    width: 491px;
  }
  .start-genmai-01__pc-txt {
    width: 700px;
  }
  .start-genmai-01__pc-img-01 {
    width: 700px;
  }
  .start-genmai-01__pc-img-02 {
    max-width: 1087px;
    margin: 80px auto 0;
  }
  /*===============================================
  【はじめる玄米02__ソフトブラン玄米って玄米と何が違うの？】
  ================================================*/
  .start-genmai-02__pc-main-info {
    width: 669px;
  }
  .start-genmai-02__pc-main-info-media-txt {
    font-size: 17px;
  }
  .start-genmai-02__pc-main-info-media-img {
    width: 325px;
  }
  .start-genmai-02__pc-main-info-media-img.l-second {
    width: 292px;
  }
  .start-genmai-02__pc-main-info-img {
    width: 100%;
  }
  .start-genmai-02__pc-main-img {
    width: 43%;
  }
  /*===============================================
  【続ける玄米01__安心して続けられる国産米】
  ================================================*/
  .continuing-genmai-01__sp-tab-img-03 {
    display: none;
  }
  .continuing-genmai-01__pc-img-03 {
    display: block;
    width: 100%;
    height: 367px;
    margin-top: 100px;
  }
  .continuing-genmai-01__pc-media {
    width: 1110px;
  }
  .continuing-genmai-01__pc-media-desc {
    width: 650px;
  }
  .continuing-genmai-01__pc-media-desc-txt.l-second {
    font-size: 22px;
  }
  .continuing-genmai-01__pc-media-img {
    width: 368px;
  }
}
/*=====================================
【追加修正用_スタイル】
======================================*/
.mgT10 {
  margin-top: 10px;
}

.mgT20 {
  margin-top: 20px;
}

.mgT30 {
  margin-top: 30px;
}

.mgT40 {
  margin-top: 40px;
}

.mgT50 {
  margin-top: 50px;
}

.mgR5 {
  margin-right: 5px;
}

.mgR10 {
  margin-right: 10px;
}

.mgR20 {
  margin-right: 20px;
}

.mgR30 {
  margin-right: 30px;
}

.mgB10 {
  margin-bottom: 10px;
}

.mgB20 {
  margin-bottom: 20px;
}

.mgB30 {
  margin-bottom: 30px;
}

.mgL10 {
  margin-left: -10px;
}

.mgL3 {
  margin-left: 3px;
}

.mgL5 {
  margin-left: 5px;
}

.mgL10 {
  margin-left: 10px;
}

.mgL20 {
  margin-left: 20px;
}

.mgL30 {
  margin-left: 30px;
}

.mgRL5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mgRL10 {
  margin-right: 10px;
  margin-left: 10px;
}

.pdT10 {
  padding-top: 10px;
}

.pdT20 {
  padding-top: 20px;
}

.pdT30 {
  padding-top: 30px;
}

.pdR10 {
  padding-right: 10px;
}

.pdR20 {
  padding-right: 20px;
}

.pdR30 {
  padding-right: 30px;
}

.pdB10 {
  padding-bottom: 10px;
}

.pdB20 {
  padding-bottom: 20px;
}

.pdB30 {
  padding-bottom: 30px;
}

.pdL10 {
  padding-left: 10px;
}

.pdL20 {
  padding-left: 20px;
}

.pdL30 {
  padding-left: 30px;
}

.color-222 {
  color: #222;
}

.color-D55A39 {
  color: #D55A39;
}

.txt-indent {
  text-indent: -1em;
  padding-left: 1em;
}
/*# sourceMappingURL=style.css.map */