@charset "UTF-8";
/* CSS Document */
@import url("bootstrap.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

#main {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.75;
}

.content {
  padding: 2em;
}

article p {
  padding-bottom: 20px;
}

section {
  margin-bottom: 2rem;
}

.section-title {
  padding-bottom: 40px;
}

/*----------------------------------
# Header
----------------------------------*/
header h1 {
  margin-bottom: 0 !important;
}

/*----------------------------------
# Section Theme
----------------------------------*/
section.Theme {
  border-radius: .375rem;
  background-color: #f5f1df;
  padding-top: 5rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  section.Theme {
    padding: 3rem 2rem 1rem;
  }
}

section.Theme h3 {
  position: relative;
  z-index: 1;
  font-family: 'Noto Sans JP', sans-serif;
  color: #865b3f;
  font-size: 1.75rem;
}
section.Theme h3:before {
  position: absolute;
  content: '';
  top: calc(50% - 2px);
  width: 100%;
  height: 6px;
  border-top: solid 2px #865b3f;
  z-index: -2;
}
section.Theme h3 span {
  background-color: #f5f1df;
  padding-right: 10px;
}

section.Theme .section-title {
  border-bottom: solid 2px #865b3f;
  padding-bottom: 0;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 576px) {
  section.Theme .section-title {
    margin-bottom: 30px;
  }
}

section.Theme .section-title::before {
  content: '';
  display: inline-block;
  width: 22%;
  height: 140px;
  background-image: url(../images/icon-from.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 15%;
  z-index: 3;
}
@media screen and (max-width: 576px) {
  section.Theme .section-title::before {
    width: 20%;
    top: 1%;
  }
}

section.Theme .section-title h2 {
  margin: 0;
  font-size: 36px;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 3rem;
}
@media screen and (max-width: 780px) {
  section.Theme .section-title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 428px) {
  section.Theme .section-title h2 {
    font-size: 18px;
    margin: 2.4rem 0;
  }
}


/*----------------------------------
# Section Ingredient
----------------------------------*/
section.Ingredient {
  padding-top: 5rem;
}
@media screen and (max-width: 576px) {
  section.Ingredient {
  }
}

section.Ingredient .section-title h2 {
  padding: 1rem 2rem;
  border-left: 6px solid #c8a825;
  font-size: 36px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 428px) {
  section.Ingredient .section-title h2 {
    font-size: 20px;
  }
}

section.Ingredient .section-title h2 span {
  display: block;
  margin-bottom: .3em;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 428px) {
  section.Ingredient .section-title h2 span {
    font-size: 18px;
  }
}

section.Ingredient h3 {
  padding: .6rem .5rem;
  background-color: rgba(200, 168, 37, .2);
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 768px) {
  section.Ingredient h3 {
    margin-top: 1em;
  }
}

/* 材料リスト */
ul.ingredient-list {
  padding-left: 0;
}
@media screen and (max-width: 576px) {
  ul.ingredient-list {
    padding-left: 0;
    padding-right: 0;
  }
}
.ingredient-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #ccc;
  color: #000;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  padding: 10px 0;
}
.ingredient-list li .name {
  margin-right: 10px;
}
.ingredient-list li .serving {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  word-break: keep-all;
}
.ingredient-list li.ingredient-group {
  padding: 5px 0;
}
.ingredient-list li ul.ingredient-list-inner {
  width: 100%;
}


/*----------------------------------
# Section Recipe
----------------------------------*/
section.Recipe {
  margin-bottom: 6rem;
}
section.Recipe h3 {
  padding: .8rem .5rem;
  background-color: rgba(200, 168, 37, .2);
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  section.Recipe h3 {
    margin-top: 1em;
  }
}

/* Recipe List */
.circle-number {
  width: 25px;
  height: 25px;
  line-height: 23px;
  background-color: #f2973a;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  display: inline-block;
}
.circle-number-2 {
  width: 20px;
  height: 20px;
  line-height: 18px;
  background-color: #f2973a;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  display: inline-block;
}

