/* =============================================================
   共通部品
   =============================================================
*/
html {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #363640;
}

button {
    cursor: pointer;
}

.roboto {
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.1em;
}

.ibn {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 700;
}

.zenkaku {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.inner {
    width: 1100px;
    margin-inline: auto;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.ttl_top .roboto {
    font-size: 40px;
    font-weight: bold;
    display: block;
    letter-spacing: .03em;
}

.ttl_top .roboto::first-letter {
    color: #005925;
}

.ttl_top .zenkaku,
.ttl_top .jp {
    font-size: 17px;
    display: block;
    font-weight: bold;
}

.error_box {
    padding: 0 35px 20px;
}

.error_list {
    border: 1px solid;
    color: #ab0909;
    padding: 10px 15px 10px 38px;
    list-style: disc;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.lower_ttl_block {
    padding-top: 58px;
}

.ttl_lower {
    position: relative;
}

.ttl_lower .roboto {
    font-size: 19px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #005925;
    margin-bottom: 6px;
}

.ttl_lower .zenkaku {
    font-size: 45px;
    margin-top: 2px;
    margin-left: 0;
    font-weight: bold;
    line-height: 1;
}

.ttl_lower .zenkaku.s {
    font-size: 35px;
}

.ttl_lower::after {
    position: absolute;
    top: -38px;
    left: -30px;
    z-index: -1;
    color: #F7F8F9;
    font-weight: bolder;
    font-size: 134px;
    line-height: 1;
    letter-spacing: -0.08em;
}

.ttl_lower::after {
    content: '';
}

.ttl_ja_green {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ttl_ja_green::first-letter {
    color: #005925;
}

.content_block {
    margin-bottom: 60px;
}

section:first-of-type {
    margin-top: 60px;
}

@media (hover: hover) and (pointer: fine) {
    *:hover {
        transition: .3s;
    }
}

@media screen and (max-width: 1200px) {
    .inner {
        width: 90%;
    }

    .ttl_top .roboto {
        font-size: 13px;
        line-height: 1;
    }

    .ttl_lower .roboto {
        font-size: 15px;
    }

    .ttl_lower .zenkaku {
        font-size: 32px;
    }

    .ttl_lower .zenkaku.s {
        font-size: 35px;
    }

    .ttl_lower::after {
        top: -25px;
        font-size: 90px;
    }

    .ttl_ja_green {
        font-size: 21px;
    }

    section:first-of-type {
        margin-top: 56px;
    }
}

@media screen and (max-width: 900px) {
    section:first-of-type {
        margin-top: 52px;
    }
}

@media screen and (max-width: 700px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .ttl_top .roboto {
        font-size: 30px;
        text-align: center;
    }

    .ttl_top .zenkaku,
    .ttl_top .jp {
        font-size: 15px;
        text-align: center;
    }

    .ttl_lower::after {
        font-size: 22vw;
    }

    .lower_ttl_block {
        padding-top: 15px;
    }

    .ttl_lower::after {
        letter-spacing: -0.01em;
        font-size: 65px;
        top: -14px;
        padding-left: 20px;
    }

    .ttl_ja_green {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .ttl_lower .roboto {
        font-size: 15px;
    }

    .ttl_lower .zenkaku {
        font-size: 26px;
    }

    .ttl_lower .zenkaku.s {
        font-size: 21px;
    }

    .error_box {
        padding: 0 10px 10px;
        font-size: 12px;
    }

    .error_list {
        padding: 10px 15px 10px 30px;
    }
}

/* =============================================================
   ヘッダー
   =============================================================
*/
.ly_header {
    z-index: 98;
    width: 100%;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    transition: .3s;
}

header.hide {
    top: -100%;
}

header .ly_header_inner {
    margin: 10px;
}

header .bl_headerLogo {
    font-size: 20px;
    font-weight: bold;
    padding-top: 4px;
    cursor: pointer;
}

header .bl_headerNav_item:first-child {
    display: none;
}

header .bl_headerNav_list {
    gap: 33px;
    font-size: 15px;
}

header .bl_headerNav_link {
    display: block;
    font-weight: bold;
    padding: 8px 0;
    cursor: pointer;
}

header .bl_headerBtn {
    background-color: #005925;
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
    width: 145px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .bl_headerBtn img {
    margin-right: 8px;
}

header .has-child .bl_headerNav_link {
    position: relative;
    padding-left: 15px;
    padding-right: 2px;
}

header .has-child .bl_headerNav_link::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 3px solid #005925;
    border-top: 0;
    border-right: 0;
    margin: auto;
    position: absolute;
    top: 18px;
    left: 0;
    transform: rotate(135deg);
    transition: 0.3s;
}

header .bl_downNav_box {
    z-index: 4;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    top: 52px;
    left: 0;
    padding: 20px 20px 40px;
}

header .bl_downNav_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 11px 30px;
}

header .bl_downNav_ttl {
    font-size: 18px;
    color: #005925;
    font-weight: bold;
    margin-bottom: 8px;
}

header .bl_downNav_link {
    font-size: 13px;
    padding: 10px 15px;
    display: block;
    position: relative;
    font-weight: 500;
    width: 100%;
    background-color: #efefef;

}

@media (hover: hover) and (pointer: fine) {
    header .bl_headerLogo:hover {
        color: #005925;
    }

    header .bl_headerNav_link:hover {
        border-bottom: 1px solid #005925;
    }

    header .bl_headerBtn:hover {
        background-color: #363640;
    }

    header .has-child:hover>.bl_downNav_box {
        visibility: visible;
        opacity: 1;
        background-color: #fff;
    }

    header .has-child:hover .bl_headerNav_link {
        border-bottom: 1px solid #005925;
    }

    header .has-child:hover .bl_headerNav_link::before {
        top: 16px;
        transform: rotate(-45deg);
    }

    header .bl_downNav_link:hover {
        color: #fff;
        background-color: #005925;
    }

}

@media screen and (max-width: 900px) {
    header .bl_headerLogo {
        font-size: 19px;
        margin-top: 12px;
        margin-left: 6px;
        margin-bottom: 12px;
        padding-top: 0;
    }

    header .bl_headerNav .bl_headerLogo {
        margin-left: 12px;
        display: block;
    }

    header .ly_header_inner {
        margin: 0 5px;
    }

    header #g-nav {
        position: fixed;
        z-index: 10;
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        transition: all 0.6s;
        transform: initial;
    }

    header #g-nav.panelactive {
        top: 0;
    }

    header #g-nav:not(.panelactive) {
        display: none;
    }

    header #g-nav.bl_headerNav {
        background: #fff;
        overflow-y: auto;
        margin-top: 0;
    }

    header .bl_headerNav_list {
        display: block;
    }

    header .bl_headerNav_link {
        font-size: 15px;
        padding: 2.1svh 20px;
        border-bottom: 1px solid #E9E9E9;
    }

    header .bl_headerNav_item:first-child {
        display: block;
    }

    header .bl_headerNav_item:nth-child(2) {
        border-top: 1px solid #E9E9E9;
    }

    header .bl_headerNav_item:last-child {
        padding: 2svh 20px;
        padding-bottom: 0;
    }

    header .bl_headerNav_item {
        position: relative;
    }

    header .bl_downNav_box {
        visibility: visible;
        opacity: 1;
        position: static;
        padding: 0 20px 2svh;
        border-bottom: 1px solid #E9E9E9;
    }

    header .bl_downNav_box .inner {
        display: contents;
    }

    header .bl_downNav_ttl {
        display: none;
    }

    header .bl_downNav_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4svh 15px;
    }

    header .has-child .bl_headerNav_link::before {
        display: none;
    }

    header .has-child .bl_headerNav_link {
        padding-left: 20px;
        padding-bottom: 2.2svh;
        border: none;
    }

    header .bl_downNav_link {
        font-size: 11px;
        padding: 1.1svh 10px;
        background-color: #F6F6F6;
        border: none;
    }

    header .bl_headerBtn {
        width: 100%;
        padding: 1.5svh 0;
        font-size: 16px;
    }

    header .bl_headerBtn img {
        width: 28px;
    }

    header .bl_headerNav_link {
        position: relative;
    }

    header .bl_headerNav_link::before {
        content: '';
        display: block;
        width: 24px;
        height: 8px;
        position: absolute;
        right: 14px;
        background-image: var(--green-arrow);
        top: 50%;
        transform: translateY(-50%);
    }
}

