@charset "UTF-8";

/*------------- 基本カラー -------------*/
:root{
    --background-color:#FFFFFF;
    --font-color:#333333;
    --main-color:#b50005;
    --container: 1200px;
    --min-gutter: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-padding-top: 150px !important;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    font-family: 'Poppins', 'Zen Kaku Gothic Antique', sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--background-color);
    overflow-x: hidden;
}
.wrapper{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.last-section{
    margin-bottom: 100px;
}
h2.section-title {
    display: flex;
    flex-direction: column;
    color: var(--font-color);
    font-size: 46px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .1em;
    padding-bottom: 20px;
}
span.section-subtitle {
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--main-color);
    font-family: 'Arial', sans-serif;
    font-style: italic;
    position: relative;
}
span.section-subtitle::after {
    width: 50px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    content: "";
    bottom: 5px;
}
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;
}
.s_indent {
    padding-left: 1em !important;
    text-indent: -1em;
    margin-top: 0px !important;
}
@media screen and (max-width: 475px) {
    * {
        font-size: 14px;
    }
    .wrapper {
        padding: 0 20px;
    }
}

/*------------- ヘッダー -------------*/
header {
    width: 100%;
    height: 85px;
    margin: 0 auto;
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header-nav .logo a {
    display: flex;
}
.logo img {
    width: 180px;
}
ul.h-list {
    display: flex;
    gap: 30px;
    align-items: center;
}
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding-left: 20px;
    background: #fff;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}
.nav-item a,
.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    font-weight: 600;
    color: var(--font-color);
    gap: 2px;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
li.nav-item .nav-link {
    border-bottom: 2px solid transparent;
    position: relative;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 15px;
}
.nav-item:hover > .nav-link {
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 5px;
    color: var(--main-color);
}
.link-icon {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 5px;
}
.link-icon img {
    width: 15px;
    height: 15px;
}
div#hg-nav_Area {
    display: none;
}

/*ハンバーガーメニュー*/
@media screen and (max-width: 1500px) {
    header .header-nav {
        height: 65px;
    }
    nav.main-nav {
        display: none;
    }
    div#hg-nav_Area {
        display: block;
    }
    .hg-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -90%;
        bottom: 0;
        width: 90%;
        background: #ffffff;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: .5s;
        z-index: 3;
    }
    .hg-nav_open .hg-nav {
        right: -1px;
    }
    .hg-nav .hg-nav_inner {
        padding: 25px;
    }
    .hg-nav .hg-nav_nner ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-contact__links {
        width: 100%;
        height: 100% !important;
        gap: 10px;
        margin: 50px 0px;
    }
    span.nav-contact__link_text {
        font-size: 20px;
    }
    .nav-contact__link_text span {
        font-size: 16px;
    }
    a.c-link-style.nav-contact__link {
        flex: 1;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        height: 100%;
    }
    img.nav-contact__icon {
        width: 50px;
    }
    .hg-nav .hg-nav_inner ul li {
        position: relative;
        margin: 0;
        border-bottom: 1px solid #BFC6D4;
    }
    .hg-nav .hg-nav_inner ul li a,
    .hg-nav .hg-nav_inner ul li p {
        display: block;
        font-weight: 500;
        padding: 1em;
        text-decoration: none;
        transition-duration: 0.2s;
    }
    .hg-nav_inner .logo img {
        width: 250px;
    }
    .hg-nav_inner .logo a {
        display: flex;
        justify-content: center;
        margin: 50px auto 20px;
    }
    .nav-link-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .hg-nav_toggle {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: var(--main-color);
        padding: 0 8px;
        transition: transform 0.3s ease;
    }
    .hg-nav-has-sub.hg-nav_subopen .hg-nav_toggle {
        transform: rotate(45deg);
    }
    .hg-nav_sub-list {
        display: none;
    }
    .hg-nav-has-sub.hg-nav_subopen .hg-nav_sub-list {
        display: block;
    }
    .hg-nav .hg-nav_inner ul li.hg-nav_sub-item {
        border-bottom: none;
        padding-left: 1em;
    }
    .hg-nav_toggle_btn {
        display: block;
        position: fixed;
        top: 15px;
        right: 30px;
        width: 60px;
        height: 30px;
        transform: translate(0, 0);
        transition: all .5s;
        cursor: pointer;
        z-index: 3;
    }
    .hg-nav_open .hg-nav_toggle_btn {
        right: 25px;
    }
    .hg-nav_toggle_btn span {
        display: block;
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        background-color: var(--main-color);
        transition: all .5s;
    }
    .hg-nav_toggle_btn span:nth-child(1) { top: 5px; width: 30px; }
    .hg-nav_toggle_btn span:nth-child(2) { top: 15px; width: 30px; }
    .hg-nav_toggle_btn span:nth-child(3) { top: 25px; width: 30px; }
    .hg-nav_open .hg-nav_toggle_btn span { width: 30px; }
    .hg-nav_open .hg-nav_toggle_btn span:nth-child(1) {
        transform: translate(0, 10px) rotate(-45deg);
        animation: unset;
    }
    .hg-nav_open .hg-nav_toggle_btn span:nth-child(2) {
        opacity: 0;
        animation: unset;
    }
    .hg-nav_open .hg-nav_toggle_btn span:nth-child(3) {
        transform: translate(0, -10px) rotate(45deg);
        animation: unset;
    }
    #mask {
        display: none;
    }
    .hg-nav_open #mask {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .5;
        z-index: 2;
        cursor: pointer;
        transition: all .5s;
    }
}
@media screen and (max-width: 768px) {
    span.nav-contact__link_text {
        font-size: 16px;
    }
    img.nav-contact__icon {
        width: 30px;
    }
    a.c-link-style.nav-contact__link {
        flex: 1;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        height: 100%;
        padding: 10px !important;
    }
}

