@charset "UTF-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --color-background: #FBF4E4;
    --color-orange: #D4853A;
    --color-orange-hover: #FBF4E4;
    --color-lightorange: #FAD3AF;
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-red: #D93131;
    --color-darkgreen: #184F26;
    --color-green: #266B2F;
    --color-lightgreen: #679A23;
    --color-blue: #3478A9;
    --color-lightblue: #C5E3F7;
    --color-gray: #EDEDED;
    --color-darkgray: #2B2B2B;
    --color-lightgray: #FAFAFA;
    --color-lightgray2: #A0A0A0;
    --color-lightgray3: #C9C9C9;

    --color-danger: #FF1315;

    --border-radius: 6px;

    --animation-transition: 0.2s;

    --icon-width: 2px;
    --icon-height: 12px;
    --icon-color: var(--color-black);
}

html {
    scroll-behavior: smooth;

    @media (max-width: 767.98px) {
        scroll-padding: 72px;

    }
}

* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-black);
    line-height: 1.75;
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 1;
}

img {
    width: 100%;
}

a,
a *,
button {
    transition: var(--animation-transition);
    cursor: pointer;
    height: auto;
}

a {
    transition: var(--animation-transition);
    cursor: pointer;
    height: auto;

    &:hover {
        opacity: 0.8;
    }
}

/* layout */
body {
    display: flex;
    justify-content: center;
    background-color: var(--color-background);
}

.navigation--header {
    padding-top: 60px;
    width: 338px;
    min-width: 220px;
    margin-inline: 40px;
}

.navigation--header nav {
    margin-top: 24px;
}

.navigation--header nav>a {
    display: block;
}

.content--wrapper {
    max-width: 1152px;
    flex: 1 1 auto;
    width: 100%;
    margin-right: 40px;
    position: relative;

    @media (max-width: 767.98px) {
        margin-right: 0;
    }
}


.container {
    padding-inline: 80px;

    @media (max-width: 1299.98px) {
        padding-inline: 40px;
    }
}

footer {
    margin-top: 16px;
    /* margin-right: 40px; */
    max-width: 1152px;

    @media (max-width: 767.98px) {
        margin-right: 0;
    }
}


@media (max-width: 767.98px) {
    body {
        flex-direction: column;
    }

    .content--wrapper {
        padding-top: 72px;
    }

    .container {
        padding-inline: 20px;
    }

    .navigation--header {
        width: 100%;
        margin-inline: 0;
        padding-top: 0;
        padding-inline: 20px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        background-color: var(--color-background);

        &>.header--inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        &>.header--inner>h1 {
            width: 30%;
            min-width: 150px;
        }

        &>.header--inner>.hamburger--menu {
            /* position: relative; */
            width: 32px;
            height: 32px;
            display: flex;
            flex-direction: column;
            /* justify-content: space-; */
            align-items: center;
            gap: 8px;

            /* z-index: 10; */
            &>span {
                width: 100%;
                height: 2px;
                background-color: var(--color-black);
                transition: var(--animation-transition);
            }
        }

        &>.header--inner>.hamburger--menu.active {
            &>span {
                &:nth-child(1) {
                    transform: translateY(8px) rotate(45deg);
                }

                &:nth-child(2) {
                    opacity: 0;
                }

                &:nth-child(3) {
                    transform: translateY(-12px) rotate(-45deg);
                }
            }
        }
    }

    .header--inner--column {
        display: flex;
        flex-direction: column;
    }

    .navigation--header--inner {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: 100vh;
        max-height: 0;
        background-color: var(--color-background);
        padding-inline: 20px;
        overflow: hidden;
        transition: var(--animation-transition);
        z-index: 9;

        &.active {
            max-height: 100vh;
            overflow: auto;
        }
    }
}


/* 表示・非表示 */
.d-pc {
    display: block;
}

.d-sp {
    display: none;
}

@media (max-width: 767.98px) {
    .d-pc {
        display: none;
    }

    .d-sp {
        display: block;
    }
}

