/* petit Common Style*/

/* adjust
------------------------------------------------------------ */
body {
  overflow: hidden;
}

body.scroll01 header {
  position: relative;
}

body.scroll01 {
  padding-top: 0 !important;
}

body.scroll01 header {
  position: relative;
  padding: 20px 0 0;
  border-top-width: 5px;
}

body.scroll01 .header-unit {
  display: block !important;
}

@media only screen and (max-width: 1199px) {
  .header {
    position: absolute;
  }
}

/* helper
------------------------------------------------------------ */
@media screen and (max-width: 1200px) {
  .only-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .only-tb {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .only-tb {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .only-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .except-pc {
    display: none !important;
  }
}

@media screen
 and (min-width: 641px)
 and (max-width: 1200px) {
  .except-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .except-sp {
    display: none !important;
  }
}

/* header
------------------------------------------------------------ */
.brand-header-wrap {
  position: relative;
  height: 83px;
}

.brand-header {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 9px 0 8px;
  background-color: #fff;
}
.brand-header.is-fixed {
  position: fixed;
}
@media only screen and (max-width: 640px) {
  .brand-header {
    padding: 0 10px;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    overflow-x: auto;
  }
}

.brand-header_inner {
  position: relative;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
  padding-left: 160px;
}
@media only screen and (max-width: 640px) {
  .brand-header_inner {
    max-width: none;
    width: auto;
    padding-left: 130px;
  }
}

.brand-header_logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 160px;
}
@media only screen and (max-width: 640px) {
  .brand-header_logo {
    width: 130px;
  }
}

.brand-header_logo > a {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-header_logo > a:hover,
.brand-header_logo > a:active {
  opacity: .8;
}
@media only screen and (max-width: 640px) {
  .brand-header_logo > a:hover,
  .brand-header_logo > a:active {
    opacity: 1;
  }
}

.brand-header_logo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .brand-header_logo img {
    max-width: 76.15%;
  }
}

.brand-header_logo img:hover,
.brand-header_logo img:active {
  opacity: 1;
}

.brand-header_body {
  padding: 10px 0;
}
@media only screen and (max-width: 640px) {
  .brand-header_body {
    padding: 0;
  }
}

.brand-header_navi {
}

.brand-header_navi_inner {
  display: table;
  margin-right: 0;
  margin-left: auto;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.8) 5%);
}


/* PC: 641px and above sizeChanged */
@media only screen and (min-width: 641px) {
.item_text .item_text_title .sizeChanged {
    width: 270px !important;
  }
}




@media only screen and (max-width: 640px) {
  .brand-header_navi_inner li:nth-child(4) .brand-header_lower-navi{
    left: inherit;
    right: -66px;
  }
}

.brand-header_navi_inner.is-moving {
  cursor: w-resize;
}

.brand-header_navi_inner.is-moving a {
  pointer-events: none;
}

.brand-header_navi_inner > li {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.brand-header_navi_item {
  display: table;
  width: 100%;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .brand-header_navi_item {
    font-size: 14px;
    white-space: nowrap;
  }
}

.brand-header_navi_item a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 10px 15px;
  border-bottom: 3px solid #fff;
}
@media only screen and (max-width: 640px) {
  .brand-header_navi_item a {
    padding: 11px 9px;
  }
}

.brand-header_navi_item a:hover,
.brand-header_navi_item a:active,
.brand-header_navi_item a.is-current {
  text-decoration: none;
  border-bottom-color: #d2161a;
}

.brand-header_lower-navi {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding-top: 12px;

  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
@media only screen and (max-width: 640px) {
  .brand-header_lower-navi {
    padding-top: 0;
    overflow-y: auto;
    max-height: calc(100vh - 97px);
  }
  .is-fixed .brand-header_lower-navi {
    max-height: calc(100vh - 50px);
  }
}
.brand-header_lower-navi.is-current {
  pointer-events: auto;
  opacity: 1;
}
.brand-header_lower-navi::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 25px;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #d2161a transparent;
}
@media only screen and (max-width: 640px) {
  .brand-header_lower-navi::after {
    display: none;
  }
}

.brand-header_lower-navi_item {
  border: solid 1px #d2161a;
  border-top: none;
  font-size: 15px;
  text-align: left;
  background-color: #d2161a;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .brand-header_lower-navi_item {
    border: solid 1px #e5e5e5;
    border-top: none;
  }
}

.brand-header_lower-navi_item:first-child {
  border-top: solid 1px #d2161a;
}
@media only screen and (max-width: 640px) {
  .brand-header_lower-navi_item:first-child {
    border-top: solid 1px #d2161a;
  }
}

