@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.0/font/bootstrap-icons.css");
html {
     font-size: 16px;
}
body {
    margin: 0;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    font-family: 'Noto Sans JP', san-serif;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #222;
}

main{
    flex: 1;
}

a, a:visited {
    color: #222;
}
a:hover {
    color: /*#20afe4*/#3B591D;
}

span.aks {
    display: inline-block;
}
/*.font_blue, a.font_blue, a.font_blue:visited {
        color: #0086d1;
}*/
a.font_blue:hover {
    color: #2246ac;
}
.font_orange {
    color: #ed6a00;
}
.font_green {
    color: #415b2e;
}
.font_white{
    color: #fff !important;
}

.t-c{
    text-align: center
}

.midashi-mb{
    margin: 2rem 0 2rem;
}

.midashi-mb-se{
    margin: 5rem 0 2rem;
}

.midashi-mb-topics{
    margin: 0rem 0 4rem;
}

.page-container{
    margin-top: 80px;
}

.page-archive-container{
    margin-top: 113px;
}

.yearly-list {
    margin-top: 2rem;
}

/** header **/
:root {
    --header-height: 120px; 
}

@media (max-width: 991px) {
    :root {
        --header-height: 70px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 70px;
    }
}

@media (max-width: 580px) {
    :root {
        --header-height: 55px;
    }
}


#header {
    font-size: 12px;
    transition: all .4s;
}
#header.header_up {
    transform: translateY(calc(-1 * var(--header-height)));
}

#header .container-fluid > div > * {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}
#header .h1, #header .navbar-brand {
    font-size: 1rem;
}
#header a, #header a:visited {

    background: #3B591D;
}

.bg_p {
    background-color: #3B591D;
    height: 100%;
}

.title_logo{
    color: #fff !important
}

.en-name{
    letter-spacing: -0.1px;
    display: block;
}

.header-utility {
    position: absolute;
    top: 2rem;
    right: 4rem; 
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}



.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    background: #fff;
    border-radius: 6px;
}

/* 言語切り替え 共通 */
.lang-switch a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 2px solid #fff;
}

/* 日本語（選択中） */
.lang-switch a.active {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* English（非選択時） */
.lang-switch a:not(.active) {
    background: #fff !important;
    color: #3B591D !important;
    border-color: #fff ;
}

/* hover（非選択のみ少し強調） */
.lang-switch a:not(.active):hover {
    background: #f2f2f2;
}


/* hover */
.lang-switch a:hover {
    opacity: 1;
}


.sns-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

/* SVGアイコンの色を白に固定 */
.btn-sns svg {
    fill: #fff;
    width: 16px; /* アイコン自体のサイズ */
    height: 16px;
}

/* 各ブランドカラー */
.btn-x {
    background-color: #111319;
}
.btn-facebook {
    background-color: #375A94;
}
.btn-youtube {
    background-color: #FF0000;
}
.btn-instagram {
    background-color: #E4405F;
}
.btn-line {
    background-color: #5DB40F;
}
.btn-pinterest {
    background-color: #B83026;
}

.btn-sns:hover {
    opacity: 0.7;
    transform: translateY(-2px); /* 軽く浮き上がらせる演出 */
}


@media (max-width: 767px) {
    .header-utility {
        display: none;
    }
}


.navbar-brand {
    max-width: calc(100% - 140px);
    margin-right: 0;
}
.navbar-brand img {
    height: auto;
}

.bg-green{
    background: #3B591D
}

.bg-back-color{
    background: white;
    width: 100%;
}

.title_logo{
    padding: 0 0.3rem;
}

.navbar-light .navbar-toggler {
    font-size: 1.7rem;
    border: none;
    box-shadow: none;
    transition: all .8s;
    top: 1.5rem;
    right: 0.5rem;
    padding: 0;
}
/* --- ハンバーガーメニューのアニメーション修正 --- */

/* 元のアイコン画像を消し、三本線のベースを作る */
.navbar-light .navbar-toggler-icon {
    background-image: none !important; /* 画像を消す */
    position: relative;
    width: 30px;
    height: 2px;
    background-color: #fff; /* 真ん中の線 */
    display: inline-block;
    vertical-align: middle;
    transition: all .4s ease-in-out; 
}

/* 上下の線を追加 */
.navbar-light .navbar-toggler-icon::before,
.navbar-light .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: all .4s ease-in-out;
}