/* サンプル用 */
.component--parts {
    padding: 42px 0;
    background-color: var(--color-white);

    & .container>*:not(:last-child) {
        margin-bottom: 24px;
    }
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-inline {
    display: inline;
}

.d-flex {
    display: flex;
    gap: 24px;
}

.d-flex-shrink {
    flex-shrink: 0 !important;
}

.d-justify-between {
    justify-content: space-between;
}

.d-justify-center {
    justify-content: center;
}

.d-align-start {
    align-items: flex-start;
}

.d-align-center {
    align-items: center;
}

.d-align-end {
    align-items: flex-end;
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 24px;
}

.gap0 {
    gap: 0 !important;
}

/* width */
.w100 {
    width: 100%;
}

.w80 {
    width: 80%;
    margin-inline: auto;
}

.w50 {
    width: 50%;
    margin-inline: auto;
}

.w80-sm {
    width: 80%;
    margin-inline: auto;

    @media (max-width: 767.98px) {
        width: 100%;
    }
}


/* components */
.fright_img {
    display: block;
    max-width: 350px;
    margin: 0 auto 24px;
}

/* text color */
.text-orange {
    color: var(--color-orange) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

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

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

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

/* font-weight */
.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}


/* fontsize */
.fs12 {
    font-size: 0.75rem !important;
}

.fs14 {
    font-size: 0.875rem !important;
}

.fs16 {
    font-size: 1rem !important;
}

.fs18 {
    font-size: 1.125rem !important;
}

.fs20 {
    font-size: 1.25rem !important;
}

.fs24 {
    font-size: 1.5rem !important;
}


/* margin */

.my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mt0 {
    margin-top: 0 !important;
}

.mt1 {
    margin-top: 0.5rem !important;
}

.mt12 {
    margin-top: 0.75rem !important;
}

.mt16 {
    margin-top: 1rem !important;
}

.mt18 {
    margin-top: 1.125rem !important;
}

.mt24 {
    margin-top: 1.5rem !important;
}

.mt32 {
    margin-top: 2rem !important;
}

.mt3 {
    margin-top: 3rem !important;
}

.mt4 {
    margin-top: 4rem !important;
}

.mt5 {
    margin-top: 5rem !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mb12 {
    margin-bottom: 0.75rem;
}

.mb16 {
    margin-bottom: 1rem;
}

.mb24 {
    margin-bottom: 1.5rem;
}

.mb32 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.mb4 {
    margin-bottom: 4rem;
}

.mb5 {
    margin-bottom: 5rem !important;
}

/* pdding */
.pt0 {
    padding-top: 0 !important;
}

/* display */
.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-inline {
    display: inline;
}

/* btn */
.btn-orange {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 8px 48px;
    border-radius: 100vh;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    font-size: 1.125rem;
    min-width: 324px;
    border: 2px solid transparent;

    @media (max-width: 767.98px) {
        min-width: 100%;
    }

    /* width: 100%; */
    min-height: 64px;
    box-shadow: 0px 6px 6px #00000029;

    font-feature-settings: "palt";

}

.btn-orange:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
}

.btn-sm {
    font-size: 1rem !important;
    min-width: 132px;
    width: unset;
    min-height: unset;
    height: 42px;
    padding: 8px 0;
}

.btn-arrow {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 8%;
        width: 12px;
        height: 12px;
        border-top: 4px solid var(--color-white);
        border-right: 4px solid var(--color-white);
        transform: translateY(-50%) rotate(45deg);

    }

    &.btn-sm::after {
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--color-white);
        border-right: 2px solid var(--color-white);
        right: 12%;
    }

    &:hover {
        &::after {
            border-top: 4px solid var(--color-orange);
            border-right: 4px solid var(--color-orange);
        }

        &.btn-sm::after {
            border-top: 2px solid var(--color-orange);
            border-right: 2px solid var(--color-orange);
        }
    }
}

.btn-blank {
    gap: 16px;

    &::after {
        content: '';
        display: block;
        width: 16px;
        height: 16px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("../images/common/external_white.svg");
    }

    &:hover {
        &::after {
            background-image: url("../images/common/external_color.svg");
        }
    }
}

.btn-close {
    position: relative;
    height: 64px;
    width: 420px;

    &::before {
        content: '';
        position: absolute;
        display: block;
        top: 54%;
        right: 8%;
        width: 24px;
        height: 4px;
        background-color: var(--color-white);
        transform: translateY(-50%) rotate(45deg);
    }

    &::after {
        content: '';
        position: absolute;
        top: 54%;
        right: 8%;
        width: 24px;
        height: 4px;
        background-color: var(--color-white);
        transform: translateY(-50%) rotate(-45deg);
    }

    &:hover {
        &::before {
            background-color: var(--color-orange);
        }

        &::after {
            background-color: var(--color-orange);
        }
    }
}

