@charset "UTF-8";

/* Base normalize & reset */
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-size: 62.5%;
}

body {
    margin: 0;
    position: relative;
    width: 100%;
    line-height: 1;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #F7F7F7;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

ul, ol, dl, dt, dd {
    margin: 0;
    padding: 0;
}

ol, li {
    list-style: none;
}

img {
    border: none;
    line-height: 0;
    font-size: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-size: inherit;
    background: transparent;
    color: inherit;
}

th, td {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    empty-cells: show;
}

input, select {
    vertical-align: middle;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    border-radius: 0;
}

pre {
    white-space: -moz-pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
}

figure {
    margin: 0;
}

/* Selected Text */
::selection {
    background: #191919;
    color: #FFFFFF;
}

/* レスポンシブ表示制御 */
.sp-no {
    display: block;
}
br.sp-no {
    display: inline;
}
.pc-no {
    display: none;
}
br.pc-no {
    display: none;
}

@media screen and (max-width: 767px) {
    body {
        min-width: auto;
        min-height: 100%;
        font-size: 4.266vw;
        -webkit-text-size-adjust: 100%;
    }
    .pc-no {
        display: block;
    }
    br.pc-no {
        display: inline;
    }
    .sp-no {
        display: none;
    }
    br.sp-no {
        display: none;
    }
}

/* 電話番号リンク無効化（PC） */
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

/* ホバーエフェクト */
a, a:hover, .hover {
    transition: color 0.5s, opacity 0.5s;
}
.hover:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/* レイアウト */
.wrapper {
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    min-height: auto;
    overflow: hidden;
    padding-top: 80px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contents-wrap {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main {
    position: relative;
}

@media screen and (max-width: 767px) {
    .wrapper {
        padding-top: 15.4666vw;
        max-width: none;
        box-shadow: none;
    }
    .contents-wrap {
        width: 85.3333vw;
        padding: 0 15px;
    }
    .main {
        padding-bottom: 21.3333vw;
    }
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 999;
}

.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #fff;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .1));
    padding: 0 36px 0 57px;
    z-index: 1;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-menu > .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-menu > .menu > li:not(:last-child) {
    margin-right: 3em;
}

.header-menu > .menu > li > a {
    font-weight: 500;
    color: #404040;
}

.header-menu > .menu > li > span {
    font-weight: 500;
    color: #cccccc;
}

@media screen and (max-width: 1280px) {
    .header-menu > .menu > li {
        font-size: 14px;
    }
    .header-menu > .menu > li:not(:last-child) {
        margin-right: 2em;
    }
}

@media screen and (max-width: 767px) {
    .header {
        left: 0;
        transform: none;
        max-width: none;
    }
    .header-logo {
        max-width: 188px;
    }
    .header-inner {
        height: 15.4666vw;
        filter: drop-shadow(0 0.8vw 2.6666vw rgba(0, 0, 0, .1));
        padding: 0 0 0 3.5466vw;
    }
    .header-menu {
        display: none;
    }
}
/* フッター */
.footer {
    position: relative;
    width: 100%;
    background-color: #1E6A39;
    z-index: 1;
}

.footer-inner {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 1250px;
    color: #fff;
    margin: 0 auto;
    padding: 60px 0 40px;
    z-index: 3;
    font-size: 16px; /* フッター全体の基本文字サイズを16pxに */
}

.footer-inner a {
    color: #fff;
    font-size: 16px; /* リンクの文字サイズを16pxに */
}

.footer-inner a:hover {
    text-decoration: underline;
}

.footer-info {
    width: 285px;
}

.footer-info .company {
    line-height: 1.6em;
    margin-bottom: 1.6em;
    font-size: 16px; /* 会社情報の文字サイズを16pxに */
}

.footer-info .information {
    line-height: 1.6em;
    font-size: 16px; /* 住所情報の文字サイズを16pxに */
}

.footer-menu {
    width: calc(100% - 285px);
    border-left: 1px solid #fff;
    padding-left: 40px;
}

.footer-menu .logo {
    margin-bottom: 30px;
}

.footer-menu .menu-wrap {
    display: flex;
    margin-bottom: 20px;
}

.footer-menu .menu-wrap .menu {
    line-height: 1.5em;
    font-size: 16px; /* メニューの文字サイズを16pxに */
}

.footer-menu .menu-wrap .menu:not(:last-of-type) {
    margin-right: 40px;
}

.footer-menu .copyright {
    text-align: right;
    line-height: 1.7em;
}

.footer-menu .copyright .copy {
    font-size: 16px; /* コピーライトの文字サイズを16pxに */
}

@media screen and (max-width: 767px) {
    .footer-inner {
        display: block;
        padding: 15.4666vw 7.3333vw 24.8vw;
        font-size: 15px;
    }
    .footer-info {
        width: 100%; /* 100%に変更 */
    }
    .footer-info .company,
    .footer-info .information {
        font-size: 15px;
    }
    .footer-menu {
        width: 100%; /* 100%に変更 */
        border-left-width: 0;
        border-top: 1px solid #fff;
        padding-left: 0; /* 左パディングを削除 */
        padding-top: 12.2666vw;
        margin-top: 7.4666vw;
    }
    .footer-menu .logo {
        margin-bottom: 9.8666vw;
    }
    .footer-menu .menu-wrap {
        display: block;
        margin-bottom: 9.0666vw;
    }
    .footer-menu .menu-wrap .menu {
        font-size: 15px;
    }
    .footer-menu .menu-wrap .menu:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 9.0666vw;
    }
    .footer-menu .copyright {
        font-size: 3.7333vw;
        text-align: left; /* 左揃えに変更（または center にしても可） */
    }
    .footer-menu .copyright .copy {
        font-size: 14px;
    }
    .footer-inner a {
        font-size: 15px;
    }
}

/* 共通タイトル */
.ttl {
    text-align: center;
    margin-bottom: 30px;
}

.ttl-main {
    color: #1E6A39;
    font-size: 50px;
    font-weight: bold;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.ttl-sub {
    color: #1E6A39;
    font-size: 16px;
    margin: 15px 0 0 0;
}

@media screen and (max-width: 767px) {
    .ttl-main {
        font-size: 32px;
    }
    .ttl-sub {
        font-size: 14px;
    }
}

/* セクション */
section {
    position: relative;
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    section {
        padding: 60px 0;
    }
}

/* メインビジュアル */
.mv {
    background: linear-gradient(135deg, #1E6A39 0%, #26998B 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 0;
}

.mv-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mv-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mv-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
}

.mv-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.mv-btn-item {
    background: #FF8200;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    padding: 20px 40px;
    text-decoration: none;
    transition: all 0.3s;
}

.mv-btn-item:hover {
    background: #e07300;
    transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
    .mv {
        padding: 60px 0;
    }
    .mv-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .mv-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .mv-btn-item {
        font-size: 16px;
        padding: 16px 32px;
    }
}

/* About */
.about {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Features */
.features {
    background-color: #f8f9fa;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.features-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.features-item:hover {
    transform: translateY(-5px);
}

.features-title {
    color: #1E6A39;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.features-text {
    line-height: 1.7;
    color: #666;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    .features-item {
        padding: 30px 20px;
    }
}

/* Info */
.info {
    background-color: #fff;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1E6A39;
}

.info-box h3 {
    color: #1E6A39;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.info-box p {
    line-height: 1.6;
    color: #333;
}

@media screen and (max-width: 767px) {
    .info-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .info-box {
        padding: 20px;
    }
}

/* Contact */
.contact {
    background-color: #f8f9fa;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 60px auto 0;
}

.contact-content p {
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 16px;
}

/* ボタン */
.btn-link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-link a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 60px;
    line-height: 1;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(143,206,233,1) 0%, rgba(21,160,146,1) 100%);
    border-radius: 10px;
    margin: 0 auto;
    z-index: 3;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21,160,146,0.3);
}

