@charset "utf-8";
/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Oswald:wght@300;600&display=swap");

:root {
    --accent_green: #00a23e;
    --accent_orange: #e87e00;
    --accent_yellow: #fff200;
    --border-index_v: #68bffd;
    --border-dotted: #999999;
    --border-gray: #bbbbbb;
    --border-darkgray: #6b6b6b;
    --border-lightgreen: #58c582;
    --bg-gray: #f2f2f2;
    --bg-darkgray: #c1c1c1;
    --bg-lightgreen: #e7f4e1;
    --color-warning: #ea1515;
    --color-smakeblue: #043284;
    --color-black: #000000;
    --bg-blue: #0097e2;
    --bg-lightblue: #68bffd;
    --bg-th-lightblue: #e6f6ff;
    --bg-th-lightyellow: #f1ffdc;
    --bg-lightgreen: #e9ffe9;
    --bg-question-index: #ebf9d9;

    --circle-size: 2em;
    --bg-circle-blue: var(--bg-blue);
    --bg-circle-red: #e82e2e;

    --border-breadcrumbs: #c3e9e7;
    --border-lightgreen: #a7d47e;

    --arrow-width: 0.75em;
    --arrow-step-width: 2rem;

    --container-max-width: 1024px;
    --spacing-xxs: 0.25rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3rem;
    --spacing-main-x: 15px;
    --spacing-main-b: 5rem;
    --spacing-callout: 1rem;

    --height-icon: 3.5rem;
    --height-main-icon: 1.5em;

    --bg-login: #097e30;
    --bg-regist: var(--bg-lightblue);

    --header-height: 60px;
}