.btn-pdf,
.btn-excel {
    position: relative;
    max-width: 430px;
    width: 100%;
}

.btn-pdf {
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 24px;
        width: 24px;
        height: 24px;
        background-image: url("../images/common/pdf_white.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: translateY(-50%);
    }

    &:hover {
        &::after {
            background-image: url("../images/common/pdf_color.svg");
        }
    }
}

.btn-excel {
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 24px;
        width: 24px;
        height: 24px;
        background-image: url("../images/common/excel.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: translateY(-50%);
    }

    &:hover {
        &::after {
            background-image: url("../images/common/excel_color.svg");
        }
    }
}

.btn-outline {
    width: 320px;
    height: 96px;
    border: 1px solid #3B3B3B;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    &:hover {
        background-color: var(--color-orange-hover);
        color: var(--color-orange);
        border: 1px solid var(--color-orange);
    }

    &.btn-pdf::after {
        background-image: url("../images/common/pdf_color.svg");
    }

}

.icon-blank {
    &::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 8px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        top: 1px;
    }

    &.ms::after {
        margin-left: 4px;
        margin-right: 4px;
    }

    &.icon-blank-white::after {
        background-image: url("../images/common/external_white.svg");
    }

    &.icon-blank-orange::after {
        background-image: url("../images/common/external_color.svg");
    }
}

.btn-orange:hover {
    .icon-blank {
        &::after {
            background-image: url("../images/common/external_color.svg");
        }
    }
}

.btn-sm .icon-blank {
    &::after {
        width: 12px;
        height: 12px;
        top: 0;
    }
}

.icon-pdf {
    &::after {
        content: '';
        position: relative;
        top: -2px;
        display: inline-block;
        vertical-align: middle;
        width: 22px;
        height: 24px;
        margin-left: 8px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    &.icon-pdf-white::after {
        background-image: url("../images/common/pdf_white.svg");
    }

    &.icon-pdf-orange::after {
        background-image: url("../images/common/pdf_color.svg");
    }
}

.information--item a[target="_blank"]:not([href$=".pdf"]) .information--title,
.information--item a:not([href*="aitou.museum"], [href*="x162-43-90-147.static.xvps.ne.jp"]):not([href$=".pdf"]) .information--title {
    &::after {
        content: '';
        background-image: url("../images/common/external_color.svg");
        position: relative;
        top: -2px;
        display: inline-block;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin-left: 4px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }


}

/* pagenation */
.pagenation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.btn-pagenation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-orange);
    border: 2px solid transparent;
    transition: var(--animation-transition);

    &:hover {
        & .btn-prev {
            border: 2px solid var(--color-orange);
            background-color: var(--color-white);

            &::before {
                border-top: 2px solid var(--color-orange);
                border-right: 2px solid var(--color-orange);
            }
        }
    }

    &:hover {
        & .btn-next {
            background-color: var(--color-white);
            border: 2px solid var(--color-orange);

            &::before {
                border-top: 2px solid var(--color-orange);
                border-right: 2px solid var(--color-orange);
            }
        }
    }
}

.btn-pagenation.disabled {
    color: #ccc;
    pointer-events: none;
    cursor: default;

    & .btn-prev,
    & .btn-next {
        background-color: #ccc;
        box-shadow: none;
    }
}

.btn-prev,
.btn-next {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-orange);
    box-shadow: 0px 6px 6px #00000029;
    position: relative;
    border: 2px solid transparent;
    transition: var(--animation-transition);


    &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 6px;
        border-top: 2px solid var(--color-white);
        border-right: 2px solid var(--color-white);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    &.btn-prev::before {
        transform: translateY(-50%) rotate(225deg);
    }
}

.btn-wrapper {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.anchor--link {
    height: 48px;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.2;
    text-align: center;
    padding: 4px 16px;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    border: 2px solid var(--color-orange);
    text-decoration: none;
    color: var(--color-black);
    font-feature-settings: "palt";
    letter-spacing: 0.7px;

    &::after {
        content: '';
        position: absolute;
        top: calc(50% - 2px);

        right: 10px;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--color-black);
        border-right: 2px solid var(--color-black);
        transform: translateY(-50%) rotate(135deg);
    }

    &:hover {
        color: var(--color-orange);
        background-color: var(--color-orange-hover);

        &::after {
            border-top: 2px solid var(--color-orange);
            border-right: 2px solid var(--color-orange);
        }
    }
}

