@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

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

body[data-current-url*="/catering"] .select_language {
  display: none !important;
}

html {
  font-family: "Noto Sans JP";
  scroll-behavior: smooth;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  border: 0;
}

header {
  background-color: #FFF;
  top: 0;
  position: relative;
}

li {
  list-style: none;
}

/* 初期状態 */
.fade_top {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* アニメーションが開始されたとき */
.fade_top.animate {
  opacity: 1;
  transform: translateY(0);
}

.grow_up {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.grow_up.show {
  opacity: 1;
  transform: scale(1);
}

#loading-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 150vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  animation: slideOut 1s ease forwards;
}

/* アニメーション */
@keyframes slideOut {
  0% {
    transform: translateX(100%);
  }
  30% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* オーバーレイのスタイル */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

/* オーバーレイが表示される時 */
#overlay.active {
  opacity: 1;
  visibility: visible;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  background-color: #FFF;
  width: 100vw;
  height: 100px;
  transition: height 1.5s ease;
  z-index: 1001;
}

.header.shrink {
  height: 60px;
}

.seo-text {
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.5rem 1rem 0;
  font-size: 12px;
  transform: translateY(0);
  transition: opacity 1.5s ease, visibility 1.5s ease, padding 1s ease, transform 1s ease;
}

.seo-text.hidden {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50px);
}

.header_block {
  padding: 1rem 1rem 19px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: transform 0.5s ease;
  height: 40px;
  position: relative;
  z-index: 150;
}

.header_block.header-move-up {
  transform: translateY(-30px);
}

.logo_block {
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.logo_block.move-up {
  transform: translateY(0px);
}

.logo {
  width: 40px;
}

.glonav {
  display: none;
}

.glonav_drawer {
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: end;
  transition: transform 0.5s ease, visibility 0.5s ease, opacity 0.5s ease;
  float: right;
  width: 80%;
}

.glonav_drawer.active {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 110;
}

.glonav_drawer.move-up {
  position: relative;
  top: -40px;
}

.glonav_button {
  display: none;
}

.drawer_block {
  position: relative;
  overflow-y: scroll;
  width: 100%;
  background-color: black;
  margin-bottom: 4rem;
}

.drawer_inner {
  height: 92vh;
}

.glonav_item_drawer {
  border-bottom: 1px solid #292929;
}
.glonav_item_drawer a {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
}
.glonav_item_drawer svg {
  width: 24px;
  fill: #FFF;
}

.drawer_cta_block {
  padding: 1rem;
}

.drawer_catering_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/cta_catering.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
}
.drawer_catering_link p {
  color: #FFF;
}

.drawer_catering_link.en-mode {
  flex-direction: row;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/first-view8.jpg);
  padding: 1.5rem;
  justify-content: center;
  gap: 10px;
}
.drawer_catering_link.en-mode svg {
  margin-top: 2px;
  height: 30px;
  fill: #FFF;
}

.drawer_contact_block {
  padding: 0 1rem 1rem;
}

.drawer_contact_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.7rem 1rem 0.5rem;
  background-color: #FFF;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.drawer_contact_tel p {
  font-size: 12px;
}
.drawer_contact_tel .contact_detail-text {
  font-size: 14px;
}
.drawer_contact_tel .contact_detail-span {
  font-size: 24px;
}

.drawer_contact_mail {
  border: 3px #FFF solid;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.7rem 1rem 0.5rem;
  color: #FFF;
}
.drawer_contact_mail p {
  font-size: 12px;
}
.drawer_contact_mail .contact_detail-text {
  font-size: 14px;
}
.drawer_contact_mail .contact_detail-span {
  font-size: 16px;
}

.drawer_otherlink_block {
  display: flex;
  justify-content: center;
  margin-top: -1rem;
  padding-bottom: 6rem;
}

.drawer_otherlink {
  font-size: 12px;
  color: #FFF;
  padding: 1rem;
  text-align: center;
  text-decoration: underline;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.glonav_list {
  display: flex;
  flex-direction: column;
}

.wrapper {
  margin-top: 100px;
}

.select_language {
  margin-top: 4px;
  background-color: #f2f2f2;
  border: 1px solid black;
  border-radius: 5px;
  padding: 6px 0.8rem;
}

.language_button {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  width: 100px;
  cursor: pointer;
}

.language_button_svg {
  transition: transform 0.3s ease;
}

.language_button_svg.rotate {
  transform: rotate(180deg);
}

.language_dropdown {
  display: none;
  margin: 5px 0 0;
  z-index: 100;
}

/* リストアイテムのスタイル */
.language_dropdown li {
  padding: 12px 8px;
  cursor: pointer;
  font-size: 12px;
}

.language_dropdown li:hover {
  background-color: #f0f0f0;
}

/* プルダウンメニューの表示時 */
.language_dropdown.show {
  display: block;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background-color: black;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
}

.hamburger {
  width: 20px;
  height: 2px;
  background-color: #FFF;
  transition: transform 0.3s ease;
}

.hamburger-menu.active .hamburger.top {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger.cnt {
  transform: translateX(50px);
  opacity: 0;
}

.hamburger-menu.active .hamburger.btm {
  transform: translateY(-8px) rotate(-45deg);
}

.first-view_block {
  display: flex;
  flex-direction: column-reverse;
}

.first-view_image_block {
  overflow: hidden;
  width: 100vw;
  height: 255px;
  position: relative;
}

.hero-card_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}
.hero-card_inner * {
  text-align: center;
}

.lp-cta {
  margin: 1rem;
  width: 260px;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #FFF;
  font-weight: 500;
  gap: 8px;
}
.lp-cta svg {
  fill: #FFF;
  height: 20px;
}

.en-slogan {
  margin: 1rem 0;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.jp-slogan {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 700;
}

.jp-slogan.lp {
  font-weight: 800;
  margin-bottom: 1rem;
}

.first-view_logo {
  width: 80px;
}

.commitment {
  background-color: black;
  color: white;
  padding-bottom: 4rem;
}

.commitment_top-block {
  display: flex;
  flex-direction: column-reverse;
}

.commitment_image_block {
  overflow: hidden;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.commitment_image {
  -o-object-fit: cover;
     object-fit: cover;
}

.commitment-nihontya {
  -o-object-position: 30%;
     object-position: 30%;
}

.commitment_top_inner {
  padding: 1rem;
}
.commitment_top_inner * {
  margin-bottom: 1rem;
}

.section_title_mincho {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
}

.first-view_line {
  width: 100px;
  height: 1px;
  background-color: black;
  margin-bottom: 1rem;
}

.description_text {
  line-height: 2;
}

.description_text.lp {
  padding: 0 1rem;
}

.description_text.collabo {
  margin-bottom: 1rem;
}

.description_text.kai {
  margin: 2rem 0;
}

.description_text.lp {
  margin: 2rem 0 2rem;
}

.commitment_btm_flex {
  padding: 1rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.commitment_btm-block {
  position: relative;
}

.commitment_btm_inner {
  width: 100%;
  overflow: hidden;
}
.commitment_btm_inner h4 {
  text-align: center;
  letter-spacing: 4px;
  font-weight: 500;
}
.commitment_btm_inner p {
  font-size: 13px;
}
.commitment_btm_inner img {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}

.commitment_icon {
  width: 24px;
}

.commitment_line {
  margin: 1rem 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

.commitment_morebtn {
  display: flex;
  margin: 2rem auto 0;
  justify-content: center;
}

.primary-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  color: black;
  background-color: #FFF;
  border-radius: 8px;
  border: 2px solid black;
  padding: 1rem 2rem;
  width: 60vw;
  letter-spacing: 2px;
  font-weight: 500;
  align-items: center;
  font-size: 16px;
}
.primary-btn svg {
  position: absolute;
  right: 1.5rem;
}

.primary-btn.left-icon svg {
  position: absolute;
  left: 1.5rem;
}

.menu {
  padding: 2rem 1rem 0;
}

.section_title_block.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.section_entitle {
  font-family: "Poppins", sans-serif;
  letter-spacing: 8px;
  text-align: center;
  font-size: 24px;
  padding: 0.5rem 1.2rem 0.5rem 1.5rem;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section_entitle.white {
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.section_jptitle {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  text-align: center;
}

.menu_block {
  padding: 1rem 0;
}

.menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
  margin-bottom: 1rem;
  color: #FFF;
}

.menu-link.seasonal {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/menu-seasonal.jpg);
  background-position: 45% 45%;
  background-size: 110%;
}

.menu-link.onigiri {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/menu-onigiri.jpg);
  background-size: 160%;
  background-position: 45% 36%;
}

.menu-link.tea {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/menu-tea.jpg);
  background-size: 110%;
  background-position-y: 60%;
}

.menu-link.others {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/commitment-sencha.jpg);
  background-size: 100%;
  background-position: 0% 50%;
}

.menu-link.morning {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/menu-morning.jpg);
  background-size: 100%;
  background-position: 50% 50%;
}