@media screen and (max-width: 768px) {
    :root {
        --height-icon: 5rem;
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
}

.container {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

/* CSS Document */
body {
    font-family: "Noto Sans JP", serif;
    line-height: 1.5rem;
    color: var(--color-black);
}

a {
    color: var(--accent_green);
}

a:hover {
    opacity: 0.7;
    transform: translate(0, 0);
}

/* ----- 表示／非表示 ----- */
.sp_none {
    display: block !important;
}

.pc_none {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .sp_none {
        display: none !important;
    }

    .pc_none {
        display: block !important;
    }
}

/* ----- 画像 ----- */
@media screen and (max-width: 768px) {
    img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/*  ========== pageContainer ==================== */
#pageContainer {
    padding: 0;
    margin: 0;
}

/*  ========== Topbar Start ==================== */
header #headerContainer {
    font-family: "Noto Sans JP", serif;
    filter: blur(0);
    /* チラつき防止 */
    -webkit-filter: blur(0);
}

/*--- headerTop ------*/
header .headerTop {
    background: #e8e8e8;
}

header .headerTop-in {
    max-width: 980px;
    margin: auto;
    display: flex;
    padding: 5px;
    align-items: center;
}

header .headerTop-in h1 {
    font-weight: normal;
    font-size: 12px;
}

header .linkList {
    margin-left: auto;
    display: flex;
    font-size: 12px;
    justify-content: flex-end;
}

header .linkList li {
    display: flex;
    align-items: center;
    border-left: 1px solid #fff;
    padding: 3px 20px;
}

header .linkList li img {
    width: 120px;
}

header .linkList li a {
    padding-right: 20px;
    background: url("../images/icon-link.svg") no-repeat;
    background-position: right center;
    background-size: 13px;
    color: #000;
    display: inline-flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    header {}
}

@media screen and (max-width: 820px) {
    header .headerTop-in {
        width: 100%;
    }
}

/*--- topbar ------*/
header .topbar {
    margin: 0 auto;
    padding: 10px 0 0;
    position: relative;
    width: 100%;
}

/*--- logo ------*/
header .logo-topbar {
    margin: 0;
    padding: 0;
}

header .logo-topbar img {
    max-width: 100%;
    width: 200px;
}

@media screen and (max-width: 768px) {
    header .logo-topbar img {
        width: 150px;
    }
}

/*--- menuSP ---*/
header .menuSP {
    max-width: 980px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    padding: 5px;
    gap: 5px;
}

/* 検索　*/
header .menu01 {
    margin: 0 0 0 auto;
}

/* よくあるご質問・サイトマップ・ログイン　*/
header .menu02 {
    display: flex;
    max-width: 400px;
    margin: 0;
    padding: 0;
    align-items: center;
}

header .headerBtn01 {
    display: flex;
}

header .headerBtn01 li {
    width: 100px;
    padding: 40px 0 20px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

header .headerBtn01 li a {
    color: var(--color-black);
}

header .headerBtn01 li a::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    background-position: center top;
    width: 100%;
}

header .headerBtn01 li:first-child a::before {
    background-image: url("../images/icon-faq.svg");
    top: 10px;
    height: 10px;
}

header .headerBtn01 li:last-child a::before {
    background-image: url("../images/icon-map.svg");
    top: 10px;
    height: 10px;
}

header .headerBtn01 li p {
    position: absolute;
    bottom: 5px;
    font-size: 12px;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
}

/* ログイン　*/
header .login img {
    width: 136px;
}

header .btn-login {
    font-size: 0.75rem;
    padding-top: var(--spacing-xxs);
    padding-bottom: var(--spacing-xxs);
}

@media screen and (max-width: 768px) {
    header .headerBtn01 {
        padding: 0;
    }

    header .headerBtn01 li {
        padding: 0 10px;
        width: auto;
    }

    header .headerBtn01 li img {
        width: 13vw;
    }

    header .headerBtn01 li.faq p {
        display: none;
    }

    header .headerBtn01 li:first-child a::before {
        display: none;
    }

    header .login img {
        width: 13vw;
    }
}

@media screen and (max-width: 768px) {
    header .menuSP {
        width: 100%;
        padding: 0 10px;
        flex-wrap: wrap;
    }

    header .btn-search img {
        width: 13vw;
    }
}

header .menu01 {
    display: flex;
    border: 1px solid #ccc;
    height: fit-content;
    align-items: center;
    margin-right: var(--spacing-md);
}

@media screen and (max-width: 768px) {
    header .menu01 {
        margin-right: 0;
    }
}

header .l-header__search {
    display: flex;
}

header .l-header__search input {
    border: none;
}

header .l-header__search input[type="submit"] {
    background-image: url("../images/btn-search.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center 50%;
    width: 30px;
    height: 34px;
    text-indent: -9999px;
    border: none;
    cursor: pointer;
    outline: none;
}

/* PCでは検索窓を常に表示 */
@media (min-width: 768px) {
    header .l-header__search .rows {
        display: block;
    }

    header .l-header__search-accordion.row2 {
        display: none;
    }
}

/* スマホでは非表示にしておく */
@media (max-width: 768px) {
    header .menu01 {
        border: none;
    }

    header .l-header__search.active {
        display: block;
    }

    header .row1 {
        display: none !important;
    }
}

/** --aadditional-------------------------------------*/
header .rows {
    display: block;
    margin-left: auto;
}

:is(header .rows) .menu_group {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    header .row1 {
        display: none !important;
    }

    header .l-header__search {
        border: 1px solid #ccc;
        width: fit-content;
        margin: 0.5rem auto;
    }

    header .l-header__search-accordion.row2 {
        display: grid block;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.2s ease-out;
        width: 100%;
    }

    :is(header .l-header__search-accordion.row2) .l-header__search-accordion-inner {
        background-color: var(--bg-gray);
    }

    :is(header .l-header__search-accordion.row2)>* {
        overflow: hidden !important;
    }

    .active:is(header .l-header__search-accordion.row2) {
        grid-template-rows: 1fr;
    }
}

@media screen and (min-width: 768px) {
    header .l-header__search-accordion.row2 {
        display: none;
    }
}

/*--- globalNav01 ---*/
header .menu03 {
    margin: 0px auto;
    padding: 0;
}

header .globalNav01 {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    border-bottom: #097e30 3px solid;
    padding: 0;
    margin: 0 auto;
    background: #f2f2f2;
    box-sizing: border-box;
}

header .globalNav01>ul {
    position: relative;
    display: flex;
    margin: 0 auto;
    max-width: 980px;
    width: 100%;
    padding: 0;
}

header .globalNav01>ul>li {
    width: calc(980px / 5);
    padding: 60px 0 20px;
    text-align: center;
    position: relative;
    /* transition: 0.7s; */
    margin: 0px auto 0;
    box-sizing: border-box;
    list-style: none;
    height: 100px;
}

/* 左側の白線（すべての li） */
header .globalNav01>ul>li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 2px;
    height: 103px;
    background: #fff;
}

/* 最後の li にだけ右側の白線 */
header .globalNav01>ul>li:last-child::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 2px;
    height: 103px;
    background: #fff;
    z-index: 1;
}