/* category icons */
.ico-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    color: var(--color-black);
    padding: 4px 10px;
    border-radius: var(--border-radius);

    &.ico-tag-lg {
        font-size: 1.125rem;
        padding: 8px 16px;
        font-size: 1rem;

        &:not(:first-child) {
            margin-left: 8px;
        }
    }



    &.ico-outline {
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-black);
    }

    &.ico-blue {
        color: var(--color-white);
        background-color: var(--color-blue);
        border: 1px solid var(--color-blue);
    }

    &.ico-lightblue {
        color: var(--color-blue);
        background-color: var(--color-lightblue);
        border: 1px solid var(--color-lightblue);
    }

    &.ico-lightgray {
        color: var(--color-darkgray);
        background-color: var(--color-gray);
        border: 1px solid var(--color-gray);
    }

    &:not(:first-child) {
        margin-left: 4px;
    }

    &.ico-open {
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-black);
    }

    &.ico-event,
    &.ico-reservation {
        color: var(--color-white);
        background-color: var(--color-blue);
        border: 1px solid var(--color-blue);
    }

    &.ico-recruit {
        color: var(--color-blue);
        background-color: var(--color-lightblue);
        border: 1px solid var(--color-lightblue);
    }

    &.ico-info {
        color: var(--color-black);
        background-color: var(--color-gray);
        border: 1px solid var(--color-black);
    }

    &.ico-closed {
        color: var(--color-white);
        background-color: var(--color-darkgray);
        border: 1px solid var(--color-darkgray);
    }

    &.ico-press-release {
        color: var(--color-white);
        background-color: var(--color-red);
        border: 1px solid var(--color-red);
    }

    &.ico-upcoming {
        background-color: #00fa9a;
        border: 1px solid #00fa9a;
    }

    &.ico-current {
        background-color: #ffc0cb;
        border: 1px solid #ffc0cb;
    }

    &.ico-past {
        background-color: #d3d3d3;
        border: 1px solid #d3d3d3;
    }

    &.ico-special {
        color: var(--color-white);
        background-color: #ff1493;
        border: 1px solid #ff1493;
    }

    &.ico-main {
        background-color: #ff69b4;
        border: 1px solid #ff69b4;
    }

    &.ico-design-aichi {
        color: var(--color-white);
        background-color: #4169e1;
        border: 1px solid #4169e1;
    }

    &.ico-date,
    &.ico-place {
        /* font-size: 0.875rem; */
        min-width: 72px;
        /* height: 24px; */
        /* line-height: 16px; */
        text-align: center;
        /* padding: 0; */
    }
}

.exhibition--date,
.exhibition--place {
    & .ico-tag {
        position: relative;
        top: 4px;
        flex-shrink: 0;
    }
}