.menu-link.sweets {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/menu-sweet.jpg);
  background-size: 100%;
  background-position: 50% 55%;
}

.menu-link.bento {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/menu-bento.jpg);
  background-size: 100%;
  background-position: 50% 50%;
}

.menu-entext {
  font-family: "Poppins", sans-serif;
  letter-spacing: 4px;
}

.menu-jptext {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
}

.catering {
  padding-bottom: 2rem;
  background-color: black;
  color: #FFF;
}

.catering_inner {
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.catering_image_block {
  overflow: hidden;
  width: 100vw;
  height: 300px;
}

.catering_image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 120%;
  -o-object-position: -40px 0px;
     object-position: -40px 0px;
}

.news {
  padding: 2rem 1rem;
}

.section_tltle {
  font-size: 24px;
  font-weight: 500;
}

.section_title_en {
  margin-left: 1rem;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 4px;
  font-weight: 600;
  color: #D0D0D0;
}

.news_list {
  padding: 1rem 0;
}

.news_item {
  padding: 1rem 0;
  border-bottom: 1px solid #dedede;
}

.news_link_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.news_link_block img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_link_block svg {
  position: absolute;
  right: 0px;
}

.news_date {
  margin: 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news_date * {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.day {
  margin-top: -12px;
  font-size: 42px;
}

.news-title {
  font-size: 14px;
  font-weight: 400;
  width: 45%;
}

.news_more-btn {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.images {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.images_list {
  display: flex;
  gap: 10px;
  will-change: transform;
}

.images_item {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
}
.images_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.accent-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  letter-spacing: 4px;
}

.accent-btn.collabo {
  letter-spacing: 2px;
}

.infomation {
  padding: 4rem 1rem 2rem;
}

.infomation_block {
  position: relative;
}

.infomation_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.infomation_inner .section_title_block.pcleft {
  margin-bottom: 16rem;
}

.infomation_inner.lp {
  padding: 0;
}
.infomation_inner.lp .infomation_list {
  padding: 1rem;
}

.infomation_image {
  position: absolute;
  top: 8rem;
  width: 100%;
}
.infomation_image img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.infomation_item {
  padding: 2rem 0;
  border-bottom: 1px solid #DEDEDE;
}

.infomation_left-item {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
}

.infomation_right-item {
  margin-left: 1rem;
}
.infomation_right-item span {
  display: block;
}

.infomation_map {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
}
.infomation_map iframe {
  height: 320px;
}
.infomation_map a {
  margin-top: 1.5rem;
  color: black;
}

.lp-cta_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lp-cta_block .lp-cta {
  color: #FFF;
}
.lp-cta_block p {
  line-height: 2;
  text-align: center;
}

.fixed-scroll-top {
  position: fixed;
  z-index: 999;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem;
  background-color: black;
  border-radius: 50%;
}
.fixed-scroll-top svg {
  width: 24px;
  fill: white;
}

.footer {
  background-color: black;
  padding: 3rem 0 0;
}
.footer * {
  color: white;
}

.footer_info-text {
  font-size: 13px;
  text-align: center;
  line-height: 1.8;
}

.footer_logo_block {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer_logo {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.footer_logo-text {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.footer_logo-text span {
  font-size: 16px;
}

.instagram {
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 60px;
}

.footer_line {
  height: 60px;
}
.footer_line svg {
  width: 60px;
  height: 60px;
}

.footer_x {
  height: 60px;
}
.footer_x svg {
  width: 60px;
  height: 60px;
}

.footer_sns_block {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.footer_instagram {
  display: flex;
  justify-content: center;
}

.footer_taberog {
  width: 60%;
  display: flex;
  background-color: #FFF;
  border-radius: 5px;
  gap: 0.8rem;
  padding: 1rem 2rem 1rem 1rem;
  justify-content: center;
}

.taberog_logo {
  width: 60px;
}

.taberog_text {
  width: 90px;
}

.footer_catering_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/cta_catering.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
}

.footer_catering_link:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../image/cta_catering.jpg);
}

.footer_cta_block {
  padding: 1rem;
}
.footer_cta_block .description_text {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.6;
}

.footer_contact_block {
  padding: 2rem 1rem;
}

.contact_tel_supplement {
  margin-bottom: 2rem;
}

.footer_contact_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 5px;
}
.footer_contact_tel div,
.footer_contact_tel p,
.footer_contact_tel span {
  color: black;
}
.footer_contact_tel .contact_detail-span {
  font-size: 30px;
}

.note-text {
  letter-spacing: 2px;
}

.contact_detail-text {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.contact_detail-span {
  margin-left: 2px;
  font-size: 26px;
}

.supplement-center {
  margin: 1rem 0;
  text-align: center;
}

.footer_contact_mail {
  border: 3px #FFF solid;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.footer_link_block {
  display: flex;
  flex-direction: column-reverse;
}

.footer_link_address {
  padding: 1rem 0;
  background-color: #171717;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_address {
  padding: 0 1rem;
  display: inline;
  font-size: 16px;
  text-align: center;
}
.footer_address span {
  display: block;
}

.footer_btns {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}
.footer_btns a {
  padding: 0.8rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  background-color: #FFF;
  color: black;
  border-radius: 5px;
  font-weight: 500;
}
.footer_btns svg {
  height: 20px;
}

.footer_link_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100vw;
}
.footer_link_list .footer_link_item:nth-child(1) {
  order: 1;
}
.footer_link_list .footer_link_item:nth-child(2) {
  order: 2;
}
.footer_link_list .footer_link_item:nth-child(3) {
  order: 3;
}
.footer_link_list .footer_link_item:nth-child(4) {
  order: 7;
}
.footer_link_list .footer_link_item:nth-child(5) {
  order: 6;
}
.footer_link_list .footer_link_item:nth-child(6) {
  order: 4;
}
.footer_link_list .footer_link_item:nth-child(7) {
  order: 5;
}
.footer_link_list .footer_link_item:nth-child(8) {
  order: 8;
}
.footer_link_list .footer_link_item:nth-child(9) {
  order: 9;
}
.footer_link_list .footer_link_item:nth-child(10) {
  order: 10;
}
.footer_link_list .footer_link_item:nth-child(11) {
  order: 11;
}

.footer_link_item {
  display: flex;
  justify-content: center;
  border: 0.5px solid #333;
}

.footer_link {
  padding: 1.5rem 0.5rem;
  text-align: center;
  font-size: 15px;
}

.copyright {
  background-color: #171717;
  padding: 1em 1rem 6rem;
}

.copyright-text {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  text-align: center;
}

.breadcrumbs {
  margin-top: 100px;
  padding: 0.5rem 1rem;
}

.breadcrumbs_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-wrap: nowrap;
  scrollbar-width: none;
  overflow: scroll;
}

.breadcrumbs_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
}
.breadcrumbs_item svg {
  width: 24px;
}

.breadcrumbs_item:last-child .breadcrumbs_link {
  width: 200px;
  scrollbar-width: none;
}

.cover_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  padding: 2rem 1rem;
  text-align: center;
  background-repeat: no-repeat;
}
.cover_wrapper h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 500;
}
.cover_wrapper p {
  font-family: "Poppins", sans-serif;
  letter-spacing: 4px;
}

