@charset "utf-8";
/*ios only*/
a, button, li, input[type="submit"], input[type="radio"], input[type="checkbox"], label
{
	-webkit-tap-highlight-color: transparent;
}
/* 共通デバイススタイル */
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.5rem;
    margin-bottom: 0.25rem;
}
.form-sort {
	width: auto;
	font-size: 14px;
	border-radius: .5rem;
	background-color: #FFF;
	border: 2px solid #dadada;
	color: #333;
	padding: 8px 8px;
}
.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;
}
.checkboxItem {
    display: flex;
    align-items: center;
	justify-content: center;
    column-gap: 4px;
    width: fit-content;
    line-height: 1;
    cursor: pointer;
}
.checkbox1 {
    appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e7;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 0 0 transparent;
	background-color: #fff;
}

.checkbox1:checked {
    border: 2px solid #c4bebd;
    background-color: #c4bebd;
}

.checkbox1:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 2px;
    width: 9px;
    height: 4px;
    border-bottom: 3px solid #DC3023;
    border-left: 3px solid #DC3023;
    transform: rotate(-45deg);
}
.checkbox1:disabled {
    opacity: 0.4;
}
.checkbox1:hover {
    border-color: #c4bebd;
}
/*----------------------------------
= ボタン
----------------------------------*/
.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: #dc3023;
    border: 1px solid #dc3023;
    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;
}
.btn-df {
    color: #000;
    border: 1px solid #ccc;
}
.btn-edge {
    border-radius: 48px;
}
.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;
}
.disabled {
	background-color: rgba(239,239,239,0.3);
	border: rgba(118,118,118,0.3) 1px solid ;
	color: rgba(16,16,16,0.3);
}
.disabled:hover {
	opacity: 1;
}
@media (max-width: 480px) {
    .fixed-btn {
    bottom: 80px;
}
    .btn-lg {
    width: 100%;
}
}
/*----------------------------------
= タグ
----------------------------------*/
.tag {
	padding: 4px 16px;
	border-radius: 3rem;
	margin-right: .5rem;
}
.tag-green {
	background-color: #31A96F;
	color: #FFF;
}

/*----------------------------------
= アラート
----------------------------------*/
.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 #dc3023;
    color: #000;
    background-color: #FFF;
}

.tab label:has(:checked) + div {
    display: block;
}
/*----------------------------------
= 検索バー
----------------------------------*/
.searchBox li {
    padding: .5rem 0;
    word-break: break-all;
}
/*----------------------------------
= 検索ボックス20250920
----------------------------------*/
.searchBox {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	padding: 1.5rem;
	border-radius: 2rem;
	box-shadow: 0 1px 6px 0 #20212447;
	margin-top: 24px;
}
.searchForm {
	display: flex;
	position: relative;
}
.searchForm label {
	width: 100%;
}
.searchForm input {
    width: 100%;
    height: 40px;
    padding: 4px 1rem;
    border: none;
    border-radius: 2rem;
    box-sizing: border-box;
    background-color: #e1e5e7;
    font-size: 1em;
    outline: none;
}

.searchBox input::placeholder {
    color: #777777;
}
.searchForm button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 40px;
    border: none;
    background-color: #dc3023;
	border-radius: 2rem;
    cursor: pointer;
	position: absolute;
	right: 0;
}

.searchForm button::before {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}
.searchBox .tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: .5rem;
}
.searchBox .search-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	font-size: 18px;
	padding: .3rem 1rem;
	background-color: #fff;
	border: 2px solid #e1e5e7;
	border-radius: 2rem;
	font-weight: 700;
}
.search-tab svg {
	color: #dc3023;	
}
.search-tab:hover {
	background-color: #dc3023;
	color: #fff;
	border-color: #dc3023;
}
.search-tab:hover > svg {
	color: #fff;
}
.searchBox input[name="tab_search"] {
	display: none;
}
.searchBox .seTabCon {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 1s ease;
}

/* 開いたときに付与するクラス */
.seTabCon.open {
	max-height: fit-content; /* 想定される最大の高さに設定 */
	opacity: 1;
}
.searchBox .tab-content {
	display: none;
	padding: 1rem 0;
}
.tabs input[name="tab_search"]:checked + .search-tab {
	background-color: #dc3023;
	color: #fff;
	border-color: #dc3023;
}
.tabs input[name="tab_search"]:checked + .search-tab svg {
	color: #fff;
}
.searchBox .sbm-btn {
	width: 100%;
	height: 48px;
	background-color: #DC3023;
	border: 1px solid #DC3202;
	border-radius: 2rem;
	color: #FFF;
	font-weight: 700;
}
.searchBox .reset-btn {
	width: 100%;
	height: 48px;
	background-color: #fff;
	border: 1px solid #e1e5e7;
	border-radius: 2rem;
	color: #333;
	font-weight: 700;
}
.searchBox .sbm-btn:hover, .searchBox .reset-btn:hover{
	opacity: .7;
}
.searchBox .hover:hover {
	background-color: #e1e5e780;
}
.searchList > li{
	cursor: pointer;
}
.searchList li label:hover {
	color: #c4bebd;
	font-weight: 700;
}
@media (max-width: 768px) {
	.searchBox {
		border: none;
		box-shadow: none;
		margin-top: 0;
	}
    .searchBox .search-tab {
		height: auto;
		font-size: 12px;
		padding: .5rem;
}
}
/*area*/
.main-ar-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2列にする */
	gap: 0; /* すき間が不要なら0 */
}
.main-ar-grid li {
	padding: .5rem .25rem .5rem 0;
}
.main-ar-grid .main-ar-list {
	display: flex;
	align-items: center;
	word-break: break-all;
}
.searchBox .ar-contents {display: none;}
.searchBox .active {display: block;}
.ar-contents .back {
	display: inline-block;
	color: #36a9d1;
}
.main-ar-grid li img {
	width: 48px;
	height: 48px;
	border-radius: 2rem;
	margin-right: .5rem;
}
.searchList .liSub-details {
	width: 80%;
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 2列にする */
	gap: 0; /* すき間が不要なら0 */
	background-color: #e1e5e780;
}
.searchList .sbLst-box li {
	border: 1px solid #ccc;
}
.searchList .liDrop .list-sub {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.liDrop > ul {
  display: none;
  margin-left: 1.5rem; /* 階層感を出すためのインデント */
}
.liD1 {
    padding: .5rem 0;
    cursor: pointer;
}
.liDrop .listCount {
    color: #A9A9A9;
    font-size: 12px;
    margin-left: 0.25rem;
}
.liDrop .op-arrow {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #a9a9a9;
    border-right: 3px solid #a9a9a9;
    content: '';
    transition: transform .3s;
}
/* open時に回転 */
.liDrop .op-arrow.open {
    transform: rotate(225deg);
}
@media (max-width: 480px) {
	.searchList .liSub-details {
		width: calc(100% - 1rem);
		grid-template-columns: repeat(2, 1fr);
}
}
/*----------------------------------
= フッターナビ
----------------------------------*/
.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;
    }
}