/* table */
.table {
    width: 100%;
    border-collapse: collapse;
    line-height: 2;

    & th,
    & td {
        border: 1px solid var(--color-lightgray3);
        padding: 12px 16px;
        vertical-align: middle;
    }

    & th {
        background-color: var(--color-lightgray);
        text-align: center;
    }

    & tfoot td {
        background-color: var(--color-background);
    }

    & td {
        font-weight: normal;
    }

    & .text-help {
        display: block;
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

.table.exhibition--table {
    & th {
        width: 20%;
    }
}


.table.workshop--uwagusuri--table {

    & th:first-child {
        width: 60px;
        padding: 0;
        vertical-align: middle;

        @media (max-width: 767.98px) {
            width: unset;
        }
    }

    & th {
        background-color: #EDE6E1;
        text-align: center;
        padding: 4px 16px;
    }

    & td {
        text-align: center;
    }

    @media (max-width: 767.98px) {
        max-width: 350px;
        margin-inline: auto;

        &.d-sp th.w100 {
            width: 100%;
        }

        &.d-sp th:not(.w100),
        &.d-sp td {
            width: calc(100% / 3);
        }
    }
}

/* card */
.card {
    display: block;
    flex: 1;
    background-color: var(--color-lightgray);
    border: 2px solid var(--color-orange);
    border-radius: var(--border-radius);
    padding: 48px 32px;

    @media (max-width: 767.98px) {
        padding: 32px 16px;
    }

    position: relative;

    & .card--header {
        &>h3 {
            display: inline-block;
            text-align: center;
            font-size: 1.3125rem;
            line-height: 44px;
            font-weight: 600;
            color: var(--color-orange);
            background-color: var(--color-white);
            border: 2px solid var(--color-orange);
            border-radius: 100vh;
            width: 220px;
            height: 48px;

            position: absolute;
            top: -24px;

            @media (max-width: 767.98px) {
                top: -16px;
            }

            left: 50%;
            transform: translateX(-50%);
        }
    }

    &:has(.card--header) {
        & .card--content {
            margin-top: 16px;

            & p {
                font-weight: 600;
            }
        }
    }

    & .card--content {

        & h3 {
            font-size: 1.3125rem;
            margin-bottom: 24px;
        }

        & p {
            line-height: 2;
            font-weight: 400;
        }
    }

    & img {
        max-width: 180px;
    }
}

.card--content--item {
    & .card--content--h4 {
        font-size: 1.3125rem;
        border-bottom: 1px dotted #a0a0a0;
        padding-bottom: 16px;
    }

    & .card--content--text {
        margin-top: 16px;
    }
}

/* list */
ul.list--diamond {
    list-style: none;

    &>li {
        position: relative;
        padding-left: 16px;

        &::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 6px;
            height: 6px;
            background-color: var(--color-black);
            transform: translateY(-50%) rotate(45deg);
        }

        &.bg-danger::before {
            background-color: var(--color-danger);
        }
    }
}

ul.list--circle {
    list-style: none;

    &>li {
        position: relative;
        padding-left: 24px;

        &::before {
            content: '';
            position: absolute;
            top: 1em;
            left: 6px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--color-black);
            transform: translateY(-50%);
        }
    }
}

ul.item-mb2 {
    &>li:not(:last-child) {
        margin-bottom: 2rem;
    }

}

.information--item a .information--title {
    color: var(--color-orange);
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

/* sns icons */
.article--sns_icons {
    margin-top: 56px;
}

.article--sns_icons ul {
    display: flex;
    gap: 36px;
    justify-content: center;

    &>li>a>img {
        width: auto;
        height: 24px;
    }
}

@media (max-width: 767.98px) {
    .article--sns_icons {
        order: 4;
    }
}



/* language search */
.select--language {
    padding-left: 20px;
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 16px;

    &::before {
        content: url("../images/common/language.svg");
        width: 16px;
        height: 16px;
    }
}

.select--language select,
.input--search input {
    height: 48px;
}

.select--language select {
    width: 100%;
    border: 1px solid var(--color-orange);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding-left: 48px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

.input--search {
    margin-top: 24px;
    display: flex;
}

.input--search input {
    width: 100%;
    border: 1px solid var(--color-orange);
    background-color: var(--color-white);
    padding: 10px;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

input:focus,
select:focus {
    outline: none;
    background-color: var(--color-lightorange);
}

.input--search button {
    border: 1px solid var(--color-orange);
    background-color: var(--color-orange);
    padding: 4px 12px;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.aside--select--wrapper {
    width: 207px;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: calc(50% - 2px);
        right: 16px;
        width: 12px;
        height: 12px;
        border-top: 2px solid var(--color-black);
        border-right: 2px solid var(--color-black);
        transform: translateY(-50%) rotate(135deg);
    }

    & select {
        text-align-last: center;
        width: 100%;
        height: 48px;
        border: 2px solid var(--color-orange);
        border-radius: var(--border-radius);
        padding: 4px 16px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
}


/* link */
.link--list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.link--item {
    width: 235px;
    font-size: 0.875rem;
    text-align: center;
    letter-spacing: 0.7px;

    &>a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        border-radius: var(--border-radius);
        background-color: var(--color-white);
        border: 2px solid var(--color-orange);
        text-decoration: none;

        &::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 16px;
            width: 10px;
            height: 10px;
            border-top: 2px solid #000000;
            border-right: 2px solid #000000;
            transform: translateY(-50%) rotate(135deg);
        }
    }
}

/* headding */
h2.headding--title-top {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 24px;

    &>span {
        display: inline-block;
        flex: 1 0 auto;
    }

    &::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--color-lightgreen), var(--color-lightgreen) 80%, var(--color-green) 81% 100%);
        flex: 1 1 auto;
    }

    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(-90deg, var(--color-lightgreen), var(--color-lightgreen) 80%, var(--color-green) 81% 100%);
        flex: 1 1 auto;
    }
}

