@charset "utf-8";

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, a, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, textarea, button, input {
    background: transparent;
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: "Noto Sans JP", serif;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.3;
    vertical-align: baseline;
}
body {
    min-width: 950px;
    min-height: 100dvh;
    background-color: #FAFAFA;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
ul, ol {
    list-style: none
}
blockquote, q {
    quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}
a {
    background: transparent;
    vertical-align: baseline;
    color: var(--text-color);
    text-decoration: none
}
img,
picture {
    max-width: 100%;
    height: auto;
    vertical-align: top
}
ins {
    background-color: #ff9;
    color: var(--text-color);
    text-decoration: none
}
mark {
    background-color: #ff9;
    font-style: italic;
    font-weight: 700
}
del {
    text-decoration: line-through
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}
input, select {
    vertical-align: middle
}
button {
    padding: 0;
    background: none;
    border: none;
    font-family: "Noto Sans JP", serif;
    cursor: pointer;
    vertical-align: top
}
summary {
    display: block;
    cursor: pointer
}
summary::-webkit-details-marker {
    display: none
}
svg {
    speak: none;
    vertical-align: top;
    fill: var(--text-color);
}
[aria-hidden="true"] {
    display: none;
}
*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
::placeholder {
    color: var(--gray-text-color);
}
:root {
    --main-color: #2E6ACE;
    --main-dark-color: #1A3D6D;
    --main-dark-light-color: #31517C;
    --text-color: #232A35;
    --sub-text-color: #8692A4;
    --gray-text-color: #707070;
    --caution-color: #FF0000;
    --line-color: #BEC7D6;
    --light-bg-color: #E8EEFA;
    --yellow: #FFE500;
    --green: #00A4AA;
    --pink: #F45D9C;
    --orange: #F48A5D;
    --border-radius: 4px;
    --box-shadow: 0 4px 4px rgba(0 0 0 / 25%);
}

/*-------------------------------------------------------------------------
LAYOUT
-------------------------------------------------------------------------*/

/* HEADER
--------------------------- */
.l-header {
    height: 40px;
    background-color: var(--main-dark-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}

/*
--------------------------- */
.user {
    position: relative;
}
.user__btn {
    width: 186px;
    height: 32px;
    background-color: var(--main-dark-light-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px;
}
.user__name {
    display: flex;
    gap: 7px;
    align-items: center;
    font-weight: 700;
    color: #fff;
}
.user__name svg {
    width: 19px;
    height: 19px;
    fill: #fff;
}
.user__btn > svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}
.user__btn.is-active > svg {
    transform: rotate(180deg);
}
.options {
    width: 100%;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    transform: translateY(-5px);
}
.options.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.options__btn {
    width: 100%;
    height: 43px;
    background-color: #fff;
    border: 1px solid var(--line-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0 9px;
    text-align: left;
}


/* CONTENTS
--------------------------- */
.l-contents {
    height: calc(100vh - 40px);
    display: flex;
}
/* スライド用設定  */
.l-primary,
.l-side {
    transition: .3s ease;
}
.l-primary.is-wide {
    margin-left: calc(-200px + 45px);
}
.l-side.is-hide {
    transform: translateX(calc(-200px + 45px));
}

/* LAYOUT  */
.l-primary {
    flex: 1;
    padding: 20px 30px 50px;
}
.l-main {
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
}
.l-side {
    width: 200px;
    min-width: 200px;
    background-color: var(--main-dark-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 7px;
}

/* ACTION
--------------------------- */
.action {
    white-space: nowrap;
}
.action > * + * {
    margin: 6px 0 0;
}
.action__link {
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 7px 10px;
    font-weight: 700;
    color: #fff;
}
.action__link.is-current,
.action__link:hover {
    background-color: var(--main-dark-light-color);
}
.action__link svg {
    width: 19px;
    height: 19px;
    fill: #fff;
}

/* TOGGLE
--------------------------- */
.toggle {
    display: flex;
    justify-content: flex-end;
}
.toggle__button {
    display: flex;
    align-items: center;
}
.is-hide .toggle__shrink {
    display: none;
}
.toggle__spread {
    display: none;
}
.is-hide .toggle__spread {
    display: block;
    margin-right: 10px;
}
.toggle__button svg {
    width: 19px;
    min-width: 19px;
    height: 19px;
    fill: #fff;
}
.toggle__text {
    font-weight: 700;
    color: #fff;
}
.toggle__text > i {
    color: #fff;
}

/*-------------------------------------------------------------------------
MD UI
-------------------------------------------------------------------------*/
.ui-vertical-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
}
.md-hgroup {
    margin: 0 0 35px;
}
.md-hgroup__headline {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
}
.ui-fit-img {
    overflow: hidden;
}
.ui-fit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ui-panel {
    background-color: #fff;
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--line-color);
    box-shadow: 0 3px 3px rgba(0 0 0 / 10%);
}
.ui-padding20 {
    padding: 20px;
}

/* #
--------------------------- */
[class*="ui-btn--"] {
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
[class*="ui-btn--"].is-size-small {
    width: 100px;
    height: 24px;
}
.ui-btn--line_main {
    background-color: #fff;
    border: 1px solid currentColor;
    color: var(--main-color);
}
.ui-btn--line_main:hover {
    background-color: var(--main-color);
    color: #fff;
}
.ui-btn--line_main:hover svg {
    fill: #fff;
}
.ui-btn--line_dark {
    background-color: #fff;
    border: 1px solid currentColor;
}
.ui-btn--line_dark:hover {
    background-color: #ccc;
}
[class*="ui-btn--flat_"]:hover {
    opacity: .8;
}
.ui-btn--flat_main {
    background-color: var(--main-color);
    color: #fff;
}
button.toLogin {
    flex: 1;
    width: 100%;
    height: 44px;
}
.reset_password .toLogin {
    width: 310px;
    margin: 20px auto 0;
}

/* LABEL
--------------------------- */
[class*="ui-label--"] {
    max-width: 100px;
    min-width: 64px;
    height: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}
.ui-label--open { background-color: var(--green);}
.ui-label--kanri { background-color: var(--green);}
.ui-label--estimate { background-color: var(--pink);}
.ui-label--request { background-color: var(--pink);}
.ui-label--join { background-color: var(--pink);}
.ui-label--ordered { background-color: #2E6ACE;}
.ui-label--construction { background-color: var(--orange);}
.ui-label--own-company { background-color: #707070;}
.ui-label--approved { background-color: #707070;}
.ui-label--cancel { background-color: #707070;}

/*-------------------------------------------------------------------------
¹²Í¨²¿Æ·
-------------------------------------------------------------------------*/

/* ‘ø¤ë¥Ü¥¿¥ó
--------------------------- */
.return {
    padding: 10px 0;
}
.return__link {
    width: fit-content;
    display: flex;
    align-items: center;
}
.return__link svg {
    width: 24px;
    height: 24px;
}

/* ÏÂ²¿¤ËÔOÖÃ
--------------------------- */
.action-bar {
    width: calc(100% + 60px);
    background-color: #333;
    display: flex;
    gap: 7px;
    justify-content: center;
    margin: 0 0 0 -30px;
    padding: 20px;
}
.action-bar button {
    flex: 1;
    max-width: 255px;
    height: 44px;
}
.action-bar input {
    flex: 1;
    max-width: 255px;
    height: 44px;
}
.action-bar .ui-btn--flat_main {
    font-weight: 700;
    cursor: pointer;
}

/*
--------------------------- */
.page-tabs {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
}
.page-tabs.is-fixed {
    width: 100%;
    position: fixed;
    bottom: 0;
}
.page-tab {
    width: 116px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-tab[aria-selected="true"] {
    border-bottom: 2px solid currentColor;
    color: var(--main-color);
}
.page-tab-panel {
    min-height: calc(100% - 46px);
    padding: 20px 30px;
}

/* エラー
--------------------------- */
.form-list__error {
    color: var(--caution-color);
    font-weight: bold;
}

.agreement_pdf {
    text-decoration: underline;
}
.agreement {
    margin-top: 5px;
}