@media screen and (max-width: 767px) {
    .btn-link a {
        width: 85.3333vw;
        max-width: 300px;
        height: 50px;
        font-size: 16px;
    }
}

/* パンくずリスト */
#breadcrumbs {
    padding: 16px 0;
    margin: 0 0 20px;
    background: #f8f9fa;
}

#breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#breadcrumbs ol li {
    position: relative;
    font-size: 14px;
    color: #666;
}

#breadcrumbs ol li:not(:last-child) {
    padding-right: 1em;
    margin-right: 1em;
}

#breadcrumbs ol li:not(:last-child)::after {
    position: absolute;
    content: '';
    top: 42%;
    right: 0;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg) translate(0, -50%);
}

#breadcrumbs ol li a {
    color: #1E6A39;
}

#breadcrumbs ol li a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    #breadcrumbs {
        padding: 12px 0;
    }
    #breadcrumbs ol {
        padding: 0 15px;
    }
    #breadcrumbs ol li {
        font-size: 12px;
    }
}

/* ページトップ */
#pageTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    z-index: 99;
    opacity: 1;
    transition: opacity 0.5s;
    background: #1E6A39;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#pageTop:hover {
    background: #26998B;
    transform: translateY(-2px);
}

#pageTop.hide {
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    #pageTop {
        right: 20px;
        bottom: 80px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* テーブル */
.table-block {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
}

.table {
    width: 100%;
    background-color: #fff;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    text-align: center;
    font-weight: 600;
    background-color: #1E6A39;
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 12px 8px;
    font-size: 14px;
}

.table td {
    border-bottom: 1px solid #ddd;
    padding: 12px 8px;
    font-size: 14px;
    background: #fff;
}

.table tbody tr:nth-child(even) td {
    background-color: #f8f9fa;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* ユーティリティクラス */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.hidden { display: none; }
.visible { display: block; }


/* ========================================
   モバイルメニュー関連のスタイル
   ======================================== */

/* ハンバーガーボタン */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ハンバーガーボタンがアクティブな時 */
.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* モバイルメニュー */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-list {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 20px 20px;
    list-style: none;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-list {
    transform: translateX(0);
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    padding: 16px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-list a:hover {
    color: #007bff;
}

/* body固定（メニュー開放時のスクロール防止） */
body.menu-open {
    overflow: hidden;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* タブレット以下でハンバーガーメニューを表示 */
@media screen and (max-width: 768px) {
    .header-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* ヘッダーの調整 */
    .header-inner {
        justify-content: space-between;
    }
    
    .header-logo {
        flex: 1;
    }
    
    .header-logo img {
        max-height: 40px;
    }
}

/* スマートフォン */
@media screen and (max-width: 480px) {
    .mobile-menu-list {
        width: 100%;
        padding: 60px 20px 20px;
    }
    
    .mobile-menu-list a {
        font-size: 18px;
        padding: 20px 0;
    }
    
    .header-logo img {
        max-height: 35px;
    }
}

/* PC表示時はモバイルメニューを完全に隠す */
@media screen and (min-width: 769px) {
    .mobile-menu-button,
    .mobile-menu {
        display: none !important;
    }
    
    .header-menu {
        display: block;
    }
}