@charset "utf-8";

/*
Theme Name: 有木物産
Theme URI: https://arikibussan.com/
Description: 有木物産
Version: 1.0
Author: Webtry_Hachisuga
Author URI: https://webtry.net
*/

/* ローディング画面 */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFBE6; /* 背景色はお好みで */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000; /* 他要素より上 */
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-logo {
    width: 260px; /* ロゴの大きさ調整 */
    animation: fadeIn 1.5s ease;
}

/* フェードイン効果 */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(1); }
    to { opacity: 1; transform: scale(1); }
}

/* 非表示にするクラス */
#loading.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* ←クリックなども透過 */
}
/*全体*/
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 3s ease, transform 3s ease;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.SicYubi-FudeRM {
    font-family: "sicyubi-fuderm", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1, h2 {
    font-family: "sicyubi-fuderm", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #2b2b2b;
}
.breadcrumbs {
    padding-left: 1rem;
}
/*ヘッダー*/
.header_container {
    display: flex;
    justify-content: space-between;
    height: 50px;
    background-color: #FFFBE6;
}
.company-name {
    padding-right: 10px;
}
.company-name img {
    width: auto;
    height: 50px;
}
#main-title {
    display: flex;
    align-items: center;
}
#main-title h1 {
    font-size: 0.8rem;
    line-height: 1rem;
    padding-right: 1.5rem;
}
/*ハンバーガーメニュー*/
.btn-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 4000;
}
.btn-menu span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #FF0516;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.menu_container {
    display: flex;
    width: 60px;
}
.menu-navi {
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    color: #FF0516;
    position: fixed;
    top: 8px;
    right: 40px;
    z-index: 4000;
}
/* ×（バツ）に変形 */
.btn-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .btn-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/*モバイルメニュー*/
#menu-panel {
    background-color: #FFFBE6;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3000;
    padding: 2rem;
    width: max(32vw, 20rem);
    height: 92vh;
    box-shadow: 0 0 2rem black;
    translate: 100vw;
}
.menu-list {
    list-style: none;
    margin-top: 5rem;
}
.menu-list li {
    margin: 1rem 0.5rem;
}
.menu-list li a {
    color: #FF0516;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3rem;
}
.menu-list li a:hover {
    font-size: 1.7rem;
}
/*ムービー*/
#top-movie video {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
}
#top-movie {
    width: 100%;
}
/*こだわり*/
.commitment-title {
    margin-top: 50px;
    text-align: center;
    line-height: 2.2rem;
}
.commitment-title h2 {
    display: inline-block;
    text-align: left;
}
.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 60px;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: 40% 35%;
}
.commitment-image {
    width: 85%;
    display: block;
    margin: 50px auto 20px auto;
}
.commitment-text {
    width: 70%;
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
}
.button {
    display: block;
    background-color: #FF0516;
    width: 9rem;
    margin: 0 auto;
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
    font-weight: bold;
    border-radius: 6px;
}
.button a {
    text-decoration: none;
    color: white;
}
.commitment_container {
    padding: 50px 0 90px 0;
    background-image: url(images/AdobeStock_468516477.jpg);
    background-size: cover;
}
.commitment_container-nobackimage {
    padding: 50px 0 90px 0;
    background-color: #fcfcfc;
}
/*鶏にこだわり*/
.commitment-chicken_container {
    padding: 50px 0 70px 0;
}
.chicken-title {
    text-align: center;
    padding: 20px 0;
}
.chicken_group {
    margin-top: 40px;
}
.chicken {
    position: relative;
    padding-bottom: 50px;
    padding-top: 100px;
}
#satsuma img {
    border: solid 1px green;
}
.chicken_image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.chicken_image {
    width: 70%;
    display: block;
    margin: 20px auto;
    position: relative;
}
.chicken_image::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 95%;
    height: 10px;
    background-color: #FF0516;
}
.chicken_image::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 10px;
    height: 95%;
    background-color: #FF0516;
}
.chicken_text {
    width: 70%;
    display: block;
    margin: 0 auto;
}
.chicken-name {
    position: absolute;
    bottom: 65vw;
    left: 50%;
    display: block;
    background-color: #fff;
    padding: 0.5rem 0.3rem;
    display: flex;
    align-items: center;
    transform: translate(-50%);
    border: solid 1px #FF0516;
}
.chicken-name p {
    writing-mode: vertical-rl;
    font-size: 2rem;
    color: #FF0516;
}
/*商品一覧*/
#chicken-items {
    padding: 50px 0 70px 0;
    background-image: url(images/AdobeStock_468516477.jpg);
    background-size: cover;
}
.items_container {
    padding-bottom: 50px;
}
.item-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.item-image {
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.item-image::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}
.item-image:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}
.item_inner-title {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.item_inner-text {
    position: absolute;
    top: 50%;
    padding: 0 2rem;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.item-image:hover .item_inner-title,
.item-image:hover .item_inner-text {
    opacity: 1;
}
#item-1 {
    width: 90%;
}
#item-2 {
    width: 60%;
}
#item-3 {
    width: 70%;
}
#item-4 {
    width: 65%;
}
#item-5 {
    width: 80%;
}
#item-6 {
    width: 70%;
}
/*店舗一覧*/
.store {
    display: block;
    width: 80%;
    margin: 0 auto 50px auto;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.store-info_title {
    text-align: center;
    padding-top: 50px;
}
.store_container {
    padding: 50px 0;
}
.store-title_container {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}
.store-title h3 {
    font-size: 1rem;
    padding-right: 1rem;
}
.more {
    display: inline-block;
    border: solid 1px #FF0516;
    color: #FF0516;
    padding: 6px 6px;
    border-radius: 8px;
    position: relative;
    text-decoration: none;
    font-size: 1.2rem;
    height: 40px;
}
.more::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px; /* 横位置を調整 */
    transform: translateY(-50%); /* 45度回転で三角に見せる */
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #FF0516;
}
.store-image img {
    width: 90%;
    display: block;
    margin: 0 auto;
    height: 40vw;
    object-fit: cover;
}
.store-address_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.store-address p {
    padding: 1rem 0.5rem 1rem 0;
    line-height: 1.5rem;
}
.map-link {
    border: solid 1px #FF0516;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    position: relative;
}
.map-link a {
    color: #FF0516;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6rem;
    padding: 0.5rem 0.7rem;
}
.map-link::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 95%;
    height: 5px;
    background-color: #FF0516;
}
.map-link::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 5px;
    height: 95%;
    background-color: #FF0516;
}
/*レシピ*/
#recipe {
    padding: 70px 0;
    background-image: url(images/AdobeStock_468516477.jpg);
    background-size: cover;
}
.recipe-title {
    text-align: center;
}
.recipe_container {
    padding: 30px 0 50px 0;
}
.recipe-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100px;
    display: block;
}
.recipe-image {
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.recipe-image::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}
.recipe-image:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}
.recipe_inner-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.recipe_inner-text {
    position: absolute;
    top: 30%;
    padding: 0 2rem 0 3rem;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.recipe_inner-text p span {
    font-size: 1.2rem;
    line-height: 2.6rem;
}
.recipe-image:hover .recipe_inner-title,
.recipe-image:hover .recipe_inner-text {
    opacity: 1;
}
#recipe-1 {
    width: 80%;
}
#recipe-2 {
    width: 70%;
}
#recipe-3 {
    width: 75%;
}
#recipe-4 {
    width: 75%;
}
/*リクルート*/
#recruit {
    padding: 70px 0;
}
.recruit-title {
    text-align: center;
}
.recruit-image img {
    width: 100%;
    height: auto;
    border-radius: 60px;
}
.recruit-image {
    width: 50%;
    display: block;
    margin: 50px auto 50px 15%;
    position: relative;
}
.speech {
    position: absolute;
    top: 20%;
    color: #FF0516;
    right: -7rem;
    display: block;
    font-size: 1.1rem;
    white-space: nowrap;
}
/* 上の斜め線 */
.speech::before,
.speech::after {
    content: "";
    display: block;
    width: 3rem;
    height: 1px;           /* 線の太さ */
    background: #FF0516;   /* 線の色 */
    transform: rotate(-12deg); /* 角度（マイナスで左下がり、プラスで右下がり） */
    margin: 16px 0;
}