.cover_wrapper.commitment {
  padding: 3rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_commitment.jpg);
  background-size: 120%;
  background-position: 50% 100%;
}

.commitment-introduction {
  padding: 2rem 1rem;
}
.commitment-introduction p {
  line-height: 1.8;
}

.commitment_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 280px;
  width: 100vw;
}

.commitment_section.lp {
  margin-bottom: 2rem;
}
.commitment_section.lp p {
  margin: 1rem 0;
  text-align: center;
}

.commitment_section.collabo,
.commitment_section.lp {
  position: static;
}

.section_title_logo {
  width: 40px;
}

.commitment_section_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  padding: 0 2rem;
}

.commitment-detail_top {
  position: relative;
  margin-bottom: 2rem;
}

.commitment_detail_btm {
  margin-top: -2rem;
}

.column2_image_block {
  margin-bottom: 8rem;
}
.column2_image_block img {
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

.column2_image_block.lp {
  margin-bottom: 0rem;
}

.lp-large_img {
  margin-bottom: 2rem;
}

.commitment_column2 p {
  line-height: 1.8;
  padding: 1rem;
}
.commitment_column2 div {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.commitment_column2 div h4 {
  padding: 1rem 0;
  font-size: 20px;
}
.commitment_column2 .description_text {
  width: 100%;
}
.commitment_column2 .primary-btn {
  margin: 1rem 0 1rem 1rem;
}
.commitment_column2 .primary-btn svg {
  right: 10px;
}

.commitment-detail_list {
  padding: 1rem;
}

.commitment-detail_item p {
  padding: 1rem;
  font-size: 14px;
  line-height: 1.8;
}
.commitment-detail_item {
  margin-bottom: 1rem;
}
.commitment-detail_item span {
  color: red;
  display: block;
}

.commitment-detail_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  justify-content: space-between;
  background-color: #F0F0F0;
}
.commitment-detail_title h4 {
  font-size: 20px;
  font-weight: 500;
}
.commitment-detail_title {
  margin-bottom: 1rem;
}

.commitment-detail_thumbnail {
  padding: 0 1rem;
  height: 200px;
  overflow: hidden;
}
.commitment-detail_thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.commitment-detail_thumbnail,
.commitment-detail_item p {
  display: none;
  /* 最初は非表示 */
}

.commitment-detail_item.active .commitment-detail_thumbnail,
.commitment-detail_item.active p {
  display: block;
  /* activeクラスが付与された場合のみ表示 */
}

.action-btns_block {
  padding: 1rem;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  color: #FFF;
  background-repeat: no-repeat;
}

.tomenu {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/cta_menu-list.jpg);
  background-size: 120%;
  background-position: 0% 60%;
}

.tocatering {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/cta_catering.jpg);
  background-size: 100%;
  background-position: 0% 60%;
}

.tostorybook {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/story-bg.jpg);
  background-size: 150%;
  background-position: 50% 50%;
}

.cover_wrapper.menu {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_menu.jpg);
  background-size: 160%;
  background-position: 50% 45%;
}

.menu-note {
  padding: 1rem;
}
.menu-note p {
  text-align: end;
  font-size: 12px;
}

.menu-tag {
  padding: 1rem 0;
  scrollbar-width: none;
  overflow: scroll;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.menu-tag ::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 330%;
  height: 2px;
  background-color: #DEDEDE;
  border-radius: 2px;
}

.menu-category_list {
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 1.25rem;
}

.menu-category_item.active a {
  color: #B8860B;
  position: relative;
}

.menu-category_item.active a::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 3px;
  background-color: #B8860B;
  border-radius: 2px;
}

.menu-category_item {
  width: 100%;
  text-wrap: nowrap;
}
.menu-category_item a {
  font-size: 14px;
}

.menu-category_item:last-child a {
  margin-right: 1.5rem;
}

.menu-catagory_title_block {
  padding: 1rem;
}
.menu-catagory_title_block h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 4px;
}

.menu-products {
  padding: 1rem 1rem 2rem;
}

.menu-products_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.menu-products_item {
  width: 100%;
}

.menu-products_card {
  font-weight: 600;
}
.menu-products_card .product-name {
  margin: 0.5rem 0 0;
}
.menu-products_card .menu-products_thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f8f8f8;
  height: 160px;
}
.menu-products_card .product-price {
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.menu-products_card .product-price span {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
}

.menu-products_card:hover .menu-products_thumbnail {
  opacity: 90%;
}

.menu-remarks {
  margin: 1rem 0;
}
.menu-remarks p {
  padding: 1rem;
  background-color: #f8f8f8;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.recently {
  padding: 1rem 0 4rem;
}

.recently_list {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.recently_item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f8f8ff;
}
.recently_item .recently-products {
  font-size: 12px;
  width: 60px;
}

.product_main_image {
  width: 100vw;
  overflow: hidden;
  height: 360px;
}
.product_main_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.product_images_list {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.product_images_item {
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  cursor: pointer;
}
.product_images_item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product_images_item.current {
  border: 3px solid #C3A24E;
}

.product_detail_group {
  padding: 1rem;
}

.product_name-price {
  font-weight: 600;
}
.product_name-price .product-name {
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.product_name-price .product-price {
  font-size: 28px;
}
.product_name-price .product-price span {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
.product_name-price p {
  text-align: end;
  font-size: 14px;
  margin-top: 1rem;
}

.product-size {
  margin: 2rem 0;
}

.product_detail_item {
  padding-top: 1rem;
}
.product_detail_item h3 {
  padding: 0.8rem 1rem;
  background-color: #f8f8f8;
}
.product_detail_item p,
.product_detail_item li {
  padding: 1rem;
  line-height: 1.8;
}

.product_detail_caution {
  color: red;
}

.cover_wrapper.news {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_news.jpeg);
  background-size: 140%;
  background-position: 50% 50%;
}

.news_list_wrapper {
  padding: 1rem 1rem 6rem;
}

.pagenation_block {
  padding: 2rem 1rem 0;
}

.pagenation_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pagenation_item {
  display: inline-block;
}

.pagenation_link {
  width: 30px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #b9b9b9;
}
.pagenation_link svg {
  width: 24px;
}

.pagenation_link.icon {
  border: 2px solid black;
}

.pagenation_item.active.icon {
  width: 30px;
  height: 40px;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
}

.pagenation_item:first-child .pagenation_link svg {
  transform: rotate(180deg);
}

.news_detail_thumbnail_block {
  width: 100vw;
  height: 52.3560209424%;
  overflow: hidden;
}
.news_detail_thumbnail_block img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.posted-date {
  text-align: end;
  font-size: 14px;
  padding: 0.5rem 1rem;
}

.news_article {
  padding: 2rem 1rem;
}
.news_article h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.news_article p,
.news_article li {
  line-height: 1.8;
}
.news_article p a,
.news_article li a {
  text-decoration: underline;
  color: #1a0dab;
  word-wrap: break-word;
  /* URLが長い場合に折り返す */
  overflow-wrap: break-word;
  display: inline-block;
  max-width: 100%;
  white-space: normal;
}
.news_article .btn_center {
  padding: 3rem 0;
}

.btn_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3rem;
}

.cover_wrapper.company-info {
  padding: 3rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_company-info.jpeg);
  background-size: 120%;
  background-position: 50% 50%;
}

.company-info_block p {
  margin-bottom: 2rem;
}

.company-infomation,
.catering-infomation {
  padding: 1rem;
}

.company-info_section {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.company-info_block.btm p:last-child {
  text-align: end;
  font-size: 14px;
  margin: 1rem 0;
}

.profile {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  margin: 1rem 0 4rem;
}

.profile_block {
  padding: 1rem 0 3rem;
}
.profile_block .section_title_block {
  width: 80%;
  margin: 0 auto 2rem;
}

.cover_wrapper.catering {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_catering.jpg);
  background-size: 120%;
  background-position: 50% 50%;
}

.catering_contact_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 1rem;
  padding: 1rem;
  border: 2px solid #E3E3E3;
}

