@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;
}

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

}

:root {
    --header-height: 120px; /* ← 実際の header 高さに合わせる */
}

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

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

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

a, a:visited {
    color: #222;
}
a:hover {
    color: #4D8C81 !important;
}
.font_bold {
    font-weight: 700;
}
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
}

/* ============================================================================================== */
/* #exhaust_gas                                                                                   */
/* ============================================================================================== */
#exhaust_gas {
    max-width: 100%;
}

#exhaust_gas iframe {
    width: 100%;
    border: none;
    overflow: hidden;
    display: block;
}

/** header **/
#header {
    font-size: 12px;
    transition: all .4s;
}
#header.header_up { /* 余裕があったら */
    transform: translateY(-110px);
}
#header .container-fluid > div > * {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}
#header .h1, #header .navbar-brand {
    font-size: 1.5rem;
}
#header a, #header a:visited {

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

.bg-white{

}

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

.title_logo{

}

.navbar-light .navbar-toggler {
    font-size: 1.7rem;
    border: none;
    box-shadow: none;
    transition: all .8s;
    top: 1rem;
    right: 1rem;
    padding: 0;
}
.navbar-light .navbar-toggler-icon {
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");*/
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234D8C81' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all .8s;
}
.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    /*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L 24 24M24 6L6 24'/%3E%3C/svg%3E");*/
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%234D8C81' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L24 24M24 6L6 24'/%3E%3C/svg%3E");
    transition: all .8s;

}
#navbar .navbar-nav {
    background-color: #61c1be/*#0086d1*/;
}
#navbar .menu-item {
    padding: 0.2rem 1rem;
    background-color: #fff;
    margin: 0.5rem;
    border-radius: 4px;
}
#navbar .menu-item:hover .dropdown-menu, #navbar .menu-item:hover .dropdown-menu .menu-item {
    background-color: rgba( 195,234,251,1);
}
#navbar .nav-link {
    color: #4D8C81;
    font-size: 1rem;
}
#navbar .dropdown-menu {
    border: none;
    border-top: solid 1px #222;
    border-radius: 0;
}
#navbar .dropdown-menu .menu-item {
    padding: 0.1rem 1rem;
    margin: 0;
}

.nav-link {
    color: #000 !important;
}

/* =========================
ヘッダー右リンク（PC）
========================= */

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

/* PC表示 */

.header-utility--pc{
    display:flex;
    gap:1rem;
}

/* SPメニュー用 */

.sp-only{
    display:none;
}


/* =========================
スマホ
========================= */

@media (max-width:767px){

    /* PCヘッダーリンク非表示 */

    .header-utility,
    .header-utility--pc{
        display:none;
    }

    /* SPメニュー表示 */

    .sp-only{
        display:block;
    }

}
/** main **/

/* ================================
footer
================================ */

#footer {
    background: #6faeae;
    color: #fff;
    padding: 50px 0;
    margin: 4rem 0 0 0
}

.footer-site-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
}

/* 右側：メニューエリア */
.footer-menu {
    display: grid !important;
    grid-template-columns: repeat(3, max-content);
    grid-auto-flow: row;
    gap: 15px 80px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    padding: 0;
    margin: 0;
}

.footer-menu li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 5px 0;
    white-space: nowrap; /* 折り返しを防ぐ */
}

/* スマホ表示（1列） */
@media (max-width: 767px) {
    .footer-menu {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* 空白用のカスタムリンク（href="#"）が入っている li を完全に消す */
    .footer-menu li:has(a[href="#"]) {
        display: none;
    }

    .footer-menu li a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px 0;
        text-align: center;
    }

    /* 最後（お問い合わせ）の下線は不要なので消す */
    .footer-menu li:last-child a {
        border-bottom: none;
    }

    #footer .row{
        display:flex;
        flex-direction:column;
    }

    /* メニューを上に */
    #footer .col-md-8{
        order:1;
    }

    /* 施設情報を下に */
    #footer .col-md-4{
        order:2;
        margin-top:30px;
        text-align:center;
    }
}
/* frontpage */
#main_slider_outer {
    background-color: #61c1be;
}
#main_slider .slide_img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
}
.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: #4D8C81;
    background: #4D8C81
}

.frontpage h2 {
    font-size: 1.5rem;
}
#topics, #power {
    max-width: 980px;
    margin: 0 auto;
}
.power_inner {
    border: solid 2px #52abe1;
}