/* 上の線の位置 */
.navbar-light .navbar-toggler-icon::before {
    top: -10px;
}

/* 下の線の位置 */
.navbar-light .navbar-toggler-icon::after {
    bottom: -10px;
}

/* --- 開いた時（バツ印）の状態 --- */

/* 真ん中の線を透明にする */
.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent !important;
}

/* 上の線を45度回転 */
.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

/* 下の線を-45度回転 */
.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}
/* ============================================================
   メニューの出し分け決定版（992pxを境に切り替え）
   ============================================================ */

/* 【SP/タブレット用】991.98px以下：白背景・緑文字・下線なし */
@media all and (max-width: 991.98px) {
    .header-utility--pc {
        display: none !important;
    }

    #navbar .navbar-nav {
        background-color: #3B591D !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
    }

    #navbar .menu-item {
        background-color: #ffffff !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    #navbar .nav-link {
        color: #FFF !important;
        font-weight: bold;
        padding: 1rem 1.5rem !important;
    }

    /* 下線を完全に消す */
    #navbar .navbar-nav > .menu-item.current-menu-item > a::after,
    #navbar .navbar-nav > .menu-item.current-menu-ancestor > a::after {
        display: none !important;
        content: none !important;
    }

    #navbar .header-utility--sp {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        border-top: 1px solid #3B591D;
    }
}

/* 【PC用】992px以上：透過背景・白文字・下線あり */
@media all and (min-width: 992px) {
    .header-utility--pc {
        display: flex !important;
    }
    .header-utility--sp {
        display: none !important;
    }

    #navbar .navbar-nav {
        display: flex;
        background-color: transparent !important;
    }

    #navbar .navbar-nav > .menu-item {
        position: relative !important;
    }

    /* 現在地（current-menu-item）のリンクに対する下線 */
    #navbar .navbar-nav > .menu-item.current-menu-item > a,
    #navbar .navbar-nav > .menu-item.current-menu-ancestor > a {
        position: relative;
    }

    #navbar .navbar-nav > .menu-item.current-menu-item > a::after,
    #navbar .navbar-nav > .menu-item.current-menu-ancestor > a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: #fff;
    }


    #navbar .navbar-nav > .menu-item > a {
        position: relative;
        display: block;
        line-height: 1;
        padding-bottom: 14px;
    }

}

.menu_p{
    padding: 0 4rem;
}

.h_nav{
    padding: 1.2rem 4rem 2rem;
}



/** main **/
#main {
    padding-top: var(--header-height);
    margin-top: 0;

}



/** footer **/
#footer {
    background: #000;
    color: #fff;
    padding: 2rem;
    margin: 4rem 0 0 0
}
#footer .menu-item a, #footer .menu-item a:visited, #footer .menu-item a[aria-current="page"] {
    color: #fff;
}
#footer .d-none.d-md-block.menu-item {
    display: none!important;
}
#footer .dropdown-menu {
    display: block;
    background-color: transparent;
    position: relative;
    border: none;
    padding-left: 1rem;
}
#footer .dropdown-menu a {
    padding: 0 0 0.5rem 1rem;
}
#footer .dropdown-menu a:before {
    content: '-';
}
#footer > .container > .row ul.menu {
    display: block;
}

/* frontpage */

.sec-m{
    margin: 0 0 4rem 0;
}

#main_slider .slide_img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

    /* 横幅に対する縦横比（少し縦長に調整） */
    aspect-ratio: 16 / 7;

    /* 画面が狭いときでも最低限の高さを確保 */
    min-height: 300px;

    /* 任意で最大高さも制限可能 */
    max-height: 700px;
}

.slick-arrow{
    position: absolute;
    display: block;
    z-index:2!important;
    top: 45%;
    color: #9fa0a0;
    background-color: transparent;
    border: none;
    font-size: 6vw;
    padding: 0;
}
.slick-next{
    right:0!important;
}
.slick-prev{
    left:0!important;
}
.slider_message {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    transition: all .8s;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff,-1px 1px 1px #fff,1px -1px 1px #fff;
    position: relative;
    font-size: 1.2rem;
}
.slide_cap p {
    color: #fff;
    text-shadow: 0 0 1px #000, 0 0 3px #000;
}
.slide_cap {
    opacity: 0;
    transition: all 1s 1s;
    transform: translate(-2em);
    padding-left: 5vw;
}
.slick-active .slide_cap {
    opacity: 1;
    transform: translate(0);
    transition: all 1s 1s;
}