/*お問い合わせリンク*/
li.nav-item.nav-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.nav-contact__info {
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}
p.nav-contact__tel { font-size: 16px; }
.nav-contact__tel span { font-size: 22px; }
p.nav-contact__time { font-size: 10px; }
.nav-contact__time span { font-size: 12px; }
.nav-contact__links {
    display: flex;
    height: 85px;
}
.nav-contact__link--personal {
    flex-direction: row !important;
    background: #EA3C3C;
    align-items: center !important;
    gap: 15px !important;
    padding: 0 40px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}
.nav-contact__link--personal:hover { background: #C43030; }
.nav-contact__link--corporate {
    flex-direction: row !important;
    background: var(--main-color);
    align-items: center !important;
    gap: 15px !important;
    padding: 0 40px;
}
.nav-contact__link--corporate:hover { background: #860004; }
img.nav-contact__icon { width: 35px; }
span.nav-contact__link_text {
    color: #fff;
    text-align: center;
    line-height: 1.1;
}
.nav-contact__link_text span { font-size: 12px; }
.nav-has-sub .nav-link {
    position: relative;
    padding-right: 10px;
}
.nav-has-sub .nav-link::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: 30%;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: translateY(-50%) rotate(135deg);
}

/*サブメニュー*/
.nav-has-sub { position: relative; }
.sub-list {
    display: flex;
    flex-direction: column;
    width: 220px;
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    padding: 27px 0 0;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav-has-sub:hover > .sub-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
a.sub-link {
    align-items: flex-start !important;
    padding: 20px 20px 20px 40px;
    position: relative;
    color: #333;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
a.sub-link::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    left: 25px;
    top: 42%;
    transition: all 0.3s ease;
}
a.sub-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--main-color);
}
a.sub-link:hover::after {
    background: var(--main-color);
    transform: scale(1.3);
}

/*------------- メインビジュアル -------------*/
#top-image {
    position: relative;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}
#top-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#top-image .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
#top-image .slide.active {
    opacity: 1;
    animation: zoomMove 5s ease-in-out forwards;
}
.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
    animation-delay: 0.5s;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.catch-main { font-size: 80px; font-weight: 600; }
.catch-sub { font-size: 20px; }