.catering_note-text {
  text-align: center;
  margin: 1rem;
}
.catering_note-text span {
  text-align: center;
  display: block;
}

.catering_contact .contact_detail-text {
  justify-content: center;
  font-size: 16px;
}
.catering_contact .contact_detail-text span {
  font-size: 28px;
}
.catering_contact p {
  font-size: 14px;
}

.catering_contact_line {
  width: 80%;
  margin: 0.25rem auto 0.75rem;
  background-color: #BFBFBF;
  height: 1px;
}

.catering_step_list {
  position: relative;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}

.catering_step_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #CCC;
  gap: 0.5rem;
  width: 100%;
}

.catering_step_item.reach {
  color: black;
}
.catering_step_item.reach .catering_step_circle {
  position: relative;
  z-index: 10;
  background-color: black;
}

.catering_step_circle {
  width: 24px;
  height: 24px;
  background-color: #CCC;
  border-radius: 50%;
}

.catering_step_item.reach .catering_step_circle {
  background-color: black;
  /* 到達済みステップの色 */
}

.catering_step_text {
  font-size: 13px;
  display: block;
  text-align: center;
}
.catering_step_text span {
  display: block;
}

.catering_step_line {
  position: absolute;
  top: 26px;
  width: 80%;
  height: 1px;
  background-color: #CCC;
}

.catering_step_line::after {
  content: "";
  position: absolute;
  /* 線の中央に配置 */
  left: 0%;
  /* 左右の中心 */
  width: calc(var(--line-width, 0%) * 1);
  /* 線の長さをスマホ用に調整 */
  /* 前のステップまで線を伸ばす */
  height: 2px;
  background-color: #000;
  z-index: 1;
  /* 他要素の下に配置 */
}

.catering_step_title_block {
  padding-top: 2rem;
}
.catering_step_title_block h3 {
  padding: 0.5rem 1rem;
  background-color: #F0F0F0;
  font-size: 20px;
}
.catering_step_title_block div {
  font-size: 15px;
}
.catering_step_title_block span {
  display: block;
}
.catering_step_title_block li {
  padding: 0.5rem 1rem;
  line-height: 1.6;
}
.catering_step_title_block p {
  padding: 1rem;
}