.brand-header_lower-navi_item > a {
  display: block;
  padding: 12px 28px 12px 12px;
  background: #d2161a url(/shared/img/svg/ar02.svg)no-repeat center right 20px;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .brand-header_lower-navi_item > a {
    padding: 10px 28px 10px 10px;
  }
}

.brand-header_lower-navi_item > a:hover,
.brand-header_lower-navi_item > a:active {
  background-color: #fff;
  background-image: url(/shared/img/svg/ar01.svg);
  color: #231815;
  text-decoration: none;
}

.brand-header_lower-navi_close {
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.5;
}

.brand-header_lower-navi_close > button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 9px 12px 10px;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  background-color: #fff;
  color: #333;
}

.brand-header_lower-navi_close {
  display: none;
}

@media only screen and (max-width: 640px) {
  .brand-header_lower-navi_close {
    display: block;
    background-color: #fff;
  }
}

.brand-header_lower-navi_close > button > span {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transform: opacity .3s ease;
}

.brand-header_lower-navi_close > button:hover,
.brand-header_lower-navi_close > button:active {
  opacity: .7;
}

.brand-header_lower-navi_close > button > span::before,
.brand-header_lower-navi_close > button > span::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: -1px;
  width: 13px;
  height: 0;
  margin: auto 0;
  border-top: 2px solid #333;
}
.brand-header_lower-navi_close > button > span::before {
  transform: rotate(45deg);
}
.brand-header_lower-navi_close > button > span::after {
  transform: rotate(-45deg);
}

/* breadcrumb
------------------------------------------------------------ */
#breadcrumb {
  margin-bottom: 0;
  padding-bottom: 15px;
  background-color: #e7e7e7;
}

/* content
------------------------------------------------------------ */
.petit-content {

}

.petit-content_inner {
  position: relative;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .petit-content_inner {
    width: 100%;
    padding: 0 15px;
  }
}

/* modules
------------------------------------------------------------ */

/* background 木目：木目のbackgroundをおくだけ（セクションとは別モジュール） */

.mod-petit-bg-wood {
  position: relative;
  padding: 60px 0 120px;
  background: url(/sp/petit/shared/img/bg-wood_bg01.jpg) repeat center top;
}
@media only screen and (max-width: 640px) {
  .mod-petit-bg-wood {
    padding: 30px 0 78px;
  }
}

/* section 木目無し：木目の無いセクション */

.mod-petit-section {
  position: relative;
  z-index: 1;
  padding-top: 65px;
  margin-top: -65px;
  border-bottom: 2px solid #222;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section {
    padding-top: 50px;
    margin-top: -50px;
  }
}
.mod-petit-section::before,
.mod-petit-section::after {
  content: '';
  display: block;
  position: absolute;
  top: 63px;
  width: calc(50% - 141px);
  height: 0;
  border-top: 2px solid #222;
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section::before,
  .mod-petit-section::after {
   top: 48px;
   width: calc(50% - 118px);
  }
}
.mod-petit-section::before {
  left: 0;
}
.mod-petit-section::after {
  right: 0;
}
.mod-petit-section_inner {
  padding: 34px 0 145px;
  background-color: #f9f5f0;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section_inner {
    padding: 30px 0 102px;
  }
}
.mod-petit-section:last-child .mod-petit-section_inner {
  padding-bottom: 100px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section:last-child .mod-petit-section_inner {
    padding-bottom: 80px;
  }
}
.mod-petit-section_inner::before,
.mod-petit-section_inner::after {
  content: '';
  display: block;
  position: absolute;
  margin: 0 auto;
  pointer-events: none;
}
.mod-petit-section_inner::before {
  z-index: -1;
  top: 0;
  left: -191px;
  right: -191px;
  box-sizing: border-box;
  width: 382px;
  height: 382px;
  border: 2px solid #222;
  border-radius: 50%;
  background-color: #f9f5f0;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section_inner::before {
    top: 0;
    left: -173px;
    right: -173px;
    width: 345px;
    height: 345px;
  }
}
.mod-petit-section_inner::after {
  top: 34px;
  left: 0;
  right: 0;
  height: 43px;
  background: url(/sp/petit/shared/img/section_inner_bg01.png) no-repeat center center / auto 100%;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section_inner::after {
    top: 30px;
    left: 0;
    right: 0;
    height: 38px;
    background-image: url(/sp/petit/shared/img/section_inner_bg01_sp.png);
  }
}

/* section theme-wood ：木目有りセクション */