/*------------- 共通項目 -------------*/
.flex-100 {
    display: flex;
    gap: 100px;
    margin: 70px auto 100px;
    flex-direction: column;
}
@media screen and (max-width: 1360px) {
    #top-image { height: 80vh; }
    .flex-100 {
        gap: 80px;
        margin: 70px auto 80px;
    }
}

/*詳しく見るボタン*/
.about-link {
    display: flex;
    align-items: center;
    max-width: 250px;
    width: 100%;
    margin-top: 15px;
    padding: .9em 1.5em .9em 2em;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    justify-content: space-between;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.about-link:hover {
    background: #fff;
    color: var(--main-color);
    border-color: var(--main-color);
}
.about-link:hover > .arrow { background: var(--main-color); }
.about-link:hover > .arrow::before { background: #fff; }
.about-link:hover > .arrow::after { border-color: #fff; }
.arrow {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
}
.arrow::before {
    content: "";
    width: 14px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    transform: translate(-50%, 0%);
    top: 50%;
    left: 50%;
}
.arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--main-color);
    transform: translate(-42%, -40%) rotate(-45deg);
}

/*------------- タイトル画像 -------------*/
.section_about { background: url(./images/title/about-top.jpg) center / cover no-repeat; }
.section_business { background: url(./images/title/business-top.jpg) center / cover no-repeat; }
.trading_business { background: url(./images/title/trading-top.jpg) center / cover no-repeat; }
.manufacturer_business { background: url(./images/title/manufacturer-top.jpg) center / cover no-repeat; }
.service_business { background: url(./images/title/service-top.jpg) center / cover no-repeat; }
.oem_business { background: url(./images/title/oem-top.jpg) center / cover no-repeat; }
.section_corporate,
.section_personal,
.section_news,
.section_head {
    background: url(./images/title/other-top.jpg) center / cover no-repeat;
}

/* ===========================
   p-news（お知らせセクション）
=========================== */
.p-news {
    border: 2px solid var(--main-color);
    border-radius: 25px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.p-news__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* タイトルエリア */
.p-news__inner__title {
    min-width: 100px;
    flex-shrink: 0;
}
.news-section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--font-color);
    margin: 0;
    line-height: 1.4;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
span.news-section-subtitle {
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--main-color);
    font-family: 'Arial', sans-serif;
    font-style: italic;
    position: relative;
}
span.news-section-subtitle::after {
    width: 25px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    content: "";
    bottom: 5px;
}
.news-section-list {
    position: relative;
    color: var(--main-color);
    font-weight: bold;
    padding: 10px 30px 10px 10px;
}
.news-section-list::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    border-radius: 50%;
    background: var(--main-color);
}
.news-section-list::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: calc(50% - 4px);
    right: 9px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.news-section-list:hover::before {
    background: #fff;
    border: 2px solid var(--main-color);
}
.news-section-list:hover::after {
    border-color: var(--main-color);
}

/* ニュースリスト */
.p-news__inner__list {
    flex: 1;
    min-width: 0;
}

/* ニュースアイテム */
.c-news-item {
    border-bottom: 1px solid #e0e0e0;
}
.c-news-item__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
    text-decoration: none;
    color: var(--font-color);
    overflow: hidden;
}
.c-news-item__inner:hover {
    color: var(--main-color);
}

/* 日付・カテゴリ・タイトル 横並び */
.c-news-item__inner__title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
    width: 100%;
}
.c-news-item__inner__title_inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* 日付 */
.news-date {
    white-space: nowrap;
    min-width: 80px;
    margin: 0;
}

/* カテゴリバッジ */
.news-category {
    font-size: 14px;
    font-weight: 500;
    padding: 3px 10px;
    min-width: 110px;
    text-align: center;
    margin: 0;
    width: 10em;
}

/* タイトル：折り返し全文表示 */
.news-title {
    flex: 1;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
    padding: 0 10px;
}