h2.headding--title-lower {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    border-bottom: 3px solid var(--color-orange);
    padding-bottom: 8px;

    @media screen and (max-width: 767.98px) {
        font-size: 1.5rem;
        letter-spacing: 1.2px;
    }
}

h2.headding--title-lower .headding--title-sub {
    display: block;
    font-size: 1rem;
}

h3.headding--title-green {
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--color-green);
}

h3.headding--title-outline {
    font-size: 1.3125rem;
    font-weight: 600;
    border: 2px solid var(--color-orange);
    border-radius: var(--border-radius);
    padding: 8px 16px;
}

h3.headding--title-underline {
    font-size: 1.3125rem;
    border-bottom: 1px dotted #A0A0A0;
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

/* navigation */
.navigation--menu--item {
    border-top: 1px dotted var(--color-lightgray2);
    cursor: pointer;
}

.navigation--menu--item:last-child {
    border-bottom: 1px dotted var(--color-lightgray2);
}

.navigation--menu--item span,
.navigation--menu--item a,
.sub--menu--item a {
    display: block;
    padding: 20px 0;
    cursor: pointer;
}

.navigation--menu--item span,
.navigation--menu--item a {
    padding-left: 20px;
    padding-right: 48px;
}

.sub--menu--item a {
    padding-left: 40px;
}

.navigation--menu--item a:hover,
.navigation--menu--item span:hover {
    background-color: var(--color-lightorange);
}

.navigation--menu--item.active {
    background-color: var(--color-lightorange);
}


.sub--menu {
    max-height: 0;
    overflow: hidden;

    background-color: var(--color-white);
}

.sub--menu .sub--menu--item {
    border-top: 1px dotted var(--color-lightgray2);
}

.sub--menu .sub--menu--item a:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.navigation--menu--item.active .sub--menu {
    overflow: auto;
    max-height: 1000px;

    & .current {
        color: var(--color-orange);
    }
}

.navigation--menu--item span {
    position: relative;
}

.navigation--menu--item span::before,
.navigation--menu--item span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: var(--icon-width);
    background-color: var(--icon-color);
}

.navigation--menu--item span::before {
    top: calc(50% + 1px);
}


.navigation--menu--item span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all 0.1s ease-in-out;
}

.navigation--menu--item.active span::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transition: all 0.1s ease-in-out;
}

.navigation--menu--item.no--sub--menu a {
    position: relative;
}

.navigation--menu--item.no--sub--menu.current {
    background-color: var(--color-lightorange);
}


.navigation--menu--item.no--sub--menu a::before {
    content: '';
    position: absolute;
    display: inline-block;
    box-sizing: border-box;
    top: 50%;
    right: 22px;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: var(--icon-width) var(--icon-width) 0 0;
    border-color: var(--icon-color);
    transform: translateY(-50%) rotate(45deg);
    background-color: transparent;
}

.navigation--menu--item.no--sub--menu a::after {
    display: none;
}

.sub--menu--item {
    position: relative;
}

.sub--menu--item::before {
    position: absolute;
    content: '';
    display: inline-block;
    box-sizing: border-box;
    top: 50%;
    right: 22px;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: var(--icon-width) var(--icon-width) 0 0;
    border-color: var(--icon-color);
    transform: translateY(-50%) rotate(45deg);
}

/* banner */
.article--banners {
    margin-top: 24px;

    &>article:not(:first-child) {
        margin-top: 24px;
    }

    &>article figure {
        border-radius: var(--border-radius);
        overflow: hidden;
        border: 1px solid var(--color-lightgray3);
    }

    &>article figcaption {
        margin-top: 8px;
    }

}

/* Main Content */
.main--headding-title {
    padding-top: calc(1cap + 60px);

    & p {
        letter-spacing: 0.8px;
    }

    & h1 {
        font-size: 2.25rem;
        letter-spacing: 1.8px;

        @media screen and (max-width: 767.98px) {
            font-size: 1.75rem;
            letter-spacing: 1.4px;
        }
    }

    & .pankuzu--list {
        margin-top: 42px;
        margin-bottom: 42px;
        display: flex;
        align-items: center;
        gap: 16px;

        @media screen and (max-width: 767.98px) {
            display: none;
        }

        &>.pankuzu--item {
            color: #6E6E6E;
            display: contents;

            &.current {
                color: var(--color-orange);
            }
        }
    }
    
}