.mod-petit-section.theme-wood .mod-petit-section_inner {
  background: #f9f5f0 url(/sp/petit/shared/img/bg-wood_bg01.jpg) repeat center top;
}
.mod-petit-section.theme-wood .mod-petit-section_inner::before {
  background: #f9f5f0 url(/sp/petit/shared/img/bg-wood_bg01.jpg) repeat center top 65px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section.theme-wood .mod-petit-section_inner::before {
    background-position: center top 50px;
  }
}

/* section theme-XX : その他カラバリ  */

.mod-petit-section.theme-01 {
  border-color: #9a66ad;
}
.mod-petit-section.theme-01::before,
.mod-petit-section.theme-01::after {
  border-color: #9a66ad;
}
.mod-petit-section.theme-01 .mod-petit-section_inner::before {
  border-color: #9a66ad;
}
.mod-petit-section.theme-01 .mod-petit-section_inner::after {
  background-image: url(/sp/petit/shared/img/section_inner_bg02.png);
}
@media only screen and (max-width: 640px) {
  .mod-petit-section.theme-01 .mod-petit-section_inner::after {
    background-image: url(/sp/petit/shared/img/section_inner_bg02_sp.png);
  }
}

.mod-petit-section.theme-02 {
  border-color: #3a6cb0;
}
.mod-petit-section.theme-02::before,
.mod-petit-section.theme-02::after {
  border-color: #3a6cb0;
}
.mod-petit-section.theme-02 .mod-petit-section_inner::before {
  border-color: #3a6cb0;
}
.mod-petit-section.theme-02 .mod-petit-section_inner::after {
  background-image: url(/sp/petit/shared/img/section_inner_bg03.png);
}
@media only screen and (max-width: 640px) {
  .mod-petit-section.theme-02 .mod-petit-section_inner::after {
    background-image: url(/sp/petit/shared/img/section_inner_bg03_sp.png);
  }
}

.mod-petit-section.theme-03 {
  border-color: #edb130;
}
.mod-petit-section.theme-03::before,
.mod-petit-section.theme-03::after {
  border-color: #edb130;
}
.mod-petit-section.theme-03 .mod-petit-section_inner::before {
  border-color: #edb130;
}
.mod-petit-section.theme-03 .mod-petit-section_inner::after {
  background-image: url(/sp/petit/shared/img/section_inner_bg04.png);
}
@media only screen and (max-width: 640px) {
  .mod-petit-section.theme-03 .mod-petit-section_inner::after {
    background-image: url(/sp/petit/shared/img/section_inner_bg04_sp.png);
  }
}

.mod-petit-section.theme-04 {
  border-color: #e05e17;
}
.mod-petit-section.theme-04::before,
.mod-petit-section.theme-04::after {
  border-color: #e05e17;
}
.mod-petit-section.theme-04 .mod-petit-section_inner::before {
  border-color: #e05e17;
}
.mod-petit-section.theme-04 .mod-petit-section_inner::after {
  background-image: url(/sp/petit/shared/img/section_inner_bg05.png);
}
@media only screen and (max-width: 640px) {
  .mod-petit-section.theme-04 .mod-petit-section_inner::after {
    background-image: url(/sp/petit/shared/img/section_inner_bg05_sp.png);
  }
}

.mod-petit-section.theme-05 {
  border-color: #985244;
}
.mod-petit-section.theme-05::before,
.mod-petit-section.theme-05::after {
  border-color: #985244;
}
.mod-petit-section.theme-05 .mod-petit-section_inner::before {
  border-color: #985244;
}
.mod-petit-section.theme-05 .mod-petit-section_inner::after {
  background-image: url(/sp/petit/shared/img/section_inner_bg06.png);
}
@media only screen and (max-width: 640px) {
  .mod-petit-section.theme-05 .mod-petit-section_inner::after {
    background-image: url(/sp/petit/shared/img/section_inner_bg06_sp.png);
  }
}

/* section title: 下層セクション見出し */
.mod-petit-section-title.opt-emblem {
  text-align: center;
}

.mod-petit-section-title_sub {
  text-align: center;
}
.mod-petit-section-title_main {
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title_main {
    margin-top: 16px;
  }
}
.mod-petit-section-title_main > img {
  margin-right: auto;
  margin-left: auto;
}
.mod-petit-section-title_main:first-child {
  margin-top: 0;
}