/* ===========================
   レスポンシブ（お知らせ共通）
=========================== */
@media screen and (max-width: 768px) {
    .news-section-title { font-size: 28px; }
    span.news-section-subtitle { font-size: 14px; }
    .p-news__inner {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    .p-news__inner__title {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        min-width: 0;
    }
    .c-news-item__inner {
        gap: 8px;
        padding: 10px 4px;
    }
    .c-news-item__inner__title {
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    .news-category {
        font-size: 12px;
        padding: 1px 5px;
        width: 8em;
    }
}

@media screen and (max-width: 475px) {
    .c-news-item__inner__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/*------------- ページタイトル -------------*/
.section_img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}
.section_img {
    position: relative;
    height: 45vh;
    z-index: 1;
}
.section__header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    line-height: 1.3;
    color: #fff;
}
.section__title {
    font-size: 50px;
    letter-spacing: 0.2em;
    font-weight: 600;
}
.section__subtitle {
    font-size: 22px;
    font-weight: 500;
}

@media screen and (max-width: 1250px) {
    .wrapper { padding: 20px; }
    .catch-main { font-size: 54px; }
    .catch-sub { font-size: 16px; }
    .hero-content { top: 52%; }
    h2.section-title { font-size: 36px; }
    span.section-subtitle { font-size: 16px; }
    .about-link {
        max-width: 200px;
        padding: 0.7em 1em .7em 1.5em;
        font-size: 15px;
    }
    .section__title { font-size: 40px; }
    p.section__subtitle { font-size: 18px; }
}

@media screen and (max-width: 768px) {
    .section_img { height: 35vh; }
    p.catch-main {
        font-size: 1.8rem;
        text-align: left;
        padding: 0 5%;
    }
    .catch-sub {
        font-size: 14px;
        padding: 0 5%;
        text-align: left;
    }
    h2.section-title { font-size: 28px; }
    span.section-subtitle { font-size: 14px; }
    span.section-subtitle::after { width: 25px; }
    .section__title { font-size: 36px; }
    p.section__subtitle { font-size: 14px; }
    .privacy_title { font-size: 16px; font-weight: 500; }
    ol.privacy-list { font-size: 14px; }
    .signature { font-size: 14px; }
    p.signature-date { font-size: 16px; padding-bottom: 10px; }
    .pinfo-manager p { font-size: 16px; padding-bottom: 20px; }
    .privacy-policy-title { font-size: 18px; }
    p.pinfo-desc { font-size: 14px; }
    p.privacy-policy-text { font-size: 15px; }
    ul.pinfo-sublist { font-size: 15px; }
}

/*------------- TOPページ内容 -------------*/
/*会社案内*/
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.about-wrap { display: flex; flex-direction: column; }
.about-section img { width: 100%; border-radius: 25px; }
.about-text { line-height: 2; padding: 20px 10px; }

@media screen and (max-width: 1012px) {
    .about-section { display: flex; flex-direction: column; }
    .about-text_wrap { display: flex; flex-direction: column; align-items: flex-end; }
}
@media screen and (max-width: 768px) {
    .about-wrap { gap: 0; }
    .about-text { line-height: 2; padding: 0px 5px; font-size: 14px; }
    a.about-link { font-size: 14px; max-width: 180px; height: 45px; }
    .arrow { width: 20px; height: 20px; }
    .arrow::before { width: 10px; }
    .arrow::after { width: 6px; }
    .about-section { gap: 30px; }
}

/*事業内容*/
.business-section { position: relative; }
.business-section h2.section-title { margin: 0 auto; max-width: 1200px; }
.business-card__content {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.business-card__content .about-link { margin-top: 0 !important; margin-left: auto; }
ul.b-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding-left: calc((100vw - var(--container)) / 2);
    padding-right: 0;
    margin: 30px auto;
}
li.b-grid-item { position: relative; width: 100%; }
.b-grid-title {
    position: absolute;
    bottom: 10px;
    right: 15px;
    text-align: right;
    color: #fff;
    line-height: 1.4;
    z-index: 5;
}
p.business-card__label-ja { font-size: 36px; font-weight: 500; }
p.business-card__title-en { font-size: 14px; }
p.business-card__title-en span { padding-right: 5px; font-size: 16px; }
.b-grid-item_img img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.b-grid-item_img::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.spin_img01 {
    position: absolute;
    z-index: -100;
    width: 50%;
    opacity: .2;
    top: -35%;
    left: -10%;
}
.spin_img {
    width: 100%;
    height: 100%;
    animation: 45s linear infinite rotation;
}
@keyframes rotation {
    0% { transform: rotateZ(0); }
    100% { transform: rotateZ(360deg); }
}

@media screen and (max-width: 1250px) {
    .business-section h2.section-title { padding: 0 20px; }
    .business-card__content { padding: 30px 20px; }
    ul.b-grid-list { padding: 0px 20px; margin: 0 auto; }
    p.business-card__title-en span { font-size: 14px; }
    p.business-card__title-en { font-size: 12px; }
    p.business-card__label-ja { font-size: 24px; }
    .spin_img01 { width: 75%; top: -15%; left: -35%; }
}
@media screen and (max-width: 1012px) {
    ul.b-grid-list { grid-template-columns: repeat(2, 1fr); }
    .b-grid-item_img img { aspect-ratio: 3 / 2; }
}
@media screen and (max-width: 768px) {
    p.business-card__label-ja { font-size: 20px; }
    .spin_img01 { width: 100%; }
}
@media screen and (max-width: 540px) {
    ul.b-grid-list { display: flex; flex-direction: column; }
    .b-grid-item_img img { aspect-ratio: 2 / 1; }
    .spin_img01 { top: -8%; left: -35%; }
    .business-card__content { gap: 10px; }
}

/*取り扱い原料*/
section.ingredients-section {
    background: #f8f8f8;
    padding: 80px 0;
    margin-top: 100px;
    z-index: 0;
    position: relative;
}
.spin_img02 {
    position: absolute;
    z-index: -5;
    width: 50%;
    opacity: .2;
    top: 0%;
    right: -10%;
}
p.ingredients-intro { padding: 30px 0; }
.i-grid-list { display: flex; gap: 15px; margin-bottom: 30px; }
li.i-grid-item {
    width: 100%;
    background: #fff;
    color: var(--main-color);
    padding: 20px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.i-grid-item_img { border: 2px solid; border-radius: 50%; aspect-ratio: 1 / 1; }
li.i-grid-item img {
    width: 100%;
    height: 100%;
    min-width: 130px;
    padding: 20px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}
.i-grid-title {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    padding-top: 10px;
    color: var(--font-color);
}
.about-link.right-btn { margin-left: auto; }

@media screen and (max-width: 1250px) {
    .i-grid-list { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 800px; margin: 0 auto; }
    li.i-grid-item img { max-width: 250px; padding: 45px; margin: 0 auto; }
    .spin_img02 { width: 75%; top: 10%; right: -25%; }
}
@media screen and (max-width: 768px) {
    p.ingredients-intro { padding: 20px 10px 10px; font-size: 15px; font-weight: normal; }
    .i-grid-title { font-weight: 500; font-size: 16px; }
    li.i-grid-item { padding: 15px; border-radius: 6px; }
    .i-grid-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin: 10px auto; max-width: 450px; }
    li.i-grid-item img { padding: 30px; }
    .spin_img02 { width: 100%; }
}
@media screen and (max-width: 410px) {
    p.ingredients-intro { padding: 0 0 10px; }
    li.i-grid-item { padding: 12px; }
    .i-grid-title { font-size: 14px; }
    li.i-grid-item img { padding: 20px; min-width: auto; }
    .spin_img02 { top: -10%; right: -35%; }
}

/*ブランド紹介*/
section.brand-section { position: relative; margin: 100px auto 110px; }
.spin_img03 { position: absolute; z-index: -100; width: 50%; opacity: .2; top: 30%; left: -10%; }
.brand-section h2.section-title { margin: 0 auto; max-width: 1200px; }
.brand-slider-wrap {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    padding: 40px 0;
}
.brand-slider__list {
    padding-left: calc((100vw - var(--container)) / 2);
    padding-right: 0;
}
.brand-slider__item { width: 385px; margin-right: 30px; }
.brand-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}
.brand-card__image img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.brand-card__content { padding: 15px; }
.brand-card__name { font-size: 20px; font-weight: 600; }
.brand-card__url a { font-size: 14px; color: #999; text-decoration: underline; }
.brand-card__url a:hover { color: var(--main-color); }
.brand-card__description { padding: 20px 0; font-size: 15px; line-height: 1.6; }
.brand-card__logo { height: 70px; display: flex; align-items: center; justify-content: flex-end; }
.brand-card__logo img { width: 100px; }
.brand-slider { position: relative; }
.slick-arrow {
    position: absolute;
    bottom: -15%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.slick-arrow:hover { background: var(--main-color); }
.slick-prev { right: 0; margin-right: calc((100vw - var(--container)) / 2); }
.slick-next { right: 100px; margin-right: calc((100vw - var(--container)) / 2); }
button.slick-prev::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    left: 30%;
}
button.slick-next::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
    transform: translateY(-50%) rotate(-135deg);
    top: 50%;
    right: 25%;
}
button.slick-prev:hover::after,
button.slick-next:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
}