/* =============================================================
   ハンバーガーボタン
   =============================================================
*/
header.hide .bl_hamburger {
    top: -100%;
}

header .bl_hamburger {
    transition: .3s;
    position: fixed;
    top: 6px;
    right: 6px;
    z-index: 99;
    width: 40px;
    height: 40px;
    background: #005925;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .bl_hamburger_line {
    position: relative;
    width: 25px;
    height: 2px;
    background: #fff;
}

header .bl_hamburger_line::before,
header .bl_hamburger_line::after {
    position: absolute;
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

header .bl_hamburger_line::before {
    top: -8px;
}

header .bl_hamburger_line::after {
    bottom: -8px;
}

/*閉じる*/
header .openbtn.active {
    border: 1px solid #73bc78;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

header .openbtn.active .bl_hamburger_line {
    background: transparent;
}

header .openbtn.active .bl_hamburger_line::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .openbtn.active .bl_hamburger_line::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (max-width: 900px) {
    header .bl_hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/* =============================================================
   フッター
   =============================================================
*/
footer {
    color: #fff;
    background-color: #363640;
    padding: 60px 0 25px;
    margin-top: 60px;
}

footer .ibn {
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
}

footer nav {
    width: 664px;
}

footer .ttl {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
}

footer ul>*+* {
    margin-top: 7px;
}

footer a,
footer .branch {
    font-size: 13px;
    text-decoration: underline;
}

footer .right_box {
    width: 432px;
}

footer .right_box ul {
    width: 21%;
}

footer .copy {
    font-size: 15px;
    text-align: center;
    margin-top: 80px;
}

@media (hover: hover) and (pointer: fine) {

    footer a:hover,
    footer .branch:hover {
        text-decoration: none;
    }

    footer .ibn:hover {
        opacity: 0.3;
    }
}

@media screen and (max-width: 1200px) {
    footer .left_box {
        width: 26%;
    }

    footer .right_box {
        width: 68%;
    }

    footer .inner {
        flex-direction: column;
    }

    footer h2 {
        margin-bottom: 18px;
    }

    footer {
        padding: 30px 0 15px;
    }

    footer .ttl {
        font-size: 17px;
    }

    footer .copy {
        font-size: 12px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 700px) {
    footer nav.flex {
        display: block;
        width: 100%;
    }

    footer .left_box {
        width: 100%;
        margin-bottom: 20px;
    }

    footer .right_box {
        width: 100%;
    }

    footer .right_box ul {
        display: contents;
    }

    footer ul>*+* {
        margin-top: 0;
    }

    footer .left_box ul>*+* {
        margin-top: 8px;
    }

    footer .right_box .flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    footer .ttl {
        margin-bottom: 6px;
    }

    footer h2 {
        font-size: 18px;
    }

    footer {
        padding: 16px 0 15px;
        margin-top: 40px;
    }

    footer .ttl {
        font-size: 13px;
    }
}

/* =============================================================
   モーダル
   =============================================================
*/

/* モーダル */
.modal-overlay {
    align-items: center;
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.modal-container {
    background-color: #fff;
    overflow-y: auto;
    padding: 30px;
    padding-top: 90px;
    width: 60vw;
    background-color: #F7F8F9;
}

.modal-header {
    padding: 0;
}

.modal-close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 5px;
    right: 25px;
}

.modal-header .modal-close::before {
    content: "\2715";
    font-size: 45px;
}

.modal-content img {
    width: 100%;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
    animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
    animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .modal-close:hover {
        opacity: .3;
    }
}

@media screen and (max-width: 600px) {
    .modal-container {
        padding: 10px;
        padding-top: 48px;
        width: 90%;
    }

    .modal-close {
        top: 0;
        right: 15px;
    }

    .modal-header .modal-close::before {
        font-size: 32px;
    }
}

/* =============================================================
   パンくずリスト
   =============================================================
*/
.breadcrumb {
    font-size: 13px;
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    padding-bottom: 48px;
}

.breadcrumb li {
    margin-right: 5px;
    font-weight: bold;
}

.breadcrumb li a {
    text-decoration: none;
    color: #005925;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 5px;
}

.breadcrumb li:last-child:after {
    display: none;
}

@media screen and (max-width: 1200px) {
    .breadcrumb {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .breadcrumb {
        padding-top: 10px;
        font-size: 10px;
        padding-bottom: 27px;
    }
}

/* =============================================================
   協力会社一覧
   =============================================================
*/
.company_pref {
    margin-top: 10px;
    font-size: 18px;
    background-color: #F5F5F5;
    padding: 17px 21px;
    border: 1px solid #D4D4D4;
    position: relative;
    width: 100%;
}

.company_pref.accordion_header::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #363640;
    border-top: 0;
    border-right: 0;
    margin: auto;
    position: absolute;
    right: 29px;
    z-index: 1;
    top: 55%;
    transform: translateY(-50%) rotate(135deg);
}

.company_pref.accordion_header.open::before {
    top: 48%;
    transform: translateY(-50%) rotate(-45deg);
}

.company_pref.accordion_header::after {
    content: '';
    position: absolute;
    right: 15px;
    background-color: #fff;
    border: 1px solid #D4D4D4;
    display: block;
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
}

.company_pref span {
    width: 28px;
    height: 28px;
    background-color: #005925;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin-left: 10px;
    color: #fff;
    font-size: 15px;
    padding-top: 2px;
}

.company_list_btn {
    position: relative;
    display: flex;
    padding: 15px 22px;
    width: calc(100% - 100px);
    align-items: center;
    justify-content: space-between;
    margin: 0 50px;
    border-bottom: 1px solid #D4D4D4;
}

.company_list_btn .name {
    font-size: 19px;
    font-weight: 500;
    width: calc(100% - (330px + 15px));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company_list_cat {
    width: 330px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.company_list_cat p {
    border: solid 1px #D0D0D0;
    text-align: center;
    display: block;
    padding: 5px 0;
    font-size: 12px;
    display: block;
    background-color: #fff;
}

.company_list_cat p.black {
    color: #fff;
    background-color: #363640;

}

.company_list_more {
    margin: 14px auto 26px;
    background-color: #363640;
    display: block;
    color: #fff;
    width: 180px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid;
}

@media (hover: hover) and (pointer: fine) {
    .company_list_btn:hover {
        background-color: #F5F5F5;
    }

    .company_pref.accordion_header:hover {
        background-color: #ebebeb;
    }

    .company_list_more:hover {
        color: #363640;
        border: 1px solid;
        background-color: #fff;
    }
}

@media screen and (max-width: 1200px) {
    .company_list_cat p {
        padding: 2px 0;
        font-size: 10px;
    }

    .company_list_btn .name {
        font-size: 15px;
        width: calc(100% - (240px + 15px));
    }

    .company_list_btn {
        padding-top: 12px;
        padding-bottom: 12px;
        margin: 0 25px;
        width: calc(100% - 50px);
    }

    .company_pref {
        font-size: 15px;
        padding: 12px 21px;
    }

    .company_list_more {
        margin: 10px auto 10px;
    }

    .company_list_cat {
        width: 240px;
    }
}

@media screen and (max-width: 600px) {
    .company_pref {
        font-size: 13px;
        padding: 5px 10px;
    }

    .company_pref span {
        width: 24px;
        height: 24px;
        margin-left: 2px;
        color: #fff;
        font-size: 13px;
        padding-top: 1px;
    }

    .company_pref.accordion_header::after {
        right: 8px;
        width: 28px;
        height: 28px;
    }

    .company_pref.accordion_header::before {
        width: 10px;
        height: 10px;
        right: 16px;
    }

    .company_list_btn {
        padding: 8px 0;
        display: block;
    }

    .company_list_btn .name {
        font-size: 13px;
        width: 100%;
        margin-top: 4px;
    }

    .company_list_cat p {
        padding: 2px 0;
        font-size: 10px;
    }

    .company_pref:first-of-type {
        margin-top: 0;
    }

    .company_list_more {
        font-size: 14px;
        padding: 8px 0;
    }

    .company_list_btn {
        margin: 0 10px;
        width: calc(100% - 20px);
    }

    .company_list_cat {
        width: 220px;
    }

    .company_list_btn::after {
        width: 30px;
        height: 11px;
        background-image: var(--arrow-sp);
        right: 0;
    }
}