@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.sp-br {
    display: none;
}


.header {
    width: 100%;
    background-color: #fff;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.hamburger {
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
}

.logo img {
    height: 45px;
}

.header-center {
    flex: 1;
    text-align: center;
}

.site-title {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0.5em;
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.tel {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.btn-contact {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1.2;
}

.btn-contact .mail-address {
    font-size: 10px;
    color: #ccc;
}

.global-nav {
    background: linear-gradient(to bottom, #fcfcfc, #e6e6e6);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.global-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}

.global-nav li {
    flex: 1;
    text-align: center;
    border-right: 1px solid #ddd;
}

.global-nav li:first-child {
    border-left: 1px solid #ddd;
}

.global-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 14px; 
    padding: 0 10px;
    transition: background-color 0.3s;
}

.global-nav a:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-integrated {
    width: 100%;
    line-height: 0;
    font-size: 0;
}

.hero-integrated img {
    width: 100%;
    height: auto;
    display: block;
}


.concept {
    /* 背景画像の設定 */
    background-image: url('image/26348470.jpg');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    
    padding: 100px 20px; 
    text-align: center;
    color: #333;
}

.concept-inner {
    max-width: 800px;
    margin: 0 auto;
}

.concept-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 50px; 
    letter-spacing: 0.1em;
}

.concept-block {
    font-size: 18px;
    line-height: 1.5; 
    margin-bottom: 40px; 
    letter-spacing: 0.05em;
}

.concept-block:last-child {
    margin-bottom: 0; 
}


.services-area {
    padding: 80px 20px 100px;
    background-color: #fff;
}

.services-area-inner {
    max-width: 1200px; 
    margin: 0 auto;
}

/* =========================================
   事業一覧（ロゴとボタン）の基本設定
========================================= */
.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 30px);
    box-sizing: border-box;
}

/* ★修正ポイント1：ロゴを入れる透明な箱の高さを固定してガタつきをなくす */
.service-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px; /* 全員この高さの箱に入れる */
    margin-bottom: 20px;
}

.service-logo img {
    width: 100%;
    height: 100%;
    /* 箱の中で画像の比率を保ったまま綺麗に収める魔法 */
    object-fit: contain; 
    max-width: 180px;
}

/* ボタン本体のデザイン */
.btn-detail {
    display: inline-block;
    background-color: #808080; 
    color: #fff !important; 
    text-decoration: none; 
    padding: 12px 30px; /* 横幅を少しスッキリさせました */
    font-size: 14px;
    white-space: nowrap; 
    text-align: center;
    box-sizing: border-box; /* ★はみ出し防止 */
    width: auto;
    max-width: 100%; 
    line-height: 1.5;
    transition: opacity 0.3s ease;
    margin-top: auto; /* ★念のため、ボタンを一番下に揃える */
}

.btn-detail:hover {
    opacity: 0.8;
}

.recruit-area {
    background-color: #0a1118;
    color: #fff;
    padding: 80px 20px 100px;
}

.recruit-inner {
    max-width: 900px;
    margin: 0 auto;
}

.recruit-header {
    text-align: center;
    margin-bottom: 60px;
}