.recipe-photo {
  width: 100%;
  text-align: center;
}
.recipe-photo img {
  width: 80%;
}

@media screen and (max-width: 428px) {
  .recipe-photo img {
    width: 100%;
  }
}

/*----------------------------------
# Section PresentCampaign
----------------------------------*/
section.PresentCampaign {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media screen and (min-width: 428px) {
  section.PresentCampaign {
	text-align: center;
  }
}

section.PresentCampaign a.btn-PresentCampaign {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  position: relative;
  background: #fff;
  border: 3px solid #e8380d;
  border-radius: 35px;
  box-sizing: border-box;
  padding: 25px 45px 25px 25px;
  color: #e8380d;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 513px) {
  section.PresentCampaign a.btn-PresentCampaign {
	text-align: center;
	border-radius: 50px;
	font-size: 17px;
	padding: 20px 40px 20px 20px;
  }
}
section.PresentCampaign a.btn-PresentCampaign:before {
  content: '';
  width: 13px;
  height: 13px;
  border: 0;
  border-top: 3px solid #e8380d;
  border-right: 3px solid #e8380d;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
@media screen and (max-width: 513px) {
  section.PresentCampaign a.btn-PresentCampaign:before {
	right: 20px;
  }
}

section.PresentCampaign a.btn-PresentCampaign:hover {
  background: #fff;
  border: 3px solid #FF8C00;
  color: #FF8C00;
}
section.PresentCampaign a.btn-PresentCampaign:hover:before {
  border-top: 3px solid #FF8C00;
  border-right: 3px solid #FF8C00;
}
@media screen and (min-width: 514px) {
  section.PresentCampaign br {
	display: none;
  }
}


/*----------------------------------
# Section Arrange
----------------------------------*/
section.Arrange {
  margin-bottom: 4rem;
}
section.Arrange .arrange-wrap {
  background-color: rgba(200, 168, 37, .1);
  padding: 3rem 1rem;
  border-radius: .375rem;
}
@media screen and (max-width: 768px) {
  section.Arrange .arrange-wrap {
    padding: 3rem 3rem;
  }
}

section.Arrange p {
  font-size: 1.5rem;
  padding-bottom: 0;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}


/*----------------------------------
# Section Genmai
----------------------------------*/
section.Genmai {
  background-color: #feefe5;
  border-radius: .375rem;
  padding: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  section.Genmai {
    padding: 3rem 2rem;
  }
}

section.Genmai .section-title h2 {
  background-color: #e8380d;
  color: #fff;
  padding: 1rem 3rem;
  display: inline-block;
  border-radius: 25px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  section.Genmai .section-title h2 {
    width: 100%;
    text-align: center;
  }
}

section.Genmai .section-title h2 span {
  font-size: 1.7rem;
}

section.Genmai .attention-box {
  display: flex;
}
@media screen and (max-width: 767px) {
  section.Genmai .attention-box {
    display: inherit;
  }
}
section.Genmai .attention-box .icon {
  max-width: 100px;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  section.Genmai .attention-box .icon {
    float: left;
  }
}



/*----------------------------------
# Section Note
----------------------------------*/
.Note ol {
  counter-reset: listnum;
  list-style: none;
  padding: 0;
  margin: 0;
}
.Note li {
  line-height: 1.7;
  font-size: .8125em;
  padding-left: 33px;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
.Note li::before {
  counter-increment: listnum;
  content: "※" counter(listnum) "：";
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0;
}

/*----------------------------------
# Section Trial Products
----------------------------------*/
section.TrialProducts {
  background-color: #feefe5;
  border-radius: .375rem;
  padding: 2rem 2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 576px) {
  section.TrialProducts {
	padding: 0 1rem;
  }
}

/* Button */
section.TrialProducts a.btn {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2rem 1.5rem 2rem 0;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 2px solid #e8380d;
  color: #e8380d;
  width: 100%;
}
@media screen and (max-width: 576px) {
  section.TrialProducts a.btn {
	font-size: 2rem;
    padding: 2rem 1.5rem 2rem 0;
  }
}
section.TrialProducts a.btn:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: 2px solid #e8380d;
  border-right: 2px solid #e8380d;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
section.TrialProducts a.btn:hover:before {
  border-top: 2px solid #FF8C00;
  border-right: 2px solid #FF8C00;
}
section.TrialProducts a.btn:hover {
  background-color: #fff;
  border: 2px solid #FF8C00;
  color: #FF8C00;
}



/*----------------------------------
# Section Inquiry
----------------------------------*/
section.Inquiry {
  padding: 2rem 2rem 0;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 0;
}

section.Inquiry h3 {
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  section.Inquiry h3 {
    position: relative;
    display: inline-block;
    height: 44px;
    padding: 1rem .5rem 1rem 1.2rem;
    color: #fff;
    background: #875f44;
    margin-bottom: 0;
    border-radius: .375rem;
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
	  text-align: center;
  }	
}
@media screen and (max-width: 991px) {
  section.Inquiry h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 1em;
    padding: 1rem;
    width: 100%;
    color: #fff;
    background: #fa4141;
    font-size: 1.5rem;
    border-radius: .375rem;
  }
}
@media screen and (max-width: 576px) {
  section.Inquiry h3 {
	font-size: 1.2rem;
  }
}
@media screen and (min-width: 514px) {
  section.Inquiry h3 br {
	display: none;
  }
}
/* Button */
section.Inquiry a.btn {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2rem 1.5rem 2rem 0;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  width: 100%;
}
@media screen and (max-width: 576px) {
  section.Inquiry a.btn {
	font-size: 2rem;
    padding: 2rem 1.5rem 2rem 0;
  }
}
section.Inquiry a.btn:before {
  content: '';
  width: 11px;
  height: 11px;
  border: 0;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
section.Inquiry a.btn:hover:before {
  border-top: 2px solid #875f44;
  border-right: 2px solid #875f44;
}
section.Inquiry a.btn:hover {
  background-color: #fff;
  border: 2px solid #875f44;
  color: #875f44;
}


/*----------------------------------
# Section Information
----------------------------------*/
section.Information {
  background-color: #fcc80e;
  border-radius: .375rem;
  padding: 2.5rem 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  section.Information {
	padding: 2rem 1rem;
  }
}

section.Information p {
  font-size: 18px;
	line-height: 1.2;
}
section.Information p span {
  font-size: 12px;
  line-height: 1.0;
}

section.Information h3 {
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  section.Information h3 {
    position: relative;
    display: inline-block;
    height: 44px;
    padding: 1rem .5rem 1rem 1.2rem;
    color: #fff;
    background: #fa4141;
    margin-bottom: 1.5rem;
    border-radius: .375rem;
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  section.Information h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 1em;
    padding: 1rem;
    width: 100%;
    color: #fff;
    background: #fa4141;
    font-size: 1.5rem;
    border-radius: .375rem;
  }
}
@media screen and (max-width: 576px) {
  section.Information h3 {
	font-size: 1.2rem;
  }
}
@media screen and (min-width: 514px) {
  section.Information h3 br {
	display: none;
  }
}


/* Button */
section.Information a.btn {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2rem 1.5rem 2rem 0;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  section.Information a.btn {
	font-size: 1.5rem;
    padding: 2rem 1.5rem 2rem 0;
    margin-bottom: 2rem;
  }
}
section.Information a.btn:before {
  content: '';
  width: 11px;
  height: 11px;
  border: 0;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
section.Information a.btn:hover:before {
  border-top: 2px solid #fa4141;
  border-right: 2px solid #fa4141;
}
section.Information a.btn:hover {
  background-color: #fff;
  border: 2px solid #fa4141;
  color: #fa4141;
}


/*----------------------------------
# common
----------------------------------*/
.col-15, .col-sm-15, .col-md-15, .col-lg-15 {
	position: relative;
	min-height: 1px;
	width: 100%;
}
@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
.col-15{
  width: 20%;
  flex: 0 0 20%;
}

@media (max-width: 767px) {
  .col-sm-15 {
    width: 50%;
    flex: 0 0 auto;
  }
}