.power_title {
    border-bottom: solid 2px #52abe1;
}

.news_block{
    display: inline-table;
    width: 100%;
}

.topics_p{
    padding: 1rem
}

.topics_post,
.power_desc:not(:last-child), .power_desc:not(:last-child) {
    border-bottom: solid 2px #000;
}
.topics_post .post-date/*, .power_desc_title*/ {
    width: 200px;
}

#topics .topics_inner .topics_title a {
    top: 1rem;
    right: 1rem;
    text-decoration: none;
    color: #4D8C81;
}

.single-post-page {
    padding: 50px 0 0 0;
}

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

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

.topics_more{
    text-decoration: none;
    color: #4D8C81 !important
}

.topics_more_mb{
    text-align: center;
    margin: 2rem 0 0 0
}

.topics_more_pc{
    display: none
}

@media screen and (min-width: 768px) {
    #topics .topics_inner .topics_post {
        font-size: 1.25rem;
    }

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

    .topics_more_mb{
        display: none
    }

    .topics_more_pc{
        display: block
    }

}

.topics_post{
    height: 20%;
}
.power_desc .row {
    max-width: 750px;
    margin: 0 auto;
}
.power_amount {
    height: fit-content;
    align-self: center;
}
.topics_post.space {
    height: 58px;
}
.power_amount {
    background-color: #222;
    color: #fff100;
}

.youtube-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.youtube-wrap.small {
    max-width: 780px;
    margin: 0 auto;
}

.traffic-info{
    margin-top:5rem !important
}

/* pages */
.w_960 {
    max-width: 960px;
    margin: 0 auto;
}

/* pages */
.pages .page_title {
    padding: 1.75em 0 0.5em;
    background-color: #61c1be;
    font-size: calc(1rem + 1.5vw);
    margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
    .pages .page_title {
        margin-bottom: 3rem;
    }
}
@media screen and (min-width: 992px) {
    .pages .page_title {
        font-size: 2rem;
    }
}
.pages .container {
    max-width: 1200px;
}
.pages .container h2 {
    font-size: 1.25rem;
    border-bottom: 2px solid #61c1be;
    padding-bottom: 0.5rem;
    padding-left: 1.25em;
    position: relative;
}
@media screen and (min-width: 768px) {
    .pages .container h2 {
        font-size: 1.5rem;
    }
}
.pages .container h2:before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    background-color: #61c1be;
    top: 0.2em;
}
.pages .container h3 {
    font-size: 1.2rem;
    padding-left: 1.25em;
    position: relative;
}
@media screen and (min-width: 768px) {
    .pages .container h3 {
        font-size: 1.4rem;
    }
}
.pages .container h3:before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    background-color: #613f8c;
    top: 0.2em;
}
.pages .container h3.no_square {
    padding-left: 0;
}
.pages .container h3.no_square:before {
    content: none;
}
.pages .container table th, .pages .container table td {
    border-color: #231815 !important;
}
.pages .container table td a {
    word-break: break-all;
}
.pages .container .table1 th {
    background-color: #61c1be;
    color: #000;
    font-weight: normal;
    width: 180px;
}
.pages .container .table1 .td_m {
    background-color: #ebebf5;
    width: 90px;
}
.pages .container .table1 .td_m + td {
    width: 130px;
}
.pages .container .table2 table {
    width: 100%;
    max-width: 1200px;
    min-width: 960px;
}
.pages .container .table2 table th {
    background-color: #61c1be;
    color: #000;
    font-weight: normal;
    width: 140px;
}
.pages .container .table2 table th + td {
    width: 35%;
    background-color: #ebebf5;
}
.pages .container .table3 table {
    width: 100%;
    max-width: 1200px;
}
.pages .container .table3 table th {
    background-color: #7475ad;
    color: #ffffff;
    font-weight: normal;
    width: 140px;
}
.pages .container .is-stacked-on-mobile th:not(:last-child), .pages .container .is-stacked-on-mobile td:not(:last-child) {
    border-bottom: none;
}
@media screen and (min-width: 768px) {
    .pages .container .is-stacked-on-mobile th:not(:last-child), .pages .container .is-stacked-on-mobile td:not(:last-child) {
        border-bottom: solid 1px #231815;
    }
}

