@charset "UTF-8";

/* =====================================================
* base
* =================================================== */
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #3c3c3c;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.94;
  }
}

h2,
h3,
h4 {
  text-align: center;
}

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

a {
  text-decoration: none;
  color: #3c3c3c;
}

li {
  list-style: none;
}

p {
  text-align: center;
  word-break: break-all;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =====================================================
* content
* =================================================== */
.ly_main {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .ly_main {
    padding-top: 40px;
  }
}

.ly_wrap {
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .ly_wrap {
    padding: 0;
  }
}

.ly_bg {
  background-image: url(../img/bg.png);
  background-size: 100% 100%;
  background-repeat: repeat;
}

/* =====================================================
* header
* =================================================== */
.ly_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 25px;
  padding-right: 50px;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .ly_header {
    position: fixed;
    top: 0;
    left: 0;
    height: 40px;
    padding-left: 12px;
    padding-right: 20px;
  }
}

/* logo --------------------------------------------- */
.bl_header_logo {
  width: 30%;
  max-width: 344px;
}

.bl_header_logo a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_logo img:first-of-type {
  width: 57.3%;
}

.bl_header_logo img:last-of-type {
  width: 36.7%;
}

@media screen and (max-width: 767px) {
  .bl_header_logo {
    width: 75.5%;
    max-width: 259px;
  }

  .bl_header_logo img:first-of-type {
    width: 25%;
  }
}

/* header nav --------------------------------------- */
.bl_header_nav>ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_nav>ul li {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 2em;
}

.bl_header_nav>ul li:last-of-type {
  margin-right: 0;
}

.bl_header_nav>ul li a {
  display: block;
}

@media screen and (max-width: 767px) {
  .bl_header_nav {
    position: fixed;
    top: 40px;
    right: 0;
    width: 100%;
    padding: 30px 0;
    background: #fff;
    transform: translateX(130%);
    transition: 0.3s;
  }

  .bl_header_nav>ul {
    flex-direction: column;
    width: 100%;
  }

  .bl_header_nav>ul li {
    margin-right: 0;
  }

  .bl_header_nav>ul li a {
    position: relative;
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    text-align: center;
    line-height: 2.81;
    z-index: 99;
  }

  .bl_header_nav.is_show {
    transform: translateX(0);
  }
}

/* hamburger menu ----------------------------------- */
.bl_spMenu {
  position: relative;
  z-index: 999;
  width: 25px;
  height: 15px;
}

.bl_spMenu_bar {
  display: block;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: #000;
}

.bl_spMenu_bar__top {
  top: 0;
}

.bl_spMenu_bar__mid {
  top: 7px;
}

.bl_spMenu_bar__btm {
  bottom: 0;
}

.bl_spMenu.is_show .bl_spMenu_bar__top,
.bl_spMenu.is_show .bl_spMenu_bar__btm {
  top: 50%;
}