.recruit-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.recruit-lead {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.recruit-grid {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.recruit-item {
    width: calc(50% - 30px); 
}

.recruit-job-title {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.recruit-summary-text {
    font-size: 18px;
    line-height: 1.3;
    min-height: 120px;
    margin-bottom: 20px;
}

.recruit-details {
    width: 100%;
}

.btn-detail-recruit {
    display: inline-block;
    background-color: #9e9e9e;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 10px 40px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    list-style: none;
}

.btn-detail-recruit::-webkit-details-marker {
    display: none;
}

.btn-detail-recruit:hover {
    opacity: 0.8;
}

.recruit-white-box {
    background-color: #fff;
    color: #333;
    padding: 30px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.recruit-white-box p {
    margin-bottom: 25px;
}

.recruit-white-box p:last-child {
    margin-bottom: 0;
}

.recruit-white-box .note {
    font-size: 12px;
    color: #555;
    display: block;
}

.partner-area {
    background-color: #0a1118;
    color: #fff;
    padding: 80px 20px 100px;
    border-top: 1px solid #1a2632; 
}

.partner-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-header {
    text-align: center;
    margin-bottom: 50px;
}

.partner-title {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.partner-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.partner-lead {
    font-size: 15px;
    line-height: 1.8;
}

.partner-lead p {
    margin-bottom: 15px;
}

.partner-lead .highlight {
    margin-top: 30px;
}

/* 開閉ボタン */
.partner-details {
    width: 100%;
    text-align: center;
}

.btn-detail-partner {
    display: inline-block;
    background-color: #9e9e9e;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 12px 60px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    list-style: none;
    margin: 0 auto;
}

.btn-detail-partner::-webkit-details-marker {
    display: none;
}

.btn-detail-partner:hover {
    opacity: 0.8;
}

/* 白枠内レイアウト */
.partner-white-box {
    background-color: #fff;
    color: #333;
    padding: 50px 40px;
    margin-top: 30px;
    text-align: left;
}

.partner-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.partner-column {
    flex: 1;
}

.partner-column h3 {
    font-size: 16px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.partner-content-item {
    margin-bottom: 20px;
}

.partner-content-item h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.partner-content-item p {
    font-size: 13px;
    line-height: 1.6;
}

.center-box {
    text-align: center;
    padding-top: 20px;
}

.center-box h3 {
    border-bottom: none;
    font-size: 20px;
}

.center-desc {
    font-weight: bold;
    margin-bottom: 15px;
    white-space: nowrap; 
}

.center-box p:last-child {
    white-space: nowrap; 
}

.contact-area {
    background-color: #fff; 
    color: #333;
    padding: 80px 20px 120px;
    text-align: center;
}

.contact-inner {
    max-width: 600px; 
    margin: 0 auto;
}

.btn-mail-launch {
    display: inline-block;
    background-color: #0a1118; 
    color: #fff;
    padding: 20px 60px;
    transition: opacity 0.3s ease;
    margin-bottom: 40px;
}

.btn-mail-launch:hover {
    opacity: 0.8;
}

.btn-mail-title {
    display: block;
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.btn-mail-address {
    display: block;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #ccc;
}

.contact-lead {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* コピー用グレー枠 */
.copy-box {
    background-color: #ccc; 
    padding: 50px 20px;
    text-align: center;
    line-height: 3; 
    font-size: 15px;
}

.copy-box p {
    margin: 0;
}

  .message-area {
    background-image: url('26348470.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center; 
}

.message-title {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    color: #333;
}

.message-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.message-content {
    background-color: rgba(255, 255, 255, 0.85); 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 60px 40px;
    display: flex;
    justify-content: center; 
}

.message-text {
    text-align: left; 
    max-width: 100%;
}

.message-text p {
    font-size: 15px;
    line-height: 2.2; 
    color: #333;
    margin-bottom: 25px;
}

.message-text p:last-of-type {
    margin-bottom: 0;
}

.message-sign {
    text-align: right;
    margin-top: 40px !important;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.footer-contact {
    background-color: #fff;
    padding: 60px 20px 80px;
    text-align: center;
}

.footer-contact-inner {
    max-width: 800px;
    margin: 0 auto;
}


.footer-contact-label {
    display: inline-block;
    background-color: #0a1118;
    color: #fff;
    padding: 15px 60px;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}


.footer-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.btn-footer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #111; /* 濃い黒背景 */
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    margin: 10px;
    
    /* 横幅を固定せず、中身に合わせて伸びるようにする */
    width: auto; 
    min-width: 250px;
    box-sizing: border-box;
    transition: background 0.3s;
}

.btn-footer-action:hover {
    opacity: 0.8;
}

.action-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.action-detail {
    font-size: 16px;
    white-space: normal; 
    word-break: break-all;
    text-align: center;
}


.site-footer {
    background-image: url('image/26348470.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px 20px; 
    border-top: 1px solid #ddd;
    color: #333;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}


.footer-left {
    width: 250px;
    flex-shrink: 0;
}

.footer-logo img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-service-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-service-logos img {
    height: 30px; 
    width: auto;
    object-fit: contain;
}


.footer-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 40px 60px; 
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col li {
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-nav-col li a {
    transition: opacity 0.3s ease;
}

.footer-nav-col li a:hover {
    opacity: 0.6; 
}

.footer-nav-col .sub-link {
    margin-left: 1.5em; 
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 60px;
    letter-spacing: 0.05em;
}

.shiori-hero {
    background-image: url('image/IMG_3335.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.shiori-hero-content {
    z-index: 2; 
}

.shiori-hero-title {
    font-size: 20px;
    color: #111;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.shiori-hero-subtitle {
    font-size: 26px;
    color: #111;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.shiori-hero-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    mix-blend-mode: multiply; 
    z-index: 1;
    opacity: 0.8; 
}


.shiori-concept {
    background-image: url('image/26348470.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px; 
    text-align: center;
    color: #111; 
}

.shiori-concept-inner {
    max-width: 800px;
    margin: 0 auto;
}

.shiori-concept-text {
    font-size: 18px;
    font-weight: bold; 
    line-height: 2.2; 
    letter-spacing: 0.05em;
    margin: 0;
}

.shiori-works {
    background-color: #3b3b3b; 
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
}

.shiori-works-inner {
    max-width: 800px;
    margin: 0 auto;
}

.shiori-works-title {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-weight: bold;
}

.shiori-works-desc p {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.shiori-works-note {
    font-size: 14px;
}

.slider-container {
    position: relative;
    max-width: 600px; 
    margin: 50px auto 0;
    overflow: hidden; 
    background-color: #a0a0a0; 
}

.slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out; 
}

.slide-item {
    min-width: 100%; 
    box-sizing: border-box;
}

.dummy-slide {
    width: 100%;
    height: 350px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.slide-item img {
    width: 100%;
    height: 350px;
    object-fit: cover; 
    display: block;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background-color 0.3s;
}

.slide-btn:hover {
    background-color: rgba(0, 0, 0, 0.8); 
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.shiori-info {
    background-color: #3b3b3b;
    color: #fff;
    padding: 0 20px 100px; 
}

.shiori-section-title {
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-weight: normal;
}

.shiori-shipping {
    margin-bottom: 80px;
}

.shipping-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px; 
}

.shipping-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; 
    z-index: 1;
    opacity: 0.8; 
}

.shipping-text {
    position: relative;
    z-index: 2;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.shipping-catch {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.shipping-text p {
    font-size: 15px;
    line-height: 1.6;
}

/* よくある質問 */
.shiori-faq {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    color: #333;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-q {
    padding: 15px 20px;
    border-bottom: 1px solid #ccc; 
}

.faq-a {
    padding: 15px 20px;
    padding-left: 30px; 
}

.shiori-contact {
    background-color: #3b3b3b;
    color: #fff;
    padding: 0 20px 100px; 
    text-align: center;
}

.shiori-contact-lead {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.shiori-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.btn-shiori-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #a0a0a0; 
    color: #fff;
    width: 280px;
    min-height: 80px;
    transition: opacity 0.3s ease;
}

.btn-shiori-contact:hover {
    opacity: 0.8;
}

.btn-shiori-contact .btn-title {
    font-size: 16px;
    letter-spacing: 0.1em;
}

.btn-shiori-contact .btn-sub {
    font-size: 13px;
    margin-top: 5px;
    letter-spacing: 0.05em;
}

.nocolde-hero {
    background-image: url('image/nokoldeFV.png');
    background-size: cover;
    background-position: center bottom; 
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.nocolde-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -30px; 
}

.nocolde-hero-logo {
    width: 220px;
    margin-bottom: 25px;
    mix-blend-mode: multiply; 
}

.nocolde-hero-text {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); 
}

.nocolde-concept {
    background-color: #f4f5f7; 
    padding: 80px 20px;
}

.nocolde-concept-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px; 
}

.nocolde-concept-text {
    flex: 1;
    color: #1a4472; 
}

.nocolde-concept-title {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    font-weight: bold;
}

.nocolde-concept-desc p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.nocolde-concept-desc p:last-child {
    margin-bottom: 0;
}

.nocolde-concept-image {
    width: 45%; 
    max-width: 450px;
    flex-shrink: 0;
}

.nocolde-concept-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); 
}

.nocolde-services {
    background-color: #f4f5f7; 
    padding: 0 20px 100px; 
    text-align: center;
}

.nocolde-services-inner {
    max-width: 900px;
    margin: 0 auto;
}

.nocolde-services-title {
    font-size: 24px;
    color: #1a4472; 
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 60px;
}

.nocolde-services-image {
    width: 100%;
}

.nocolde-services-image img {
    width: 100%;
    max-width: 800px; 
    height: auto;
}

.nocolde-flow-area {
    background-image: url('image/N青背景.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 80px 20px 150px;
    text-align: center;
    color: #1a4472;
    position: relative;
    z-index: 3; 
}

.nocolde-pill-title {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 50px;
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    font-weight: bold;
}

.flow-steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 15px; 
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-icon {
    width: 100%;
    max-width: 140px;
    margin-bottom: 20px;
}

.flow-icon img {
    width: 100%;
    height: auto;
}

.flow-step-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.flow-step-desc {
    font-size: 13px;
    line-height: 1.6;
}


.flow-arrow {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #1a4472; 
    margin-top: 55px; 
    flex-shrink: 0;
}

.nocolde-pricing-area {
    background-image: url('image/N背景濃い青.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 120px 20px 120px;
    text-align: center;
    color: #fff;
    margin-top: -80px;
    position: relative;
    z-index: 2; 
}
.pricing-desc {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.nocolde-faq-area {
    background-image: url('image/N背景紫.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 20px 150px;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 1; 
}

.nocolde-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.nocolde-faq-item {
    background-color: #f4f5f7; 
    border-radius: 50px; 
    margin-bottom: 15px;
    color: #1a4472; 
    display: flex;
    flex-direction: column;
}

.n-faq-q {
    padding: 15px 20px 12px;
    position: relative;
}

.n-faq-q::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background-color: #ccc;
}

.n-faq-a {
    padding: 12px 20px 15px;
    font-size: 14px;
}

.nocolde-contact-area {
    background-image: url('image/N背景ピンク.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 120px 20px 150px;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 0; 
}

.nocolde-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10; 
}

.btn-n-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #b84c8a; 
    width: 320px;
    min-height: 100px;
    border-radius: 50px; 
    box-shadow: 0 8px 0 #933c6d; 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    text-decoration: none;
}

.btn-n-contact:hover {
    transform: translateY(4px); 
    box-shadow: 0 4px 0 #933c6d; 
}

.btn-n-contact .btn-n-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.btn-n-contact .btn-n-sub {
    font-size: 18px;
    font-weight: bold;
}

.hottoke-hero {
    width: 100%;
    background-color: #fff;
    line-height: 0; 
    font-size: 0;
}

.hottoke-hero img {
    width: 100%; 
    height: auto; 
    display: block;
}

.hottoke-contact-top,
.hottoke-basic-pack {
    background-color: #e2e8ea; 
}

.hottoke-contact-top {
    padding: 40px 20px;
}

.h-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.btn-h-contact {
    background-color: #ed4d8e; 
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-h-contact:hover {
    opacity: 0.8;
    transform: scale(0.98); 
}

.h-contact-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.h-contact-sub {
    font-size: 13px;
    font-weight: normal;
}

.hottoke-basic-pack {
    padding: 20px 20px 80px;
}

.h-section-title {
    text-align: center;
    font-size: 26px;
    color: #5b707c; 
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.h-pack-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-pack-item {
    background-color: #78a1a9; 
    border-radius: 12px;
    display: flex;
    padding: 8px 8px 8px 0; 
}

.h-pack-left {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.h-pack-left img {
    height: 80px;
    width: auto;
    margin-right: 15px;
}

.h-pack-left h3 {
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.h-pack-right {
    flex: 1;
    background-color: #fff;
    border-radius: 30px 8px 8px 30px; 
    padding: 25px 40px;
    display: flex;
    align-items: center;
}

.h-pack-right p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin: 0;
}

.h-pack-right .note {
    font-size: 12px;
    color: #666;
    display: block; 
    margin-top: 5px;
}

.hottoke-cannot {
    background-color: #e2e8ea; 
    padding: 0 20px 80px; 
}

.h-sorry-icon {
    margin-right: 0 !important;
    height: 100px !important; 
}

.cannot-text {
    font-weight: bold;
    color: #5b707c !important; 
}

.cannot-note {
    display: block;
    margin-top: 15px;
    font-weight: normal;
    font-size: 15px;
}

.hottoke-pricing {
    background-color: #fff; 
    padding: 60px 20px;
    text-align: center;
}

.h-plan-name {
    font-size: 22px;
    font-weight: bold;
    color: #5b707c;
    margin-bottom: 10px;
}

.h-price {
    color: #ed4d8e; 
    margin-bottom: 15px;
}

.h-price-num {
    font-size: 65px; 
    font-weight: bold;
    line-height: 1;
}

.h-price-yen {
    font-size: 35px;
    font-weight: bold;
}

.h-plan-note {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.hottoke-flow {
    background-color: #e2e8ea; 
    padding: 60px 20px 80px;
    text-align: center;
}

.h-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 15px;
}

.h-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.h-flow-step img {
    width: 100%;
    max-width: 110px;
    margin-bottom: 15px;
}

.h-flow-step p {
    font-size: 15px;
    font-weight: bold;
    color: #111;
    line-height: 1.4;
}

.h-flow-arrow {
    font-size: 30px;
    color: #888;
    font-weight: normal; 
}

.hottoke-faq {
    background-color: #e2e8ea; 
    padding: 0 20px 80px; 
}

.h-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-faq-item {
    background-color: #78a1a9;
    border-radius: 0 40px 0 0; 
    padding: 0 8px 8px 8px; 
}

.h-faq-q {
    padding: 20px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.h-faq-a {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 0 35px 0 0; 
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.hottoke-contact-bottom {
    background-color: #e2e8ea; 
    padding: 0 20px 80px;
    text-align: center;
}

.h-contact-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.h-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.h-contact-icon {
    height: 100px; 
    width: auto;
    margin-bottom: -5px; 
    position: relative;
    z-index: 1; 
}

.h-contact-card .btn-h-contact {
    max-width: 400px;
    z-index: 2; 
}

.h-contact-catch {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-top: 60px;
    letter-spacing: 0.05em;
}

.zeroichi-hero {
    background-image: url('image/asian-woman-performing-electronic-song-professional-mixer-console-having-fun-while-recording-music-session-with-camera-cheerful-dj-doing-performance-nightclub-with-audio-equipment.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.zeroichi-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.zero-hero-content {
    position: relative;
    z-index: 2; 
    color: #fff;
}

.zero-badge {
    display: inline-block;
    color: #fff;
    padding: 5px 20px;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.zero-catch {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.zero-sub {
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}


.zeroichi-about {
    background-color: #e5d7e8; 
    padding: 80px 20px;
    text-align: center;
}

.zero-about-title {
    color: #ffffff; 
    font-size: 26px;
    font-weight: normal; 
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1); 
}

.zero-about-desc {
    color: #4a4052; 
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

.zeroichi-support,
.zeroichi-flow {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.zero-section-title {
    font-size: 22px;
    color: #111;
    margin-bottom: 50px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.z-support-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.z-support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 30px); 
    min-width: 160px;
}

.z-support-item img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.z-support-item p {
    font-size: 15px;
    font-weight: bold;
    color: #111;
}

.zeroichi-flow {
    padding-top: 20px; 
}

.z-flow-list {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.z-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.z-flow-item img {
    height: 90px; 
    width: auto;
    margin-bottom: 20px;
}

.z-flow-item p {
    font-size: 15px;
    font-weight: bold;
    color: #111;
}

.zeroichi-faq {
    background-image: url('image/26421644.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 60px 20px 80px;
    text-align: center;
}

.zeroichi-faq .zero-section-title {
    margin-bottom: 40px;
}

.z-faq-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left; 
}

.z-faq-item {
    background-color: #fff;
    border: 1px solid #ccc; 
    margin-bottom: 15px;
}

.z-faq-q, .z-faq-a {
    padding: 15px 20px;
    font-size: 15px;
    color: #333;
}

.z-faq-q {
    border-bottom: 1px solid #ccc; 
}

.zeroichi-message {
    background-color: #e5d5e5; 
    padding: 40px 20px;
    text-align: center;
}

.zeroichi-message p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.05em;
}

.zeroichi-contact {
    background-color: #fff;
    padding: 60px 20px 100px;
    text-align: center;
}

.z-contact-catch {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.btn-z-line {
    display: inline-block;
    background-color: #d982b5; 
    color: #fff;
    text-decoration: none;
    padding: 15px 50px;
    font-size: 16px;
    line-height: 1.5;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-z-line:hover {
    opacity: 0.8;
    transform: scale(0.98); 
}

@media screen and (max-width: 768px) {

    .sp-br { display: block; }
    .header-inner { flex-wrap: wrap; }
    .header-center {
        order: -1;
        width: 100%;
        flex: none;
        margin-bottom: 15px;
    }
    .site-title { font-size: 24px; }
    .header-left, .header-right { flex: none; width: 50%; }
    .header-right { align-items: flex-end; }
    .tel { font-size: 14px; }
    .global-nav ul { flex-wrap: wrap; }
    .global-nav li {
        width: 50%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .global-nav li:first-child { border-left: none; }
    .global-nav li:nth-child(odd) { border-right: 1px solid #ddd; }

    .header { position: relative; }
    .hamburger { z-index: 1000; position: relative; }
    .hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    .global-nav {
        position: absolute;
        top: 100%;
        left: 5px;
        width: 150px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .global-nav ul {
        display: flex;
        flex-direction: column;
        padding: 5px 15px;
        margin: 0;
        gap: 0;
    }
    .global-nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .global-nav ul li:last-child { border-bottom: none; }
    .global-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: auto;
        padding: 12px 0;
        color: #333;
        font-size: 13px;
        text-decoration: none;
        line-height: 1.4;
    }
    .global-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
    }

    /* --- メインビジュアル --- */
    .hero { height: 400px; }
    .hero-integrated { width: 100%; line-height: 0; font-size: 0; }
    .hero-integrated img { width: 100%; height: auto; display: block; }

    /* --- 令真商事とは --- */
    .concept { padding: 60px 15px; }
    .concept-title { font-size: 18px; margin-bottom: 30px; }
    .concept-block { font-size: 11px; line-height: 1.8; margin-bottom: 30px; }
    
    /* --- 事業一覧 --- */
    .services-grid { gap: 25px 10px; }
    .service-item { width: calc(50% - 10px); }
    .service-logo { height: 70px; margin-bottom: 10px; }
    .service-logo img { max-width: 130px; object-fit: contain; width: 100%; height: 100%;}
    
    .btn-detail {
        padding: 6px 10px !important;
        font-size: 10px !important; 
        width: auto !important;
        max-width: 90% !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    

    .recruit-area, .partner-area { padding: 50px 15px 70px; }
    .recruit-grid, .partner-grid { flex-direction: column; gap: 50px; }
    .recruit-item, .partner-column { width: 100%; }
    .recruit-summary-text { min-height: auto; margin-bottom: 15px; }

    .recruit-title, .partner-title { font-size: 20px !important; margin-bottom: 20px !important; }
    .recruit-lead, .partner-subtitle, .partner-lead { font-size: 11px !important; line-height: 1.6 !important;}

    .btn-detail-recruit, .btn-detail-partner {
        width: 100% !important;
        max-width: 250px !important;
        text-align: center !important;
        padding: 12px 0 !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .recruit-white-box, .partner-white-box {
        padding: 15px !important;
        font-size: 10px !important; 
        line-height: 1.6 !important;
    }

    .recruit-white-box p, .partner-white-box p,
    .recruit-job-title, .recruit-item h3, .partner-column h3, .partner-content-item h4 {
        margin-bottom: 10px !important;
    }

    .recruit-job-title, .recruit-item h3, .partner-column h3 {
        font-size: 14px !important; 
    }

    .partner-content-item h4 {
        font-size: 11px !important; 
    }
    
    .contact-area { padding: 60px 15px; }
    .btn-mail-launch {
        width: 100% !important;
        max-width: 320px !important;
        padding: 15px 10px !important;
        white-space: normal !important; 
        word-break: break-all !important; 
        text-align: center !important;
        margin: 0 auto 30px !important;
    }
    .btn-mail-launch .btn-mail-title { font-size: 16px !important; margin-bottom: 5px !important; }
    .btn-mail-launch .btn-mail-address { font-size: 13px !important; line-height: 1.2 !important; }
    
    .copy-box { padding: 25px 15px; font-size: 13px; line-height: 2.2; }

    /* --- 代表メッセージ --- */
    .message-area { padding: 60px 15px; }
    .message-content { padding: 30px 15px; }
    .message-text p { font-size: 11px; line-height: 1.8; margin-bottom: 20px; }
    .message-sign { font-size: 12px !important; margin-top: 15px !important;}
    
    /* --- フッターご相談ボタン --- */
    .btn-footer-action {
        width: 90% !important;
        min-width: auto !important;
        padding: 10px !important;
        margin: 0 auto 20px !important;
    }
    .action-title, .action-detail {
        font-size: 13px !important; 
        line-height: 1.4 !important;
    }

    /* --- フッターエリア --- */
    .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 50px; }
    .footer-left { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .footer-service-logos { justify-content: center; }
    .footer-right { justify-content: center; gap: 30px; width: 100%; }
    .footer-nav-col { width: calc(50% - 15px); }
    .footer-nav-col .sub-link { margin-left: 0; }

    .sp-no-break br { display: none; }
}

@media screen and (min-width: 769px) {
    .hamburger { display: none; }
}