@charset "UTF-8";
/*=============================================
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;
  }
}
/*=============================================
reset addition
==============================================*/
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: #330000;
  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);
  }
}

@media screen and (max-width: 1400px){
.header-brand {
  height: 85px;
}
}


.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: 3%;
}
.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;
}

@media screen and (max-width: 450px) {
.header__nav-list-sp {
  padding: 190px 30px 0 30px;
}
}

.header__nav-list-sp-item {
  color: #fff;
  margin-right: auto;
  margin-bottom: 20px;
		font-size: 90%;
}
.header__nav-list-sp-item:last-child {
  /*margin-left: 46px;*/
  margin-bottom: 0;
}
.header__nav-list-sp-item:first-child {
  width: 100%;
		font-size: 110%;
}
.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%;
}
@media screen and (max-width: 450px) {
.header__nav-list-sp.active {
  top: 0;
  left: 15%;
}
}
.header__nav-list-pc {
  display: none;
}

/*=====================================
hamburger2
======================================*/
.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
======================================*/
.link-jump {
  padding-top: 65px;
  margin-top: -65px;
}

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

/*=====================================
modal
======================================*/
#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;
}

/*=====================================
modal_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;
}

/*=====================================
modal_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;
}

/*=====================================
modal_sp_under320px
======================================*/
@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%;
  }
}
/*=====================================
modal_pc_over_1200px
======================================*/
/*=====================================
mv
======================================*/
.mv {
  margin-top: 60px;
}
.mv__img-pc {
  display: none;
}

/*=====================================
intro
======================================*/
.intro {
  background-color: #F9E3BA;
}
.intro__inner {
  max-width: 100%;
  margin: 0 auto;
}
.intro__img-pc {
  display: none;
}

.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;
}

@media screen and (min-width: 505px) {
  .link-btn-sp-br {
    display: none;
  }
}
/*===============================================
product-info
================================================*/
.product-info {
  /*background-color: #F8F6F4;*/
		background-color: #FFF3D8;
}
.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;
		color: #330000;
}
.product-info__sp-txt {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-top: 16px;
  color: #330000;
  /*font-weight: bold;*/
}

/*===============================================
purchase
================================================*/
.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
======================================*/
.shop-btn-sp {
  position: relative;
}
.shop-btn-sp__img {
  position: fixed;
  top: 59%;
  right: 0;
  width: 70px;
		z-index: 10;
}



@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: 15px;
    font-weight: bold;
    margin-left: 10px;
				line-height: 1.2;
  }
		
@media screen and (min-width: 931px) and (max-width: 1030px){
  .header__nav-list-pc-item {
		white-space: nowrap;
  }
}
		
@media screen and (min-width: 861px) and (max-width: 1030px){
  .header__nav-list-pc-item {
		font-size: 14px;
		text-align: center;
  }
}
		
@media screen and (min-width: 768px) and (max-width: 860px){
  .header__nav-list-pc-item {
		font-size: 13px;
		text-align: center;
		margin-left: 8px;
  }
}
		
  .header__nav-list-pc-item:first-child {
    margin-left: 0;
  }
		
  .header__nav-list-pc-item br.small_pc {
		display: none;
  }
		
@media screen and (min-width: 861px) and (max-width: 1000px){
  .header__nav-list-pc-item br.small_pc {
		display: block;
  }
}

.header__nav-list-pc-item-btn {
    margin-left: 8px;
				/*overflow: hidden;*/
				display: flex;
				justify-content: center;
				max-width: 140px;
				height: 85px;
  }
		
@media screen and (min-width: 768px) and (max-width: 860px){
.header__nav-list-pc-item-btn {
    margin-left: 8px;
				/*overflow: hidden;*/
				display: flex;
				justify-content: center;
				max-width: 120px;
				height: 85px;
  }
}

  .header__nav-list-pc-item-btn a {
  }