.mod-petit-section-title_main.opt-emblem {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title_main.opt-emblem {
    margin-bottom: -10px;
    padding-bottom: 92px;
  }
}
.mod-petit-section-title_main.opt-emblem:before {
  position: absolute;
  content: "";
  top: 0;
  left: -140px;
  bottom: 0;
  width: 110px;
  height: 114px;
  margin: auto;
  background: url(/sp/petit/shared/img/icon_emblem_pc.png) 0 0 no-repeat;
  background-size: 111px 114px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title_main.opt-emblem:before {
    position: absolute;
    content: "";
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 77px;
    height: 80px;
    margin: auto;
    background: url(/sp/petit/shared/img/icon_emblem_sp.png) 0 0 no-repeat;
    background-size: 77px 80px;
  }
}


/* section title 2: 下層セクション見出し2 */

.mod-petit-section-title2_sub {
  margin-top: 15px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title2_sub {
    margin-top: 3px;
  }
}
.mod-petit-section-title2_main {
  margin-top: 16px;
  font-size: 2.88rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title2_main {
    margin-top: 7px;
    font-size: 1.81rem;
  }
}
.mod-petit-section-title2_main.opt-emblem {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title2_main.opt-emblem {
    margin-bottom: -10px;
    padding-bottom: 89px;
  }
}
.mod-petit-section-title2_main.opt-emblem:before {
  position: absolute;
  content: "";
  top: 0;
  left: -126px;
  bottom: 0;
  width: 110px;
  height: 114px;
  margin: auto;
  background: url(/sp/petit/shared/img/icon_emblem_pc.png) 0 0 no-repeat;
  background-size: 111px 114px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title2_main.opt-emblem:before {
    position: absolute;
    content: "";
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 77px;
    height: 80px;
    margin: auto;
    background: url(/sp/petit/shared/img/icon_emblem_sp.png) 0 0 no-repeat;
    background-size: 77px 80px;
  }
}

/* section title 2 theme-01: 下層セクション見出し2 カラバリ */

.mod-petit-section.theme-01 .mod-petit-section-title2_main {
  color: #9a66ad;
}

.mod-petit-section.theme-02 .mod-petit-section-title2_main {
  color: #3a6cb0;
}

.mod-petit-section.theme-03 .mod-petit-section-title2_main {
  color: #edb130;
}

.mod-petit-section.theme-04 .mod-petit-section-title2_main {
  color: #e05e17;
}

.mod-petit-section.theme-05 .mod-petit-section-title2_main {
  color: #985244;
}

.mod-petit-section.theme-06 .mod-petit-section-title2_main {
  color: #222;
}

.mod-petit-section.theme-07 .mod-petit-section-title2_main {
  color: #9a66ad;
}

.mod-petit-section.theme-08 .mod-petit-section-title2_main {
  color: #4697b9;
}
.mod-petit-section.theme-09 .mod-petit-section-title2_main {
  color: #e66b8b;
}
.mod-petit-section.theme-10 .mod-petit-section-title2_main {
  color: #b63f36;
}

/* section description: 下層セクションリードテキスト */

.mod-petit-section-description {
  margin-top: 50px;
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-description {
    margin-top: 32px;
    font-size: .94rem;
  }
}
.mod-petit-section-description:first-child {
  margin-top: 0;
}
.mod-petit-section-title2 {
  text-align: center;
}
.mod-petit-section-title2 + .mod-petit-section-description {
  margin-top: 29px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-section-title2 + .mod-petit-section-description {
    margin-top: 16px;
    font-size: 1rem;
  }
}
/* page title: 下層ページ見出し */