.speech::after {
    transform: rotate(12deg); /* 下の線は逆方向に */
}
/*フッター*/
footer {
    padding-top: 50px;
    background-color: #FFFBE6;
}
#footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0 5px;
}
#footer-menu ul li {
    font-size: 0.7rem;
    list-style: none;
    white-space: nowrap;
}
#footer-menu ul li a {
    text-decoration: none;
    color: black;
}
#footer-menu ul li a:hover {
    color: #21C8D3;
}
#footer-menu ul li+ li {
    border-left: solid 1px;
    padding-left: 0.5rem;
}
#copyright {
    text-align: center;
    padding: 2rem 0;
    font-size: small;
}
/*************/
/*当店のこだわり*/
.commitment-page_title {
    background-image: url(images/title-image-1.gif);
    background-size: cover;
    background-position: 50% 40%;
    height: 150px;
}
#commitment-page h1 {
    text-align: center;
    line-height: 150px;
    color: white;
}
.commitment-category_outer {
    padding-top: 100px;
}
.commitment-category {
    position: relative;
    margin-bottom: 80px;
}
.commitment-category-left {
    position: relative;
    margin-bottom: 80px;
}
.commitment-category_image {
    display: block;
    margin-left: 20%;
}
.commitment-category_image img {
    width: 100%;
    height: 200px;
    border-radius: 60px 0 0 60px;
    object-fit: cover;
    object-position: 50% 30%;
}
.commitment-category_image-left {
    display: block;
    margin-right: 20%;
}
.commitment-category_image-left img {
    width: 100%;
    height: 200px;
    border-radius: 0 60px 60px 0;
    object-fit: cover;
    object-position: 50% 30%;
}
.commitment-category_title {
    padding-left: 1rem;
    padding-top: 3rem;
    padding-right: 2rem;
}
.commitment-category_title h2 {
    font-size: 1.7rem;
}
.commitment-category_text {
    padding: 1.5rem;
}
/*取扱鶏種一覧*/
.chicken-type_container h2 {
    text-align: center;
    padding: 2rem 0;
}
.chicken-type {
    padding-bottom: 60px;
}
.chicken-type_image img {
    display: block;
    margin: 0 auto;
    width: 70%;
}
.chicken-type_image-2 img {
    display: block;
    margin: 0 auto;
    width: 50%;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 5/4;
    object-position: 50% 10%;
    border: solid 4px green;
}
.chicken-type_title {
    text-align: center;
    padding: 1.5rem;
}
.chicken-type_text {
    display: block;
    width: 85%;
    margin: 0 auto;
}
.chicken-type_text ul {
    padding-top: 1rem;
    padding-left: 1rem;
}
.chicken-type_text ul li {
    white-space: nowrap;
}
.small-text {
    font-size: 0.8rem;
    text-align: right;
    padding: 1rem;
    margin-bottom: 30px;
}
/*********/
/*取扱商品*/
.chicken-items-page_title {
    background-image: url(images/title-image-items-2.jpg);
    background-size: cover;
    background-position: 50% 40%;
    height: 150px;
}
.chicken-items-page_title h1 {
    text-align: center;
    line-height: 150px;
    font-size: 1.6rem;
}
/*こだわりの一品*/
#ippin {
    padding-bottom: 80px;
    background-image: url(images/back_yogore_tate-2.jpg);
    background-size: 100vw;
    background-repeat: repeat-y;
}
#ippin h2 {
    text-align: center;
    font-size: 1.5rem;
    padding: 3rem 0 2rem 0;
}
.ippin_container {
    padding: 0 19%;
    display: grid;
    gap: 10px;
}
/*焼き鳥*/
#yakitori {
    padding-bottom: 80px;
    background-image: url(images/back_fire_tate.jpg);
    background-size: 100vw;
    background-repeat: repeat-y;
    padding-top: 50px;
}
#yakitori h2 {
    text-align: center;
    font-size: 1.5rem;
    padding: 3rem 0 2rem 0;
    color: white;
}
.yakitori_container {
    padding: 0 10%;
    display: grid;
    gap: 10px;
}
.item-page_image img {
    width: 100%;
    height: auto;
}
.item-page_image {
    position: relative;
}
.item-page_image::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 25px);
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}
.item-page_image:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
}
.item-page_image:hover .item-page_image_title {
    opacity: 1;
}
.item-page_image_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
/*惣菜*/
#souzai {
    padding-bottom: 80px;
    background-image: url(images/back_yogore_tate-2.jpg);
    background-size: 100vw;
    background-repeat: repeat-y;
}
#souzai h2 {
    text-align: center;
    font-size: 1.5rem;
    padding: 3rem 0 2rem 0;
}
.souzai_container {
    padding: 0 19%;
    display: grid;
    gap: 10px;
}
/**/
/*店舗案内*/
#store-info-page {
    margin-bottom: 50px;
}
.store-info-page_title {
    background-size: cover;
    height: 150px;
    position: relative;
}
.store-info-page_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#nakamozu {
    background-image: url(images/konomiya_nakamozu.jpg);
    background-position: 50% 0;
}
.store-info-page_title p {
    text-align: center;
    line-height: 150px;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    font-family: "sicyubi-fuderm", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.store-info-page_name {
    text-align: center;
    padding-top: 3rem;
}
.store-info-page_name h1 {
    font-size: 1.4rem;
    white-space: nowrap;
}
.store-info-page_image {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
}
.store-info-page_image img {
    width: 100%;
}
.store-info-page_table_title {
    position: relative;
    padding: 2em 0.5em 1em 1.5em;
    line-height: 1.4;
    color: #FF0516;
    border-bottom: dotted 1px gray;
}
.store-info-page_table_title h2 {
    padding-left: 2rem;
}
.circle-yajirusi {
    display: block;
    position: absolute;
    top: 2em;
    left: 15px;
}
.circle-yajirusi img {
    width: 30px;
}
.store-info-page_table {
    display: flex;
    justify-content: space-between;
}
.store-info-page_table table {
    border-collapse: collapse;
    line-height: 1.5rem;
    font-size: 0.9rem;
    width: 100%;
}
.store-info-page_table table th {
    padding: 0.5rem 0.7rem;
    border-bottom: dotted 1px gray;
    width: 6rem;
}
.store-info-page_table table td {
    padding: 0.5rem 0.7rem;
    border-bottom: dotted 1px gray;
}
.store-info-page_map {
    display: block;
    width: 94%;
    margin: 15px auto;
}
.store-info-page_map iframe {
    width: 100%;
    display: block;
    height: 300px;
}
#shop-sidebar {
    padding-top: 60px;
}
#shop-sidebar h2 {
    text-align: center;
}
.shop-sidebar_container {
    padding: 30px 0;
}
.shop-sidebar_container a {
    text-decoration: none;
    color: black;
}
#hamaderaisizu {
    background-image: url(images/konomiya_hamadera.jpg);
    background-position: 50% 30%;
}
#sakaihigashi {
    background-image: url(images/konomiya_sakaihigashi.jpg);
    background-position: 50% 10%;
}
#habikigaoka {
    background-image: url(images/konomiya_habikigaoka.jpg);
    background-position: 50% 20%;
}
#izumigaoka {
    background-image: url(images/konomiya_izumi.jpg);
    background-position: 50% 38%;
}
#kongou {
    background-image: url(images/aeon_kongou.jpg);
    background-position: 50% 30%;
}
/**/
/*会社案内*/
.company-page_title {
    background-image: url(images/company-back.gif);
    background-size: cover;
    background-position: 50% 40%;
    height: 150px;
}
.company-page_title h1 {
    text-align: center;
    line-height: 150px;
    color: white;
    font-size: 1.6rem;
}
/*ごあいさつ*/
.president-greeting_container {
    padding: 1rem;
}
.president-greeting_container h2 {
    text-align: center;
    padding-top: 3rem;
}
.president-greeting-top p {
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.president-greeting {
    margin-top: 3rem;
}
.president-greeting p {
    font-size: 1rem;
    line-height: 1.5rem;
}
.president-name p {
    text-align: right;
    padding-top: 2rem;
    font-size: 1.3rem;
}
.president-name p span {
    font-size: 0.9rem;
    padding-right: 1rem;
}
/*会社概要*/
.company-profile {
    margin-top: 80px;
}
.company-profile h2 {
    text-align: center;
    padding-bottom: 0.3rem;
}
.company-table {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.company-table table {
    border-collapse: collapse;
    line-height: 1.5rem;
    font-size: 0.9rem;
    border-top: dotted 1px #d3d3d3;
}
.company-table table th {
    background-color: #FFFBE6;
    width: 6rem;
    padding: 0.5rem 0.7rem;
    border-bottom: dotted 1px #d3d3d3;
}
.company-table table td {
    padding: 0.5rem 0.7rem;
    border-bottom: dotted 1px #d3d3d3;
}
/*マップ*/
#map h2 {
    text-align: center;
}
#map {
    margin: 100px 0 ;
}
.g-map iframe {
    width: 100%;
    height: 90vw;
}
.g-map {
    display: block;
    width: 90%;
    margin: 1.5rem auto;
}
/*******/
/*採用情報*/
#recruit-page-top {
    margin-top: 60px;
}
#recruit-page-top h1 {
    text-align: center;
}
.recruit-page-top_catch {
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #FF0516;
}
.recruit-page-top_text {
    padding: 1rem;
    font-size: 0.9rem;
}
.recruit-page-top_image img {
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
    padding: 0 1rem;
}
#recruit-details {
    margin-top: 40px;
}
#recruit-details h2 {
    text-align: center;
}
.recruit-details_container {
    padding: 1rem;
}
.recruit-details_container h3 {
    font-size: 1.1rem;
    color: #FF0516;
    line-height: 2.5rem;
}
.recruit-details_container p {
    padding-left: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.7rem;
}
#contact-recruit-button {
    margin: 60px auto;
    width: 8rem;
}
/**/
/*レシピ*/
.recipe-main {
    margin: 80px auto;
}
.recipe-page_title {
    background-image: url(images/torikara-back.gif);
    background-size: cover;
    background-position: 50% 40%;
    height: 150px;
}
.recipe-page_title p {
    text-align: center;
    line-height: 150px;
    color: white;
    font-size: 1.6rem;
    font-family: "sicyubi-fuderm", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.recipe-title-box {
    margin: 1rem;
    display: block;
    border-bottom: 5px solid #FF0516;
    position: relative;
}
.recipe-page-title_image {
    position: absolute;
    top: 3px;
    right: 0;
}
.recipe-page-title_image img {
    width: 35px;
}
.recipe-page_image {
    width: 100%;
    padding: 0 1rem;
}
.recipe-page_image img {
    width: 100%;
    height: auto;
}
.recipe-page_text {
    padding: 0.6rem 1rem;
    line-height: 1.8rem;
}
.recipe-material {
    margin: 30px 0;
}
.recipe-material h2 {
    padding: 2rem 0 1rem 2rem;
}
.recipe-material-list {
    padding: 0 3rem;
}
.recipe-material-list ul {
    line-height: 1.8rem;
    list-style: none;
}
.howto-cook h2 {
    padding: 2rem 0 1rem 2rem;
}
.howto-cook-list {
    padding: 0 1rem 0 3rem;
}
.howto-cook-list ol {
    line-height: 1.4rem;
}
.howto-cook-list ol li {
    padding-bottom: 1.4rem;
}
/*レシピサイドバー*/
.recipe-aside {
    margin-bottom: 90px;
}
.recipe-aside-title-box {
    margin: 1rem 1rem 4rem 1rem;
    display: block;
    border-bottom: 3px solid #FF0516;
    position: relative;
}
.recipe-page-aside-title_image {
    position: absolute;
    top: 3px;
    right: 0;
}
.recipe-page-aside-title_image img {
    width: 25px;
}
.recipe-aside a {
    text-decoration: none;
    color: black;
}
.recipe-other {
    margin-bottom: 50px;
}
.recipe-other h3 {
    padding: 0 0 0.6rem 0;
    text-align: center;
}
.recipe-other_image {
    width: 70%;
    display: block;
    margin: 0 auto;
}
.recipe-other_image img {
    width: 100%;
    border-radius: 60px;
}
/**/
/*お問い合わせ*/
.contact-page_title {
    background-image: url(images/contact-back.gif);
    background-size: cover;
    background-position: 50% 40%;
    height: 150px;
}
.contact-page_title h1 {
    text-align: center;
    line-height: 150px;
    color: white;
    font-size: 1.6rem;
}
.contact-page_text {
    padding: 1rem;
    line-height: 1.8rem;
}
.contact-title {
    margin: 3rem 1rem 2rem 1rem;
    display: block;
    border-bottom: 3px solid #FF0516;
    position: relative;
}
#contact-tel {
    margin-bottom: 80px;
}
.store-tel {
    width: fit-content;
    margin: 0 auto;
}
.store-tel p {
    font-size: 1.2rem;
    line-height: 3rem;
}
.store-tel p a {
    font-size: 1.3rem;
}
.contact-title_image {
    position: absolute;
    top: 3px;
    right: 0;
}
.contact-title_image img {
    width: 25px;
}
/*コンタクトフォーム*/
#contact-form {
    margin-bottom: 80px;
}
#contact-form p {
    padding: 0 1rem 2rem 1rem;
}
.contact-form {
    padding: 0 1rem;
}
/* 各フォームブロック */
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}
/* テキスト・メール・電話・テキストエリア共通 */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fafafa;
  transition: all 0.2s ease;
}
/* フォーカス時 */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF0516;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(255,5,22,0.3);
}
/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 30px;
}
.form-submit .contact-button {
  background-color: #ff4753;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-submit .contact-button:hover {
  background-color: #FF0516;
}
.required {
  font-size: 0.8em;
  padding: 3px;
  background: #ff4753;
  color: #ffffff;
  border-radius: 2px;
  margin-right: 10px;
  margin-bottom: 2px;
  display: inline-block;
}
.wpcf7-spinner {
    display: none !important;
  }  