@media screen and (min-width: 861px){
  .header__nav-list-pc-item-btn a {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 100%;
				height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 860px){
  .header__nav-list-pc-item-btn a {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 100%;
				height: 100%;
  }
}

  .header__nav-list-pc-item-btn-img-tab {
    /*width: 130px;*/
    /*max-width: 130px;*/
    /*max-width: 140px;
				height: 85px;*/
  }
		
@media screen and (min-width: 881px){
  .header__nav-list-pc-item-btn-img-tab {
				width: 100%;
				height: 100%;
  }
}

@media screen and (min-width: 861px) and (max-width: 880px){
  .header__nav-list-pc-item-btn-img-tab {
  }
}


@media screen and (min-width: 768px) and (max-width: 860px){
  .header__nav-list-pc-item-btn-img-tab {
				width: auto;
				height: 100%;
				max-width: none;
  }
}

  .header__nav-list-pc-item-btn-img-tab.large {
		display: block;
  }

@media screen and (min-width: 768px) and (max-width: 860px){
  .header__nav-list-pc-item-btn-img-tab.large {
		display: none;
  }
}

  .header__nav-list-pc-item-btn-img-tab.small {
		display: none;
  }

@media screen and (min-width: 768px) and (max-width: 860px){
  .header__nav-list-pc-item-btn-img-tab.small {
		display: block;
  }
}


  .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/zakkoku/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: 0;
    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;
				width: calc(100% - 142px);
		  color: #330000;
  }
  .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;*/
				color: #330000;
    /*font-weight: bold;*/
    font-size: 15px;
    margin-top: 15px;
  }
		
		
  .product-info__pc-media-desc-dl-list-sec-dt.long {
    width: 50%;
  }
  .product-info__pc-media-desc-dl-list-sec-dd.long {
				width: 50%;
  }
		
		
		
  /*===============================================
  縲舌♀雋ｷ縺�ｱゅａ縺ｯ縺薙■繧峨�
  ================================================*/
  .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%;
  }
}
/*=====================================
縲娠C逕ｨ縲�
======================================*/
@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: 16px;
    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 */




/*=====================================
1401over
======================================*/
@media screen and (min-width: 1401px) {
  .header__nav {
    position: static;
				height: 85px;
  }
}

@media screen and (min-width: 1401px) {
  .header__nav-list-pc {
    height: 85px;
  }
}

@media screen and (min-width: 1401px) {
  .header__nav-list-pc-item-btn-img-tab.large {
		display: none;
  }
}

@media screen and (min-width: 1401px) {
  .header__nav-list-pc-item-btn-img-tab.small {
		display: none;
  }
}


@media screen and (min-width: 768px) {
  .header__nav-list-pc-item-btn-img-tab.x-large {
  display: block;
  }
}

@media screen and (max-width: 767px) {
  .header__nav-list-pc-item-btn-img-tab.x-large {
  display: none;
  }
}

.header__nav-list-pc-item-btn-img-tab {
}

@media screen and (min-width: 768px) {
  .header__nav-list-pc-item-btn-img-tab {
  width: 130px;
		height: 85px;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-list-pc-item-btn {
		max-width: none;
   width: 130px;
		 height: 85px;
  }
}

@media screen and (min-width: 1401px) {
  .header__logo-ttl {
    width: 230px;
				padding-top: 7px;
  }
}

@media screen and (min-width: 1331px) and (max-width: 1400px) {
  .header__logo-ttl {
    width: 210px;
				padding-top: 7px;
				
  }
}

@media screen and (min-width: 1201px) and (max-width: 1330px) {
  .header__logo-ttl {
    width: 200px;
				padding-top: 7px;
  }
}

@media screen and (min-width: 1180px) and (max-width: 1200px) {
  .header__logo-ttl {
    width: 180px;
				padding-top: 7px;
  }
}

@media screen and (min-width: 1180px) {
   .header__logo {
    align-items: center;
  }
}

@media screen and (min-width: 1401px) {
  .mv {
    margin-top: 85px;
  }
}

@media screen and (max-width: 1400px) {
  .mv {
    margin-top: 85px;
  }
}

@media screen and (min-width: 1241px) {
  .header__nav-list-pc-item {
    font-size: 17px;
  }
}