.mod-petit-page-title {
  position: relative;
  padding: 57px 0 6px;
  background:
    url(/sp/petit/shared/img/page-title_bg01.png) no-repeat center top / 295px 53px,
    url(/sp/petit/shared/img/page-title_bg02.png) no-repeat left bottom / auto 6px,
    url(/sp/petit/shared/img/page-title_bg02.png) no-repeat right bottom / auto 6px,
    url(/sp/petit/shared/img/page-title_bg03.png) repeat-x center bottom 2px / auto 2px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-title {
    padding: 36px 0 5px;
    background:
      url(/sp/petit/shared/img/page-title_bg01_sp.png) no-repeat center top / 187px 39px,
      url(/sp/petit/shared/img/page-title_bg02.png) no-repeat left bottom / auto 5px,
      url(/sp/petit/shared/img/page-title_bg02.png) no-repeat right bottom / auto 5px,
      url(/sp/petit/shared/img/page-title_bg03.png) repeat-x center bottom 2px / auto 2px;
  }
}
.mod-petit-page-title::before,
.mod-petit-page-title::after {
  content: '';
  display: block;
  position: absolute;
  top: 51px;
  width: calc(50% - 148px);
  height: 6px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-title::before,
  .mod-petit-page-title::after {
    content: '';
    display: block;
    position: absolute;
    top: 36px;
    width: calc(50% - 94px);
    height: 5px;
  }
}
.mod-petit-page-title::before {
  left: 0;
  background:
    url(/sp/petit/shared/img/page-title_bg02.png) no-repeat left bottom / auto 6px,
    url(/sp/petit/shared/img/page-title_bg03.png) repeat-x center bottom 2px / auto 2px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-title::before {
    background-size:
      auto 5px,
      auto 2px;
  }
}
.mod-petit-page-title::after {
  right: 0;
  background:
    url(/sp/petit/shared/img/page-title_bg02.png) no-repeat right bottom / auto 6px,
    url(/sp/petit/shared/img/page-title_bg03.png) repeat-x center bottom 2px / auto 2px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-title::after {
    background-size:
      auto 5px,
      auto 2px;
  }
}
.mod-petit-page-title::before {
  right: 0;
}
.mod-petit-page-title_inner {
  padding-bottom: 33px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-title_inner {
    padding-bottom: 21px;
  }
}
.mod-petit-page-title_sub {
  text-align: center;
}
.mod-petit-page-title_main {
  margin-top: 17px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-title_main {
    margin-top: 11px;
  }
}
.mod-petit-page-title_main:first-child {
  margin-top: 0;
}

/* page description: 下層ページリードテキスト */

.mod-petit-page-description {
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: #333;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description {
    font-size: .94rem;
  }
}
.mod-petit-page-description:nth-child(n+2) {
  margin-top: 38px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description:nth-child(n+2) {
    margin-top: 36px;
  }
}
.mod-petit-page-description + .mod-petit-page-description {
  margin-top: 26px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description + .mod-petit-page-description {
    margin-top: 23px;
  }
}
.mod-petit-page-description.opt-strong + .mod-petit-page-description {
  margin-top: 19px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description.opt-strong + .mod-petit-page-description {
    margin-top: 11px;
  }
}
.mod-petit-page-description.opt-strong {
  font-size: 1.63rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  color: #d2161a;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description.opt-strong {
    font-size: 1.25rem;
  }
}
.mod-petit-page-description.opt-strong:nth-child(n+2) {
  margin-top: 34px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description.opt-strong:nth-child(n+2) {
    margin-top: 29px;
  }
}
.mod-petit-page-description + .mod-petit-page-description.opt-strong {
  margin-top: 24px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description + .mod-petit-page-description.opt-strong {
    margin-top: 20px;
  }
}
.mod-petit-page-description > em {
  font-style: normal;
  font-weight: 700;
}
.mod-petit-page-description-icon-content {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description-icon-content {
    margin-top: 35px;
  }
}
.mod-petit-page-description-content {
  margin-top: 31px;
  padding-left: 40px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description-content {
    margin-top: 20px;
    padding-left: 0;
  }
}
.mod-petit-page-description-content .mod-petit-page-description {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description-content .mod-petit-page-description {
    font-size: 15px;
  }
}
.mod-petit-page-description.opt-strong-s {
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  color: #d2161a;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description.opt-strong-s {
    font-size: 20px;
  }
}
.mod-petit-page-description.opt-emblem {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description.opt-emblem {
    display: inline-block;
    padding-top: 95px;
  }
}
.mod-petit-page-description.opt-emblem::before {
  position: absolute;
  content: "";
  top: -25px;
  left: -169px;
  bottom: 0;
  width: 127px;
  height: 127px;
  background: url(/sp/petit/shared/img/icon_emblem-2_pc.png) 0 0 no-repeat;
  background-size: 127px 127px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description.opt-emblem::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: url(/sp/petit/shared/img/icon_emblem-2_sp.png) 0 0 no-repeat;
    background-size: 80px 80px;
  }
}
.mod-petit-page-description-note {
  display: flex;
  justify-content: center;  
  margin-top: 10px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.mod-petit-page-description-note span {
  padding-right: 5px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-page-description-note {
    padding-right: 0;
    font-size: 14px;
    text-align: left;
  }
}
/* pickup: ピックアップセクション */
.mod-petit-pickup {
  margin-top: 51px;
  border-radius: 12px;
  background-color: #f9f5f0;
  overflow: hidden;
  box-shadow: 3px 9px 12px 0 rgba(0, 0, 0, .2);
}
@media only screen and (max-width: 640px) {
  .mod-petit-pickup {
    margin-top: 39px;
    border-radius: 6px;
  }
}
.mod-petit-pickup:first-child {
  margin-top: 0;
}
.mod-petit-pickup_header {
  padding: 30px 20px 79px; /* 29 + 50 */
  background-color: #de4747;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .mod-petit-pickup_header {
    padding: 25px 15px 48px; /* 25 + 23 */
  }
}
.mod-petit-pickup_header > h1,
.mod-petit-pickup_header > h2,
.mod-petit-pickup_header > h3,
.mod-petit-pickup_header > h4,
.mod-petit-pickup_header > h5,
.mod-petit-pickup_header > h6 {
  text-align: center;
}
.mod-petit-pickup_header > h1 > img,
.mod-petit-pickup_header > h2 > img,
.mod-petit-pickup_header > h3 > img,
.mod-petit-pickup_header > h4 > img,
.mod-petit-pickup_header > h5 > img,
.mod-petit-pickup_header > h6 > img {
  margin-right: auto;
  margin-left: auto;
}
.mod-petit-pickup_header.theme-01 {
  background-color: #9a66ad;
}
.mod-petit-pickup_header.theme-02 {
  background-color: #3a6cb0;
}
.mod-petit-pickup_header.theme-03 {
  background-color: #edb130;
}
.mod-petit-pickup_header.theme-04 {
  background-color: #e05e17;
}
.mod-petit-pickup_header.theme-05 {
  background-color: #985244;
}
.mod-petit-pickup_header.theme-06 {
  background: url(/sp/petit/shared/img/pickup_header_bg01.png) repeat center center;
}