.bl_spMenu.is_show .bl_spMenu_bar__top {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bl_spMenu.is_show .bl_spMenu_bar__mid {
  opacity: 0;
}

.bl_spMenu.is_show .bl_spMenu_bar__btm {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* =====================================================
* footer
* =================================================== */
.ly_footer {
  padding: 15px 0 12px;
}

.bl_footer {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.6875rem, 0.523rem + 0.7vw, 0.859375rem);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  background: #00623c;
}

@media screen and (max-width: 767px) {
  .ly_footer {
    padding: 10px 0 9px;
  }
}

@media screen and (max-width: 767px) {
  .sp_p0 {
    padding: 0 !important;
  }
}

/* =====================================================
* 表示/非表示
* =================================================== */
.pc_none {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_none {
    display: block;
  }
}

.tab_none {
  display: none;
}

@media screen and (max-width: 767px) {
  .tab_none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

/* =====================================================
* fade in
* =================================================== */
.js_in {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease-in-out;
}

.js_in.is_active {
  opacity: 1;
  visibility: visible;
}

.js_scIn,
.js_scIn0 {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
}

.js_scIn.-btm,
.js_scIn0.-btm {
  transform: translateY(100px);
  transition-duration: 1.5s;
}

.js_scIn.-left,
.js_scIn0.-left {
  transform: translateX(-100px);
}

.js_scIn.-right,
.js_scIn0.-right {
  transform: translateX(100px);
}

.js_scIn.is_active,
.js_scIn0.is_active {
  opacity: 1;
  visibility: visible;
}

.js_scIn.is_active.-btm,
.js_scIn0.is_active.-btm {
  transform: translateY(0);
}

.js_scIn.is_active.-left,
.js_scIn.is_active.-right,
.js_scIn0.is_active.-left,
.js_scIn0.is_active.-right {
  transform: translateX(0);
}

@media screen and (max-width: 767px) {

  .js_scIn.-btm,
  .js_scIn0.-btm {
    transform: translateY(30px);
  }

  .js_scIn.-spLeft,
  .js_scIn0.-spLeft {
    transform: translateX(-100px);
  }

  .js_scIn.-spRight,
  .js_scIn0.-spRight {
    transform: translateX(100px);
  }
}

.-dl02 {
  transition-delay: 0.2s;
}

.-dl04 {
  transition-delay: 0.4s;
}

.-dl06 {
  transition-delay: 0.6s;
}

.-dl08 {
  transition-delay: 0.8s;
}

.-dl1 {
  transition-delay: 1s;
}

.-dl12 {
  transition-delay: 1.2s;
}

.-dl14 {
  transition-delay: 1.4s;
}

.-dl16 {
  transition-delay: 1.6s;
}

.-dl18 {
  transition-delay: 1.8s;
}

.-dl2 {
  transition-delay: 2s;
}

/* =====================================================
* back ground
* =================================================== */
.bg__wh {
  background: #fff;
}

.bg__gr {
  background: #00633d;
}

.bg__bl {
  background: #103770;
}

/* =====================================================
* title
* =================================================== */
.el_ttl {
  padding: 6px 0;
  margin-bottom: 65px;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  font-weight: 500;
  color: #fff;
  background: #cabb89;
}

.el_ttl span {
  display: block;
  padding: 11px 0;
  background: linear-gradient(90deg, #003b1d 0%, #00623c 50%, #003b1d 100%);
}

@media screen and (max-width: 767px) {
  .el_ttl {
    margin-bottom: 35px;
  }
}

/* pick up title ------------------------------------ */
.el_pickupTtl {
  margin-bottom: 30px;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  font-weight: 500;
  letter-spacing: 0.15em;
}

.el_pickupTtl span {
  color: #b4161d;
}

@media screen and (max-width: 767px) {
  .el_pickupTtl {
    margin-bottom: 20px;
  }
}

/* arch title --------------------------------------- */
.el_archTtl {
  position: relative;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  letter-spacing: 0.1em;
  color: #fff;
}

.el_archTtl::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 115%;
  background-image: url(../img/ribbon_bl.png);
  background-size: contain;
  background-position: center;
}

.el_archTtl.-yl::before {
  background-image: url(../img/ribbon_yl.png);
}

.el_archTtl.-gr::before {
  background-image: url(../img/ribbon_gr.png);
}

/* 縦書き -------------------------------------------- */
.bl_lineTtl {
  display: flex;
  justify-content: center;
}

.bl_lineTtl p {
  position: relative;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  line-height: 1.93;
  text-align: left;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.bl_lineTtl p::before,
.bl_lineTtl p:last-of-type:after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: calc(100% - 0.75em);
  background: #cabb89;
  border-radius: 999px;
}

.bl_lineTtl p::before {
  left: 0;
}

.bl_lineTtl p:last-of-type:after {
  right: -7%;
}

.bl_lineTtl p span {
  display: block;
  transition-duration: 1.2s;
}

@media screen and (max-width: 767px) {

  .bl_lineTtl p::before,
  .bl_lineTtl p:last-of-type:after {
    width: 2px;
  }

  .bl_lineTtl p:last-of-type:after {
    right: 0;
  }
}

/* =====================================================
* mv
* =================================================== */
.bl_mvBlock {
  position: relative;
  margin-bottom: 105px;
}

@media screen and (max-width: 767px) {
  .bl_mvBlock {
    margin-bottom: 45px;
  }
}

/* mv slider ---------------------------------------- */
.bl_mv_img img {
  width: 100%;
  max-height: calc(100dvh - 80px);
  -o-object-fit: cover;
  object-fit: cover;
}

/* mv logo ------------------------------------------ */
.bl_mv_logo {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 23%;
  transition-duration: 1.8s;
}

.bl_mv_logo.wide {
  width: 31.5%;
}

@media screen and (max-width: 767px) {
  .bl_mv_logo {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 50.8%;
  }

  .bl_mv_logo.wide {
    width: 50.8%;
    top: 7%;
  }
}

/* mv text ------------------------------------------ */
.bl_mv_txt {
  position: absolute;
  left: 7.1%;
  bottom: 15.6%;
}

.bl_mv_txt.postion-btm {
  bottom: 20%;
  left: 8.5%;
}

.bl_mv_txt p {
  font-size: clamp(1.25rem, 1.023rem + 0.97vw, 1.75rem);
  line-height: 2;
  letter-spacing: 0.14em;
  text-align: left;
  color: #fff;
}

.bl_mv_txt.postion-btm p {
  text-align: center;
  font-size: 2.25vw;
}

@media screen and (max-width: 767px) {
  .bl_mv_txt {
    bottom: 4.5%;
    left: 7%;
  }

  .bl_mv_txt.postion-btm {
    bottom: 4.5%;
    left: 7%;
  }

  .bl_mv_txt p {
    line-height: 1.5;
    letter-spacing: 0.3em;
  }

  .bl_mv_txt.postion-btm p {
    font-size: 4.5vw;
    text-align: left;
  }
}

/* =====================================================
* intro
* =================================================== */
.bl_introBlock {
  position: relative;
  margin-bottom: 40px;
}

.bl_introBlock::before,
.bl_introBlock::after {
  content: "";
  position: absolute;
  background-size: contain;
  z-index: -1;
}

.bl_introBlock::before {
  top: 15.9%;
  left: -12.2%;
  width: 32%;
  height: 30.76%;
  background-image: url(../img/intro_2.png);
}

.bl_introBlock.bg-1::before {
  top: 56.5%;
  left: -12.2%;
  width: 335px;
  height: 239px;
  background-image: url(../img/260320/intro_2.png);
}

.bl_introBlock::after {
  top: 36%;
  right: -11%;
  width: 33%;
  height: 26%;
  background-image: url(../img/intro_3.png);
}

.bl_introBlock.bg-1::after {
  top: 57.5%;
  right: -11%;
  width: 332px;
  height: 282px;
  background-image: url(../img/260320/intro_3.png);
}

.bl_intro_txt__lg {
  margin-bottom: 28px;
  font-size: clamp(1.3125rem, 1.193rem + 0.51vw, 1.4375rem);
  line-height: 1.67;
}

.bl_intro_txt__lg.margin-btm {
  margin-bottom: 80px;
}

.bl_intro_txt {
  margin-bottom: 55px;
  letter-spacing: 0;
  line-height: 2.2;
}

.bl_intro_img {
  width: 69%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .bl_introBlock {
    margin-bottom: 30px;
  }

  .bl_introBlock::before,
  .bl_introBlock::after {
    content: none;
  }

  .bl_intro_txt__lg {
    margin-bottom: 20px;
  }

  .bl_intro_txt {
    margin-bottom: 35px;
    letter-spacing: 0;
  }

  .bl_intro_img {
    width: 89%;
  }

  .bl_introBlock.bg-1::before {
    display: none;
  }


  .bl_introBlock.bg-1::after {
    display: none;
  }
}

/* =====================================================
* menu
* =================================================== */
.bl_menuBlock {
  margin-bottom: 85px;
}

.bl_menu_topTxt {
  margin-bottom: 60px;
  letter-spacing: 0;
  line-height: 2.5;
}

.bl_menu_lineTtl {
  margin-bottom: -30px;
}

.bl_menu_lineTtl p:first-of-type {
  padding-top: 4px;
}

.bl_menu_lineTtl p::before,
.bl_menu_lineTtl p:last-of-type:after {
  top: 2%;
  height: 88%;
}

.bl_menu_topImg {
  position: relative;
  left: 2.2%;
  width: 58.23%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .bl_menuBlock {
    margin-bottom: 40px;
  }

  .bl_menu_topTxt {
    margin-bottom: 35px;
    line-height: 1.81;
  }

  .bl_menu_topTxt.mb2 {
    margin-bottom: 15px;
  }

  .bl_menu_lineTtl {
    margin-bottom: -15px;
  }

  .bl_menu_lineTtl p:first-of-type {
    padding-top: 2px;
  }

  .bl_menu_lineTtl p::before,
  .bl_menu_lineTtl p:last-of-type:after {
    height: 89%;
  }

  .bl_menu_topImg {
    left: 0;
    width: 100%;
  }
}

/* menu list ---------------------------------------- */
.bl_menu_img {
  margin-bottom: 5px;
}

.bl_menu_txt {
  line-height: 1.5;
}

.bl_menu_list {
  width: 98%;
  margin: 0 auto;
}

.bl_menu_list li {
  width: 53.58%;
}

.bl_menu_list li:nth-of-type(even) {
  margin-left: auto;
}

.bl_menu_list li:nth-of-type(1) .bl_menu_img {
  margin-bottom: 14px;
}

.bl_menu_list li:nth-of-type(1) .bl_menu_txt {
  margin-left: -7%;
}

.bl_menu_list li:nth-of-type(2) {
  margin-top: -16.8%;
  margin-right: -1.2%;
}

.bl_menu_list li:nth-of-type(2) .bl_menu_txt {
  margin-right: -17%;
}

.bl_menu_list li:nth-of-type(3) {
  margin-top: -15%;
  margin-left: -1%;
}

.bl_menu_list li:nth-of-type(3) .bl_menu_img {
  margin-bottom: 0;
}

.bl_menu_list li:nth-of-type(3) .bl_menu_txt {
  margin-left: -14%;
}

.bl_menu_list li:nth-of-type(4) {
  margin-top: -16.4%;
  margin-right: -1%;
}

.bl_menu_list li:nth-of-type(4) .bl_menu_img {
  margin-bottom: 16px;
}

.bl_menu_list li:nth-of-type(4) .bl_menu_txt {
  margin-right: -4%;
}

.bl_menu_list li:nth-of-type(5) {
  margin-top: -3.8%;
  margin-left: 6%;
}

.bl_menu_list li:nth-of-type(5) .bl_menu_img {
  margin-bottom: 2px;
}

.bl_menu_list li:nth-of-type(5) .bl_menu_txt {
  margin-left: -9%;
}

.bl_menu_list li:nth-of-type(6) {
  margin-top: -15.8%;
  margin-right: -1%;
}

.bl_menu_list li:nth-of-type(6) .bl_menu_txt {
  margin-right: -3%;
}

@media screen and (max-width: 767px) {
  .bl_menu_txt {
    font-size: 1.4375rem;
    letter-spacing: 0;
    line-height: 1.52;
  }

  .bl_menu_list {
    width: 100%;
  }

  .bl_menu_list li {
    width: 100%;
    margin-bottom: 60px;
  }

  .bl_menu_list li:nth-of-type(1) .bl_menu_img {
    margin-bottom: 5px;
  }

  .bl_menu_list li:nth-of-type(1) .bl_menu_txt {
    margin-left: 0;
  }

  .bl_menu_list li:nth-of-type(2),
  .bl_menu_list li:nth-of-type(3),
  .bl_menu_list li:nth-of-type(4),
  .bl_menu_list li:nth-of-type(5),
  .bl_menu_list li:nth-of-type(6) {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .bl_menu_list li:nth-of-type(2) .bl_menu_txt,
  .bl_menu_list li:nth-of-type(3) .bl_menu_txt,
  .bl_menu_list li:nth-of-type(4) .bl_menu_txt,
  .bl_menu_list li:nth-of-type(5) .bl_menu_txt,
  .bl_menu_list li:nth-of-type(6) .bl_menu_txt {
    margin-left: 0;
    margin-right: 0;
  }

  .bl_menu_list li:nth-of-type(4) .bl_menu_img {
    margin-bottom: 10px;
  }

  .bl_menu_list li:nth-of-type(6) {
    margin-bottom: 0;
  }

  .bl_menu_list li:nth-of-type(6) .bl_menu_img {
    margin-bottom: 0;
  }
}

/* =====================================================
* kodawari
* =================================================== */
.bl_kodawari_topTxt {
  margin-bottom: 47px;
  letter-spacing: 0;
  line-height: 2;
}

.bl_kodawari_topTxt span {
  font-size: clamp(0.75rem, 0.63rem + 0.51vw, 0.875rem);
}

.bl_kodawari_lineTtl {
  margin-bottom: 38px;
}

.bl_kodawari_img {
  position: relative;
  padding: 10px;
  margin-bottom: -5.5%;
  z-index: 1;
}

.bl_kodawari_img::before,
.bl_kodawari_img::after {
  content: "";
  position: absolute;
  width: 88%;
  height: 73.32%;
  z-index: -1;
}

.bl_kodawari_img::before {
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #e5ddc4 0%, #b09c53 100%);
}

.bl_kodawari_img::after {
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #b09c53 0%, #e5ddc4 100%);
  z-index: -1;
}

.bl_kodawari_ttl {
  position: relative;
  left: 21.7%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 5px;
  margin: 0 auto -8.7%;
  font-size: clamp(1rem, 0.402rem + 2.55vw, 1.625rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  background: #cabb89;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 1;
}

.bl_kodawari_ttl>span {
  display: block;
  padding: 12px 10px 16px;
  background: #b4161d;
}

.bl_kodawari_ttl>span>span {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.125rem, 0.527rem + 2.55vw, 1.75rem);
  font-style: italic;
  text-combine-upright: all;
}

.bl_kodawari_banner {
  display: block;
  margin: 0 auto 5px;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.bl_kodawari_banner p {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 8px;
  padding-left: 23px;
  font-size: clamp(1.125rem, 0.784rem + 1.45vw, 1.875rem);
  letter-spacing: 0;
  line-height: 1.18;
  text-align: left;
  flex: 1;
}

.bl_kodawari_banner p::after {
  content: "";
  position: absolute;
  top: calc(50% + 6px);
  right: 14px;
  width: 22px;
  height: 8px;
  transform: translateY(-50%);
  background-image: url(../img/arrow_rd.png);
  background-size: contain;
}

.bl_kodawari_banner p>span:first-of-type {
  display: block;
  font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
  letter-spacing: 0;
}

.bl_kodawari_note {
  display: block;
  font-size: clamp(0.75rem, 0.87rem - 0.51vw, 0.625rem);
  text-align: right;
}

@media screen and (max-width: 767px) {
  .bl_kodawari_topTxt {
    margin-bottom: 35px;
  }

  .bl_kodawari_img {
    padding: 5px 0;
    margin-bottom: -11.6%;
  }

  .bl_kodawari_ttl {
    left: 34.8%;
    padding: 0 2.5px;
    margin-bottom: -66px;
  }

  .bl_kodawari_ttl>span {
    padding: 6px 7px 7px;
  }

  .bl_kodawari_ttl>span>span {
    margin-bottom: 8px;
  }

  .bl_kodawari_banner p {
    font-size: clamp(1.375rem, 1.148rem + 0.97vw, 1.875rem);
  }
}

/* chef --------------------------------------------- */
.bl_chefBlock {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 155px;
}

.bl_chefBlock.mb2 {
  margin-bottom: 80px;
}

.bl_chef_box {
  width: calc(50% + 10px);
}

.bl_chef_img::before,
.bl_chef_img::after,
.bl_chef_img__sm::before,
.bl_chef_img__sm::after {
  background: #cabb89;
}

.bl_chef_img::before,
.bl_chef_img::after {
  width: 28.27%;
  height: 28.35%;
}

.bl_chef_img__sm::before,
.bl_chef_img__sm::after {
  width: 40.478%;
  height: 38.567%;
}

.bl_chef_cnt {
  width: 45.5%;
  line-height: 2;
}

.bl_chef_txt {
  margin: 0 -13% 32px 8px;
  letter-spacing: 0.04em;
  text-align: left;
}

.bl_chef_name {
  margin-bottom: 90px;
  margin-left: 8px;
}

.bl_chef_name>span {
  margin-left: -0.5em;
  letter-spacing: 0;
}

.bl_chef_name h3 {
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  font-weight: 500;
  text-align: left;
  line-height: 1;
}

.bl_chef_name h3 span {
  display: inline-block;
  margin-left: 5px;
  font-size: 1rem;
}

@media screen and (max-width: 1024px) {
  .bl_chef_txt {
    margin-right: 0;
    font-size: clamp(1rem, 0.625rem + 0.78vw, 1.125rem);
  }
}

@media screen and (max-width: 767px) {
  .bl_chefBlock {
    flex-direction: column;
    padding: 0 14px;
    margin-bottom: 60px;
  }

  .bl_chefBlock.mb2 {
    margin-bottom: 40px;
  }

  .bl_chef_box {
    display: flex;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 40px;
  }

  .bl_chef_img,
  .bl_chef_img__sm {
    padding: 5px;
  }

  .bl_chef_img {
    width: 56.2%;
    margin-bottom: 0;
  }

  .bl_chef_img::before,
  .bl_chef_img::after {
    width: 29.3%;
    height: 29.4%;
  }

  .bl_chef_img__sm {
    width: 62%;
    margin-left: auto;
    margin-bottom: 35px;
  }

  .bl_chef_img__sm::before,
  .bl_chef_img__sm::after {
    width: 40.478%;
    height: 38.567%;
  }

  .bl_chef_cnt {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .bl_chef_txt {
    width: 100vw;
    order: 2;
    margin: 0 calc(50% - 50vw);
    font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
    text-align: center;
  }

  .bl_chef_name {
    margin: 0 0 0 10px;
  }
}

/* product ------------------------------------------ */
.bl_kodawari_product {
  width: 98%;
  margin: 0 auto 120px;
}

.bl_kodawari_productImg {
  width: 55.4%;
}

.bl_kodawari_productDesc {
  width: 39.05%;
  padding-top: 1%;
}

.bl_kodawari_productPic,
.bl_kodawari_productTxt {
  text-align: left;
}

.bl_kodawari_productPic {
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.bl_kodawari_productTtl {
  margin-bottom: 50px;
}

.bl_kodawari_productTxt {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.88;
  letter-spacing: 0.05em;
}

.bl_kodawari_productBtm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -0.8%;
}

.bl_kodawari_productImg__s {
  width: 31.8%;
}

.bl_kodawari_product li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.bl_kodawari_product li:nth-of-type(2) .bl_kodawari_productImg {
  order: 2;
}

.bl_kodawari_product li:nth-of-type(2) .bl_kodawari_productTtl {
  letter-spacing: 0;
}

.bl_kodawari_product li:nth-of-type(3) {
  margin-bottom: 0;
}

.bl_kodawari_product li:nth-of-type(3) .bl_kodawari_productTxt {
  margin-bottom: -7%;
}

@media screen and (max-width: 1024px) {
  .bl_kodawari_productPic {
    font-size: clamp(1.125rem, 0.75rem + 0.78vw, 1.25rem);
  }
}

@media screen and (max-width: 767px) {
  .bl_kodawari_product {
    width: 100%;
    margin-bottom: 40px;
  }

  .bl_kodawari_productImg {
    width: 100%;
    margin-bottom: 40px;
  }

  .bl_kodawari_productDesc {
    width: 100%;
    padding: 0 15px 0 35px;
  }

  .bl_kodawari_productPic,
  .bl_kodawari_productTxt {
    text-align: left;
  }

  .bl_kodawari_productPic {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.67;
    margin-right: -40px;
  }

  .bl_kodawari_productTtl {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    margin-bottom: 0;
    z-index: 2;
  }

  .bl_kodawari_productTxt {
    margin-bottom: 25px;
    line-height: 1.81;
    letter-spacing: 0;
  }

  .bl_kodawari_productBtm {
    justify-content: flex-start;
    margin-right: 0;
  }

  .bl_kodawari_productBtm a {
    position: relative;
    display: block;
    min-width: 216px;
    padding-right: 25px;
    margin-right: 15px;
  }

  .bl_kodawari_productBtm a::before,
  .bl_kodawari_productBtm a::after {
    content: "";
    position: absolute;
  }

  .bl_kodawari_productBtm a::before {
    top: 45%;
    right: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 5px;
    background-image: url(../img/arrow_bk.png);
    background-size: contain;
  }

  .bl_kodawari_productBtm a::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #103770;
  }

  .bl_kodawari_productImg__s {
    width: 27.8%;
  }

  .bl_kodawari_product li {
    flex-direction: column;
    margin-bottom: 75px;
  }

  .bl_kodawari_product li:nth-of-type(2) .bl_kodawari_productImg {
    order: unset;
  }

  .bl_kodawari_product li:nth-of-type(2) .bl_kodawari_productBtm a::after {
    background: #eeaa1e;
  }

  .bl_kodawari_product li:nth-of-type(3) .bl_kodawari_productTxt {
    margin-bottom: 0;
  }

  .bl_kodawari_product li:nth-of-type(3) .bl_kodawari_productBtm a::after {
    background: #00623c;
  }
}

/* kodawari 2 --------------------------------------- */
.bl_kodawari_2 {
  padding-bottom: 95px;
}

.bl_kodawari_2 .bl_kodawari_ttl {
  margin-bottom: -18.5%;
}

.bl_kodawari_2 .bl_kodawari_lineTtl {
  margin-bottom: 45px;
}

.bl_kodawari_2 .bl_kodawari_txt {
  margin-bottom: 30px;
}

.bl_kodawari_2 .bl_kodawari_txt span {
  font-size: clamp(0.625rem, 0.505rem + 0.51vw, 0.75rem);
}

.bl_kodawari_2 .bl_kodawari_txt span:first-of-type {
  position: relative;
  top: -0.5em;
}

.bl_kodawari_2 .bl_kodawari_txt span:last-of-type {
  display: block;
}

.bl_kodawari_2 .bl_kodawari_bannerWrap {
  width: 97.83%;
  margin: 0 auto;
}

.bl_kodawari_2 .bl_kodawari_banner {
  display: flex;
}

.bl_kodawari_2 .bl_kodawari_bannerImg {
  width: 57.7%;
}

.bl_kodawari_2 .bl_kodawari_banner p {
  padding-left: 6.4%;
}

.bl_kodawari_2 .bl_kodawari_banner p.p2 {
  padding-left: 4%;
}

.bl_kodawari_2 .bl_kodawari_banner p.p2 .s {
  font-size: 92.5%;
}

.bl_kodawari_2 .bl_kodawari_banner p>span:first-of-type {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .bl_kodawari_2 {
    padding-bottom: 25px;
  }

  .bl_kodawari_2 .bl_kodawari_ttl {
    margin-bottom: -100px;
  }

  .bl_kodawari_2 .bl_kodawari_lineTtl {
    margin-bottom: 10px;
  }

  .bl_kodawari_2 .bl_kodawari_txt {
    letter-spacing: 0;
    margin-bottom: 15px;
  }

  .bl_kodawari_2 .bl_kodawari_txt span {
    letter-spacing: 0.05em;
  }

  .bl_kodawari_2 .bl_kodawari_bannerWrap {
    width: 78.7%;
  }

  .bl_kodawari_2 .bl_kodawari_banner {
    flex-direction: column;
  }

  .bl_kodawari_2 .bl_kodawari_bannerImg {
    width: 100%;
  }

  .bl_kodawari_2 .bl_kodawari_banner p {
    padding: 15px 0 10px 35px;
  }

  .bl_kodawari_2 .bl_kodawari_banner p::after {
    top: calc(50% + 15px);
    right: 17px;
    width: 15px;
    height: 10px;
  }

  .bl_kodawari_2 .bl_kodawari_banner p>span:first-of-type {
    margin-bottom: 3px;
  }
}

/* product ------------------------------------------ */
.bl_productBlock {
  padding-bottom: 80px;
}

.bl_product .el_ttl {
  margin-bottom: 70px;
}

.bl_product_topTxt {
  margin-bottom: 95px;
}

.bl_product_list {
  display: flex;
  justify-content: space-between;
  width: 98%;
  margin: 0 auto 75px;
}

.bl_product_list li {
  width: 31.3%;
}

.bl_product_list li:nth-of-type(2) .bl_product_ttl {
  letter-spacing: 0;
}

.bl_product_cnt {
  position: relative;
  margin: 0 auto 15px;
}

.bl_product_ttl {
  position: absolute;
  top: -9%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  font-size: 1.25rem;
}

.bl_product_ttl::before {
  width: 100%;
  height: 121%;
}

.bl_product_imgNote {
  position: absolute;
  top: 11.5%;
  left: 3.5%;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1.67;
  text-align: left;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.bl_product_txt {
  margin: 0 -3.5% 50px;
  font-size: clamp(0.875rem, 0.431rem + 0.93vw, 1.125rem);
  line-height: 1.67;
  letter-spacing: 0;
}

.bl_product_banner {
  display: flex;
  justify-content: space-between;
  width: 97.5%;
  margin: 0 auto;
}

.bl_product .bl_kodawari_banner {
  width: 40%;
  margin: 0;
}

.bl_product .bl_kodawari_banner::after {
  top: 66%;
}

.bl_product .bl_kodawari_banner p {
  padding: 22px 15px 17px 24px;
  font-size: clamp(1.375rem, 0.708rem + 1.39vw, 1.75rem);
}

.bl_product .bl_kodawari_banner p::after {
  top: calc(50% + 13px);
  right: 6%;
}

.bl_product .bl_kodawari_banner p span {
  margin-bottom: 3px;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  letter-spacing: 0.09em;
}

@media screen and (max-width: 767px) {
  .bl_productBlock {
    padding-bottom: 50px;
  }

  .bl_product .el_ttl {
    margin-bottom: 30px;
  }

  .bl_product_topTxt {
    line-height: 1.81;
    margin-bottom: 60px;
  }

  .bl_product_list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 45px;
  }

  .bl_product_list>li {
    padding-top: 9%;
    width: 100%;
  }

  .bl_product_list>li:last-of-type .bl_product_imgNote {
    top: 10.6%;
    letter-spacing: 0.1em;
  }

  .bl_product_cnt {
    margin-bottom: 35px;
  }

  .bl_product_ttl {
    top: -36px;
    font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  }

  .bl_product_ttl::before {
    height: 115%;
  }

  .bl_product_imgNote {
    top: 12%;
    left: 2.5%;
    font-size: clamp(1.5rem, 0.065rem + 6.12vw, 3rem);
    line-height: 1.67;
  }

  .bl_product_txt {
    margin: 0 0 35px;
    font-size: clamp(1rem, 0.043rem + 4.08vw, 2rem);
    line-height: 1.81;
  }

  .bl_product_banner {
    flex-direction: column;
    width: 75.7%;
  }

  .bl_product .bl_kodawari_banner {
    width: 100%;
  }

  .bl_product .bl_kodawari_banner:first-of-type {
    margin-bottom: 50px;
  }

  .bl_product .bl_kodawari_banner p {
    padding: 18px 15px 14px 22px;
  }

  .bl_product .bl_kodawari_banner p::after {
    top: calc(50% + 14px);
    width: 15px;
    height: 10px;
  }
}

/* product おすすめ ----------------------------------- */
.bl_product_recoTtl {
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  background: #103770;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.bl_product_recoImg {
  margin-bottom: 15px;
}

.bl_product_recoList {
  display: flex;
  align-items: flex-start;
  margin-left: -3px;
}

.bl_product_recoList ul:last-of-type {
  margin-left: 20px;
}

.bl_product_recoCnt {
  margin-right: -18%;
}

.bl_product_list li:nth-of-type(2) .bl_product_recoTtl {
  background: #eeaa1e;
}

.bl_product_list li:nth-of-type(3) .bl_product_recoTtl {
  background: #00623c;
}

.bl_product_list li:nth-of-type(3) .bl_product_recoList ul {
  letter-spacing: 0;
}

.bl_product_list li:nth-of-type(3) .bl_product_recoList ul:nth-of-type(1) {
  margin-left: 0;
  white-space: nowrap;
}

.bl_product_list li:nth-of-type(3) .bl_product_recoList ul:nth-of-type(2) {
  margin-left: 12px;
}

.bl_product_list li .bl_product_recoList li {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0.875rem, 0.431rem + 0.93vw, 1.125rem);
  line-height: 1.67;
  position: relative;
  padding-left: 0.8em;
}

.bl_product_list li .bl_product_recoList li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .bl_product_reco {
    width: 78.7%;
    margin: 0 auto 45px;
  }

  .bl_product_recoTtl {
    margin-bottom: 12px;
    box-shadow: 2.5px 2.5px 0 rgba(0, 0, 0, 0.2);
  }

  .bl_product_recoCnt {
    margin: 0 -3%;
  }

  .bl_product_list li .bl_product_recoList li {
    font-size: clamp(1.25rem, 0.054rem + 5.1vw, 2.5rem);
  }

  .bl_product_list li:nth-of-type(1) .bl_product_recoList {
    margin-left: 10px;
  }

  .bl_product_list li:nth-of-type(2) .bl_product_recoList {
    margin-left: 5px;
  }

  .bl_product_list li:nth-of-type(3) .bl_product_reco {
    margin-bottom: 0;
  }
}

/* ---------------------------------------- */
.cm-title-01 {
  text-align: center;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  margin-bottom: 1em;
  font-weight: 500;
}

.cm-title-01 span {
  display: inline-block;
  border-top: 1.5px solid #c5b684;
  border-bottom: 1.5px solid #c5b684;
  padding: .1em .25em;
}

@media screen and (max-width: 767px) {}

/* ---------------------------------------- */
.p-manyways {
  margin: 80px 0 70px;
}

.p-manyways-img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-manyways {
    margin: 0 0 4em;
  }

  .p-manyways-img {}
}

/* ---------------------------------------- */
.p-lnav {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-lnav p {
  width: 29%;
}

.p-lnav p a {
  display: block;
  font-size: clamp(1.3125rem, 1.193rem + 0.51vw, 1.4375rem);
  text-align: center;
  border: 1px solid #000;
  border-radius: .5em;
  padding: 1.25em 0;
  transition: .25s;
  position: relative;
}

.p-lnav p a::after {
  content: '';
  padding: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5em;
  width: .5em;
  height: .5em;
  transform: rotate(45deg);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  margin: auto;
}

.p-lnav p a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {}

/* ---------------------------------------- */
.p-product-main {
  margin: 0 10% 0px;
}

.p-product-single-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-product-single {
  margin-bottom: 60px;
  width: 47.5%;
}

.p-product-single.wide {
  width: 100%;
}

.p-product-single-img {
  margin-bottom: 1.5em;
  display: block;
}

.p-product-single-title {
  text-align: center;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-product-single-title span {
  display: inline-block;
  border-top: 2px solid #c5b684;
  border-bottom: 2px solid #c5b684;
  padding: .1em .25em;
}

.p-product-single-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-product-single-left {
  width: 47%;
}

.p-product-single-left.wide {
  width: 100%;
}

.p-product-single-right {
  width: 47%;
}

.p-product-single-right.wide {
  width: 100%;
}

.p-product-single-lead {
  text-align: left;
  margin-bottom: 1em;
  font-size: 1.5625rem;
  min-height: 3.6em;
  line-height: 1.8;
}

.p-product-single-text {
  text-align: left;
  margin-bottom: 1.5em;
  font-size: 1rem;
}

.p-product-single-push {
  text-align: center;
  font-size: 1.25rem;
  color: #FFF;
  margin-bottom: 1.5em;
  position: relative;
}

.p-product-single-push::after {
  content: '';
  position: absolute;
  z-index: 10;
  left: .2em;
  top: .2em;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.p-product-single-push span {
  display: block;
  position: relative;
  z-index: 20;
}

.p-product-single-push.bg1 span {
  background-color: #103770;
}

.p-product-single-push.bg2 span {
  background-color: #eeaa1e;
}

.p-product-single-push.bg3 span {
  background-color: #00633d;
}

.p-product-single-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-product-single-in-left {
  width: 35%;
}

.p-product-single-in-right {
  width: 60%;
}

.p-product-single-in-list {
  margin-bottom: .5em;
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-product-single-in-list li {
  width: 50%;
  letter-spacing: -.1em;
}

.p-product-single-in-list li.w1 {
  width: 65%;
}

.p-product-single-in-list li.w2 {
  width: 35%;
}

.p-product-single-in-list li.wide {
  width: 100%;
}

.p-product-single-in-name {
  text-align: left;
  font-size: 1rem;
  font-family: 'Noto Sans JP', "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-weight: 500;
}

.p-product-single-in-price {
  text-align: left;
  font-size: 1rem;
  font-family: 'Noto Sans JP', "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.2;
  font-weight: 500;
  font-feature-settings: "palt";
}

.p-product-single-in-price .l {
  font-size: 150%;
}

.p-product-single-in-price .m {
  font-size: 110%;
}

@media screen and (max-width: 767px) {
  .p-product-main {
    margin: 0 10% 0px;
  }

  .p-product-single-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-product-single {
    margin-bottom: 3em;
    width: 100%;
  }

  .p-product-single.wide {
    width: 100%;
  }

  .p-product-single-img {
    margin-bottom: 1.5em;
    display: block;
  }

  .p-product-single-title {
    margin: 0 5% 1em;
  }

  .p-product-single-title span {
    display: block;
    padding: .0em .0em;
  }

  .p-product-single-box {
    display: flex;
    margin: 0 5%;
  }

  .p-product-single-left {
    width: 100%;
  }

  .p-product-single-left.wide {
    width: 100%;
  }

  .p-product-single-right {
    width: 100%;
  }

  .p-product-single-right.wide {
    width: 100%;
  }

  .p-product-single-lead {
    margin-bottom: .5em;
    font-size: 1.45rem;
    min-height: auto;
  }

  .p-product-single-text {
    text-align: left;
    margin-bottom: 1em;
    font-size: 1rem;
  }

  .p-product-single-push {
    text-align: center;
    font-size: 1rem;
    color: #FFF;
    margin-bottom: 1.5em;
    position: relative;
  }

  .p-product-single-push::after {
    content: '';
    position: absolute;
    z-index: 10;
    left: .2em;
    top: .2em;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
  }

  .p-product-single-push span {
    display: block;
    position: relative;
    z-index: 20;
  }

  .p-product-single-push.bg1 span {
    background-color: #103770;
  }

  .p-product-single-push.bg2 span {
    background-color: #eeaa1e;
  }

  .p-product-single-push.bg3 span {
    background-color: #00633d;
  }

  .p-product-single-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-product-single-in-left {
    width: 30%;
  }

  .p-product-single-in-right {
    width: 65%;
  }

  .p-product-single-in-list {
    margin-bottom: .5em;
    font-size: 3.75vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-product-single-in-list li {
    width: 50%;
    letter-spacing: -.1em;
    line-height: 1.4;
  }

  .p-product-single-in-list li.w1 {
    width: 65%;
  }

  .p-product-single-in-list li.w2 {
    width: 35%;
  }

  .p-product-single-in-list li.wide {
    width: 100%;
  }

  .p-product-single-in-name {
    text-align: left;
    font-size: 1rem;
    font-family: 'Noto Sans JP', "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 500;
  }

  .p-product-single-in-price {
    text-align: left;
    font-size: 1rem;
    font-family: 'Noto Sans JP', "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 1.2;
    font-weight: 500;
  }

  .p-product-single-in-price .l {
    font-size: 140%;
  }

  .p-product-single-in-price .m {
    font-size: 100%;
  }
}

/* ---------------------------------------- */
.cm-nav-shop {
  margin-bottom: 5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cm-nav-shop>p {
  width: 22.5%;
}

.cm-nav-shop>p>a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: right .5em center;
  font-size: 1rem;
  background-size: 0.5em;
  border-radius: 0.5em;
  line-height: 1.4;
  min-height: 3.8em;
  font-family: 'Noto Sans JP', "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  transition: .25s;
}

.cm-nav-shop>p>a:hover {
  opacity: .5;
}

.cm-nav-shop-01 a {
  background-color: #fff;
  border: 1px solid #000;
  background-image: url(../img/260320/arrow-b.png);
}

.cm-nav-shop-02 a {
  background-color: #d95656;
  border: 1px solid #d95656;
  color: #FFF;
  background-image: url(../img/260320/arrow-w.png);
}

.cm-nav-shop-03 a {
  background-color: #ffc266;
  border: 1px solid #ffc266;
  background-image: url(../img/260320/arrow-b.png);
}

.cm-nav-shop-04 a {
  background-color: #ff4d4d;
  border: 1px solid #ff4d4d;
  color: #FFF;
  background-image: url(../img/260320/arrow-w.png);
}

@media screen and (max-width: 767px) {
  .cm-nav-shop {
    margin: 0 5% 2em;
  }

  .cm-nav-shop.p2 {
    margin: 2em 5% 2em;
  }

  .cm-nav-shop>p {
    width: 100%;
    margin: 0 5% 1.5em;
  }

  .cm-nav-shop>p>a {
    border-radius: 100px;
  }
}

/* ---------------------------------------- */
.ls1 {
  display: inline !important;
  margin-top: -0.5em;
}

.ls2 {
  display: inline !important;
  margin-bottom: -0.5em;
}

.ls3 {
  display: inline-block;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {}

/* ---------------------------------------- */
.p-kodawari-box-wrap {
  margin-bottom: 5rem;
}

.p-kodawari-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.p-kodawari-box-info {
  width: 47.5%;
}

.p-kodawari-box-img {
  width: 47.5%;
}

.p-kodawari-box-lead {
  font-size: 1.875rem;
  text-align: left;
  margin-bottom: .5em;
}

.p-kodawari-box-text {
  font-size: 1.25rem;
  text-align: left;
  margin-bottom: .5em;
}

.p-kodawari-box-sub {
  font-size: .75rem;
  text-align: left;
}

.p-kodawari-copy-title {
  text-align: center;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  margin-bottom: 3em;
  font-weight: 500;
  border-top: 2px solid #c5b684;
  border-bottom: 2px solid #c5b684;
}

.p-kodawari-copy-text {
  position: relative;
}

.p-kodawari-copy-text::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: -7.4%;
  top: 0%;
  width: 1080px;
  height: 395px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/260320/kodawari-01-bg.png);
}

.p-kodawari-copy-text-line {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1em;
  line-height: 2;
  position: relative;
  z-index: 2;
}

.p-kodawari-copy-text-line .s {
  font-size: 80%;
}

.p-kodawari-copy-title .img {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-kodawari-box-wrap {
    margin: 3em 0 3em;
  }

  .p-kodawari-box {
    margin-bottom: 3em;
  }

  .p-kodawari-box-info {
    width: 90%;
    margin: 0 5%;
    order: 2;
  }

  .p-kodawari-box-img {
    width: 100%;
    order: 1;
    margin-bottom: 1.5em;
  }

  .p-kodawari-box-lead {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: .5em;
  }

  .p-kodawari-box-text {
    font-size: 1rem;
    text-align: justify;
    text-align: left;
    margin-bottom: .35em;
  }

  .p-kodawari-box-sub {
    font-size: .75rem;
    text-align: left;
  }

  .p-kodawari-copy-title {
    text-align: center;
    line-height: 1.6;
    font-size: 6vw;
    margin: 0 5% 2em;
    position: relative;
    padding: .35em 0 .25em;
  }

  .p-kodawari-copy-title .img {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  .p-kodawari-copy-text {
    position: relative;
    margin-bottom: 2em;
  }

  .p-kodawari-copy-text::after {
    display: none;
  }

  .p-kodawari-copy-text-line {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1em;
    line-height: 2;
    position: relative;
    z-index: 2;
  }

  .p-kodawari-copy-text-line .s {
    font-size: 80%;
    display: block;
    text-align: left;
    margin-left: 5%;
  }

}

/* ---------------------------------------- */
.p-recipe-head {
  position: relative;
}

.p-recipe-head-img {
  position: absolute;
  right: -4em;
  top: -2em;
  width: 250px;
}

.p-recipe-lead {
  text-align: center;
  margin-bottom: 4em;
  font-size: 1.875rem;
}

.p-recipe-lead.mb2 {
  margin-bottom: 2em;
}

.p-recipe-lead .s {
  font-size: 70%;
  display: inline-block;
  margin-top: 1em;
}

.p-recipe-title {
  text-align: center;
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  margin-bottom: 2em;
  font-weight: 500;
  border-top: 2px solid #c5b684;
  border-bottom: 2px solid #c5b684;
}

.p-recipe-title.mb2 {
  margin-bottom: .75em;
}

.p-recipe-main {
  padding-bottom: 5em;
}

.p-recipe-info {
  padding-bottom: 4em;
  position: relative;
  background-repeat: no-repeat;
  background-size: 17.5%;
  background-position: right 10% top 15%;
  background-image: url(../img/260320/recipe-sub.png);
}

.p-recipe-info-lead {
  margin-bottom: .75em;
  font-size: 1.725rem;
  text-align: left;
  line-height: 1.6;
}

.p-recipe-info-text {
  margin-bottom: 1em;
  font-size: 1.25rem;
  text-align: left;
}

.p-recipe-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-recipe-box-single {
  width: 47.5%;
}

.p-recipe-box-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url(../img/260320/dot.png);
  padding: .2em 0;
}

.p-recipe-box-list.ss {
  font-family: 'Noto Sans JP', "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.p-recipe-box-list.p2 {
  padding: .75em 0 .5em;
}

.p-recipe-box-list dt {
  text-align: left;
  font-size: 1.25rem;
}

.p-recipe-box-list dd {
  text-align: right;
  font-size: 1.125rem;
}

.p-recipe-box-list .ls {
  letter-spacing: -.05em;
}

.p-recipe-box-list .num {
  width: 6.5%;
}

.p-recipe-box-list .num span {
  text-align: center;
  display: block;
  background-color: #103770;
  color: #FFF;
  line-height: 1.2;
  padding: .1em 0;
}

.p-recipe-box-list .text {
  width: 90%;
  text-align: left;
  line-height: 1.4;
}

.p-recipe-section {
  margin-bottom: 6em;
}

.p-recipe-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.p-recipe-nav-single {
  width: 47.5%;
  margin-bottom: 2.5em;
  position: relative;
}

.p-recipe-nav-single::after {
  content: '';
  position: absolute;
  right: -0.2em;
  bottom: -0.2em;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
}

.p-recipe-nav-single-in {
  background-color: #fff;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-recipe-nav-single-img {
  margin-bottom: 0.25em;
}

.p-recipe-nav-single-info {
  padding: 0 7.5% 7.5%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-recipe-nav-single-lead {
  margin-bottom: 0.25em;
  line-height: 1.4;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  text-align: left;
}

.p-recipe-nav-single-text {
  margin-bottom: 1.5em;
  line-height: 1.4;
  font-size: 1.25rem;
  text-align: left;
}

.p-recipe-nav-single-btn {
  margin-top: auto;
}

.p-recipe-nav-single-btn a {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 100px;
  padding: .35em 3em;
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: .45em;
  background-image: url(../img/260320/arrow-b.png);
}

@media screen and (max-width: 767px) {


  .p-recipe-head-img {
    position: relative;
    right: auto;
    top: auto;
    width: 60%;
    margin: 0 20%;
    text-align: center;
  }

  .p-recipe-lead {
    margin-bottom: 2em;
    font-size: 4.5vw;
  }

  .p-recipe-lead.mb2 {
    margin-bottom: 1em;
  }

  .p-recipe-lead .s {
    font-size: 90%;
    display: inline-block;
    margin-top: 1em;
  }

  .p-recipe-head {
    margin: 0 5%;
  }

  .p-recipe-title {
    font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
    margin-bottom: 2em;
    line-height: 1.4;
    padding: .25em 0;
  }

  .p-recipe-title.mb2 {
    margin-bottom: .75em;
  }

  .p-recipe-main {
    padding-bottom: 5em;
  }

  .p-recipe-info {
    margin: 0 5% 2em;
    background-size: 20%;
    background-position: right 5% top 0%;
    padding: 0;
  }

  .p-recipe-info-lead {
    margin-bottom: .75em;
    font-size: 5vw;
    text-align: left;
    line-height: 1.6;
  }

  .p-recipe-info-text {
    margin-bottom: 1em;
    font-size: 3.5vw;
  }

  .p-recipe-box {
    margin: 0 5%;
  }

  .p-recipe-box-single {
    width: 100%;
    margin-bottom: 3em;
  }

  .p-recipe-box-list {
    padding: .2em 0;
  }

  .p-recipe-box-list.p2 {
    padding: .75em 0 .5em;
  }

  .p-recipe-box-list dt {
    font-size: 1rem;
  }

  .p-recipe-box-list dd {
    font-size: 1rem;
  }

  .p-recipe-box-list .ls {
    letter-spacing: -.05em;
  }

  .p-recipe-box-list .num {
    width: 6.5%;
  }

  .p-recipe-box-list .num span {
    text-align: center;
    display: block;
    background-color: #103770;
    color: #FFF;
    line-height: 1.2;
    padding: .1em 0;
  }

  .p-recipe-box-list .text {
    width: 90%;
    text-align: left;
    line-height: 1.4;
  }

  .p-recipe-section {
    margin-bottom: 0em;
  }

  .p-recipe-nav {
    margin: 0 5% 2em;
  }

  .p-recipe-nav-single {
    width: 100%;
    margin-bottom: 2.5em;
    position: relative;
  }

  .p-recipe-nav-single-img {
    margin-bottom: 0.25em;
  }

  .p-recipe-nav-single-info {
    padding: 0 7.5% 7.5%;
  }

  .p-recipe-nav-single-lead {
    margin-bottom: 0.25em;
    line-height: 1.4;
    font-size: 1.25rem;
    margin-bottom: 0.5em;
    text-align: left;
  }

  .p-recipe-nav-single-text {
    margin-bottom: 1.5em;
    line-height: 1.4;
    font-size: 1rem;
    text-align: left;
  }

  .p-recipe-nav-single-btn {
    margin-top: auto;
  }

  .p-recipe-nav-single-btn a {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 100px;
    padding: .35em 3em;
    background-repeat: no-repeat;
    background-position: right 1em center;
    background-size: .45em;
    background-image: url(../img/260320/arrow-b.png);
  }
}

/* ---------------------------------------- */
.logo-f {
  text-align: center;
}

.logo-f a {
  display: inline-block;
  width: 118px;
}

@media screen and (max-width: 767px) {
  .logo-f a {
    width: 25%;
  }
}

/* ---------------------------------------- */
.bl_header_nav>ul li.cart {
  margin-left: 3em;
}

.bl_header_nav>ul li.cart a {
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 2em;
  background-size: 1.5em;
  background-image: url(../img/260320/cart.png);
}

@media screen and (max-width: 767px) {
  .bl_header_nav>ul li.cart a {
    padding-right: 3.5em;
  }
}

/* ---------------------------------------- */
.pagetop {
  position: fixed;
  right: 1em;
  bottom: 1em;
  width: 3em;
  z-index: 100;
  opacity: 0;
  transition: .25s;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {}