@charset "utf-8";

.red {
  color: #c21e34;
}
.link {
  color: #c21e34;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}
#page #header {
  background: rgb(18 29 66 / 80%);
}
#page #header.scrolled {
  background: rgb(18 29 66 / 80%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  /* height: 64px; */
}
#page #header.scrolled a {
  color: transparent;
}

#header.scrolled #logo img {
  /* height: 40px; */
}

#header.scrolled #menu-toggle span {
  background: #080808;
}

#page #header.scrolled #logo img {
  content: url("/common/images/logo.png");
}
#page #header_inner {
  height: 100%;
  padding: 1.5rem 2rem;
}
.box01 {
  border: 1px solid #97875b;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.box01 h3 {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .box01 {
    padding: 1rem;
  }
}

.pagetitle_a1 {
  font-size: 24px;
  color: #121d42;
  font-weight: normal;
}
.pagetitle_a2 {
  font-weight: normal;
  font-size: 36px;
  border-bottom: 5px solid #c2bb95;
  padding-bottom: 1rem;
}
.pagetitle_a3 {
  font-size: 36px;
  margin: 0 0 80px 0;
  font-weight: normal;
  letter-spacing: .06em;
}
.pagetitle_a4 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: .06em;
}
.pagetitle_a5 {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: .06em;
}

@media (max-width: 1200px) {
  .pagetitle_a2, .pagetitle_a3 {
    font-size: 24px;
    margin: 0 0 2rem 0;
  }
  .pagetitle_a4, .pagetitle_a5 {
    font-size: 20px;
  }
}

#page-title-area {
  height: 600px;
  margin-bottom: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#page-title-area h2 {
  color: #000;
  font-size: 48px;
  font-weight: normal;
  letter-spacing: .2rem;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.9))
  drop-shadow(0 0 10px rgba(255,255,255,0.8))
  drop-shadow(0 0 20px rgba(255,255,255,0.6));
  text-shadow:
  0 0 4px rgba(255,255,255,0.8),
  0 0 8px rgba(255,255,255,0.7),
  0 0 16px rgba(255,255,255,0.6),
  0 0 28px rgba(255,255,255,0.5);
}
#page-title-area .container {
  width: 100%;
  max-width: 1400px;
  min-height: 600px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  #page-title-area .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
  }
  #page-title-area {
    height: 300px;
    margin-bottom: 2rem;
  }
  #page-title-area .container h2 {
    font-size: 175%;
    position: relative;
    top: calc(66px / 2);
  }
}

/* ===== shop ===== */

#shop .container {
  max-width: 1200px;
}
#shop .shop_cate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 76px;
  align-items: start;
  margin: 4rem 0;
}
#shop .shop_cate .tile {
  display: block;
  transition: .2s;
}
#shop .shop_cate .tile figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
#shop .shop_cate .tile img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .35s;
}
#shop .shop_cate .tile figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: opacity .35s;
}
#shop .shop_cate .tile:hover figure::after {
  opacity: 0;
}
#shop .shop_cate .tile:hover img {
  transform: scale(1.04);
}
#shop .shop_cate .tile figcaption {
  padding: 12px 6px 0 6px;
  font-size: 150%;
  text-align: center;
}

#shop .item p, #shop .item table, #shop .item span, #shop .item label {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
#shop .item_img {
  position: relative;
  margin: 0;
}
#shop .main_image {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity .3s ease;
}
#shop .thumbs {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  overflow-x: auto;
}
#shop .thumbs li {
  flex: 0 0 auto;
}
#shop .thumbs button {
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color .3s;
}
#shop .thumbs [aria-current="true"] {
  border-color: #007cad;
}
#shop .thumbs img {
  display: block;
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
}

#shop .product_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5rem;
}
#shop .item {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 50px;
  align-items: start;
}
#shop .item_img {
  margin: 0;
}
#shop .item_img img {
  display: block;
  width: 100%;
  height: auto;
}
#shop .item_body {
  min-width: 0;
}
#shop .item_title {
  font-size: 187.5%;
  font-weight: normal;
  letter-spacing: .2rem;
  margin: 0 0 1rem;
}
#shop .item_desc {
  font-size: 112.5%;
  margin: 0 0 2rem;
}
#shop .meta_list {
  display: grid;
  grid-template-columns: 8em 1fr;
  margin: 0 0 2rem;
  padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  border-top: 1px solid #ddd;
  border-collapse: collapse;
}
#shop .meta_list dt,
#shop .meta_list dd {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  margin: 0;
}
#shop .meta_list dt {
  font-weight: 700;
  width: 8em;
}
#shop .meta_list dd {
  line-height: 1.6;
}

#shop .price_line {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin: 0 0 2rem;
  justify-content: flex-end;
  color: #c21e34;
}
#shop .price_line .weight {
  font-weight: 400;
}
#shop .price {
  font-size: 125%;
}
#shop .controls {
  font-size: 125%;
  margin-top: 10px;
  text-align: right;
  gap: 8px;
  align-items: center;
}
#shop .controls select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
#shop .shopping_bt {
  text-align: center;
  margin: 4rem auto;
}
#shop .btn_submit {
  display: inline-block;
  padding: 1.5rem 2rem;
  line-height: 1;
  background: #121d42;
  color: #fff;
  font-size: 150%;
  border: none;
  cursor: pointer;
  transition: background .3s ease;
}
#shop .btn_submit:hover {
  background: #0e1533;
}


@media (max-width: 1200px) {
  #shop .shop_cate {
    grid-template-columns: initial;
    gap: 2rem;
    margin: 0 0 3rem;
  }
  #shop .shop_cate .tile img {
    height: 100px;
  }
  #shop .shop_cate .tile figcaption {
    padding: 0 6px 0 6px;
  }
  #shop .item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #shop .item_title {
    font-size: 22px;
  }
  #shop .price_line {
    flex-wrap: wrap;
    gap: 10px;
  }
  #shop .btn_submit {
    max-width: 80%;
    line-height: 1.5;
    padding: 1rem;
  }
}
#izushi {
  margin-bottom: 5rem;
}

/* ===== Izushi ===== */
#izushi .container {
  max-width: 100vw;
  padding: 0;
}
#izushi_intro {
  position: relative;
  margin: 0 auto;
  padding: 100px 24px 120px;
  min-height: 1400px;
}
#izushi_intro .intro_text {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem 0 3rem;
  line-height: 3;
  background: rgb(255, 255, 255, 0.5) url(/common/images/izushi_bg.png) no-repeat;
  background-size: contain;
  z-index: 10;
}
#izushi_intro .intro_text p:first-of-type {
  margin-top: 0;
}
#intro_img_1,
#intro_img_2,
#intro_img_3 {
  position: absolute;
  display: block;
  object-fit: cover;
}
#intro_img_1 {
  top: 100px;
  left: 124px;
}
#intro_img_2 {
  top: 370px;
  right: 0;
}
#intro_img_3 {
  bottom: 0;
  left: 120px;
}
@media (max-width: 1200px) {
  #izushi_intro {
    padding: 40px 16px 48px;
    min-height: initial;
  }
  #izushi_intro .intro_text {
    line-height: 2;
    padding: 0;
  }
  #intro_img_1,
  #intro_img_2,
  #intro_img_3 {
    position: static;
    width: min(100%, 520px);
    height: 250px;
    margin: 16px auto 0;
  }
}

/* ===== recipe ===== */
#recipe {

}
#recipe .item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 4rem;
}
#recipe .item_img {
  flex: 0 0 40%;
  margin: 0;
}
#recipe .item_img img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#recipe .item_body {
  flex: 1;
}
#recipe .recipe_cols {
  display: flex;
  gap: 24px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
#recipe .recipe_cols h3 {
  margin: 0 0 2rem;
  padding: .5rem 1rem;
  background: rgb(194, 187, 149, 0.5);
  font-weight: normal;
}
/* #recipe .recipe_col {
  flex: 1;
} */
.recipe_ingredients {
  flex: 0 0 40%;
}
#recipe .recipe_ingredients ul {
  margin: 0;
  padding-left: 0;
}
#recipe .item_title {
  margin-top: 0;
}
.recipe_ingredients ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.recipe_ingredients ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
}
.recipe_ingredients ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 5px;
  color: #97875b;
  font-size: 0.8em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  #recipe .item {
    flex-direction: column;
  }
  #recipe .recipe_cols {
    flex-direction: column;
  }
  #recipe .item_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

/* ===== company ===== */
#company .container {
  max-width: 1200px;
}
@media (max-width: 768px) {
  #company .container.center p {
    text-align: left;
  }
}

#company section .container > div {
  margin-bottom: 4rem;
}

#company .map {
  width: 100%;
  height: 29.915rem;
  margin-top: 7.8125rem;
  position: relative;
}
#company .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===== FAQ ===== */
#faq .container {
  max-width: 1200px;
  margin: 150px auto 0;
}
#faq .faq_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#faq .faq_item {
  padding: 16px 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dotted #ccc;
}
#faq .faq_q {
  margin: 0 0 1.5rem;
  font-weight: normal;
  font-size: 125%;
}
#faq .faq_a {
  margin: 0;
  line-height: 1.8;
}
#faq .faq_label_q,
#faq .faq_label_a {
  display: inline-block;
  margin-right: .5em;
}
#faq .faq_label_q {
  color: #0054a6;
}
#faq .faq_label_a {
  color: #c30d23;
  font-size: 125%;
}
@media (max-width: 768px) {
  #faq .faq_item {
    padding: 12px 0 16px;
  }
}

/* ===== privacy link ===== */
#privacy .container, #link .container {
  max-width: 1200px;
  margin: 150px auto 0;
}
#privacy .container p, #privacy .container h3, #privacy .container dl, #link .container p, #link .container h3, #link .container dl {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
.privacy_list {
  margin: 1.5rem 0;
}
.privacy_list dt {
  font-weight: 700;
  margin-bottom: .25rem;
}
.privacy_list dd {
  margin: 0 0 1.5rem;
  line-height: 1.8;
}
#privacy .legal_list, #link .legal_list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 16px;
  row-gap: 8px;
  max-width: 640px;
  margin: 0;
}
#privacy .legal_list dt, #link .legal_list dt {
  font-weight: 700;
  text-align: left;
}
#privacy .legal_list dd, #link .legal_list dd {
  margin: 0;
  text-align: left;
  font-size: 18px;
}


/* ===== contact ===== */
#contact .container {
  max-width: 1200px;
  margin: 150px auto 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
#contact .inq_waku {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}
#contact .form_section {
  margin-bottom: 32px;
}
#contact .form_row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}
#contact .check {
  display: inline-block;
  margin-top: 0.5rem;
}
#contact .form_label {
  flex: 0 0 180px;
}
#contact .form_label {
  border: none;
  padding: 0;
  margin: 0;
}
#contact .form_field {
  flex: 1;
}
#contact .input_group input {
  width: auto;
}
#contact .form_actions {
  margin-top: 32px;
}
#contact .form_actions input,
#contact .form_actions a img {
  vertical-align: middle;
}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact select,
#contact textarea {
  width: 100%;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #bbb;
}
#contact .container button {
  font-family: "はんなり明朝", "Shippori Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.text_s {
  font-size: 16px;
}

@media (max-width: 768px) {
  #privacy .container, #link .container, #faq .container, #contact .container {
    margin: 100px auto 0;
  }
}

/* ===== Order ===== */
#order_summary, #order_form {
  max-width: 960px;
  margin: 0 auto 5rem;
  width: 100%;
  padding: 0 20px;
}
#order_summary .table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#order_summary table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
#order_summary table td:not(:first-child) {
  text-align: right;
}

@media (max-width: 768px) {  
  #contact .form_row {
    display: grid;
    grid-template-columns: 1fr;
  }
  #order_summary, #order_form {
    max-width: 960px;
    margin: 0 auto 2rem;
    width: 100%;
    padding: 0;
  }
}

#order_summary th {
  background: rgb(194, 187, 149, 0.3);
}
#order_summary th,
#order_summary td {
  border: 1px solid #ddd;
  padding: 10px 12px;
}
#order_summary tfoot th,
#order_summary tfoot td {
  font-weight: 700;
  text-align: center;
}

#order_form fieldset {
  border: none;
  padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  margin: 0 0 4rem;
}
#order_form fieldset div {
  font-size: 18px;
}
#order_form .row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 12px 16px;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px dotted #97875b;
}

#order_form .row .form_error2 {
  grid-column: 1 / -1;
  margin: 5px 0 0;
}

#shop .error, #order_form .form_error2 {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  color: #c21e34;
  font-size: 100%;
  font-weight: 700;
}
#shop .error img {
  float: left;
  margin-right: 1rem;
}

#shop .table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#shop table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
#shop table td:not(:first-child) {
  text-align: right;
}

@media (max-width: 768px) {  
  #contact .form_row {
    display: grid;
    grid-template-columns: 1fr;
  }
  #shop, #order_form {
    max-width: 960px;
    margin: 0 auto 2rem;
    width: 100%;
    padding: 0;
  }
}

#shop th {
  background: rgb(194, 187, 149, 0.3);
}
#shop th,
#shop td {
  border: 1px solid #ddd;
  padding: 10px 12px;
}
#shop tfoot th,
#shop tfoot td {
  font-weight: 700;
  text-align: center;
}

#order_form input[type="text"],
#order_form input[type="email"],
#order_form input[type="tel"],
#order_form select,
#order_form textarea {
  width: 100%;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #bbb;
}
#order_form select {
  width: 8em;
}
#order_form .stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
#order_form .radios {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.btn_main {
  background: #121d42;
  color: #fff;
  border: 0;
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
  font-size: 150%;
  cursor: pointer;
  transition: opacity .25s;
  min-width: 250px;
}
.btn_main:hover {
  opacity: .9;
}
.btn_sub {
  background: #f2f2f2;
  color: #000;
  border: 1px solid #ccc;
  padding: 12px 16px;
  cursor: pointer;
}
.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.actions .btn_main:hover {
  background: #1c2760;
}
.actions #btn_back,
.actions #btn_clear {  
  background: #d0d2d9;
  color: #333;
  font-size: 1rem;
  padding: 0.8rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background .3s ease;
  min-width: 250px;
}
.actions #btn_back:hover,
.actions #btn_clear:hover {
  background: rgba(194, 187, 149, 0.3);
}
.actions .btn_subgroup {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.input_group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.input_group input {
  width: 6em !important;
  padding: .4em .6em;
  border: 1px solid #ccc;
}
.input_group .hyphen {
  display: inline-block;
  color: #666;
}
.input_group .form_error2, .radios .form_error2 {
  flex-basis: 100%;
}

@media (max-width: 768px) {
  #order_form .row {
    grid-template-columns: 1fr;
  }
  #order_form fieldset {
    margin: 0 0 2rem;
  }
  #order_form label,
  #order_form .label {
    padding-top: 6px;
  }
  #order_form .actions {
    justify-content: stretch;
  }
  #order_form .actions .btn_main,
  #order_form .actions .btn_sub {
    flex: 1 1 auto;
  }
}



#shop #page-title-area {
  background-image: url(/common/images/page_title_shop.jpg);
}
#izushi #page-title-area {
  background-image: url(/common/images/page_title_izushi.jpg);
}
#recipe #page-title-area {
  background-image: url(/common/images/page_title_recipe.jpg);
}
#company #page-title-area {
  background-image: url(/common/images/page_title_company.jpg);
}

.blend {
  position: relative;
}
.blend::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(18, 29, 66, 0.5);
  mix-blend-mode: hard-light;
  opacity: 1;
  z-index: 2;
  animation: overlayFade 3s ease-out forwards;
}
.item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px;
  align-items: start;
}
.item2 {
  display: flex;
  justify-content: center;
  gap: 76px;
}
.item2 .item_tile img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .item2 {
    gap: 20px;
  }
}

.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}