.article--main_content {
    margin-top: 40px;
    padding-bottom: 100px;
    background-color: var(--color-white);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.article--main_content--item:not(:first-child) {
    margin-top: 64px;
}

.article--main_content--item:first-child {
    padding-top: 80px;
}

@media (max-width: 767.98px) {

    .article--main_content--item:first-child {
        margin-top: 0;
        padding-top: 40px;
    }

}

/* banner */
.banner--list {
    display: flex;
    gap: 24px;

    &>.banner--item figure {
        border-radius: var(--border-radius);
        overflow: hidden;
        border: 1px solid var(--color-lightgray3);
    }

    &>.banner--item figcaption {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .banner--list {
        flex-direction: column;
    }
}

/* guidance */
.guidance--list {
    margin-top: 100px;

    &>.guidance--list-inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
        justify-items: center;
        align-items: start;
        gap: 16px;

        &>.guidance--item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            &>figure {
                border: 1px solid #383838;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 145px;
                height: 145px;
                border-radius: var(--border-radius);
                transition: var(--animation-transition);

                &>img {
                    height: 65px;
                    width: auto;
                }
            }

            &>figcaption {
                margin-top: 8px;
                text-align: center;
                transition: var(--animation-transition);
            }

            &:hover {
                &>figure {
                    border: 2px solid var(--color-orange);
                    background-color: var(--color-orange-hover);
                }

                &>figcaption {
                    color: var(--color-orange);
                }
            }
        }
    }
}

.xs {
    display: none;
}

.xs-none {
    display: inline;
}

@media (max-width: 499.98px) {
    .guidance--list {
        .xs-none {
            display: none;
        }

        .xs {
            display: inline-block;
        }

        &>.guidance--list-inner {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;

            &>.guidance--item {

                &>figure {
                    width: min(100px, 24vw);
                    height: min(100px, 24vw);

                    &>img {
                        height: 48px;
                        width: auto;
                    }
                }
            }
        }
    }
}

/* map */
#accessmap {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: calc(460px + 300px);
    margin-top: -180px;
}



/* footer */

.footer--inner {
    padding-bottom: 80px;
}

.footer--nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: end;

    &>li {
        border-right: 1px solid #707070;
        padding-right: 24px;
    }

    &>li:last-child {
        border-right: none;
        padding-right: 0;
    }

    &>li>a {
        color: #707070;
    }
}

.footer--content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    color: #707070;
    gap: 16px;

    & img {
        max-width: 220px;
        width: 100%;
    }

    & .footer--banner {
        display: flex;
        gap: 24px;

        & a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 280px;
            padding: 16px;
            background-color: var(--color-white);
            border: 1px solid var(--color-lightgray3);

            & img {
                max-height: 32px;
                object-fit: contain;
            }
        }
    }

    &>.footer--left {
        align-items: center;

        &>address {
            margin-top: 16px;
            font-weight: 400;
        }
    }

    &>.footer--right {
        &>.footer--banner {
            display: flex;
            gap: 24px;
        }

        &>.copyright {
            margin-top: 42px;
        }
    }
}

@media (max-width: 767.98px) {
    .footer--inner {
        padding-inline: 20px;
    }

    .footer--nav ul {
        row-gap: 12px;
        justify-content: center;
    }

    .footer--content {
        flex-direction: column;
        align-items: start;
        gap: 24px;

        &>.footer--left {
            width: 100%;
            align-items: start;
            gap: 16px;

            & img {
                width: 60%;
                min-width: 220px;
            }

        }

        &>.footer--right {
            width: 100%;

            &>.footer--banner {
                flex-direction: column;

                & img {
                    max-width: unset;
                    width: 100%;
                }
            }

            &>.copyright {
                text-align: center;
            }

        }
    }
}

/* goToTop */
.pagetop--wrapper {
    width: 48px;
    height: 48px;
    position: fixed;
    bottom: 2rem;
    right: 2rem;

    &:hover a {
        opacity: 0.7;
    }
}