/* 背景オーバーレイ */
.wpcf7 form.sent::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
  }
/*メッセージ送信完了中央固定*/
  .wpcf7-response-output {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    width: 90%;
  }
  
  /* デフォルトの下余白を消す */
  .wpcf7 form .wpcf7-response-output {
    margin: 0;
  }
    
@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .mb {
        display: none !important;
    }
    .pc {
        display: none !important;
    }
    #main-title h1 {
        font-size: 1.1rem;
    }
    .store-title_container {
        padding: 2rem;
    }
    .store-address_container {
        padding: 1rem 2rem;
    }
}
@media (min-width: 1025px){
    .mb-tb, .mb{
        display: none !important;
    }
    #main-title h1 {
        font-size: 1.1rem;
        color: #FF0516;
    }
    .company-name {
        padding-left: 1rem;
    }
    /*メインメニュー*/
    #main-menu {
        background-color: #FFFBE6;
    }
    #main-menu nav ul {
        display: flex;
        justify-content: center;
        gap: 3rem;
        line-height: 60px;
        align-items: center;
    }
    #main-menu nav ul li {
        list-style: none;
        font-size: 1.2rem;
        white-space: nowrap;
    }
    #main-menu nav ul li a {
        text-decoration: none;
        color: #2b2b2b;
    }
    #main-menu nav ul li a:hover {
        color: #FF0516;
    }
    /*ヘッダー固定*/
    #main-menu.menubar-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999; /* 必要に応じて調整（他要素より前面に） */
        background-color: rgba(255 , 255, 255, 0.7); /* 任意。透過を避けるために追加推奨 */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 任意：見た目強調用 */
    }
    #top-movie video {
        height: 80vh;
    }
    /*こだわり*/
    .commitment_container {
        padding: 100px 25%;
    }
    .commitment_container-nobackimage {
        padding: 100px 25%;
    }
    .commitment-title h2 {
        font-size: 2rem;
    }
    .commitment-text {
        font-size: 1.1rem;
        line-height: 2.1rem;
        text-align: center;
        padding: 30px 0;
    }
    .commitment-text p {
        display: inline-block;
        text-align: left;
    }
    .button {
        width: 12rem;
        font-size: 1.2rem;
        margin: 50px auto;
        height: 2.8rem;
    }
    /*鶏にこだわり*/
    .commitment-chicken_container {
        padding: 100px 0 120px 0;
    }
    .chicken_group {
        display: flex;
        padding: 50px 10% 0 10%;
    }
    .chicken-name {
        position: absolute;
        bottom: 21vw;
        left: 50%;
        display: block;
        background-color: #fff;
        padding: 0.5rem 0.3rem;
        display: flex;
        align-items: center;
        transform: translate(-50%);
        border: solid 1px #FF0516;
    }
    .chicken_text {
        font-size: 1.1rem;
    }
    /*おすすめ商品*/
    #chicken-items {
        padding: 100px 0;
    }
    .chicken-title h2 {
        font-size: 2rem;
    }
    .items_container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        padding: 100px 8% 10px 8%;
    }
    .item-image::after {
        border-radius: 50px;
    }
    /*店舗一覧*/
    .store-info_title {
        padding-top: 150px;
    }
    .store-info_title h2 {
        font-size: 2rem;
    }
    .store_container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 50px;
        padding: 100px 10%;
        margin-bottom: 50px;
    }
    .store {
        width: 100%;
        margin-bottom: 0;
    }
    .store-image img {
        height: 13vw;
    }
    .store-title_container {
        padding: 2rem;
    }
    .store-address_container {
        padding: 1rem 2rem;
    }
    .store-title h3 {
        font-size: 1.2rem;
    }
    /*レシピ*/
    #recipe {
        padding: 100px 50px;
    }
    .recipe-title h2 {
        font-size: 2rem;
    }
    .recipe_container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        padding: 100px 10% 60px 10%;
    }
    #recipe-1 {
        width: 90%;
    }
    #recipe-2 {
        width: 90%;
    }
    #recipe-3 {
        width: 90%;
    }
    #recipe-4 {
        width: 90%;
    }
    .recipe_inner-text p span {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .recipe_inner-text p {
        font-size: 0.9rem;
    }
    /*リクルート*/
    #recruit {
        padding: 150px 20%;
    }
    .recruit-title h2 {
        font-size: 2rem;
    }
    .recruit_container {
        margin-left: 12%;
    }
    .speech {
        font-size: 1.2rem;
        right: -8rem;
    }
    .speech::before,
    .speech::after {
        width: 5rem;
    }
    .recruit-image {
        margin: 80px auto 100px 7%;
        width: 200px;
    }
    .recruit_container_outer {
        display: flex;
        gap: 15vw;
    }
    #recruit-button {
        margin-top: 200px;
    }
    /*フッター*/
    #footer-menu ul {
        gap: 0.8rem;
    }
    #footer-menu ul li+ li {
        padding-left: 0.8rem;
    }
    #footer-menu ul li {
        font-size: 1rem;
    }
    /********/
    /*当店のこだわり*/
    .commitment-category_outer {
        margin-top: 50px;
    }
    .commitment-page_title {
        height: 300px;
        background-position:  50% 52%;
    }
    #commitment-page h1 {
        line-height: 300px;
    }
    .commitment-category {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-bottom: 170px;
    }
    .commitment-category-left {
        display: flex;
        justify-content: space-between;
        margin-bottom: 170px;
    }
    .commitment-category_image img {
        height: 400px;
        aspect-ratio: 2/1;
        border-radius: 130px 0 0 130px;
    }
    .commitment-category_image-left img {
        height: 400px;
        aspect-ratio: 2/1;
        border-radius: 0 130px 130px 0;
    }
    .commitment-category_title h2 {
        font-size: 2.8rem;
    }
    .commitment-category_title {
        padding-left: 3rem;
    }
    .commitment-category_text {
        padding: 2rem 3rem;
        font-size: 1.2rem;
    }
    /*取扱鶏種一覧*/
    .chicken-type_container h2 {
        font-size: 2rem;
    }
    .chicken-type_outer {
        display: flex;
        justify-content: space-around;
        margin-top: 50px;
    }
    .chicken-type {
        width: 30vw;
    }
    .chicken-type_image {
        height: 25vh;
    }
    .chicken-type_image-2 {
        height: 25vh;
        padding-top: 15px;
    }
    .chicken-type_title {
        font-size: 1.3rem;
    }
    .chicken-type_text {
        font-size: 1.1rem;
    }
    .small-text {
        text-align: center;
        margin-bottom: 100px;
        font-size: 0.9rem;
    }
    /**********/
    /*取扱商品*/
    .chicken-items-page_title {
        background-position: 50% 55%;
        height: 300px;
    }
    .chicken-items-page_title h1 {
        line-height: 300px;
        font-size: 2rem;
    }
    #ippin {
        padding-bottom: 120px;
        background-image: url(images/back_yogore_yoko-2_2.jpg);
    }
    #ippin h2 {
        font-size: 2rem;
        padding: 6rem 0 4rem 0;
    }
    .ippin_container {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
        padding: 0 10%;
    }
    #yakitori {
        padding-bottom: 120px;
        background-image: url(images/back_fire_yoko-3.jpg);
    }
    #yakitori h2 {
        font-size: 2rem;
        padding: 6rem 0 4rem 0;
    }
    .yakitori_container {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
    #souzai {
        padding-bottom: 120px;
        background-image: url(images/back_yogore_yoko-2_2.jpg);
    }
    #souzai h2 {
        font-size: 2rem;
        padding: 6rem 0 4rem 0;
    }
    .souzai_container {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
        padding: 0 10%;
    }
    .item-page_image::after {
        top: 8px;
        left: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 25px);
        border-radius: 50px;
    }
    /**/
    /*店舗案内*/
    .store-info-page_outer {
        display: flex;
        justify-content: space-between;
        gap: 6%;
        padding: 100px 6%;
    }
    .store-info-page_title {
        height: 300px;
    }
    .store-info-page_title p {
        line-height: 300px;
        font-size: 2rem;
    }
    #sakaihigashi {
        background-position: 50% 3%;
    }
    #izumigaoka {
        background-position:  50% 40%;
    }
    #kongou {
        background-position: 50% 37%;
    }
    .store-info-page_main {
        width: 75%;
    }
    .store-info-page_aside {
        width: 25%;
    }
    .store-info-page-top {
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-direction: row-reverse;
    }
    .store-info-page_name {
        background: radial-gradient(circle at center, #FFFBE6 30%, transparent 30%);
        text-align: center;
        margin-bottom: 4vw;
    }
    .store-info-page_name h1 {
        font-size: 2rem;
        text-align: left;
        display: block;
        padding-top: 9vw;
    }
    .store-info-page_description_container {
        padding: 70px 0;
    }
    .store-info-page_table_title {
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    .store-info-page_table_title h2 {
        padding-bottom: 2rem;
    }
    .store-info-page_table {
        width: 90%;
        margin: 0 auto;
    }
    .store-info-page_table table {
        font-size: 1.3rem;
        line-height: 4rem;
    }
    .store-info-page_table table th {
        width: 15rem;
    }
    .store-info-page_map {
        margin: 100px auto;
    }
    .store-info-page_map iframe {
        height: 60vh;
    }

    .shop-sidebar_container {
        display: grid;
        gap: 50px;
    }
    /*********/
    /*会社情報*/
    .company-page_title {
        height: 300px;
    }
    .company-page_title h1 {
        line-height: 300px;
        font-size: 2rem;
    }
    /*ごあいさつ*/
    .president-greeting_container {
        padding: 3rem;
        display: block;
        width: 60%;
        margin: 0 auto;
    }
    .president-greeting_container h2 {
        font-size: 1.8rem;
    }
    .president-greeting-top p {
        font-size: 2rem;
        line-height: 3.7rem;
        text-align: center;
    }
    .president-greeting {
        margin-top: 5rem;
        text-align: center;
    }
    .president-greeting p {
        font-size: 1.2rem;
        line-height: 2.5rem;
        display: inline-block;
        text-align: left;
    }
    .president-name p {
        font-size: 1.7rem;
        padding-top: 5rem;
        padding-right: 4rem;
    }
    .president-name p span {
        font-size: 1.1rem;
        padding-right: 1.5rem;
    }
    /*会社概要*/
    .company-profile {
        margin-top: 130px;
    }
    .company-profile h2 {
        font-size: 1.8rem;
    }
    .company-table {
        margin-top: 3rem;
    }
    .company-table table {
        width: 50%;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    .company-table table th {
        width: 10rem;
        padding: 1rem;
    }
    .company-table table td {
        padding: 1rem;
    }
    /*マップ*/
    #map {
        margin-top: 180px;
        margin-bottom: 180px;
    }
    #map h2 {
        font-size: 1.8rem;
    }
    .g-map {
        margin: 3rem auto;
        width: 50%;
    }
    .g-map iframe {
        height: 30vw;
    }
    /*****/
    /*採用情報*/
    #recruit-page-top h1 {
        font-size: 2rem;
    }
    .recruit-page-top_catch {
        text-align: center;
        font-size: 1.6rem;
        padding: 4rem;
    }
    .recruit-page-top_text {
        margin: 50px 20%;
        font-size: 1.2rem;
        line-height: 2.8rem;
    }
    .recruit-page-top_image {
        width: 60%;
        display: block;
        margin: 0 auto;
    }
    .recruit-page-top_image img {
        aspect-ratio: 6 /2;
    }
    #recruit-details {
        margin-top: 150px;
        margin-bottom: 100px;
    }
    #recruit-details h2 {
        font-size: 1.5rem;
        margin-bottom: 80px;
    }
    .recruit-details_container {
        display: flex;
        width: 60%;
        margin: 0 auto;
        border-bottom: solid 1px #4d4d4d;
        padding: 3rem 0;
    }
    .recruit-details_container h3 {
        width: 12rem;
        font-size: 1.3rem;
    }
    .recruit-details_container p {
        font-size: 1.1rem;
        line-height: 2.3rem;
        width: 27rem;
    }
    .recruitpage_outer {
        display: flex;
        justify-content: space-between;
        padding-right: 6%;
        margin-top: 150px;
    }
    .recruit-main {
        width: 75%;
    }
    #contact-recruit-button {
        margin: 60px auto 200px auto;
        width: 10rem;
    }
    /**/
    /*レシピ*/
    .recipe-page_title {
        height: 300px;
    }
    .recipe-page_title p {
        line-height: 300px;
        font-size: 2rem;
    }
    .recipe-page_outer {
        display: flex;
        padding: 100px 6%;
        gap: 6%;
    }
    .recipe-main {
        width: 75%;
    }
    .recipe-aside {
        width: 25%;
        margin-top: 90px;
    }
    .recipe-page_image {
        width: 60%;
        display: block;
        margin: 80px auto 40px auto;
    }
    .recipe-page_image img {
        display: block;
        max-width: 100%;
        height: auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); /* やわらかい影 */
    }      
    .recipe-page_text {
        text-align: center;
        font-size: 1.3rem;
        line-height: 2.2rem;
    }
    .recipe-page_text p {
        display: inline-block;
        text-align: left;
    }
    .recipe-description_container {
        display: block;
        margin: 0 auto;
        width: 80%;
    }
    .recipe-material-list ul {
        font-size: 1.2rem;
        line-height: 2.7rem;
        column-count: 2;
        column-gap: 4rem;
        width: fit-content;
    }
    .howto-cook-list ol {
        line-height: 1.8rem;
        font-size: 1.2rem;
    }
    .howto-cook-list ol li {
        padding-bottom: 2rem;
    }
    /**/
    /*お問い合わせ*/
    .contact-page_title {
        height: 300px;
        background-position: 50% 0;
    }
    .contact-page_title h1 {
        line-height: 300px;
        font-size: 2rem;
    }
    .contact-page_text {
        text-align: center;
        font-size: 1.2rem;
        line-height: 2.4rem;
        padding: 70px 0;
    }
    .contact-page_text p {
        display: inline-block;
        text-align: left;
    }
    .contact-title {
        margin-bottom: 4rem;
    }
    #contact-tel {
        display: block;
        width: 50%;
        margin: 0 auto 150px auto;
    }
    #contact-tel p {
        font-size: 1.4rem;
        line-height: 4rem;
    }
    #contact-tel p a {
        font-size: 1.5rem;
    }
    #contact-form {
        display: block;
        width: 50%;
        margin: 0 auto 150px auto;
    }
    #contact-form p {
        font-size: 1.2rem;
        padding-bottom: 4rem;
        line-height: 2.4rem;
    }
    .form-group {
        margin-bottom: 30px;
    }
    .form-group label {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 1.2rem;
    }
    .form-submit .contact-button {
        font-size: 1.3rem;
    }
    .required {
        font-size: 1rem;
    }
    .wpcf7-response-output {
        width: auto;
    }
}