.mod-petit-pickup_body {
  position: relative;
  background-color: #f9f5f0;
  padding-top: 50px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-pickup_body {
    padding-top: 23px;
  }
}
.mod-petit-pickup_body::before {
  content: '';
  display: block;
  position: absolute;
  top: -50px;
  left: -100%;
  right: -100%;
  width: 200%;
  height: 745px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #f9f5f0;
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .mod-petit-pickup_body::before {
    top: -23px;
    height: 347px;
  }
}
.mod-petit-pickup_body_inner {
  position: relative;
  margin-top: -50px;
  padding: 0 60px 60px;
}
@media only screen and (max-width: 1200px) {
  .mod-petit-pickup_body_inner {
    padding: 0 30px 40px;
  }
}
@media only screen and (max-width: 640px) {
  .mod-petit-pickup_body_inner {
    margin-top: -23px;
    padding: 0 20px 40px;
  }
}

/* button: ボタン 通常（右向き矢印アイコン） */
.mod-petit-button {
  display: flex;
  width: 100%;
  margin-top: 40px;
  border-radius: 29px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  background-color: #fff;
}
.mod-petit-button:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button {
    margin-top: 30px;
    font-size: .88rem;
  }
}
.mod-petit-button > a,
.mod-petit-button > button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 57px;
  border: 2px solid #222;
  border-radius: 29px;
  padding: 10px 30px 10px 16px;
  background-color: #fff;
  color: #222;
  text-align: center;
  transition: background-color .3s ease, color .3s ease, opacity .3s ease;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button > a,
  .mod-petit-button > button {
    min-height: 48px;
    border-radius: 24px;
    padding-right: 20px;
    padding-left: 10px;
  }
}
.mod-petit-button > a::before,
.mod-petit-button > button::before {
  content: '';
  display: block;
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  width: 8px;
  height: 12px;
  margin: auto 0;
  pointer-events: none;
  transition: background-position .3s ease;
  background: url(/sp/petit/shared/img/button_bg01.png) no-repeat right center / 300% 100%;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button > a::before,
  .mod-petit-button > button::before {
    right: 9px;
    width: 7px;
    height: 11px;
  }
}
.mod-petit-button > a:hover,
.mod-petit-button > button:hover {
  text-decoration: none;
  background-color: #222;
  color: #fff;
}
.mod-petit-button > a:hover::before,
.mod-petit-button > button:hover::before {
  background-position: left center;
}

/* button opt-icon-down : 下向き矢印アイコン */

.mod-petit-button.opt-icon-down > a::before,
.mod-petit-button.opt-icon-down > button::before {
  transform: rotate(90deg);
}

/* button opt-icon-blank : 別窓アイコン */

@media only screen and (max-width: 640px) {
  .mod-petit-button.opt-icon-blank > a,
  .mod-petit-button.opt-icon-blank > button {
    padding-right: 29px;
    padding-left: 23px;
  }
}
.mod-petit-button.opt-icon-blank > a::before,
.mod-petit-button.opt-icon-blank > button::before {
  right: 12px;
  width: 16px;
  height: 15px;
  background-image: url(/sp/petit/shared/img/button_bg03.png);
  transition: transform .3s ease;
  backface-visibility: hidden;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button.opt-icon-blank > a::before,
  .mod-petit-button.opt-icon-blank > button::before {
    width: 14px;
    height: 13px;
  }
}
.mod-petit-button.opt-icon-blank > a:hover::before,
.mod-petit-button.opt-icon-blank > button:hover::before {
  transform: translateX(-3px) translateY(-3px);
}

/* button theme-XX : カラバリ */
.mod-petit-button.theme-01 > a,
.mod-petit-button.theme-01 > button,
.mod-petit-button.theme-02 > a,
.mod-petit-button.theme-02 > button,
.mod-petit-button.theme-03 > a,
.mod-petit-button.theme-03 > button,
.mod-petit-button.theme-04 > a,
.mod-petit-button.theme-04 > button,
.mod-petit-button.theme-05 > a,
.mod-petit-button.theme-05 > button,
.mod-petit-button.theme-06 > a,
.mod-petit-button.theme-06 > button {
  color: #fff;
}
.mod-petit-button.theme-01 > a:hover,
.mod-petit-button.theme-01 > button:hover,
.mod-petit-button.theme-02 > a:hover,
.mod-petit-button.theme-02 > button:hover,
.mod-petit-button.theme-03 > a:hover,
.mod-petit-button.theme-03 > button:hover,
.mod-petit-button.theme-04 > a:hover,
.mod-petit-button.theme-04 > button:hover,
.mod-petit-button.theme-05 > a:hover,
.mod-petit-button.theme-05 > button:hover {
  opacity: .7;
}
.mod-petit-button.theme-01 > a::before,
.mod-petit-button.theme-01 > button::before,
.mod-petit-button.theme-02 > a::before,
.mod-petit-button.theme-02 > button::before,
.mod-petit-button.theme-03 > a::before,
.mod-petit-button.theme-03 > button::before,
.mod-petit-button.theme-04 > a::before,
.mod-petit-button.theme-04 > button::before,
.mod-petit-button.theme-05 > a::before,
.mod-petit-button.theme-05 > button::before,
.mod-petit-button.theme-06 > a::before,
.mod-petit-button.theme-06 > button::before {
  background-image: url(/sp/petit/shared/img/button_bg02.png);
}
.mod-petit-button.opt-icon-blank.theme-01 > a::before,
.mod-petit-button.opt-icon-blank.theme-01 > button::before,
.mod-petit-button.opt-icon-blank.theme-02 > a::before,
.mod-petit-button.opt-icon-blank.theme-02 > button::before,
.mod-petit-button.opt-icon-blank.theme-03 > a::before,
.mod-petit-button.opt-icon-blank.theme-03 > button::before,
.mod-petit-button.opt-icon-blank.theme-04 > a::before,
.mod-petit-button.opt-icon-blank.theme-04 > button::before,
.mod-petit-button.opt-icon-blank.theme-05 > a::before,
.mod-petit-button.opt-icon-blank.theme-05 > button::before,
.mod-petit-button.opt-icon-blank.theme-06 > a::before,
.mod-petit-button.opt-icon-blank.theme-06 > button::before {
  background-image: url(/sp/petit/shared/img/button_bg03.png);
  background-position: left center;
}
.mod-petit-button.theme-01 > a:hover::before,
.mod-petit-button.theme-01 > button:hover::before,
.mod-petit-button.theme-02 > a:hover::before,
.mod-petit-button.theme-02 > button:hover::before,
.mod-petit-button.theme-03 > a:hover::before,
.mod-petit-button.theme-03 > button:hover::before,
.mod-petit-button.theme-04 > a:hover::before,
.mod-petit-button.theme-04 > button:hover::before,
.mod-petit-button.theme-05 > a:hover::before,
.mod-petit-button.theme-05 > button:hover::before {
  background-position: right center;
}
.mod-petit-button.opt-icon-blank.theme-01 > a:hover::before,
.mod-petit-button.opt-icon-blank.theme-01 > button:hover::before,
.mod-petit-button.opt-icon-blank.theme-02 > a:hover::before,
.mod-petit-button.opt-icon-blank.theme-02 > button:hover::before,
.mod-petit-button.opt-icon-blank.theme-03 > a:hover::before,
.mod-petit-button.opt-icon-blank.theme-03 > button:hover::before,
.mod-petit-button.opt-icon-blank.theme-04 > a:hover::before,
.mod-petit-button.opt-icon-blank.theme-04 > button:hover::before,
.mod-petit-button.opt-icon-blank.theme-05 > a:hover::before,
.mod-petit-button.opt-icon-blank.theme-05 > button:hover::before {
  background-position: left center;
}
.mod-petit-button.theme-01 > a,
.mod-petit-button.theme-01 > button {
  border-color: #9a66ad;
  background-color: #9a66ad;
}
.mod-petit-button.theme-02 > a,
.mod-petit-button.theme-02 > button {
  border-color: #3a6cb0;
  background-color: #3a6cb0;
}
.mod-petit-button.theme-03 > a,
.mod-petit-button.theme-03 > button {
  border-color: #edb130;
  background-color: #edb130;
}
.mod-petit-button.theme-04 > a,
.mod-petit-button.theme-04 > button {
  border-color: #e05e17;
  background-color: #e05e17;
}
.mod-petit-button.theme-05 > a,
.mod-petit-button.theme-05 > button {
  border-color: #985244;
  background-color: #985244;
}
.mod-petit-button.theme-06 > a,
.mod-petit-button.theme-06 > button {
  border-color: #222;
  background-color: #222;
}
.mod-petit-button.theme-06 > a:hover,
.mod-petit-button.theme-06 > button:hover {
  border-color: #222;
  background-color: #fff;
  color: #222;
}
.mod-petit-button.theme-06 > a::before,
.mod-petit-button.theme-06 > button::before {
  background-image: url(/sp/petit/shared/img/button_bg02.png);
}
.mod-petit-button.opt-icon-blank.theme-06 > a::before,
.mod-petit-button.opt-icon-blank.theme-06 > button::before {
  background-position: left center;
}
.mod-petit-button.opt-icon-blank.theme-06 > a:hover::before,
.mod-petit-button.opt-icon-blank.theme-06 > button:hover::before {
  background-position: right center;
}