#post-contact td {
    min-width: 120px;
}
@media screen and (min-width: 768px) {
    #post-contact td:last-child {
        width: 300px;
    }
}

#post-brochure img {
    width: 100%;
    max-width: 300px;
}

#post-visit .arrow {
    position: relative;
}
#post-visit .arrow:before {
    content: "";
    display: block;
    height: 1.5rem;
    width: 3rem;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #b297c6;
    margin: 0 auto;
}
#post-visit .arrow:first-child:before {
    content: none;
}
@media screen and (min-width: 768px) {
    #post-visit .arrow:before {
        content: none;
    }
    #post-visit .arrow:after {
        content: "";
        display: block;
        height: 3rem;
        width: 1.5rem;
        -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
        clip-path: polygon(0 0, 0 100%, 100% 50%);
        background-color: #b297c6;
        align-self: center;
    }
    #post-visit .arrow:after:last-child {
        content: none;
    }
    #post-visit .arrow:last-child:after {
        content: none;
    }
}
#post-visit .border {
    text-align: center;
}
@media screen and (min-width: 768px) {
    #post-visit .border {
        text-align: left;
        max-width: 280px;
    }
}
#post-visit .wp-element-button {
    background-color: #613f8c;
    border-radius: 0;
    padding-left: 3rem;
    padding-right: 3rem;
}
#post-visit .wp-element-button:visited {
    color: #ffffff;
}
#post-visit .wp-element-button:hover, #post-visit .wp-element-button:visited:hover {
    color: #7475ad;
}

.link_pdf {
    display: flex;
    align-items: center;
}
.link_pdf:before {
    content: "";
    background: url(../img/pdf.png) no-repeat center/contain;
    width: 50px;
    height: 50px;
    display: inline-block;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 0.5em;
    border-width: 1px;
    border-style: solid;
    border-color: #000000;
    text-align: left;
    vertical-align: middle;
}


@media screen and (min-width: 769px) {
    .wp-block-flexible-table-block-table.is-scroll-on-pc {
        overflow-x:scroll;
    }

    .wp-block-flexible-table-block-table.is-scroll-on-pc table {
        max-width: none;
        align-self: self-start;
    }
}

@media screen and (max-width: 768px) {
    .wp-block-flexible-table-block-table.is-scroll-on-mobile {
        overflow-x:scroll;
    }

    .wp-block-flexible-table-block-table.is-scroll-on-mobile table {
        max-width: none;
        align-self: self-start;
    }

    .wp-block-flexible-table-block-table table.is-stacked-on-mobile th,.wp-block-flexible-table-block-table table.is-stacked-on-mobile td {
        width: 100%!important;
        display: block;
    }
}


.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

.bg_v6 {
    background-color: #61c1be;
}

.plant-icon{
    width: 50px
}

.visit-title{
    font-weight: 700;
    font-size: 1.2rem;
}

.mt-1{
    margin-top: 1rem !important
}

.mt-2{
    margin-top: 2rem !important
}


h1.page_title, h2.page_title {
    color: #000;
    display: inline-block;
    font-size: 2rem;
    width: 100%;
}



.koki_td_1{
    width: 30%
}

.kensetu_box{
    margin: 0 0 1rem 0
}

.kensetu_img_box{
    text-align: center;
    display: grid;
    row-gap: 3rem
}

.sisetu_box{
    margin: 1rem 0
}

.sisetu_img{
    width: 100%;
    max-width: 800px;
}

.sisetu_img_box{
    text-align: center
}

.table_sisetu {
    border: solid 1px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.table_sisetu tr {
    border: solid 1px;
}
.table_sisetu th {
    background-color: #FFE599/*#52abe1*/;
    padding: 0.3rem;
    border: solid 1px;
}
.table_sisetu td {
    border: solid 1px;
    padding: 0.3rem;
}

.access-area{
    margin-top:40px;
}

.map img{
    width:100%;
    height:auto;
    display:block;
}

.access-info{
    padding-left:20px;
}

.access-info .title{
    font-weight:bold;
    margin-bottom:10px;
    text-decoration:underline;
}

.catalog-img{
    width: 100%;
    max-width: 300px;
}

@media (max-width:768px){

    .access-area{
        flex-direction:column;
    }

    .access-info{
        padding-left:0;
        margin-top:20px;
    }

}


.VideoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.VideoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.h_nav{
    padding: 1rem 0
}

.kensetsuimg{
    max-width: 380px;
}

.yearly-list li {
    list-style: none;
    width: 120px;
    padding: 0.5rem 1rem;
    background-color: #61c1be;
    margin: 0.5rem 1rem 0.5rem 0;
}
.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;
}