header .globalNav01>ul>li>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: var(--color-black);
    /* color*/
    background: #f2f2f2;
}

header .globalNav01>ul>li>a:hover {
    background: #e5f6ec;
}

header .globalNav01>ul>li>a::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    text-align: center;
    padding: 0;
    text-decoration: none;
    background-position: center top;
    width: 100%;
    top: 20px;
}

/* nav01 */
header .globalNav01>ul>li:first-child>a::before {
    background-image: url("../images/icon-01.svg");
    height: 35px;
}

/* nav02 */
header .globalNav01>ul>li:nth-child(2) a::before {
    background-image: url("../images/icon-02.svg");
    height: 30px;
}

/* nav03 */
header .globalNav01>ul>li:nth-child(3) a::before {
    background-image: url("../images/icon-03.svg");
    height: 30px;
}

/* nav04 */
header .globalNav01>ul>li:nth-child(4) a::before {
    background-image: url("../images/icon-04.svg");
    height: 35px;
}

/* nav05 */
header .globalNav01>ul>li:last-child a::before {
    background-image: url("../images/icon-05.svg");
    left: 50%;
    height: 35px;
}

header .globalNav01>ul>li a:hover {
    color: #01518e;
    opacity: 1;
}

header .globalNav01>ul>li span {
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    header .globalNav01>ul {
        margin: unset;
    }

    header .globalNav01>ul>li {
        width: 100%;
        height: 80px;
        padding: 10px 0;
        position: relative;
    }

    header .globalNav01>ul>li::after {
        height: 100%;
    }

    /* nav01 */
    header .globalNav01>ul>li:first-child>a::before {
        background-image: url("../images/icon-01.svg");
        height: 30%;
    }

    /* nav02 */
    header .globalNav01>ul>li:nth-child(2) a::before {
        background-image: url("../images/icon-02.svg");
        height: 30%;
    }

    /* nav03 */
    header .globalNav01>ul>li:nth-child(3) a::before {
        background-image: url("../images/icon-03.svg");
        height: 30%;
    }

    /* nav04 */
    header .globalNav01>ul>li:nth-child(4) a::before {
        background-image: url("../images/icon-04.svg");
        height: 30%;
    }

    /* nav05 */
    header .globalNav01>ul>li:last-child a::before {
        background-image: url("../images/icon-05.svg");
        left: 50%;
        height: 30%;
    }

    header .globalNav01>ul>li span {
        font-size: 10px;
    }
}

header .globalNav01 .dropdown-area {
    position: relative;
}

header .globalNav01 .dropdown {
    position: absolute;
    top: 100%;
    left: -100px;
    right: 0;
    display: none;
    background-color: #fff;
    padding: 10px;
    width: 400px;
    border: 2px solid #0a7d30;
    z-index: 9999;
}

header .globalNav01 .dropdown li {
    padding: 5px 0;
    text-align: left;
    position: relative;
}

header .globalNav01 .dropdown li::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #5b5f60;
    border-right: 2px solid #5b5f60;
    content: "";
    transform: rotate(-45deg);
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .globalNav01 .dropdown li a {
    width: 100%;
    height: 100%;
    display: block;
    color: var(--color-black);
}

header .globalNav01 .dropdown li a:hover {
    background: #e5f6ec;
}

header .globalNav01 .dropdown.open {
    display: block;
}

@media screen and (max-width: 768px) {
    header .globalNav01 li {
        position: static;
        z-index: 100;
    }

    header .globalNav01 .dropdown {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px;
        z-index: 9999;
        display: none;
    }

    /* スマホでの hover 表示は JS と衝突するので削除！ */
    header .globalNav01 li:hover .dropdown {
        /* display: none; */
    }

    header .globalNav01 .dropdown.open {
        display: block;
    }
}

/*--- breadcrumb ---*/

header.simple-header {
    border-bottom: 2px solid var(--accent_green);
}

header.simple-header .container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 1rem;
}

header.simple-header h1 {
    width: 30%;
}

header.simple-header .logo-container {
    width: 30%;
    display: flex;
    gap: 2rem;
    align-items: baseline;
}

@media screen and (max-width: 768px) {
    header.simple-header .logo-container {
        width: 45%;
        gap: 1rem;
    }
}