.catering_attention_block {
  margin: 0 1rem;
  border: 1px #A8A8A8 solid;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.attention_confirm-btn {
  background-color: black;
  color: #FFF;
  margin-bottom: 1rem;
  padding: 0.5rem 2rem;
  width: 75%;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

/* モーダルスタイル */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modal-content {
  margin: auto;
  background: #fff;
  padding: 1rem;
  width: 80%;
  height: 80%;
  z-index: 10000;
}

.modal-text {
  margin: 2rem 0;
  padding: 1rem;
  border: #CCC solid 1px;
  height: 60%;
  overflow: scroll;
}

.modal-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.modal-content h2 {
  font-size: 18px;
  text-align: center;
  margin: 2rem 1rem 1rem;
}
.modal-content h2 span {
  display: block;
}
.modal-content .primary-btn {
  margin: 1rem auto;
  display: block;
  padding: 0.5rem 1.5rem;
  width: 160px;
  text-align: center;
  cursor: pointer;
}
.modal-content .primary-btn svg {
  position: absolute;
  left: 1.5rem;
}

.catering-form {
  padding: 2rem 0;
}

.form_existence-bg {
  padding: 2rem 1rem;
  background-color: #f8f8f8;
}

.form_none-bg {
  padding: 1rem 1rem 0;
  background-color: transparent;
}

.form_item {
  margin-top: 0.5rem;
  width: 100%;
}
.form_item label input[type=radio] {
  cursor: pointer;
}
.form_item p {
  margin: 1rem 1rem 0;
  line-height: 2;
  font-size: 14px;
}

.form_input {
  width: calc(100% - 2rem);
  padding: 1rem;
  border: 1px solid #CCC;
  font-size: 16px;
}

/* カスタム日付選択ボックス */
.custom-date-picker {
  position: relative;
  width: calc(100% - 2rem);
  padding: 1rem;
  border: 1px solid #CCC;
  font-size: 16px;
  cursor: pointer;
  background-color: #FFF;
  border-radius: 4px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* カレンダー全体 */
.calendar-container {
  display: none;
  position: absolute;
  z-index: 1000;
  background: white;
  border: 1px solid #CCC;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 300px;
}

/* カレンダーのヘッダー */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-header button {
  background: #FF4500;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-header button:disabled {
  background: #CCC;
  cursor: not-allowed;
}

/* 曜日ヘッダー */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day,
.day-header {
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #CCC;
  background: #F9F9F9;
  cursor: pointer;
  border-radius: 4px;
}

.calendar-day:hover {
  background: #FF4500;
  color: white;
}

.calendar-day.disabled {
  color: #CCC;
  background: #EFEFEF;
  cursor: not-allowed;
}

.form_inner {
  padding: 1rem 0;
}

.notice-text {
  margin-top: 1rem;
}

.form_radio {
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.form_label-text {
  font-size: 18px;
  font-weight: 600;
}

.hidden {
  display: none;
}

.custom-dropdown {
  position: relative;
  margin-top: 10px;
}

.custom-dropdown-button,
.prefecture-dropdown-button,
.ward-dropdown-button {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.custom-dropdown-button svg,
.prefecture-dropdown-button svg,
.ward-dropdown-button svg {
  transform: rotate(180deg);
  top: 20px;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 1.5rem;
}

.custom-dropdown-options,
.prefecture-dropdown-options,
.ward-dropdown-options {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  height: 180px;
  overflow: scroll;
}

.prefecture-dropdown-options {
  height: auto;
}
.prefecture-dropdown-options div {
  padding: 10px;
  cursor: pointer;
}

.ward-dropdown-options div {
  padding: 10px;
}

.custom-dropdown-options div {
  padding: 10px;
  cursor: pointer;
}

.custom-dropdown-options div:hover {
  background-color: #f0f0f0;
}

.custom-dropdown-options div:last-child {
  border-bottom: none;
}

.select-icon {
  transition: transform 0.5s ease;
}

.product-rice-type {
  font-weight: 400;
  font-size: 14px;
}

.notice {
  padding: 1rem;
  background-color: #e8e8e8;
  text-align: center;
  margin: 2rem 0;
}
.notice p {
  font-size: 14px;
}
.notice div {
  margin: 1rem auto 0.5rem;
  width: 80%;
  height: 1px;
  background-color: #BFBFBF;
}
.notice .delivery-fee {
  font-size: 18px;
}
.notice .delivery-fee span {
  font-size: 24px;
}

.select-product_section {
  background-color: black;
  color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.select-product_toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.select-product_toggle_icon {
  display: flex;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: #FFF 1px solid;
}
.select-product_toggle_icon svg {
  width: 16px;
  fill: #FFF;
}

.form_product-select_list {
  display: none;
  /* 初期状態で非表示 */
}

.form_product-select_list.confirm {
  flex-wrap: wrap;
  display: block;
}
.form_product-select_list.confirm p {
  padding: 1rem;
}

.form_product-select_list.active {
  display: block;
  /* アクティブなときに表示 */
}

.select-product_toggle_icon svg {
  opacity: 1;
  /* 確実に表示する */
  transition: transform 0.3s ease;
  /* スムーズなアニメーション */
}

.select-product_toggle_icon svg {
  transform: rotate(180deg);
  /* 180度回転 */
}

.form_product-select_item {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
}
.form_product-select_item input {
  align-self: center;
}

.form_product-select_item:last-child {
  margin-bottom: 1rem;
  margin-top: 0;
}

.form_product-select_item.confirm {
  align-items: start;
  flex: 0 0 30%;
  border: none;
  border-bottom: #e0e0e0 1px solid;
  padding: 1rem 0rem 2rem;
}

.form_select_inner {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #dedede;
}

.form_product-select_item.active .form_select_inner {
  border: 2px solid black;
}

/* チェックボックスを非表示にする */
input[type=checkbox] {
  display: none;
}

.form_select_item::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #DEDEDE;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  background-color: #F8F8F8;
  transition: all 0.3s ease;
}

/* チェック状態（activeクラス追加時）のカスタムデザイン */
.form_product-select_item.active .form_select_item::after {
  background: black;
  border-color: black;
}

.form_product-select_item.active .form_select_item::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 7px;
  width: 18px;
  height: 8px;
  border-bottom: 3px solid #FFF;
  border-left: 3px solid #FFF;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 10;
}

.form_select_item {
  display: flex;
  align-items: start;
  position: relative;
  cursor: pointer;
}

.form_select_item_confirm {
  display: flex;
  align-items: start;
  position: relative;
  padding: 0 1rem;
}
.form_select_item_confirm .form_select_thumbnail {
  margin: 0 1rem 0 0;
}

.form_select_item.comfirm .form_select_thumbnail {
  margin: 0 1rem 0 0;
}

.form_select_thumbnail {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 1rem 0 2rem;
  background-color: #f8f8f8;
}

.product-selected_block {
  width: 100%;
  display: none;
}

.product-selected_line {
  margin: 1rem 2rem;
  display: none;
  width: 90%;
  height: 1px;
  background-color: #EFEFEF;
}

.product-selected_block.selected {
  display: block;
  margin-top: 1rem;
}

.item-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-quantity p {
  margin-right: 2rem;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quantity label {
  font-size: 14px;
}
.quantity input {
  width: 30px;
  height: 28px;
  padding: 0.2rem 0.5rem 0.2rem 1rem;
}

.total-price_block {
  margin: 2rem 1rem;
  padding: 1rem;
  background-color: #f8f8f8;
  font-weight: 600;
}

.price_detail-item {
  margin: 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.price_detail-item p:last-child {
  font-family: "Poppins", sans-serif;
}

.total-price_line {
  margin: 1rem 0;
  height: 1px;
  width: 100%;
  background-color: #BFBFBF;
}

.total-price {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

.form_btns {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form_btns button {
  width: 90vw;
}

.prev-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  color: black;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 1rem 2rem;
  letter-spacing: 2px;
  font-weight: 500;
  align-items: center;
  font-size: 16px;
}
.prev-btn svg {
  position: absolute;
  left: 1.5rem;
}

.tax-info {
  text-align: end;
  margin-top: 1rem;
}

.tax-info.confirm {
  text-align: left;
  margin: -1rem 2rem 1rem;
  font-size: 15px;
}

.confirm_title {
  padding: 0.5rem 1rem;
  background-color: #ddd;
  font-size: 18px;
}

.confirm_title.gray {
  background-color: #F8F8F8;
  margin-top: 4rem;
}

.form_confirm_list {
  padding-bottom: 2rem;
}

.confirm_item {
  padding-top: 1rem;
  border-bottom: 1px solid #333;
}
.confirm_item p {
  padding: 1rem;
  font-weight: 600;
}

.contact_note_block {
  padding: 2rem 1rem;
}

.privacy-policy_introduction {
  padding-top: 1rem;
}
.privacy-policy_introduction p {
  padding: 1rem;
}

.privacy-policy_block {
  padding: 1rem;
}
.privacy-policy_block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.privacy-policy_block p {
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 14px;
}

.cover_wrapper.contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_contact.jpeg);
  background-size: 110%;
  background-position: 50% 50%;
}

.contact-form {
  position: relative;
  margin: 1rem 0 6rem;
}

.comfirm_item {
  margin: 1rem 0;
}

.text_col_center {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.page_status {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form_select_innner {
  font-weight: 600;
}
.form_select_innner .product-price span {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

.subtotal {
  font-size: 24px;
}

.subtotal-price {
  font-weight: 600;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

.confirm_product_item {
  margin: 0.5rem 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.confirm_product_item div {
  font-size: 14px;
}
.confirm_product_item div span {
  font-size: 18px;
  font-weight: 600;
}

.confirm_product_inner .product-name {
  font-weight: 600;
  font-size: 18px;
}

.confirm-price {
  font-weight: 600;
  text-align: end;
  margin: 1rem 0 -1rem;
}
.confirm-price span {
  font-size: 24px;
}

.custom-date-picker .select-icon {
  transform: rotate(180deg);
  top: 20px;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 1.5rem;
}

.product-rice-types {
  font-size: 14px;
  font-weight: 400;
}

.g-recaptcha {
  justify-self: center;
  margin: 1rem 0;
}

.header_drawermenu {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.cover_wrapper.recruitment {
  padding: 3rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_company-info.jpeg);
  background-size: 120%;
  background-position: 50% 50%;
}

.recruitment {
  padding: 0rem 1rem 4rem;
}

.recruitment-top p {
  line-height: 2;
}

.recruitment_heading {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruitment_heading h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
}
.recruitment_heading p {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
}

.recruitment-btm {
  padding: 2rem 0;
}

.recruitment-info_list {
  padding-bottom: 2rem;
}
.recruitment-info_list li {
  padding: 2rem 1rem;
  border-top: 1px solid;
}
.recruitment-info_list li p:first-child {
  padding-bottom: 1rem;
  font-weight: 600;
}
.recruitment-info_list li p:last-child {
  padding-left: 1rem;
}
.recruitment-info_list li:last-child {
  border-bottom: 1px solid;
}

.recruitment_supplement {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruitment_supplement h4 {
  padding: 2rem;
  font-size: 30px;
  line-height: 2;
  margin-bottom: 2rem;
  text-align: center;
  border: 2px solid #E3E3E3;
}
.recruitment_supplement h4 span {
  display: block;
  font-size: 18px;
  font-weight: 400;
}
.recruitment_supplement p {
  padding-bottom: 2rem;
  line-height: 1.8;
}
.recruitment_supplement p a {
  text-decoration: underline;
}

.spcol_pcrow img {
  margin-bottom: 10px;
}

.video-content-small {
  display: flex;
  justify-content: center;
}

.collaboration_section-line {
  margin: 2rem 0;
  padding: 1px 0;
  width: 100%;
  background-color: #F2F2F2;
}

.commitment-detail_top .collaboration_section-line {
  margin: 1rem 0;
}

.column2_image_block.collabo {
  margin: 0;
}

.commitment_contents.collabo {
  margin: 0 0 -2rem;
}

.commitment_contents.lp {
  margin: 0 0 -2rem;
}

.commitment_contents.lp.atbg {
  margin: 0 0 2rem;
  padding: 2rem 0 4rem;
  background-color: #F9F9F9;
}

.banner-link-fixed {
  position: fixed;
  inset: auto auto 0.5rem 0.5rem;
  z-index: 999;
}

.banner-link {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/cta_catering.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  display: block;
  padding: 1rem 1rem;
  border-radius: 10px;
}
.banner-link * {
  color: #fff;
  text-align: center;
}
.banner-link .banner-en {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
}
.banner-link .banner-text {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
}

.banner-link.lp {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/first-view9.jpg);
  background-position: 50% 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.banner-link.lp svg {
  height: 16px;
  fill: #FFF;
}
.banner-link.lp .banner-en {
  font-size: 16px;
  font-weight: 600;
}

.footer_other_link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer_other_banner_img {
  display: block;
  width: 60%;
}
.footer_other_banner_img img {
  border-radius: 10px;
}

.cdsComponent.cdsRating span {
  color: #111;
}

.footer_cta_amazon {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_cta_amazon img {
  padding: 0 1rem;
  margin-bottom: 1rem;
  width: 90%;
  border: 1px solid #FFF;
}
.footer_cta_amazon p {
  font-size: 14px;
}

/* ドット全体の位置（お好みで調整） */
.slick-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

/* リスト番号（1,2,3）を消す & 横並び用の余白 */
.slick-dots li {
  list-style: none;
  /* これで数字が消える */
}

/* ボタン本体のテキストを消す（念のため） */
.slick-dots li button {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0;
}

/* ドットの見た目 */
.slick-dots li button:before {
  content: "";
  display: block;
  width: 12px;
  /* ← ドットの大きさ（ここを大きくするとサイズUP） */
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.4;
}

/* アクティブ時のドット */
.slick-dots li.slick-active button:before {
  opacity: 1;
  background: #666;
  /* アクティブ色（お好みで変更） */
}

.google-review-list {
  padding: 2rem;
  margin: 2rem 1rem 0;
  border: 1px solid #CCC;
  border-radius: 10px;
}

.images.lp {
  padding: 2rem 0;
}

.custom-video {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .wrapper {
    margin-top: 110px;
  }
  .header {
    height: auto;
  }
  .header.shrink {
    height: 80px;
  }
  .seo-text {
    padding: 0.5rem 5.5% 0;
    font-size: 14px;
  }
  .header_block {
    padding: 1rem 5%;
    position: static;
  }
  .header_block.header-move-up {
    transform: translateY(0px);
  }
  .logo_block.move-up {
    transform: translateY(-30px);
  }
  .logo {
    width: 50px;
  }
  .logo-text {
    font-size: 26px;
  }
  .glonav_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .glonav {
    display: block;
  }
  .glonav_drawer {
    position: absolute;
    top: 56px;
    right: 5%;
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
  .glonav_drawer.pc-shrink {
    transform: translate(-100px, -26px);
  }
  .glonav_drawer.pc-shrink-catering {
    transform: translate(0px, -26px);
  }
  .glonav_drawer.move-up {
    position: absolute;
    top: 50px;
  }
  .drawer_block {
    overflow-y: auto;
    width: auto;
    background-color: transparent;
    margin-bottom: 0;
  }
  .glonav_list_drawer {
    display: flex;
    gap: 20px;
  }
  .glonav_item a {
    font-weight: 500;
    font-size: 14px;
  }
  .glonav_item a:hover {
    opacity: 80%;
  }
  .drawer_inner {
    height: auto;
  }
  .glonav_item_drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border-bottom: none;
  }
  .glonav_item_drawer a {
    padding: 0;
    color: black;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
  }
  .glonav_item_drawer a:hover {
    text-decoration: underline;
  }
  .glonav_item_drawer svg {
    display: none;
  }
  .glonav_item_drawer.contact {
    display: none;
  }
  .glonav_item_drawer.recruit {
    display: none;
  }
  .drawer_cta_block {
    display: none;
  }
  .drawer_contact_block {
    display: none;
  }
  .drawer_otherlink_block {
    display: none;
  }
  .drawer_otherlink {
    font-size: 12px;
    color: #FFF;
    padding: 1rem;
    text-align: center;
    text-decoration: underline;
  }
  .glonav_button {
    display: block;
  }
  .glonav_button p {
    border-radius: 8px;
    background-color: black;
    color: #FFF;
    width: 100px;
    padding: 0.5rem 16px;
    text-align: center;
    font-size: 12px;
  }
  .glonav_button.tokyo_breakfast p {
    border-radius: 8px;
    background-color: transparent;
    color: black;
    border: black solid 1px;
    border-radius: 8px;
  }
  .select_language {
    position: absolute;
    right: 5%;
    top: 0.4rem;
    z-index: 10;
    transition: transform 0.5s ease;
    padding: 6px 10px;
  }
  .select_language.pc-transform {
    transform: translate(40px, 14px);
  }
  .hamburger-menu {
    display: none;
  }
  .hero-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .hero-card_inner {
    padding: 0;
  }
  .first-view_block {
    display: grid;
    grid-template-columns: 43% auto;
  }
  .first-view_image_block {
    height: 64vh;
    width: 100%;
  }
  .first-view_image_block.lp {
    height: 550px;
  }
  .first-view_image_block.lp img {
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .first-view_logo {
    width: 120px;
  }
  .en-slogan {
    margin: 1.5rem 0;
    font-size: 30px;
    width: 65%;
  }
  .en-slogan.lp {
    margin: 0 0 1.5rem;
    font-weight: 300;
    width: auto;
  }
  .en-slogan.lp.b {
    margin: 1.5rem 0;
    font-weight: 500;
  }
  .commitment {
    padding: 6rem;
  }
  .containar {
    max-width: 1440px;
    width: 70%;
    margin: 0 auto;
  }
  .commitment_top-block {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .section_title_mincho {
    font-size: 36px;
  }
  .commitment_top_inner {
    padding: 2rem 0;
  }
  .commitment_top_inner * {
    margin-bottom: 2rem;
  }
  .commitment_image_block {
    margin-top: 3rem;
    width: 100%;
    display: block;
  }
  .commitment_image {
    margin: 10px 0;
  }
  .commitment_btm-block {
    margin: 2rem 0;
    padding: 3rem 2rem;
    background-color: #171717;
  }
  .commitment_btm_flex {
    gap: 1rem;
  }
  .commitment_btm_inner h4 {
    font-size: 24px;
  }
  .commitment_btm_inner p {
    font-size: 16px;
  }
  .commitment_btm_inner img {
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 1rem;
  }
  .commitment_icon {
    width: 50px;
    transform: translateY(180px);
  }
  .commitment_line {
    margin: 1rem 0 2rem;
  }
  .commitment_morebtn {
    margin: 4rem auto 0;
  }
  .primary-btn {
    width: 300px;
  }
  .primary-btn:hover {
    background-color: #EFEFEF;
  }
  .menu {
    padding: 4rem 0;
  }
  .section_entitle {
    font-size: 32px;
  }
  .section_jptitle {
    font-size: 28px;
  }
  .menu_block {
    padding: 4rem 0;
  }
  .menu-link_list {
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .menu-link {
    margin-bottom: 0;
  }
  .menu-link:hover {
    opacity: 80%;
  }
  .catering {
    padding-bottom: 0;
  }
  .catering_block {
    display: grid;
    grid-template-columns: 50% 1fr;
  }
  .catering_inner {
    align-items: baseline;
    padding: 4rem 3rem;
    gap: 1rem;
  }
  .catering_inner p {
    margin: 1rem 0;
    width: 68%;
  }
  .catering_image_block {
    width: 100%;
    height: 460px;
  }
  .catering_image {
    width: 100%;
    -o-object-position: -5px 0px;
       object-position: -5px 0px;
  }
  .section_title_block.pcleft * {
    text-align: left;
  }
  .news {
    padding: 4rem 6rem;
  }
  .section_tltle {
    font-size: 32px;
  }
  .section_title_en {
    font-size: 28px;
  }
  .news_list {
    padding: 2rem 5rem;
  }
  .news_link_block img {
    width: 120px;
  }
  .news_item:hover img {
    opacity: 80%;
  }
  .day {
    font-size: 48px;
  }
  .news-title {
    font-size: 16px;
    width: 60%;
  }
  .images {
    padding: 2rem 0;
  }
  .images.lp {
    padding: 4rem 0 6rem;
  }
  .images_list {
    gap: 1rem;
  }
  .images_item {
    width: 20vw;
    height: 260px;
  }
  .images_item.lp {
    width: 30vw;
    height: 340px;
  }
  .infomation {
    padding: 4rem 0;
  }
  .infomation_block {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
    align-items: center;
  }
  .infomation_block.lp {
    display: flex;
    gap: 2rem;
  }
  .infomation_block.lp .infomation_image img {
    height: 500px;
  }
  .infomation_inner {
    padding: 2rem;
    align-items: baseline;
  }
  .infomation_inner .section_title_block.pcleft {
    margin-bottom: 0;
  }
  .infomation_inner.lp {
    padding: 0;
    width: 100%;
  }
  .infomation_inner.lp .infomation_list {
    padding: 1rem 0 0 1rem;
    width: 100%;
  }
  .infomation_inner.lp .section_entitle {
    letter-spacing: 7px;
  }
  .infomation_image {
    overflow: hidden;
    position: static;
  }
  .infomation_image img {
    width: 130%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: -110px 0px;
       object-position: -110px 0px;
  }
  .infomation_list {
    padding: 2rem 0 0;
    width: 80%;
  }
  .infomation_list.profile {
    padding: 2rem 0 0;
    width: 100%;
  }
  .infomation_item {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 30% auto;
    align-items: start;
  }
  .infomation_right-item span {
    display: inline;
    margin-right: 8px;
  }
  .infomation_map {
    padding: 0 1rem;
  }
  .infomation_map iframe {
    height: 420px;
  }
  .infomation_map a {
    margin-top: 2rem;
  }
  .footer {
    padding: 4rem 0 0;
  }
  .footer_top_block {
    display: grid;
    grid-template-columns: 40% 1fr 1fr;
    padding: 2rem 10rem 4rem;
  }
  .footer_inner_info {
    margin-right: 3rem;
  }
  .footer_info-text {
    text-align: left;
    font-size: 14px;
  }
  .footer_logo_block {
    padding: 1rem 0;
    flex-direction: row;
    gap: 8px;
  }
  .footer_logo {
    width: 80px;
    height: 80px;
    margin: 0;
  }
  .footer_logo-text {
    text-align: left;
    font-size: 28px;
  }
  .footer_logo-text span {
    font-size: 22px;
  }
  .footer_sns_block {
    padding: 1rem 0;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
  }
  .footer_taberog {
    width: auto;
    gap: 0.5rem;
    padding: 1rem;
  }
  .taberog_logo {
    width: 50px;
  }
  .footer_cta_block {
    padding: 0;
  }
  .footer_cta_block .description_text {
    line-height: 1.8;
  }
  .description_text.lp {
    padding: 0;
  }
  .footer_contact_block {
    padding: 0 0 0 1.5rem;
  }
  .footer_contact_tel {
    padding: 0.5rem 0.5rem 0.3rem;
  }
  .supplement-center {
    margin: 0.5rem 0;
    font-size: 13px;
  }
  .footer_contact_mail {
    border: 2px #FFF solid;
    padding: 0.5rem 1rem;
  }
  .footer_link_block {
    flex-direction: column;
  }
  .footer_link_address {
    padding: 2rem 2rem 1rem;
    flex-direction: row;
    justify-content: center;
  }
  .footer_address {
    padding: 0;
    display: block;
    text-align: left;
    font-size: 14px;
  }
  .footer_address span {
    display: inline;
  }
  .footer_btns {
    display: flex;
  }
  .footer_btns a {
    padding: 0.5rem 1.5rem;
    font-size: 14px;
  }
  .footer_btns a:hover {
    background-color: #EFEFEF;
    text-decoration: underline;
  }
  .footer_link_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-top: 0.5px solid #333;
    border-bottom: 0.5px solid #333;
  }
  .footer_link_list .footer_link_item:nth-child(2) {
    order: 2;
  }
  .footer_link_list .footer_link_item:nth-child(3) {
    order: 3;
  }
  .footer_link_list .footer_link_item:nth-child(4) {
    order: 4;
  }
  .footer_link_list .footer_link_item:nth-child(5) {
    order: 11;
  }
  .footer_link_list .footer_link_item:nth-child(6) {
    order: 5;
  }
  .footer_link_list .footer_link_item:nth-child(7) {
    order: 7;
  }
  .footer_link_list .footer_link_item:nth-child(6) {
    order: 8;
  }
  .footer_link_item {
    display: flex;
    justify-content: center;
    border: none;
  }
  .footer_link {
    font-size: 14px;
  }
  .footer_link:hover {
    text-decoration: underline;
  }
  .copyright {
    padding: 1rem 1rem 2rem;
  }
  .copyright-text {
    font-size: 16px;
  }
  .breadcrumbs {
    margin-top: 110px;
    padding: 1rem 10%;
  }
  .cover_wrapper {
    padding: 3rem 1rem;
  }
  .cover_wrapper h2 {
    font-size: 36px;
  }
  .cover_wrapper p {
    font-size: 18px;
  }
  .cover_wrapper.commitment {
    background-size: 100%;
    background-position: 0% 75%;
  }
  .commitment-introduction {
    margin: 0 auto;
    padding: 4rem 0 2rem;
  }
  .commitment_contents {
    margin: 3rem auto;
  }
  .commitment_contents.collabo {
    margin: 3rem auto 1rem;
  }
  .commitment_contents.lp {
    margin: 10rem auto 1rem;
  }
  .commitment_contents.lp.atbg {
    margin: 0 0 -2rem;
    padding: 6rem 0;
  }
  .commitment_section {
    position: static;
    width: auto;
  }
  .commitment_section.lp {
    margin-bottom: 0;
  }
  .section_title_logo {
    width: 60px;
  }
  .commitment_section_title {
    font-size: 32px;
    letter-spacing: 4px;
  }
  .commitment_section_title.lp {
    font-size: 45px;
    margin-bottom: 1rem;
  }
  .column2_image_block {
    margin: 0;
  }
  .column2_image_block img {
    height: 360px;
  }
  .column2_image_block .lpimg {
    height: 440px;
  }
  .commitment_column2 {
    padding: 3rem 0;
    gap: 2rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .commitment_column2 div {
    padding: 0;
    width: 100%;
    align-items: flex-start;
  }
  .commitment_column2 p {
    padding: 0;
    line-height: 2;
  }
  .commitment_column2 .primary-btn {
    margin: 1rem 0 0 0;
  }
  .commitment_column2.reverse {
    flex-direction: row;
  }
  .commitment-detail_list {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .commitment-detail_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 calc(33.333% - 1rem);
    /* 各アイテムを3列に分割 */
    box-sizing: border-box;
    /* パディングを含めた幅の計算を正確に */
    margin-bottom: 1rem;
  }
  .commitment-detail_item p {
    padding: 0;
    order: 3;
  }
  .commitment-detail_list.aco {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .commitment-detail_item.aco {
    flex: 0 0 40%;
  }
  .commitment-detail_thumbnail,
  .commitment-detail_item p {
    display: block;
    /* 最初は非表示 */
  }
  .commitment-detail_title {
    justify-content: center;
    padding: 1rem 0 0.5rem;
    background-color: transparent;
  }
  .commitment-detail_title h4 {
    text-align: center;
  }
  .commitment-detail_title svg {
    display: none;
  }
  .commitment-detail_title {
    margin-bottom: 0;
    order: 2;
  }
  .commitment-detail_thumbnail {
    padding: 0;
    width: 100%;
    height: 180px;
    order: 1;
  }
  .action-btns_block {
    margin: 0 auto;
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .action-btn {
    width: 100%;
  }
  .action-btn:hover {
    opacity: 90%;
  }
  .tomenu {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/cta_menu-list.jpg);
    background-size: 120%;
    background-position: 0% 60%;
  }
  .tocatering {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/cta_catering.jpg);
    background-size: 100%;
    background-position: 0% 60%;
  }
  .cover_wrapper.menu {
    background-size: 110%;
    background-position: 100% 40%;
  }
  .menu-note {
    padding: 4rem;
  }
  .menu-note p {
    text-align: center;
    font-size: 14px;
  }
  .menu-tag {
    margin: 0 auto;
    width: 75%;
    padding: 0 0 1rem 0;
  }
  .menu-tag ::after {
    width: 100%;
    bottom: 0px;
  }
  .menu-category_list {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .menu-category_list li {
    text-align: center;
  }
  .menu-category_item a {
    font-size: 16px;
  }
  .menu-category_item:last-child {
    margin-right: 0;
  }
  .menu-list {
    padding: 1rem 0;
  }
  .menu-catagory_title_block {
    padding: 3rem 0 3rem;
  }
  .menu-products {
    padding: 1rem 0rem 2rem;
  }
  .menu-products_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 2rem;
  }
  .menu-products_card .product-name {
    margin: 1rem 0 0.5rem;
  }
  .menu-products_card .menu-products_thumbnail {
    width: 100%;
    height: 180px;
  }
  .menu-remarks {
    margin: 3rem 0 1rem;
  }
  .menu-remarks p {
    padding: 2rem;
    line-height: 1.8;
  }
  .recently {
    padding-bottom: 8rem;
  }
  .recently_list {
    padding: 0;
    gap: 2rem;
  }
  .recently_item img {
    width: 120px;
    height: 120px;
  }
  .recently_item .recently-products {
    font-size: 14px;
    width: 120px;
  }
  .recently_item:hover img {
    opacity: 90%;
  }
  .menu-detail {
    padding: 1rem 0;
  }
  .product_top_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .product_main_image {
    width: 100%;
    height: 420px;
  }
  .product_images_list {
    padding: 2rem 0;
    justify-content: flex-start;
  }
  .product_images_item {
    width: 80px;
    height: 80px;
  }
  .product_detail_group {
    padding: 6rem 4rem;
  }
  .product_name-price .product-price {
    margin: 1rem 0;
    font-family: "Poppins", sans-serif;
  }
  .product_name-price p {
    text-align: start;
  }
  .cover_wrapper.news {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../image/cover_news.jpeg);
    background-size: 100%;
    background-position: 50% 50%;
  }
  .news_list_wrapper {
    padding: 2rem;
  }
  .pagenation_block {
    padding: 2rem 0 5rem;
  }
  .pagenation_list {
    gap: 1.5rem;
  }
  .pagenation_link {
    width: 50px;
    height: 50px;
  }
  .pagenation_item.active.icon {
    width: 50px;
    height: 50px;
  }
  .news_detail {
    width: 80%;
    margin: 0 auto;
  }
  .news_detail_thumbnail_block {
    width: 100%;
    justify-self: center;
  }
  .news_detail_thumbnail_block img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  .posted-date {
    font-size: 16px;
    padding: 1rem 0.5rem 0;
  }
  .company-infomation {
    padding: 2rem 4rem;
  }
  .catering-infomation {
    padding: 1rem 0 4rem;
  }
  .company-info_block.btm p:last-child {
    font-size: 16px;
    margin: 1.5rem 0 0;
    line-height: 2;
  }
  .profile {
    background-color: #f8f8f8;
    padding: 2rem 0rem;
    margin: 1rem 0 0;
  }
  .profile_block {
    padding: 1rem 3rem 4rem;
  }
  .profile_block .section_title_block {
    width: 50%;
    margin: 2rem auto 1rem;
  }
  .catering-form {
    position: relative;
    margin: 4rem 0 10rem;
    background-color: #f8f8f8;
  }
  .catering-form.no-bg {
    margin: 0 0 10rem;
    background-color: transparent;
  }
  .attention_confirm-btn {
    width: 240px;
  }
  .catering_step_title_block h3 {
    margin: 0 1rem;
  }
  .form_inner {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 1rem;
  }
  .form_inner label {
    margin-top: 1rem;
    padding-right: 1rem;
  }
  .form_none-bg {
    padding: 2rem 1rem;
    background-color: transparent;
  }
  .prefecture-dropdown-button,
  .ward-dropdown-button {
    width: 300px;
  }
  .form_btns {
    margin: 0 auto;
    width: 70%;
    flex-direction: row-reverse;
    justify-content: center;
    position: absolute;
    bottom: -6rem;
    gap: 4rem;
  }
  .form_btns button {
    width: 360px;
  }
  .notice {
    padding: 2rem 0;
  }
  .notice p {
    font-size: 16px;
  }
  .notice div {
    width: 100px;
  }
  .notice .delivery-fee {
    font-size: 20px;
  }
  .notice .delivery-fee span {
    font-size: 32px;
  }
  .form_product-select_list {
    padding: 1rem 0 2rem;
    gap: 1rem;
  }
  .form_product-select_list.confirm {
    display: flex;
  }
  .form_product-select_list.active {
    display: flex;
    flex-wrap: wrap;
    /* アクティブなときに表示 */
  }
  .form_product-select_item {
    flex: 0 0 30%;
    width: 100%;
    margin: 0;
  }
  .form_product-select_item:last-child {
    margin: 0;
  }
  .total-price_block {
    padding: 2rem 4rem;
    margin: 4rem 8rem 0;
  }
  .item-quantity p {
    margin-right: 0.5rem;
  }
  .tax-info {
    margin: 2rem 8rem -2rem;
  }
  .tax-info.confirm {
    margin: 2rem 8rem -2rem;
    font-size: 16px;
  }
  .confirm_block {
    margin-top: 2rem;
    padding: 0 1rem;
  }
  .confirm_title.gray {
    margin: 2rem 0 0;
  }
  .confirm_block .catering_step_title_block {
    margin: 2rem 4rem 0;
  }
  .confirm_block .catering_step_title_block li {
    padding: 0.5rem 2rem;
  }
  .confirm_item div {
    display: flex;
  }
  .completed_block {
    position: relative;
    margin-bottom: 10rem;
  }
  .contact-form {
    margin: 1rem 0 9rem;
  }
  .contact-form_block {
    margin: 1rem 0;
    background-color: #F8F8F8;
    padding: 0 15%;
  }
  /* モーダルスタイル */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  .modal-content {
    width: 60%;
  }
  .modal-text {
    margin: 2rem 4rem;
    padding: 2rem;
    height: 55%;
  }
  .modal-content p {
    line-height: 2;
  }
  .modal-content h2 {
    font-size: 20px;
  }
  .modal-content h2 span {
    display: inline;
  }
  .product-rice-type {
    margin: -4px 0 4px;
  }
  .accent-btn:hover {
    text-decoration: underline;
  }
  .g-recaptcha {
    margin: 2rem 0;
  }
  .recruitment {
    padding: 0rem 4rem 4rem;
  }
  .recruitment-top {
    padding: 2rem 0;
  }
  .recruitment-top p {
    line-height: 2;
  }
  .recruitment_heading {
    padding: 2rem 0 3rem;
  }
  .recruitment_heading h2 {
    font-size: 36px;
  }
  .recruitment_heading p {
    font-size: 14px;
  }
  .recruitment-btm {
    padding: 2rem 0;
  }
  .recruitment-info_list {
    padding-bottom: 4rem;
  }
  .recruitment-info_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
  .recruitment-info_list li p:first-child {
    padding: 0;
    width: 30%;
  }
  .recruitment-info_list li p:last-child {
    padding: 0;
  }
  .recruitment_supplement h4 {
    width: 60%;
  }
  .recruitment_supplement h4 span {
    display: block;
    font-size: 18px;
  }
  .recruitment_supplement p {
    padding-bottom: 2rem;
  }
  .recruitment_supplement p a:hover {
    text-decoration: none;
  }
  .recruitment_supplement p a:hover {
    text-decoration: underline;
  }
  .spcol_pcrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 10px;
  }
  .collaboration_image_list {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .collaboration_image_list li {
    flex: 0 0 31%;
  }
  .collaboration_section-line {
    margin: 2rem 0 -8px;
  }
  .commitment-detail_top .collaboration_section-line {
    margin: 1rem 0 -8px;
  }
  .banner-link {
    padding: 1.5rem 2rem;
  }
  .banner-link .banner-en {
    font-size: 13px;
  }
  .banner-link .banner-text {
    font-size: 15px;
  }
  .footer_other_link {
    align-items: baseline;
    margin-bottom: -1rem;
  }
  .description_text.lp {
    margin: 2rem 0 2rem;
  }
  .google-review-list {
    padding: 2rem;
    margin: 2rem 0 0;
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-calc(650px));
    /* 画像6枚 + gap分 */
  }
}/*# sourceMappingURL=style.css.map */