@charset "utf-8";
/* 共通デバイススタイル */
div {
    box-sizing: border-box;
}

/*----------------------------------
= テキスト
----------------------------------*/
.h-title {
    font-size: 18px;
}
.b {
    font-weight: 700;
}
.small {
    font-size: 0.75rem;
}
.large {
    font-size:1.5rem;
}
.red {
    color: #E73538;
}
.green {
    color: #31a96f;
}
.blue {
    color: #36a9d1;
}
.gray {
    color: #A9A9A9;
}
.orange {
    color: #f79e22;
}
p {
    margin-bottom: 0.25rem;
}
.bi {
    margin-right: 0.25rem;
}
.center {
    text-align: center;
}
/*----------------------------------
= フォーム
----------------------------------*/
::placeholder {
    color: #CCC;
}
.formTitle {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.formGroup {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.formGroup label {
    font-size: 14px;
    font-weight: 600;
	margin-bottom: .25rem;
	color: #333;
	height: auto;
}
.formGroup .form-selectGr{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.form-selectGr label {
	font-weight: 400;
}
.form-col-5 {
    width: 50%;
}
.form-col-3 {
    width: 30%;
}
.formTerms {
    color: #a9a9a9;
    font-size: 12px;
}
.form-control {
    width: 100%;
    height: 48px;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dadada;
    box-sizing: border-box;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}
.form-error {
	border-color: red;
	background-color: #F8D7DA;
}
.formConditions {
    color: #5A5F73;
    font-size: 12px;
    line-height: 1.25rem; 
}
.frame {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
}
.inputField .form-control {
    margin-right: -1px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.inputField .fl-row {
    gap: 0px;
}
.delFormBtn {
    height: 48px;
    background-color: #fff;
    border: 1px solid #dadada;
    box-sizing: border-box;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    margin: 0;
    white-space: nowrap;
}
.delFormBtn:hover, .delFormBtn:active{
    background-color: #CCC;
}
.file-title {
    font-size: 1rem;
}
.form-file {
    width: 100%;
}
.formCaution {
    margin-top: .25rem;
}
.uploadBox .hidden {
    display: none;/*事業選択すると要素を隠します*/
}
.passwordForm {
	position: relative;
	display: inline-block;
	width: 100%;
}
.passwordForm .toggle-password {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	cursor: pointer;
}
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance:textfield !important;
}
@media (max-width: 768px) {
    .form-col-5 {
    width: 100%;
}
    .form-col-3 {
    width: 50%;
}
    .formGroup .form-selectGr{
        grid-template-columns: repeat(2, 1fr);
	}
}
/*----------------------------------
= チェック、ラジオボタン
----------------------------------*/
.radioItem {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    cursor: pointer;
}
.radio {
    appearance: none;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 0 transparent;
    margin: 0;
}

.radio:checked {
    border: 2px solid #31a96f;
    background-color: #FFF;
}

.radio:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    transform: translate(-50%, -50%);
    background-color: #31a96f;
    border-radius: 50%;
}
.radioItem .radio:disabled {
    opacity: 0.4;
}
/*トグルボタン*/
.tgl-btn-1 {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 24px;
    border-radius: 50px;
    background-color: #dddddd;
    cursor: pointer;
    transition: background-color .4s;
}

.tgl-btn-1:has(:checked) {
    background-color: #31a96f;
}

.tgl-btn-1::after {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    background-color: #fff;
    content: '';
    transition: left .4s;
}

.tgl-btn-1:has(:checked)::after {
    left: 18px;
}

.tgl-btn-1 input {
    display: none;
}
/*----------------------------------
= ボタン
----------------------------------*/
.btn {
    padding: 4px 12px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}
.btn:hover, .btn:active {
    opacity: 0.7;
}
.btn-md {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-lg {
    width: 50%;
    height: 48px;
    line-height: 40px;
    font-size: 1rem;
}
.btn-df {
    color: #000;
    background-color: #FFF;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
}
.btn-red {
    color: #FFF;
    background-color: #EF233F;
    border: 1px solid #EF233F;
    border-radius: 4px;
}
.btn-blue {
    color: #FFF;
    background-color: #36a9d1;
    border: 1px solid #36a9d1;
    border-radius: 40px;
}
.btn-out-blue {
    color: #36a9d1;
    background-color: #FFF;
    border: 2px solid #36a9d1;
    border-radius: 40px;
}
.btn-green {
    color: #FFF;
    background-color: #31a96f;
    border: 1px solid #31a96f;
    border-radius: 4px;
}
.btn-out-green {
    color: #31a96f;
    background-color: #FFF;
    border: 1px solid #31a96f;
    border-radius: 4px;
}
.accordionInfo-btn {
    border: none;
    outline: none;
    background-color: transparent;
    display: block;
    margin-left: auto;
    color: #0096cd;
    font-size: 11px;
}
.addBtn {
    border: none;
    outline: none;
    background-color: transparent;
    display: block;
    margin-bottom: 0.75rem;
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s;
    &:before{
        display: inline-block;
        width: 1rem;
        height: 1rem;
        margin: 0 3px 0 0;
        padding: 0.2rem;
        content:'+';
        background-color: #5A5F73;
        color: #fff;
        border-radius: 50%;
    }
    &:hover{
        transform: translateY(4px);
    }
}
.fixed-btn {
    position: fixed;
    bottom: 16px;
    left: 5%;
    width: 90%;
    z-index: 999;
}
.form-btn {
    max-width: 960px;
	width: 100%;
	margin: auto;
	background-color: #B50003;
	border: none;
	color: #fff;
	text-align: center;
	padding: .75rem;
	border-radius: .25rem;
}
.form-btn:disabled {
	opacity: 0.7;
}
@media (max-width: 480px) {
    .fixed-btn {
    bottom: 80px;
}
    .btn-lg {
    width: 100%;
}
}
/*----------------------------------
= アラート
----------------------------------*/
.alert {
    width: 100%;
    padding: 8px 16px;
    margin-bottom: 1rem;
    border: 1px solid;
    border-radius: 0.25rem;
}
.alert-primary {
    background-color: #CFE2FF;
    border-color: #CFE2FF;
    color: #052C65;
}
.alert-primary a {
    color: #052C65;
    text-decoration: underline;
}
.alert-error {
    background-color: rgba(248,215,218,1.00);
    border: 1px solid #f1aeb5;
    color: rgb(88,21,28);
}
.alert-error a {
    color:  rgb(88,21,28);
    text-decoration: underline;
}
.alert-warning {
    background-color: rgba(255,243,205,1.0);
    border: 1px solid rgba(255,230,156,1.00);
    color: rgba(102,77,3,1.00);
}
.alert-warning a {
    color: rgba(102,77,3,1.00);
    text-decoration: underline;
}
.btn-alClose{
    float: right;
    color: #000;
    opacity: .2;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 1px 0 #FFF;
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.btn-alClose:hover {
    opacity: .5;
}
/*----------------------------------
= スペース
----------------------------------*/
.sp_b_4 {
    margin-bottom: .25rem;
}
.sp_b_8 {
    margin-bottom: .5rem;
}
.sp_b_16 {
    margin-bottom: 1rem;
}
.sp_b_24 {
    margin-bottom: 1.5rem;
}
.sp_b_32 {
    margin-bottom: 2rem;
}
.pR {
    text-align: right;
}
.maC {
    margin: 0 auto;
}

/*----------------------------------
= flex
----------------------------------*/
.fl-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.fl-row {
    display: flex;
    gap: 0.5rem;
}
.fl-sb {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

/*----------------------------------
= table
----------------------------------*/
.df-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.df-table thead {
    background: #EAEAEA;
}
.df-table th, .df-table td {
    border : 1px solid #CCC;
    padding: .5rem;
}
.df-table a {
    color: #0032BB;
}
.table1 {
    border-collapse: collapse;
    width: 100%;
}
.table1 tr {
    border-bottom: 1px solid;
    border-color: #D4D4D4;
}
.table1 th, .table1 td {
    padding: 16px 8px;
    vertical-align: middle;
}
.table1 th {
    font-weight: 700;
    text-align: left;
}
.table1 .tb-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.table1 .tb-img-s {
    width: 40px;
    height: 40px;
}
.table1 .tb-c {
    display: flex;
    align-items: center;
    gap: 8px;
}
.table2 {
    border-collapse: collapse;
    width: 100%;
}
.table2 thead {
    background-color: #bfd2dd;
    color: #666;
}
.table2 th {
    font-weight: normal;
    text-align: left;
    padding: 0.25rem 1rem;
}
.table2 tr {
    border-bottom: solid 1px #d7e5ed;
}
.table2 td {
    padding: .75rem 0.5rem;
}
.table2 tbody tr{
    background-color: rgb(240, 245, 248);;
}
.table2 tbody tr:nth-child(2n+1) {
    background-color: #FFF;
}
.no-wrap {
    white-space: nowrap;
}
/*----------------------------------
= li
----------------------------------*/
.listBox_fl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
    border-bottom: 1px solid #D4D4D4;
    gap: 8px;
    word-break: break-all;
}
.listBox_fl p {
    margin: 0;
}
/*----------------------------------
= タブ
----------------------------------*/
.tab {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.tab > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: 8px 0;
    color: #A9A9A9;
    font-weight: 600;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}

.tab > label:hover {
    background-color: #F4F4F4;
}

.tab .no-input {
    display: none;
}

.tab > div {
    display: none;
    width: 100%;
    background-color: #fff;
}

.tab .tabLabel:has(:checked) {
    border-bottom: 4px solid #31a96f;
    color: #000;
    background-color: #FFF;
}

.tab label:has(:checked) + div {
    display: block;
}
/*----------------------------------
= 検索バー
----------------------------------*/
.searchBox li {
    padding: .5rem 0;
    word-break: break-all;
}
.liDrop > ul {
  display: none;
  margin-left: 16px; /* 階層感を出すためのインデント */
}
.liD1 {
    padding: .5rem 0;
    cursor: pointer;
}
.liDrop .listCount {
    color: #A9A9A9;
    font-size: 12px;
    margin-left: 0.25rem;
}
/*----------------------------------
= フッターナビ
----------------------------------*/
.navigationBottom {
    position: fixed;
    bottom: 0;
    background: #FFF;
    border-top: 1px solid #D4D4D4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
    width: 100vw;
    z-index: 1000;
}
.naviBottom-box {
    background-color: #FFF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 56px;
    outline: none;
    padding: 8px;
    position: relative;
    width: 100%;
    color: #333;
    white-space: nowrap;
    font-size: 9px;
}
.naviBottom-icon {
    width: 24px;
    height: 24px;
}
.naviBottom-icon .bi {
    margin: 0;
}
.noti-icon {
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 24px;
    display: inline-block;
    border: 1px solid #EF233F;
    border-radius: 14px;
    box-sizing: inherit;
    color: #FFF;
    font-weight: 700;
    height: 10px;
    line-height: 10px;
    min-width: 10px;
    text-align: center;
    background: #EF233F;
}
.navigationBottom .noti-icon {}
@media (min-width: 481px) {
    .navigationBottom {
        display: none;
    }
}