:is(header.simple-header .logo-container) figure {
    display: flex;
    align-items: baseline;
    width: 45%;
    height: fit-content;
}

:is(header.simple-header .logo-container) img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*  ========== Footer Start ==================== */
footer {
    border-top: #097e30 3px solid;
}

footer a {
    color: var(--color-black);
}

footer .link {
    display: flex;
    gap: 6rem;
    justify-content: space-around;
}

footer .link a {
    color: var(--color-black);
}

footer .link dl {
    min-width: 200px;
}

footer .link dl dt {
    position: relative;
    padding: 0px 0 10px 20px;
    margin: auto;
    font-weight: bold;
}

footer .link dl dt::before {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #097e30;
    border-right: 2px solid #097e30;
    content: "";
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 10px;
    margin: auto;
}

footer .link li {
    position: relative;
    padding: 0px 0 3px 40px;
    font-size: 12px;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

footer .link li::before {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #5b5f60;
    border-right: 2px solid #5b5f60;
    content: "";
    transform: rotate(-45deg);
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

footer>nav>.link {
    padding: 50px 5px;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 0;
    }
}

.footer_bottom {
    background: #e8e8e8;
    padding: 20px 0;
}

.footer_bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    row-gap: 0.25rem;
    font-size: 12px;
    margin: 0 auto;
}

.footer_bottom li {
    padding: 0px 0 5px 40px;
    position: relative;
}

.footer_bottom li::before {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #5b5f60;
    border-right: 2px solid #5b5f60;
    content: "";
    transform: rotate(-45deg);
    position: absolute;
    left: 20px;
    top: 8px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .footer_bottom li {
        padding: 0px 0 5px 26px;
    }

    .footer_bottom li::before {
        left: 8px;
    }
}

footer .footer_bottom a {
    color: var(--color-black);
}

footer .copy {
    padding: 30px 0;
    background: #858585;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}

footer .copy p {
    text-align: center;
}

footer .copy figure.logo {
    width: 40%;
    margin: auto;
}

footer .copy figure.logo img {
    width: unset;
}

footer .bl_pmark {
    padding: 15px 0;
}

footer .bl_pmark .content {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-end;
}

footer .bl_pmark .content p {
    font-size: 12px;
}

footer .bl_pmark .content figure {
    padding: 0 20px;
}

footer .footer_bottom .content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

footer.simple-footer {
    padding: 0;
    border-top: unset;
}

/*  ========== Content Start ==================== */
.content-page {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.content-page .content,
footer .content {
    max-width: 980px;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    footer .copy figure.logo {
        width: fit-content;
    }

    footer .content,
    .content-page .content {
        width: 90%;
    }
}

/*---  page-title ---*/
.page-title {
    padding: 1rem 2rem;
    border-left: 5px solid #01518e;
    /* title border*/
    margin: 0 0 2rem 0;
}

/*---  selectbox ---*/

/*---  table ---*/

/*---  form -----------------------------*/

/*----フォーム用タイトル-------*/

/*----- input ------*/
input {
    padding: 5px;
    margin: 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background: #fff;
}

input.middle {
    width: 50%;
}

input.long {
    width: 80%;
}

input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(1, 81, 142, 0.5);
    outline: none;
}

/*----- select ------*/

/*----- textarea ------*/
textarea {
    padding: 10px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    width: 80%;
}

/*----checkbox-------*/

/*---  form -----------------------------*/
#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 20px;
    bottom: 150px;
    background: #097e30;
    opacity: 0.8;
    border-radius: 50%;
    display: none;
    /* 初期非表示 */
    transition: opacity 0.3s;
    z-index: 999;
}

#page_top .pagetopBtn {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
    text-indent: -9999px;
}

#page_top .pagetopBtn::before {
    font-weight: 900;
    content: "";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
    #page_top {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20%;
    }

    #page_top .pagetopBtn::before {
        right: 20px;
        top: -9px;
        bottom: 0;
        left: 0;
        width: 15px;
        height: 15px;
        margin: auto;
    }
}

/*--- page element -------*/
.center {
    text-align: center;
}

.txt-r {
    text-align: right;
}

.txt-l {
    text-align: left;
}

/*----- margin -----*/
/* margin-top */
.mt30 {
    margin-top: 30px;
}

/* margin-bottom */
.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

/* Print
------------------------------------------------------ */
@media print {
    #page_top {
        display: none !important;
    }
}