.slick-dots{
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    padding: 1rem 0rem 1.3rem 0rem;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
    font-family: 'slick';
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '□';
    text-align: center;
    /*opacity: .25;*/
    color: #fff;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
    opacity: .75;
    color: #730075;
    background: #710074
}

.top-heading{
    margin: 4rem 0
}

.top-heading-box{
    padding: 2rem;
    color: #494949;
    background: #F2F2F2;
    border-left: solid 5px #3B591D;
    font-weight: 700;
}

.post-category {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

/* 共通 */
.post-category.cat-info,
.post-category.cat-progress {
    text-align: center;
    width: 75px;
}

/* お知らせ（緑） */
.post-category.cat-info {
    background-color: #3B591D;
}

/* 進捗報告（青） */
.post-category.cat-progress {
    background-color: #3462BF;
}

/* 英語サイトだけ幅を広げる */
.post-category.cat-info.is-en,
.post-category.cat-progress.is-en {
    width: 140px;
}

.news_block{
    display: inline-table;
    width: 100%;
    margin: 2rem 0 0 0
}

.topics_p{
    padding: 1rem
}

.topics_post .post-date/*, .power_desc_title*/ {
    font-weight: 900;
    color: #3B591D;
}

.topics_post{
    height: 20%;
}

.topics_post.space {
    height: 58px;
}

.news-all{
    display: block;
    background: #3B591D;
    padding: 1rem;
    width: 300px;
    margin: 2rem 0;
    text-align: center;
    color: #fff !important
}

.top-midashi-font{
    font-weight: bold;
    border-bottom: solid 3px #3B591D;
    display: inline-block;
    padding-bottom: 15px;
}

.news-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 日付 */
.news-row .post-date {
    min-width: 110px;
    font-weight: 900;
    color: #3B591D;
    white-space: nowrap;
}

.news-row .post-date.is-en {
    width: 160px;
}


/* カテゴリー */
.news-row .post-category {
    flex-shrink: 0;
}

/* タイトル */
.news-row .post-title {
    flex: 1;
}


/* 日付＋カテゴリーを横並び */
.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rendering_midashi{
    text-align: center;
    font-size: 1.3rem;
    color: #3B591D;
    font-weight: bold;
    margin: 2rem 0;
}

.img_flame{
    width: 100%;
}

.rendering_midashi_block{
    margin: 3rem 0;
}

.single-post-page{
    padding: 113px 0 0 0
}

/* pages */
.w_960 {
    max-width: 960px;
    margin: 0 auto;
}
h1.page_title, h2.page_title {
    color: #000;
    border-bottom: solid 3px #751c77;
    display: inline-block;
    font-size: 2rem;
    width: 100%;
}

.services-midashi{
    padding: 0.25em 1em;
    color: #3B591D;
    background: transparent;
    border-left: solid 4px #3B591D;
    font-size: 1.5rem;
    font-weight: 800;
}

.services-box{
    max-width: 1000px;
}

.videowrapper {
    position: relative;
    width: 100%;
    /*max-width: 560px;     /* ← ここでサイズ決定 */
    aspect-ratio: 16 / 9;
    margin: 2rem auto;   /* 中央寄せ */
}

.videowrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.topics_title_c{
    text-align: center;
    border-bottom: solid #3B591D;
    padding: 0 0 1rem 0;
}

.topics_movie_box{
    max-width: 600px;
    margin: auto;
}

.kensetsuimg{
    max-width: 380px;
}

.yearly-list li {
    list-style: none;
    width: 120px;
    margin: 0.5rem 2rem 0.5rem 0;
    background-color: #3B591D;
    border: 2px solid #3B591D;
    border-radius: 0.5rem;
    overflow: hidden;
}

.yearly-list li a {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.yearly-list li a:hover {
    background-color: #fff;
    color: #3B591D;
}

.content-post-date{
    font-weight: 900;
    color: #3B591D;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem
}

.nav_links .btn.btn-secondary.btn-lg {
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
}
.nav_links .btn.btn-secondary.btn-lg:hover {
    background-color: transparent;
    border: none;
    color: #0086d1;
}


.p-2 {
    padding: 1rem 1rem 1.5rem 1rem !important;
}

.bridge-list{
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.tbl-construction {
    width: 100%;
}

.tbl-construction th {
    background: #3B591D;
    border: solid 1px #ccc !important;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.tbl-construction td {
    border: solid 1px #ccc !important; 
    padding: 10px;
}

@media screen and (max-width: 640px) {
    .last td:last-child {
        border-bottom: solid 1px #ccc;
        width: 100%;
    }
    .tbl-construction th,
    .tbl-construction td {
        border: solid 1px #ccc !important; 
        display: block;
        width: 100%;
    }
}

.schedule-img{
    width: 100%
}

.schedule-box{
    margin: 0 0 5rem 0;
}

.re-post-date{
    min-width: 110px;
    font-weight: 900;
    color: #3462BF;
    white-space: nowrap
}

/* 進捗報告専用の独自スタイル */
.report-item {
    display: flex;
    flex-direction: column; /* スマホでは縦並び */
    padding: 1.5rem 0;
    border-bottom: 2px solid #dde3db /* 項目間の区切り線 */
}

/* 左側エリア（日付・バッジ） */
.report-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.report-date {
    font-weight: bold;
    color: #3462BF; /* 日付の色 */
    font-family: sans-serif;
}

.report-badge {
    background-color: #3462BF;
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center
}

.en-report-badge{
    background-color: #3462BF;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3
}

/* 右側エリア（タイトル・本文） */
.report-body {
    flex: 1;
}

.report-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #3B591D;
    margin: 8px 0 8px 0; /* タイトル下の余白 */
    line-height: 1.4;
}

.report-summary {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

.report-summary img {
    width: 370px;
    height: auto; /* 縦横比を維持 */
}

/* PCサイズ（768px以上）でのレイアウト切り替え */
@media all and (min-width: 768px) {
    .report-item {
        flex-direction: row; 
        align-items: flex-start;
        gap: 30px;
    }

    .report-meta {
        width: 200px; 
    }

    .report-title {
        margin: 0 0 8px 0
    }
}

/* 進捗報告アーカイブ専用 */
.progress-archive {
    max-width: 960px;
    margin: 0 auto;
}

.progress-item {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

.progress-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #3B591D;
    margin: 8px 0 8px 0;
    line-height: 1.4
}

.progress-date {
    font-weight: 900;
    color: #3B591D;
    margin-bottom: 16px;
}

.progress-content p {
    margin-bottom: 1em;
    line-height: 1.8;
}

.progress-item a {
    color: inherit;
    text-decoration: none;
}

.progress-item a:hover .progress-title {
    text-decoration: underline;
}

.progress-item{
    border: solid 1px #76bd1b;
    background: #f2f2f27a;
    padding: 1rem;
    margin: 0 0 3rem 0
}


.contact-box {
    margin: 20px auto;
    padding: 20px 40px;
    background-color: #F2F2F2;
    border-left: 5px solid #3B591D; 
    color: #333;
}

.contact-title {
    font-size: 20px;
    font-weight: bold;
    color: #3e5a2d;
    margin-bottom: 30px;
    margin-top: 0;
}

.contact-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0; /* 項目間の区切り線 */
}

.contact-item:last-child {
    border-bottom: none; 
}

.label {
    font-size: 14px;
    font-weight: bold;
    color: #3e5a2d;
    margin: 0 0 8px 0;
}

.content {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 電話番号とメールアドレスを緑色にする場合 */
.phone, .email {
    color: #3e5a2d;
    text-decoration: none;
}

.chat-contact-box {
    margin: 40px auto;
    padding: 32px 24px;
    border: 2px solid #3B591D;
    background: #F2F2F2;
    text-align: center;
}

.chat-contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #3B591D;
    margin-bottom: 8px;
}

.chat-contact-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}



/* move */
.move {
    transition: all .8s ease-in-out;
    transform: translateX(-20vw) scale(0.1);
    opacity: 0;
}
.move.active {
    transition: all .8s;
    transform: translateX(0) scale(1);
    opacity: 1;
}

/**
メディアクエリ
*/
@media all and (max-width: 350px) { /* 調整 */
    html {
        font-size: 14px;
    }
    .navbar-light .navbar-toggler {
        top: 1.8rem;
    }
}


@media all and (max-width: 400px) { /* 調整 */
    .navbar-brand {
        font-size: 0.9rem !important;
    }
}



@media all and (min-width: 576px) {
    html {
        font-size: 16px;
    }
    #header {
        font-size: 16px;
    }
    #header .h1, #header .navbar-brand {
        font-size: 1.5rem;
    }

    .en-name{
        font-size: 1.6rem !important
    }

    .fit_img {
        top: 0.5rem;
        right: 3rem;
        width: 60px;
    }


    .br {
        display: block;     /* ブロック化して改行させる */
    }


    /* frontpage */
    #main_slider::after {
        width: 108px;
        height: 156px;
    }
    .topics_post.space {
        height: 42px;
    }

    /* pages */


    .kensetsuimg{
        min-width: 500px;
    }
}