.pdf_btn, a.pdf_btn {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 1.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    border-radius: 0.5rem;
    margin: 1rem 0 0;
    overflow-wrap: anywhere;
    background: linear-gradient(180deg,#751c7791 20%,#751c779c 25%,#751c77 100%);
}

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

/* 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) { /* 調整 */

}

@media all and (max-width: 400px) { /* 調整 */
    .img_flame{
        max-width: 330px;
        max-height: 300px
    }


}

@media all and (max-width: 767px) { /* 調整 */
    .samune_wrapper{
        width: 100%;
        text-align: center
    }
}

@media all and (min-width: 576px) {
    html {
        font-size: 16px;
    }
    #header {
        font-size: 16px;
    }
    #header .h1, #header .navbar-brand {
        font-size: 1.5rem;
    }
    .navbar-light .navbar-toggler {
        top: 1rem;
        right: 1rem;
    }
    .fit_img {
        top: 0.5rem;
        right: 3rem;
        width: 60px;
    }


    .br::before {
        content: "\A" ;
        white-space: pre ;
    }

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

    /* pages */
    .bg_p {
        background-color: #61c1be;
        /*height: 100%;*/
    }

    .kensetsuimg{
        min-width: 500px;
    }




}
@media all and (min-width: 768px) {
    #header .bg-white {
        border-bottom: none;
    }
    .fit_img {
        top: 0.6vw;
        right: 0.75rem;
        width: 70px;
    }
    #navbar {
        width: 100%;
        margin-top: 0.5rem;
    }
    #navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin: 1rem 0 0 0;
    }
    #navbar .navbar-nav > .menu-item {
        /*height: fit-content;*/
        font-size: 1.2rem;
        padding: 0.7rem 0.2rem;
        margin: 0;
        background-color: #fff;
        width: calc(100% / 6);
        text-align: center;
        border-left: 1px solid #61c1be;
        border-radius: 0;
        flex-grow: 1;
    }
    #navbar .navbar-nav > .menu-item:last-child {
        border-right: 1px solid #61c1be;
        padding: 0.7rem 0.15rem;
    }
    /*
    #navbar .navbar-nav > .menu-item:hover, #navbar .navbar-nav > .menu-item.current_page_item {
            background-color: #98d6f6;
    }
    */
    #navbar .navbar-nav > .menu-item:last-child > a {
        padding-left: 0;
        padding-right: 0;
        letter-spacing: -1px;
    }
    #navbar .navbar-nav > .menu-item a {
        padding-top: 0;
        padding-bottom: 0;
        line-height: 1;
    }
    /*#navbar .navbar-nav > .menu-item:hover a, #navbar .navbar-nav > .menu-item.current_page_item a {
            color: #2246ac;
    }*/
    #navbar .dropdown-menu {
        display: block;
    }
    #navbar li.d-none.d-md-block {
        pointer-events: none;
        opacity: 0;
    }

    /* frontpage */
    #main_slider .slide_img {
        height: 55vw;
    }
    .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;
    }

    .sinchaku_font{
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }


    .report_box{
        display: flex
    }

    .bg_p {
        padding: 0 0 1rem 0;

    }
}





@media all and (min-width: 992px) {
    /* frontpage */
    .slider_message {
        font-size: 1.4rem;
        max-width: 800px;
    }
    /* pages */
    .shorikoutei img {
        height: 200px;
        width: auto;
    }
    .blue_box > div > div:last-child {
        min-width: 350px;
    }

    .kensetu_img_box{
        display: flex
    }

}
@media all and (min-width: 1200px) {
    #header .h1, #header .navbar-brand {
        font-size: 2.2rem;
    }
    .fit_img {
        width: 85px;
    }


    /* frontpage */
    #main_slider .slide_img {
        height: 700px;
    }
    .slick-arrow {
        top: 40%;
    }

    /* pages */
    .shorikoutei img {
        height: 250px;
        width: auto;
    }
}
@media all and (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