@media screen and (max-width: 1250px) {
    section.brand-section { padding-left: 20px; }
    .slick-list { left: 20px; }
    button.slick-next.slick-arrow { right: 100px; margin-right: 0; }
    button.slick-prev.slick-arrow { right: 0; margin-right: 30px; }
    .spin_img03 { width: 75%; top: 15%; left: -25%; }
}
@media screen and (max-width: 1012px) {
    button.slick-next.slick-arrow { right: 100px; margin-right: 0; }
    button.slick-prev.slick-arrow { right: 0; margin-right: 30px; }
}
@media screen and (max-width: 768px) {
    .brand-card__name { font-size: 18px; }
    .brand-card__url a { font-size: 12px; }
    .brand-card__description { font-size: 14px; }
    .slick-arrow { width: 35px; height: 35px; }
    button.slick-prev::after,
    button.slick-next::after {
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--main-color);
        border-right: 2px solid var(--main-color);
    }
    .spin_img03 { width: 100%; }
}
@media screen and (max-width: 450px) {
    .brand-slider__item { width: 320px; margin-right: 25px; }
    .brand-card__logo img { width: 80px; }
    .brand-card__description { height: 90px; }
    .spin_img03 { top: 50%; left: -35%; }
}

/*お問い合わせ*/
p.contact-intro { padding-top: 30px; }
.c-grid-list {
    display: grid;
    margin: 20px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.c-grid-item a {
    background: #fff;
    border-radius: 25px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 40px;
    transition: all 0.3s ease;
}
.c-grid-item a:hover { background: var(--main-color); }
.c-grid-item a:hover > .c-grid-btn,
.c-grid-item a:hover > .c-grid-btn > .c-grid-jptitle { color: #fff; }
.c-grid-item a:hover > .c-grid-arrow { background: #fff; }
.c-grid-item a:hover > .c-grid-arrow::after { border-color: var(--main-color); }
.c-grid-entitle { font-size: 30px; font-weight: 600; letter-spacing: 0.05em; }
.c-grid-jptitle { color: var(--main-color); font-weight: 500; }
.c-grid-arrow {
    position: relative;
    background: var(--main-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.c-grid-arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%) rotate(-45deg);
}
.contact-info {
    background: #FFF5F5;
    border: 3px solid var(--main-color);
    border-radius: 25px;
    padding: 35px 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    color: var(--main-color);
    font-weight: 600;
    align-items: center;
    font-size: 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
p.contact-tel { font-size: 34px; }
p.contact-tel span { font-size: 24px; padding-right: 5px; }

@media screen and (max-width: 1250px) {
    p.contact-tel { font-size: 28px; }
    p.contact-tel span { font-size: 20px; }
    .contact-info { font-size: 18px; padding: 25px 15px; gap: 10px; }
}
@media screen and (max-width: 1012px) {
    .contact-info { flex-direction: column; }
}
@media screen and (max-width: 768px) {
    p.contact-intro { padding: 20px 10px 10px; font-size: 15px; font-weight: normal; }
    .c-grid-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 10px 10px; }
    .c-grid-item a { border-radius: 10px; padding: 25px 20px; }
    .c-grid-entitle { font-size: 24px; }
    p.c-grid-jptitle { font-size: 14px; }
    .c-grid-arrow { width: 25px; height: 25px; }
    .c-grid-arrow::after { width: 7px; height: 7px; }
    .contact-info { font-size: 14px; gap: 0; padding: 15px; border-radius: 10px; margin: 0 10px; }
    p.contact-tel { font-size: 24px; }
    p.contact-hours { font-size: 10px; }
}

/*採用情報*/
.msg-text-wrap { position: relative; z-index: 10; }
.r-message-wrap { position: relative; }
.r-message { margin-top: 20px; }
.main-massage { font-size: 30px; font-weight: 600; line-height: 1.4; padding-bottom: 10px; }

/*社員のスライダー*/
.infinite-slider { overflow: hidden; width: 100%; margin: 50px auto 100px; }
.slider-track {
    display: flex;
    width: calc(200%);
    animation: slide 50s linear infinite;
    padding: 30px 0;
}
.slider-track img {
    width: 350px;
    margin-right: 30px;
    transition: transform 0.3s;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    object-position: top;
}
.slider-track img:nth-child(3n+1) { transform: translateY(-30px); }
.slider-track img:nth-child(3n+2) { transform: translateY(30px); }
.slider-track img:nth-child(3n+3) { transform: translateY(0); }
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media screen and (max-width: 1250px) {
    .r-message .about-link { max-width: 230px; }
}
@media screen and (max-width: 768px) {
    .main-massage { font-size: 20px; }
    p.sub-massage { font-size: 15px; }
    .slider-track img { width: 200px; margin-right: 20px; border-radius: 10px; }
    .slider-track { animation: slide 15s linear infinite; }
}

/*------------- フッター -------------*/
footer { border-top: 1px solid #ccc; }
.footer__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 0 30px;
}
.footer__inner-top { display: flex; justify-content: space-between; }
.footer__company { display: flex; gap: 8px; flex-direction: column; }
.footer__logo img { max-width: 250px; width: 100%; }
.footer__address { font-style: normal; }
.footer__nav-columns { display: flex; gap: 50px; }
.footer__nav-list { display: flex; gap: 30px; flex-direction: column; }
.footer__nav-list a { transition: all 0.3s ease; border-bottom: 1px solid transparent; }
ul.footer__nav-list a:hover { border-bottom: 1px solid #333; }
.footer__nav-title { font-weight: 600; }
ul.footer__subnav-list { display: flex; flex-direction: column; gap: 5px; margin-top: 10px; }
ul.footer__subnav-list li { font-size: 14px; font-weight: 500; padding-left: 1.2em; position: relative; }
ul.footer__subnav-list li::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background: #222;
    left: 2px;
    top: 50%;
}
ul.footer__brand-logo {
    max-width: 400px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}
ul.footer__brand-logo li img { max-width: 100px; width: 100%; }
.footer__info { border-top: 1px solid #ccc; padding-top: 25px; }
ul.footer__info-list a { color: #666; }
ul.footer__info-list a:hover { color: var(--font-color); }
.footer__inner-bottom { margin-top: 50px; }
.footer__info-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    padding-bottom: 5px;
}
.footer__copy { text-align: center; font-size: 14px; color: #999; }

@media screen and (max-width: 1250px) {
    .footer__inner { padding: 70px 35px 30px; }
}
@media screen and (max-width: 768px) {
    .footer__inner-top { flex-direction: column; gap: 30px; }
    .footer__nav-list { gap: 10px; }
    .footer__nav-columns { gap: 10px; flex-direction: column; }
    .footer__info-list { gap: 8px; flex-wrap: wrap; }
}