@charset "UTF-8";

html {
    height: 100vh;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
}

img {
    height: auto;
    vertical-align: bottom;
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/** header */

.site_header {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

.site_title {
    color: inherit;
    display: block;
    line-height: 1;
    padding: 0;
    text-decoration: none;
}

.site_title img {
    max-width: 100%;
}

@media (width >=1500px) {
    .site_nav_list>li:not([data-nav-type^="pc_"]) {
        font-size: 1.1rem;
    }

    .site_nav_list>li:not([data-nav-type="pc_none"])+li:not([data-nav-type^="pc_"])::before {
        margin: 0 1em;
    }

    .site_title {
        margin: 0 0 0 120px;
    }
}

@media (width > 1000px) and (width < 1500px) {
    .site_nav_list>li:not([data-nav-type="pc_none"])+li:not([data-nav-type^="pc_"])::before {
        margin: 0 0.5em;
    }

    .site_title {
        flex: 0 0 250px;
        margin: 0 0 0 calc((100vw - 1000px) * 100 / 400);
    }
}

@media (width > 1020px) {
    .site_title {
        max-width: 400px;
    }

    .site_header {
        align-items: center;
        border-top: 20px solid #4E6443;
        display: flex;
        height: 100px;
        justify-content: space-between;
        padding: 0 20px;
    }

    .target_box {
        display: block;
        margin-top: -100px;
        padding-top: 100px;
    }

    .site_nav_list {
        display: flex;
        margin: 0;
        padding: 0;
        font-size: 90%;
    }

    .site_nav_list>li:not([data-nav-type^="pc_"]) {
        display: block;
        margin: 0;
        padding: 0;
    }

    .site_nav_list>li[data-nav-type="pc_none"] {
        display: none;
    }

    .site_nav_list>li:not([data-nav-type="pc_none"])+li:not([data-nav-type^="pc_"])::before {
        content: '／';
    }

    .site_nav_btn {
        color: inherit;
        text-decoration: none;
    }

    .header_tel {
        background-color: #094;
        color: #fff;
        flex: 0 0 max-content;
        padding: 0.75em;
        ;
    }

    .site_nav_list>li[data-nav-type="pc_side"] {
        background: #094;
        color: #fff;
        display: block;
        padding: 20px;
        position: absolute;
        right: 0;
        top: 150px;
        width: 1em;
    }

    .site_nav_list>li[data-nav-type="pc_side"] .site_nav_btn::after {
        content: '\f0e0';
        display: block;
        font-family: 'Font Awesome 5 Free';
        font-size: 1.5em;
        font-weight: 900;
        margin: 0 -0.15em;
    }

    .header_sp_btn {
        display: none;
    }
}

@media (width <=1020px) {
    .site_header {
        display: block;
        height: 80px;
        padding: 20px;
    }

    .target_box {
        display: block;
        margin-top: -80px;
        padding-top: 80px;
    }

    .site_title {
        height: 100%;
        margin: 0 auto;
        width: max-content;
        max-width: calc(100% - 100px);
    }

    .site_title img {
        max-height: 100%;
        width: auto;
    }

    .site_nav[data-sp-nav="open"] {
        background-color: rgba(0, 0, 0, 0.5);
        height: 100vh;
        margin: 0;
        overflow-y: auto;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
    }

    [data-sp-nav="close"] .site_nav_list {
        display: none;
    }

    [data-sp-nav="open"] .site_nav_list {
        background: #eee;
        box-sizing: border-box;
        display: block;
        min-height: 100%;
        margin: 0;
        padding: 80px 0 50px;
        position: absolute;
        right: 0;
        width: 80%;
        max-width: 700px;
    }

    .site_nav_list>li {
        color: #333;
        min-height: 40px;
        list-style: none;
        margin: 0;
        padding: 10px 0;
        width: 100%;
    }

    .site_nav_list>li:nth-of-type(even) {
        background-color: rgba(255, 255, 255, 0.5);
    }

    .site_nav_btn {
        color: inherit;
        display: block;
        font-size: 1rem;
        font-weight: bold;
        height: 100%;
        line-height: 2.5;
        text-align: left;
        text-indent: 2em;
        text-decoration: none;
        width: 100%;
    }

    .header_sp_btn {
        background-color: transparent;
        border: none;
        display: block;
        height: 40px;
        line-height: 1;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 10px;
        top: 30px;
        width: 40px;
        z-index: 3;
    }

    .header_sp_btn:focus {
        outline: none;
    }

    .header_sp_btn::before {
        height: 40px;
        left: 0;
        position: absolute;
        top: 0;
        width: 40px;
    }

    [data-sp-nav="open"] .header_sp_btn::before {
        content: '×';
        font-size: 40px;
    }

    [data-sp-nav="close"] .header_sp_btn::before {
        background: url('/images/menu.gif') center/contain no-repeat;
        content: '';
    }

    .header_tel {
        display: none;
    }
}


/** footer */

.footer_box {
    border-color: #1d4b10;
    border-style: solid;
    border-width: 20px 0;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer_addr {
    font-style: normal;
    text-align: center;
    white-space: pre-wrap;
}

.footer_addr span {
    display: inline-block;
    font-size: 1.8em;
    margin-bottom: 0.25em;
}

.footer_nav_list {
    display: block;
    margin: 10px auto;
    padding: 0;
    text-align: center;
    width: calc(100% - 40px);
}

.footer_nav_list>li {
    display: inline-block;
    margin: 30px 0;
    padding: 0;
    width: max-content;
}

.footer_nav_list>li+li::before {
    content: '／';
    margin: 0 1em;
}

.footer_nav_list>li a {
    color: inherit;
    text-decoration: none;
}

.footer_copyright {
    display: block;
    text-align: center;
}


/** news_box */

.news_box {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 0;
}

.news_title {
    background: #094;
    box-sizing: border-box;
    color: #fff;
    display: block;
    text-align: center;
}

.news_list {
    margin: 0;
    padding: 0;
}

.news_list>li {
    display: block;
    margin: 0;
    padding: 0;
}

.news_list>li>a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    width: 100%;
}

.news_list>li>a {
    color: inherit;
    font: inherit;
    text-decoration: none;
}

.news_list>li>a>time {
    display: block;
    width: 6em;
}

.news_list>li>a>span {
    display: block;
    width: calc(100% - 11em);
}

@media (width>700px) {
    .news_box {
        display: flex;
        margin: -50px auto 0;
        position: relative;
        width: min(1200px, 100% - 150px);
        z-index: 2;
    }

    .news_title {
        flex: 0 0 max(18%, 5em);
        height: 100px;
        line-height: 100px;
        margin: 0;
        padding: 0;
    }

    .news_list {
        flex: 1 0 auto;
    }

    .news_list>li {
        height: 100px;
    }
}

@media (width <=700px) {
    .news_box {
        display: block;
        margin: 30px auto;
        width: calc(100% - 40px);
    }

    .news_title {
        margin: 0 0 10px;
        padding: 5px 10px;
    }

    .news_list>li {
        height: 2.5em;
    }
}


/** link_btn */

.link_btn,
.link_btn2 {
    border-radius: 1.2em;
    color: #fff;
    display: block;
    height: 2em;
    line-height: 2;
    padding: 0;
    position: relative;
    text-align: center;
    width: 11em;
    max-width: calc(100% - 20px);
}

.link_btn::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1em;
}

.link_btn {
    background-color: #094;
    border: 1px solid #094;
    margin: 0;
    text-decoration: none;
}

.link_btn2 {
    background-color: transparent;
    border: 1px solid #fff;
    margin: auto;
    text-decoration: none;
}

.link_btn:hover {
    background-color: #fff;
    color: #094;
}

[data-nav-btn]:hover .link_btn2 {
    background-color: #fff;
    color: #000;
}


/** home_about */

.home_about_box {
    box-sizing: border-box;
    display: flow-root;
    margin: 70px 0 110px;
    overflow: hidden;
    width: 100%;
}

.home_about_img {
    display: block;
    padding: 0;
    position: relative;
    width: max-content
}

.home_about_img::after {
    background-color: #094;
    bottom: -40px;
    content: '';
    display: block;
    height: calc(100% - 40px);
    position: absolute;
    right: -40px;
    width: 600px;
    max-width: 100%;
    z-index: -1;
}

.home_about_img img {
    max-width: 100%;
}

.home_about_sub_box {
    display: block;
    margin: 0;
    padding: 0;
}

.home_about_title {
    border-bottom: 1px solid #094;
    font-family: "Noto Serif JP", serif;
    font-size: 2.25rem;
    font-weight: normal;
    margin: 0 0 1em;
    padding: 0;
    position: relative;
    text-indent: 5px;
}

.home_about_title::after {
    bottom: -1.7em;
    color: #7abb63;
    content: 'About us';
    font-size: 0.5em;
    position: absolute;
    right: 0;
}

.home_about_msg {
    font-size: 31px;
    font-weight: bold;
}

.home_about_sub_box .link_btn {
    float: right;
}

@media (width>1260px) {
    .home_about_box {
        padding: 0 calc(50% - 550px) 0 calc(50% - 630px);
    }
}

@media (width <=1260px) {
    .home_about_box {
        padding: 0 20px;
    }
}

@media (width>1020px) {
    .home_about_img {
        float: left;
        margin: 0;
        max-width: calc(100% - 520px);
    }

    .home_about_sub_box {
        float: right;
        width: 465px;
    }
}

@media (width <=1020px) {
    .home_about_box {
        padding: 0 20px;
    }

    .home_about_img {
        margin: 0 auto 60px;
        max-width: 100%;
    }

    .home_about_sub_box {
        width: 100%;
    }
}

/** news_text */

.news_message {
    margin: 20%;
    width: 60%;
    height: 20%;
    border: 4px solid #094;
    text-align: center;
    background: #094;
    font-size: 18px;
    color: #fff;
    font-family: 'Noto Serif JP';
    vertical-align: middle;
}

.news_text {
    display: block;
    width: 64%;
    margin: 0 auto 80px auto;
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}


/** home_searvice */

.home_searvice_box {
    background-position: center 0;
    background-repeat: no-repeat;
    box-sizing: border-box;
    display: block;
    min-height: 1700px;
    margin: 0;
    padding: 0 0 100px;
    width: 100%;
}

.home_searvice_title {
    background-color: #fff;
    border: 1px solid #094;
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
    font-size: 2.25em;
    font-weight: normal;
    margin: auto;
    padding: 5px;
    text-align: center;
    width: 465px;
    max-width: calc(100% - 40px);
}

.home_searvice_title::after {
    border-top: 1px solid #094;
    color: #7abb63;
    display: block;
    content: 'SERVICE';
    font-size: 0.5em;
    height: 2.4em;
    width: 100%;
}

.home_searvice_list {
    counter-reset: count_home_searvice;
    display: flow-root;
    margin: 70px auto 0;
    padding: 0;
    width: min(1100px, 100vw - 40px);
}

.home_searvice_list>li {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    counter-increment: count_home_searvice;
    display: block;
    padding: 60px;
    position: relative;
    width: 950px;
    max-width: 100%;
}

.home_searvice_list>li:first-child {
    margin: 0;
}

.home_searvice_list>li+li {
    margin: 130px 0 0;
}

.home_searvice_list>li:nth-of-type(odd) {
    float: left;
}

.home_searvice_list>li:nth-of-type(even) {
    float: right;
}

.home_searvice_sub_title {
    align-items: center;
    border-left: 20px solid #094;
    box-sizing: border-box;
    display: flex;
    font-family: "Noto Serif JP", serif;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1;
    margin: 0 0 20px;
    padding: 0;
    vertical-align: middle;
}

.home_searvice_sub_title::before {
    content: counter(count_home_searvice, decimal-leading-zero);
    font-size: 2em;
    line-height: 1.2;
    margin: 0 10px;
}

.home_searvice_list>li .home_searvice_sub_box p {
    clear: both;
    font-size: 18px;
    line-height: 2;
    margin: 0;
    padding: 0;
}

.home_searvice_list>li .home_searvice_sub_box p .link_btn {
    float: right;
}

@media (width>1020px) {
    .home_searvice_box {
        background-image: url('/images/bg_searvice.gif');
    }

    .home_searvice_img {
        position: absolute;
        top: -40px;
        max-width: calc(100vw - 700px);
    }

    .home_searvice_list>li:nth-of-type(odd) .home_searvice_img {
        box-shadow: -60px 60px #094;
        right: max(-150px, 990px - 100vw);
    }

    .home_searvice_list>li:nth-of-type(even) .home_searvice_img {
        box-shadow: 60px 60px #094;
        left: max(-150px, 990px - 100vw);
    }

    .home_searvice_list>li:nth-of-type(even) .home_searvice_sub_title {
        float: right;
        min-width: 500px;
    }

    .home_searvice_list>li .home_searvice_sub_box p {
        width: 500px;
    }

    .home_searvice_list>li:nth-of-type(odd) .home_searvice_sub_box p {
        float: left;
    }

    .home_searvice_list>li:nth-of-type(even) .home_searvice_sub_box p {
        float: right;
    }
}

@media (width <=1020px) {
    .home_searvice_img {
        box-shadow: 25px 25px #094;
        display: block;
        margin: 0 auto 40px;
        max-width: 100%;
    }
}

.home_footer_bnr_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.home_footer_bnr_list>li {
    display: block;
    margin: 40px;
    padding: 0;
}

.home_footer_bnr_list>li img {
    max-width: 100%;
}


/** footer_nav_btn */

.footer_nav_btn {
    margin: 40px auto;
    padding: 0;
    width: 100%;
}

@media (width>1020px) {
    .footer_nav_btn {
        display: flex;
    }

    .footer_nav_btn>li {
        flex: 1 1 100%;
        margin: 0;
    }
}

.footer_nav_btn>li {
    display: block;
    padding: 0;
}

[data-nav-btn] {
    align-content: space-between;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    margin: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

[data-footer-btn-count="2"]>li {
    height: 425px;
}

[data-footer-btn-count="3"]>li {
    height: 340px;
}

@media (width>1020px) {
    [data-nav-btn] {
        padding: 5rem 2.875rem;
    }

    [data-footer-btn-count="3"]>li [data-nav-btn] {
        font-size: 0.875em;
        padding: 3.5rem 2.875rem;
    }
}

@media (width <=1020px) {
    [data-footer-btn-count]>li {
        margin: auto;
        max-width: 100%;
    }

    [data-nav-btn] {
        padding: 4rem 2.875rem;
        font-size: 0.875em;
    }

    [data-footer-btn-count="2"]>li {
        width: 960px;
    }

    [data-footer-btn-count="3"]>li {
        width: 640px;
    }
}

[data-nav-btn="information"] {
    background-image: url('/images/btn_information.png');
}

[data-nav-btn="introduction"] {
    background-image: url('/images/btn_introduction.png');
}

[data-nav-btn="example"] {
    background-image: url('/images/btn_example.jpg');
}

[data-nav-btn="recruit"] {
    background-image: url('/images/btn_recruit.png');
}

[data-nav-btn]::before {
    background-color: transparent;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    content: '';
    display: block;
    height: calc(100% - 5em);
    left: 2.75em;
    position: absolute;
    top: 2.75em;
    width: calc(100% - 5em);
    z-index: 1;
}

.footer_nav_btn_title {
    border-bottom: 1px solid #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 2em;
    font-weight: normal;
    margin: 0 auto 0.5em;
    padding: 0 1em;
    width: max-content;
}

.footer_nav_btn_text {
    width: 100%;
}


/** footer_address_box */

.footer_address_box {
    background-color: #dbefd7;
    box-sizing: border-box;
    display: flow-root;
    margin: 0;
    padding: 50px max(50vw - 550px, 20px);
    width: 100%;
}

.footer_address_box_title {
    border-left: 15px solid #094;
    font-size: 2.3em;
    text-indent: 1rem;
}

.footer_address_box p {
    font-size: 1.3em;
    margin-left: calc(15px + 1rem);
}

.footer_address_box img {
    max-width: 100%;
}

@media (width>900px) {

    .footer_address_box_title,
    .footer_address_box p {
        float: right;
        width: calc(100% - 530px);
    }

    .footer_address_box img {
        float: left;
    }
}


/***/

[data-page-header] {
    align-items: center;
    background-color: #dbefd7;
    background-position: 0 center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: normal;
    height: 250px;
    justify-content: center;
    max-height: 250px;
    margin: auto;
    text-align: center;
    width: 100%;
    max-width: 1920px;
}

[data-page-header="about"] {
    background-image: url('/images/header_about.png');
}

[data-page-header="information"] {
    background-image: url('/images/header_information.jpg');
}

[data-page-header="introduction"] {
    background-image: url('/images/header_introduction.png');
}

[data-page-header="example"] {
    background-image: url('/images/header_example.png');
}

[data-page-header="recruit"] {
    background-image: url('/images/header_recruit.png');
}

.page_sub_title {
    border-bottom: 2px solid #094;
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: normal;
    margin: 70px auto 30px;
    padding: 0 1em;
    text-align: center;
    width: max-content;
    max-width: calc(100% - 40px);
}


/** data-grid-box */

[data-grid-box] {
    margin: 100px auto 80px;
    padding: 0;
}

@media (width>1150px) {
    [data-grid-box] {
        display: grid;
        grid-auto-rows: 512px;
        grid-template-columns: 1fr 1fr;
        width: 1088px;
    }
}

@media (width <=1140px) {
    [data-grid-box] {
        display: block;
        width: calc(100% - 40px);
        max-width: 544px;
    }
}

[data-grid-box-type="text"] {
    background-color: #dbefd7;
    padding: 70px;
}

[data-grid-box-type="text"] h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: normal;
    margin: 0 0 0.5em;
    text-align: center;
    word-break: break-all;
}

[data-grid-box-type="text"] p {
    line-height: 2;
    word-break: break-all;
}

[data-grid-box-type="img"] img {
    max-width: 100%;
}


/** info */

.info_msg {
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: normal;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.info_table {
    border-collapse: collapse;
    margin: 30px auto;
    width: calc(100% - 40px);
    max-width: 1100px;
}

.info_table tr:first-child th {
    border-top: 3px solid #094;
}

.info_table tr:first-child td {
    border-top: 3px solid #ccc;
}

.info_table th,
.info_table td {
    box-sizing: border-box;
    font-weight: normal;
    padding: 25px;
    text-align: left;
    vertical-align: top;
}

.info_table th {
    width: 9em;
}

.gloup_list {
    display: block;
    margin: 0 auto 20px;
    padding: 0;
    width: calc(100% - 40px);
    max-width: 1000px;
}

.gloup_list>li {
    display: flow-root;
    margin: 0 0 1.5em;
    padding: 0;
}

.gloup_list h3 {
    border-left: 1px solid CurrentColor;
    color: #094;
    font-weight: normal;
    text-indent: 1em;
}

.gloup_list span {
    margin-left: 1em;
    display: inline-block;
}

.gloup_list a {
    color: inherit;
    float: right;
}

.gloup_list a::before {
    content: '＞';
}

.map_box {
    display: flow-root;
    margin: 0 auto 100px;
    width: calc(100% - 40px);
    max-width: 1100px;
}

.access_map {
    border: none;
}

.map_text p {
    line-height: 2;
}

@media (width>750px) {
    .access_map {
        float: left;
        height: 550px;
        width: 50%;
    }

    .map_text {
        float: right;
        width: calc(50% - 40px);
    }
}

@media (width <=750px) {
    .access_map {
        height: calc(100vw - 40px);
        max-height: 550px;
        width: 100%;
    }
}


/** intro */

.intro_tree {
    display: block;
    margin: 50px auto;
    padding: 0;
}

.intro_trunk {
    box-sizing: border-box;
    display: block;
    font-size: 40px;
    text-align: center;
}

.intro_reaf_list li {
    display: block;
    padding: 0;
}

.intro_reaf_title {
    font-family: "Noto Serif JP", serif;
    font-size: 45px;
    font-weight: normal;
}

@media (width>770px) {
    .intro_tree {
        height: 727px;
        position: relative;
        width: 730px;
    }

    .intro_trunk {
        background-color: #8D4209;
        bottom: 0;
        color: #fff;
        font-weight: bold;
        height: 412px;
        left: 0;
        margin: auto;
        padding: 20px 45px 0;
        position: absolute;
        right: 0;
        width: 130px;
        z-index: 1;
    }

    .intro_reaf_list {
        position: relative;
        z-index: 2;
    }

    .intro_reaf_list li {
        color: #fff;
        height: 316px;
        position: absolute;
        width: 365px;
    }

    .intro_reaf_list li:nth-child(1) {
        left: calc(50% - 182.5px);
        top: 0;
    }

    .intro_reaf_list li:nth-child(2) {
        left: 0;
        top: 316px;
    }

    .intro_reaf_list li:nth-child(3) {
        left: 365px;
        top: 316px;
    }

    .intro_reaf_list li::before {
        content: '';
        position: absolute;
        z-index: -1;
    }

    @supports (clip-path:polygon(50% 0,
            100% 100%,
            0% 100%)) {
        .intro_reaf_list li::before {
            clip-path: polygon(50% 0, 100% 100%, 0% 100%);
            height: 100%;
            position: absolute;
            width: 100%;
        }

        .intro_reaf_list li:nth-child(1)::before {
            background-image: linear-gradient(180deg, #094 0%, #004D22 100%);
        }

        .intro_reaf_list li:nth-child(2)::before {
            background-image: linear-gradient(180deg, #00EBB3 0%, #2C7D6A 100%);
        }

        .intro_reaf_list li:nth-child(3)::before {
            background-image: linear-gradient(180deg, #9FDCBB 0%, #28563D 100%);
        }
    }

    .intro_reaf_title {
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        text-align: center;
        top: 100px;
        width: max-content;
    }

    .intro_reaf_text {
        font-size: 15px;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 200px;
        width: max-content;
    }

    .intro_reaf_list li:nth-child(2) .intro_reaf_text {
        left: 1em;
        top: 190px;
    }
}


/** precut */

.precut_list {
    display: block;
    padding: 0;
}

[data-precut-back] {
    background-position: 0 center;
    background-repeat: no-repeat;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.precut_list_img {
    display: block;
}

.precut_list_text {
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
}

.precut_list_text b {
    display: block;
    font-size: 1.875em;
    font-weight: bold;
    margin: 0.5em 0 0 0.375em;
}

.precut_list_text a {
    position: absolute;
}

@media (width>1020px) {
    .precut_list {
        margin: -20px 0 0;
    }

    [data-precut-back] {
        height: 520px;
    }

    [data-precut-back="zairaikouhou"] {
        background-image: url('/images/zairaikouhou.jpg');
    }

    [data-precut-back="tekuno"] {
        background-image: url('/images/tekuno.jpg');
    }

    [data-precut-back="teipos"] {
        background-image: url('/images/teipos.jpg');
    }

    .precut_list_img {
        bottom: 170px;
        left: 20px;
        position: absolute;
        max-width: calc(100% - 600px);
        z-index: 2;
    }

    .precut_list_text {
        background: #095028;
        bottom: 170px;
        box-shadow: 30px 30px #fff;
        color: #fff;
        height: 200px;
        margin: 0;
        padding: 50px 0 0 270px;
        position: absolute;
        right: 20px;
        width: 800px;
        z-index: 1;
    }

    .precut_list_text a {
        bottom: 5px;
        color: inherit;
        right: 20px;
    }
}

@media (width>1250px) {
    .precut_list_img {
        left: calc(50% - 550px);
        max-width: 100%;
    }

    .precut_list_text {
        height: 230px;
        padding: 50px 0 0 270px;
        right: calc(50% - 550px);
        width: 800px;
    }
}

@media (width <=1020px) {
    .precut_list {
        margin: 0;
    }

    .precut_list_img {
        margin: 20px auto;
        max-width: 100%;
    }

    .precut_list_text {
        margin: 20px auto 60px;
        padding: 0;
        width: max-content;
        max-width: calc(100% - 40px);
    }
}

@media (width <=1020px && width>575px) {
    .precut_list_text a {
        right: calc((100% - 535px) / 2);
    }
}

@media (width <=575px) {
    .precut_list_text a {
        right: 20px;
    }
}


/** intro_flow */

.intro_flow {
    border: 2px solid #094;
    box-sizing: border-box;
    display: block;
    margin: 80px auto;
    padding: 0 10px;
    width: calc(100% - 40px);
    max-width: 1330px;
}

.intro_flow_title {
    background-color: #094;
    box-sizing: border-box;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 1.75rem;
    font-weight: normal;
    line-height: 1;
    margin: 0 0 30px -10px;
    padding: 1em 0 1em;
    text-align: center;
    width: calc(100% + 20px);
}

.intro_flow_text {
    display: block;
    margin: 1em auto;
    width: fit-content;
    max-width: calc(100% - 2em);
}

.intro_flow_list {
    counter-reset: count_intro_flow;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 80px auto;
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
}

.intro_flow_list>li {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.25);
    /*#f6f7e8;*/
    color: #fff;
    counter-increment: count_intro_flow;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    font-family: "Noto Serif JP", serif;
    font-size: 1.25em;
    height: 236px;
    margin: 15px 5px;
    padding: 0;
    position: relative;
    text-align: center;
    width: 200px;
}

.intro_flow_list>li>span {
    box-sizing: border-box;
    display: block;
    height: 168px;
    padding: 50px 0;
}

.intro_flow_list>li::before {
    content: 'step\A' counter(count_intro_flow, decimal-leading-zero);
    color: #fff;
    display: block;
    margin: 0;
    padding: 10px 0;
    position: relative;
    white-space: pre;
    width: 100%;
    z-index: 2;
}

.intro_flow_list>li:nth-child(1)::before {
    background-color: #469b69;
}

.intro_flow_list>li:nth-child(2)::before {
    background-color: #346834;
}

.intro_flow_list>li:nth-child(3)::before {
    background-color: #3a7c55;
}

.intro_flow_list>li:nth-child(4)::before {
    background-color: #69875c;
}

.intro_flow_list>li:nth-child(5)::before {
    background-color: #306058;
}

.intro_flow_list>li:nth-child(6)::before {
    background-color: #49600b;
}

.intro_flow_list>li::after {
    content: '';
    display: block;
    height: 1.5em;
    left: 0;
    margin: auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: calc(78px - 0.75em);
    transform: rotate(45deg);
    white-space: pre;
    width: 1.5em;
    z-index: 1;
}

.intro_flow_list>li:nth-child(1)::after {
    background-color: #469b69;
}

.intro_flow_list>li:nth-child(2)::after {
    background-color: #346834;
}

.intro_flow_list>li:nth-child(3)::after {
    background-color: #3a7c55;
}

.intro_flow_list>li:nth-child(4)::after {
    background-color: #69875c;
}

.intro_flow_list>li:nth-child(5)::after {
    background-color: #306058;
}

.intro_flow_list>li:nth-child(6)::after {
    background-color: #49600b;
}

[data-intro-flow="1"] {
    background: url('/images/intro_01.jpg') 0 bottom no-repeat;
}

[data-intro-flow="2"] {
    background: url('/images/intro_02.jpg') 0 bottom no-repeat;
}

[data-intro-flow="3"] {
    background: url('/images/intro_03.jpg') 0 bottom no-repeat;
}

[data-intro-flow="4"] {
    background: url('/images/intro_04.jpg') 0 bottom no-repeat;
}

[data-intro-flow="5"] {
    background: url('/images/intro_05.jpg') 0 bottom no-repeat;
}

[data-intro-flow="6"] {
    background: url('/images/intro_06.jpg') 0 bottom no-repeat;
}


/** rental */

.rental_box {
    background: #DBEFD7;
    display: block;
    margin: 0;
    padding: 0.1px calc(50% - 550px) 40px;
}

.rental_img_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    padding: 0;
    max-width: calc(100% - 40px);
}

.rental_img_list>li {
    display: block;
    padding: 0;
    text-align: center;
    width: max-content;
}

@media (width>800px) {
    .rental_img_list>li {
        margin: 20px 0;
        max-width: calc(50% - 40px);
    }
}

@media (width <=800px) {
    .rental_img_list>li {
        margin: 20px auto;
        max-width: 100%;
    }
}

.rental_img_list>li img {
    max-width: 100%;
}

.rental_text {
    background-color: #fff;
    box-sizing: border-box;
    margin: 50px auto 40px;
    padding: 30px;
    width: calc(100% - 40px);
    max-width: 670px;
}

@media only screen and (max-width: 767px) {

    /* スマホ用スタイル */
    .news_message {
        font-size: 1.2rem;
    }

    .news_text {
        width: 92%;
        margin: auto;
        font-size: 1rem;
        text-align: left;
    }
}