/* button opt-small : 高さ少なめ */

.mod-petit-button.opt-small {
  font-size: .94rem;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button.opt-small {
    font-size: .88rem;
  }
}
.mod-petit-button.opt-small > a,
.mod-petit-button.opt-small > button {
  min-height: 52px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button.opt-small > a,
  .mod-petit-button.opt-small > button {
    min-height: 44px;
  }
}
@media only screen and (max-width: 640px) {
  .mod-petit-button.opt-small > a::before,
  .mod-petit-button.opt-small > button::before {
    right: 10px;
  }
}

/* button list : 横並び（SPレイアウト時は2カラム） */

.mod-petit-button-list {
  margin-top: 43px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button-list {
    margin-top: 30px;
  }
}
.mod-petit-button-list:first-child {
  margin-top: 0;
}
.mod-petit-button-list > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -30px -20px 0;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button-list > ul {
    flex-flow: wrap;
    margin: -20px -8px 0;
  }
}
.mod-petit-button-list > ul > li {
  box-sizing: border-box;
  flex: 0 1 320px;
  margin-top: 30px;
  padding: 0 20px;
  font-size: 1rem;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button-list > ul > li {
    flex: 0 1 50%;
    margin-top: 20px;
    padding: 0 3px;
  }
}

/* button list opt-responsive : SPレイアウト時1カラム */

@media only screen and (max-width: 640px) {
  .mod-petit-button-list.opt-responsive > ul {
    padding: 0 48px;
  }
}
@media only screen and (max-width: 640px) {
  .mod-petit-button-list.opt-responsive > ul > li {
    flex: 0 1 100%;
  }
}

/* button list opt-margin-thin : 左右余白狭く */

.mod-petit-button-list.opt-margin-thin > ul {
  margin-right: -10px;
  margin-left: -10px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button-list.opt-margin-thin > ul {
    margin-top: -12px;
    margin-right: -8px;
    margin-left: -8px;
  }
}
.mod-petit-button-list.opt-margin-thin > ul > li {
  padding-right: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 640px) {
  .mod-petit-button-list.opt-margin-thin > ul > li {
    margin-top: 12px;
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* button list opt-align-left : 左寄せ */

@media only screen and (max-width: 640px) {
  .mod-petit-button-list.opt-align-left > ul {
    justify-content: left;
  }
}

/* Banner 追加
------------------------------------------------------------ */
.recipe_list_bnr {
  margin-top: 55px;
  width: 1230px;
  margin-left: -10px;
}
@media only screen and (max-width: 640px) {
  .recipe_list_bnr {
    width: 100%;
    margin-top: 50px;
    margin-left: 0;
  }
}

.recipe_list_bnr a {
  display: block;
}