/* ============================================================
   1. ニュース行などのレイアウト（既存の768pxを維持）
   ============================================================ */
@media all and (min-width: 768px) {
    /* ニュース行の横並び */
    .news-row {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .post-title {
        flex: 1;
    }

    .slick-arrow {
        font-size: 5rem;
        top: 35%;
    }
    .slick-next {
        right: -2.5rem !important;
    }
    .slick-prev {
        left: -2.5rem !important;
    }
    .slider_message {
        position: absolute;
        top: 8vw;
        background-color: rgba(255,255,255,0.6);
        max-width: 700px;
        line-height: 1.7;
    }
    .topics_title a {
        position: absolute;
        right: 0rem;
        bottom: 0;
        left: 5rem;
        width: 100%;
    }
}

/* ============================================================
   2. ヘッダーメニューの切り替え（992px以上 = PC版）
   ============================================================ */
@media all and (min-width: 992px) {
    /* PCではユーティリティを表示、SP用を非表示 */
    .header-utility--pc {
        display: flex !important;
    }
    .header-utility--sp {
        display: none !important;
    }

    #header .bg-green {
        border-bottom: none;
    }

    #navbar {
        width: 100%;
        margin-top: 0.5rem;
    }

    /* ナビゲーションを横並びに */
    #navbar .navbar-nav {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
        background-color: transparent; /* スマホ時の背景色を解除 */
    }

    #navbar .navbar-nav > .menu-item {
        font-size: 1.2rem;
        padding: 0 1.5rem 1rem 0;
        margin: 0;
        background-color: transparent; /* スマホ時の白背景を解除 */
        width: auto;
        text-align: left;
        flex-grow: 0;
    }

    #navbar .navbar-nav > .menu-item a {
        color: #fff;
        padding-top: 0;
        padding-bottom: 8px;
        line-height: 1;
        background: transparent !important;
    }

    #navbar .navbar-nav > .menu-item:last-child > a {
        letter-spacing: 0;
    }

    #navbar .dropdown-menu {
        display: block;
    }

    /* フッターメニューの横並び */
    #footer > .container > .row ul.menu {
        display: flex;
    }
}

/* 991px以下（スマホ・タブレット）の時の個別調整 */
@media all and (max-width: 991.98px) {
    /* PC用ユーティリティを消す */
    .header-utility--pc {
        display: none !important;
    }

    /* ハンバーガー内のSP用ユーティリティを表示 */
    #navbar .header-utility--sp {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        position: static;
    }

    .navbar-light .navbar-toggler {
        top: 1rem;
        right: 1rem;
    }

}


@media (max-width: 768px) {
    .top-midashi-font {
        font-size: 1.5rem;
    }

    .services-midashi{
        font-size: 1.3rem;
    }

    #footer {
        padding: 0
    }

    .page-container{
        margin-top: 40px;
    }

    .page-archive-container{
        margin-top: 68px
    }


    .single-post-page{
        padding: 68px 0 0 0
    }


}

@media all and (max-width: 480px) {
    .h_nav {
        padding: 1.2rem 1rem 1.2rem 1rem;
    }

}





@media all and (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

