html,body {
	width:100%;
	height:100%;
	margin:0;
	font-size:1rem;
	box-sizing: border-box;
	position: relative;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: "Helvetica Neue",  Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

footer {
	margin:30px 0;
	width:100%;
	height:50px;
}

header, footer, nav, section, aside, article{
	box-sizing: border-box;
	display: block;
}

h1,h2,h3,h4,h5,h6,a,img,div,p,form,ul,li,ol {
	box-sizing: border-box;
	margin:0px;
	padding:0px;
	border:none;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

body{
    background: #FEF8F8;

}

p,li,ul{
	line-height: 1.8;
}
a {
	color:#8d5111;
	text-decoration: none;
	font-weight: 600;
}
.user_body header .hd_menu_ul li a.disabled {
	background: #ccc;
	cursor: auto;
}
ul,ol{
	padding-left: 20px;
	margin: 20px 0;
}

ol {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
	margin: 0;
  }

  ol li{
	padding-left: 35px;
	position: relative;
	margin-bottom: 5px;
  }

  ol li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #f47c7a;
	border: 1px solid;
	border-radius: 50%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 26px;
	width: 26px;
	color: #ffffff;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
  }

.container {
	width: 90%;
	max-width: 750px;
	margin: auto;
	padding-bottom:2rem;
	padding-top: 1rem;
}

.mini {
	font-size:0.8rem;
}

.clear{
    clear: both;
}

.flex {
	display: flex;
}

.flex-w {
	display: flex;
	flex-wrap: wrap;
}

.relative {
	position: relative;
}

.fc {
	color:#ff696f;
	font-weight: 600;
}
.required,
.red {
	color:red;
}
.blue {
	color:rgb(0, 0, 255);
}
.bold {
	font-weight:bold;
}
.old {
	opacity:0.5;
}
.h_blue {
	color:#fff;
	background-color: #006bff;
}
button,
.btn {
	transition: .3s;
	outline: 1px solid;
	outline-color: #333;
	outline-offset: 0px;
}

button:disabled,
.btn:disabled {
	background-color: #ebebeb;
	border-color: #ccc;
	color:#969494
}
button.non_eff {
	outline: 0px;
	border:1px solid #000;
}
button:hover:not([disabled]),
.btn:hover:not([disabled]) {
	animation: light .8s infinite;
}
@keyframes light {
	100% { 
		outline-color: transparent;
		outline-offset: 12px;
	}
}

.bd {
	border: 1px solid #565656;
	border-radius: 4px;
}

.text-center {
	text-align:center;
}

.text-left {
	text-align:left;
}

.text-right {
	text-align:right;
}

.sz1 {	font-size:1rem;}
.sz2 {	font-size:1.1rem;}
.sz3 {	font-size:1.15rem;}
.sz4 {	font-size:1.25rem;}
.sz15 {	font-size:1.5rem;}
.sz175 {	font-size:1.75rem;}
.sz20 {	font-size:2.0rem;}

.ma {
	display:block;
	margin:0.75rem auto;
}

.malest {
	margin-left:auto;
}

.mt-2 {	margin-top:0.2rem;}
.mt-def {	margin-top:30px;}
.mr-2{	margin-right:0.2rem;}
.mb-2{	margin-bottom:0.2em;}
.mb-ss{	margin-bottom:15px;}
.mb-s{	margin-bottom:25px;}
.mb-def{	margin-bottom:30px;}
.mb-m{	margin-bottom:50px;}
.mb-l{	margin-bottom:75px;}
.mb-100{	margin-bottom:100px;}
.mw230 {	max-width:230px;}

.w100 {
	width:100%;
}


/***********************/ 
/* ボタンCSS           */

.btn_flex{
	display: flex;
	align-items: center;
}

.btn_center{
	justify-content: center;
}

.btn_haji{
	justify-content: space-between;
}
.btn_end {
	justify-content: flex-end;
}


.btn_def ,
.btn_list a{
	display: block;
	border-radius: 5px;
	font-weight: 600;
	font-size:1.1rem;
	padding: 20px 15px;
	border: none;
	outline-color: #fda5a5;
	box-shadow: 0px 2px 2px rgb(197, 197, 197);
	width: 80%;
	max-width:250px;
	letter-spacing: 2.0px;
	cursor: pointer;
	margin: 20px auto;
}
.btn_def:disabled {
	background: #ccc;
	cursor: auto;
}
.btn_def.icon { 
	display: flex; /* アイコンとテキストを横並びに */
	align-items: center; /* 縦方向中央揃え */
	justify-content: start; /* アイコンとテキストを左揃え */
	flex-wrap: wrap;
}

.btn_def.short {
	width: 50%;
	max-width:150px;
	margin: 20px 10px;
}

.btn_def.mini {
	width: 25%;
	max-width:100px;
	margin: 20px 10px;
}

.btn_def.least {
	width: auto;
	/* max-width:100px; */
	margin: 5px;
	padding: 10px 15px;
	font-size:0.9rem;
}

.btn_def.w100{
	width: 100%;
	max-width: initial;
	margin: 20px auto;
	font-size: 1.5rem;
}

.btn_def.w100 span{
	display: block;
	font-size: 0.9rem;
}

.btn_list li{
	list-style: none;
}

.btn_list li a{
	max-width: 100%;
	width: 100%;
	font-size: 1.2rem;
	padding: 13px 15px;
	border: solid 1px #f57d78;
}


.btn_delete {
	background-color: #f57d78;
	border: none;
	color: #fff;
	position: relative;
}

.btn_red {
	background-color: #f57d78;
	border: none;
	color: #fff;
	position: relative;
}
.btn_red2 {
	background-color: #f57d78;
}
/* .btn_red:hover:not(:disabled) {
	background-color: #ff7d83;
} */

.btn_ruby{
	background-color: #ed1c24;	
}

.btn_red::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc( 100% - 10px );
	height: calc( 100% - 10px );
	border: solid 1px #fff;
	border-radius: 3px;
}


.btn_blue{
	background-color: #004099;
	border: none;
	color: #fff;
}
/* .btn_blue:hover:not(:disabled){
	background-color: #3865d3;
} */

.btn_gray{
	background-color: #999999;
	border: none;
	color: #fff;
}
/* .btn_gray:hover:not(:disabled){
	background-color: #a8a8a8;
} */

.btn_white,
.btn_list a{
	background-color: #ffffff;
	color: #8d5111;
}

.btn_orange{
	background-color: #f15a24;
	border: none;
	color: #fff;
}

.btn_green{
	background-color: #00a99d;
	border: none;
	color: #fff;
	outline-color: #1cc0aa;
}

.btn_light_blue{
	background-color: #0573b9;
	border: none;
	color: #fff;
	outline-color: #3594cf;
}

.btn_def.btn_right{
	margin: 20px 0 20px auto;
}

a.tel {
	text-decoration: underline;
    font-size: 1.1rem;
    font-weight: bold;
}


/***********************/ 
/* 入力欄              */

.hissu::after{
	content: "※必須";
	color: red;
	font-size: 0.7rem;
	margin-left: 15px;
}

.ninni::after{
	content: "（任意）";
	color: #ff696f;
	font-size: 0.7rem;
	margin-left: 15px;
}


/*フラッシュメッセージ*/
.flash-alert {
    position: relative;
    padding: 0.3rem 1.25rem;
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
	text-align: center;
}
.flash-alert-success {
    color: #1d643b;
    background-color: #d7f3e3;
    border-color: #c7eed8;
    z-index: 99;
}
.flash-alert-warning {
    background: #feff90;
	color: #555;
    z-index: 99;
}

.flash-alert-error {
    background: rgb(233, 60, 60);
    color: #fff;
    z-index: 99;
}
/*フラッシュメッセージ ここまで*/


/*　ポップアップ入力画面 */

#swhtml h4{
	background-color: #ffeddb;
    padding: 5px 10px;
    color: #772525;
    border-radius: 5px;
	margin: 30px auto 10px;
}


/* ///////////////////
   //スマホメニュー用
   ///////////////////
*/
.menu_title {
	margin: auto;
}
ul#menu {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}
ul#menu li {
	text-align:left;
	position: relative;
	padding-left: 35px; /* ▶ のスペースを確保 */
	background:#fd636a;
	color:#fff;
	margin-bottom:2px;
}
ul#menu li::before {
    content: "▶"; /* 表示する記号 */
    position: absolute;
    left: 10px;
    top: 0;
    transform: translateY(50%); /* ▶を縦方向に中央揃え */
    color: #fff; /* 記号の色を指定（必要に応じて変更） */
}
ul#menu #reservation {
	background:#fff;
}
ul#menu #reservation button {
	width:100%;
	max-width: 90%;
}

.menu-container {
	display: flex;
	align-items: center;
	border-bottom:3px solid #ff696f;
	padding-bottom:5px;
}
.menu-icon {
	display:none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-around;
	width: 25px;
	height: 25px;
	margin-right: 10px;
}
.menu-icon .bar {
	width: 100%;
	height: 3px;
	background-color: #d94d6c;
	transition: 0.3s;
}
/* "×"アイコンのスタイル */
.menu-icon.close .bar {
	background-color: transparent;
}
.menu-icon.close::before,
.menu-icon.close::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 3px;
	background-color: #d94d6c;
	top: 10px;
	left: 0px;
	transform-origin: center;
	transition: 0.5s;
}
.menu-icon.close::before {
	transform: rotate(45deg);
}
.menu-icon.close::after {
	transform: rotate(-45deg);
}
#menu {
	display: none;
	list-style: none;
	text-align: center;
}
#menu li {
	padding: 15px 0;
}
#menu a {
	color: #fff;
	text-decoration: none;
}

/* オーバーレイのスタイル */
#overlay {
	position: fixed;
	top: 35px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
	display: none;
	z-index: 1100;
}


/** ////////////////////// */
/* 画面追加分               */
/** ////////////////////// */

/* ログイン画面 */
.title_logo{
	margin-bottom: 25px;
}


@media (max-width: 768px) {.title_logo{ margin-top: -20px;}}

.title_logo img{
	display: block;
	width: 55%;
	max-width: 380px;
	margin: auto;
}

.login_div{
	width: 100%;
	max-width: 400px;
	margin: auto;
}

.login_div input{
	width: 100%;
}

/* スマホトップ */

.news_bar{
	background-color: #f57d78;
	color: #fff;
	padding: 8px 15px;
	overflow: hidden;
}
.news_bar a {
	color: #fff;
	text-decoration: underline;
}

.news_bar p,
.top_news p{
	margin: 0;
}

.midashi_p{
	background-color: #f57d78;
	color: #fff;
	font-weight: 600;
	padding: 8px 15px;
}

.flex.midashi_p{
	justify-content: space-between;
}

.flex.midashi_p a,
.flex.midashi_p a:visited{
	color: #fff;
	font-weight: normal;
}

.top_news{
	background-color: #fff;
	border: solid 1px #f57d78;
}

.top_news .top_news_con a,
.top_news .top_news_con a:visited{
	color: #000;
	display: block;
	padding: 10px 15px;
	border-bottom: dotted 2px #999;
}

.top_news .top_news_con a:nth-last-child(1){
	border-bottom: none;
}

.top_news .news_day{
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.top_news .cate_sys,
.top_news .cate_hoiku,
.top_news .cate_yakusho{
	display: inline-block;
	color: #fff;
	margin-left: 10px;
	padding: 3px;
	width: 80px;
	text-align: center;
	border-radius: 5px;
}

.top_news p span.cate_sys,
.top_news p span.cate_hoiku,
.top_news p span.cate_yakusho{
	line-height: 1rem

}

.top_news .cate_sys{ background-color: #29abe2;}
.top_news .cate_hoiku{ background-color: #f7931e;}
.top_news .cate_yakusho{ background-color: #662d91;}

.tile_menu3 .btn_def,
.tile_menu4 .btn_def{
	text-align: center;
	margin: 10px; 
	max-width: initial;
}

.tile_menu3 .btn_def{
	width: calc( ( 100% - 60px ) / 3 );
	padding: 0 3px 5px;
	min-height: 130px;
}

.tile_menu4 .btn_def{
	width: calc( ( 100% - 80px ) / 4 );
}

.tile_menu2 .btn_def{
	width: calc( ( 100% - 40px ) / 2 );
	margin: 20px 10px;
}

.tile_menu3 .btn_def img{
	display: block;
	width: 80%;
	max-width: 140px;
	margin: auto;
	padding: 10px 0 5px;
}

/* お問い合わせページ用 */

.contact-div{
	padding: 10px;
	border: solid 1px #f37b7b;
	background-color: rgba(255,255,255,0.7);
	margin: 20px 0;
}

.container .contact-div h3{
	margin: 0;
	margin-bottom: 10px;
}

.container .contact-div h4{
	margin-top: 20px;
	padding-top: 5px;
	font-weight: 600;
	color: #f37b7b;
	border-top: solid 1px #bbb;
}

.container .contact-div span.tel_b{
	font-weight: 600;
	color: #933535;
}


@media (max-width: 768px) {
	.container .contact-div h3{
		font-size: 18px;
	}
	.container .contact-div span.tel_b{
		display: block;
	}
}


/* トップ予約情報 */

.appo_div{
	/*border-bottom: solid 1px #999;*/
	padding: 25px 0 10px;
}
.one_person {
	/* border-bottom: solid 1px #999;
	margin-bottom:25px; */
}

.appo_detail{
	background-color: #fff;
	border: solid 1px #f57d78;
	padding: 10px;
}

.appo_detail .appo_day{
	display: flex;
	margin-bottom: 5px;
}

.appo_detail .appo_ste{
	font-size: 0.9rem;
	padding: 3px;
	border-radius: 5px;
	color: #fff;
	width: 80px;
	text-align: center;
	margin-right: 10px;
	font-weight: 600;
}

.appo_detail .appo_ste.def-ste{	background-color: #0098a3;}
.appo_detail .appo_ste.raisyo-ste{	background-color: #662d91;}
.appo_detail .appo_ste.kakutei-ste{	background-color: #0071bc;}
.appo_detail .appo_ste.kariyoyaku-ste{	background-color: #8cc63f;}
.appo_detail .appo_ste.cancel-ste{	font-size: 0.65rem; background-color: #f7931e;}

.appo_div .appo_user{
	display: flex;
	align-items: center;
}

.appo_user div,
.appo_user p{
	margin: 5px 10px;
}

.appo_detail .appo_btns {
	margin-left:20px;
	margin-bottom:20px;
}
.appo_detail .appo_btns button{
	margin-right:10px;
	min-width: 21%;
}

.face_icon{
	width: 15%;
	max-width: 80px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin: 5px 10px 5px 5px;
}

.face_icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.icon_off{
	display: none;
}


@media (max-width: 768px) {
	.tile_menu3 .btn_def,
	.tile_menu4 .btn_def{
		width: calc( ( 100% - 20px ) / 2 );
		margin: 5px; 
	}
}

@media (max-width: 330px) {
	#swhtml {
		width:95%;
	}
	.tile_menu3 .btn_def{
		width: 100%;
	}
	.tile_menu2 .btn_def{
		font-size:1.0rem;
	}
}
@media (max-width: 395px) {
	.appo_detail .appo_btns {
		margin-left: 5px;
	}
	.btn_def.least {
		padding: 10px 10px;
	}
}
@media (max-width: 355px) {
	.appo_detail .appo_btns {
		margin-left: 0px;
	}
	.btn_def.least {
		padding: 7px 5px;
		font-size: 0.85rem;
	}
}

@media (max-width: 319px) {
	.appo_detail .appo_btns button {
		margin-right: 10px;
	}
	.btn_def.least {
		padding: 7px 5px;
		font-size: 0.80rem;
	}
}


/** ////////////////////// */


/* ///////////////////
   //タブレットメニュー用 
   ///////////////////
*/
@media (max-width: 1020px) {
	.menu-icon {
		display:flex;
	}
	#menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top:35px;
		left:0;
		width: 85%;
		background-color: #fff0f0;
		z-index: 1101; /* オーバーレイの上に表示 */
	}
	#menu.show {
		display: flex;
	}
	/* オーバーレイが表示される時 */
	#overlay.show {
		display: block;
	}
}
/** ////////////////////// */


.p-1 {
	padding:0.25rem;
}

.p-2 {
	padding:0.5rem;
}

.p-3 {
	padding:0.75rem;
}

#indicators {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	align-items: center;
	padding:0.25rem 0 1.5em;
	-ms-flex-pack:distribute;
	justify-content:center;

}

#indicators div{
	margin: 0 2px;
}

.indicator {
	background-color:#ffffff;
	width: 35px;
	height: 35px;
	border: 1px solid #c2c2c2;
	border-radius: 50%;
	box-sizing: border-box;
	color:#919191;
	display: flex;
	justify-content: center;
	align-items: center;
}

.indicator.active {
	background-color:#F57D78;
	border: 1px solid #F57D78;
	color:#fff;
}
.indicator.activated {
	background-color:#fff;
	border: 1px solid #F57D78;
	color:#F57D78;
}

.triangle {
	width: 0;
	height: 0;
	/* border: 10px solid transparent;
	border-left: 15px solid #bfbfbf; */
	border: 5px solid transparent;
	border-left: 7px solid #bfbfbf;
	border-right: 0px solid transparent;
}
.triangled {
	width: 0;
	height: 0;
	/* border: 10px solid transparent;
	border-left: 15px solid #F57D78; */
	border: 5px solid transparent;
	border-left: 7px solid #F57D78;
	border-right: 0px solid transparent;
}

.container h1{
	margin-bottom: 30px;
}

h2{
    border-left: 12px solid #F37C79;
	font-weight: 600;
	color: #733939;
    padding: 0 0 0 15px;
	margin-bottom: 25px;
}

h2.swal2-title {
	border-left: none;
}

h2.number_h2{
	border-left: none;
	padding: 0;
}

h2.number_h2 span{
	padding: 15px;
	position: relative;
	color: #fff;
	margin-right: 10px;
}

h2.number_h2 span::before{
	content: "";
	position: absolute;
	background-color: #F37C79;
	border: solid 1px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	top:50%;
	left: 50%;
	transform: translateY(-50%);
	translate: -50%;
	z-index: -100;
}

.container h3{
    font-size: 23px;
    font-weight: 600;
    padding: 0;
    color: #F37C79;
	margin: 35px 0 15px;
}

.container .title2{
	border-top: solid 1px #999;
	padding-top: 25px;
}

.container .img_con{
	margin: 20px auto;
}

.container .img_con img{
	width: 100%;
	max-width: 500px;
	display: block;
	margin: auto;
	border: solid 1px #9b9b9b;
}

input {
	padding:14px 10px;
	font-size: 1rem;
	box-sizing: border-box;
}

select {
	padding:14px 10px;
	font-size: 1rem;
	box-sizing: border-box;
	margin-bottom: 5px;
}

.hidden {
	display:none;
}

@media (max-width: 768px) {
	h2{
		font-size: 22px;
	}

	h3{
		font-size: 18px;
	}
}
@media (max-width: 386px) {
}


/****************************/
/*  モーダル（ポップアップ）
/****************************/
.modalBtnWrap {
	width: 300px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}
.modalBtnCont {
	position: relative;

	cursor: pointer;
}
.modalBtnCont::after {
    content: '';
    position: absolute;
    width: 0%;
    top: 85%;
    left: 0;
    border-top: solid 1px #f4885d;
    transition: 0.4s;
}
.modalBtnCont:hover::after{
    width: 100%;
}
.modalWrap {
	display: none;
	z-index: 1000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.modalBG {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.modalContInner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 1000px;
	max-width: 100%;
	background-color: #fff;
	max-height: 90%;
    overflow: hidden;
}
.modalCont {
	overflow-y: auto;
	min-height: 80vh;
}
.modalCont > * + * {
	margin-top: 10px;
}
.modalContInner > .modalClose + * {
	margin-top: 0;
}
.modalClose {
	display: block;
	position: absolute;
	top: 10.5px;
	right: 10.5px;
	width: 20px;
	height: 20px;
	overflow: hidden;
	cursor: pointer;
	z-index: 1001;
}
.modalClose::before,
.modalClose::after {
	content: "";
	background-color: #fff;
	position: absolute;
	top: -5px;
	right: 10px;
	width: 1px;
	height: 30px;
}
.modalClose::before {
	transform: rotate(45deg);
}
.modalClose::after {
	transform: rotate(-45deg);
}

.modalCont p.modal_top{
    height: 40px;
    line-height: 40px;
    background: #F37C79;
    padding-left: 15px;
    color: #fff;
    font-size: 20px;
}
.modalCont p.modal_top::after{
	content: "閉じる";
    float: right;
    color: #fff;
    font-size: 14px;
    margin-right: 40px;
}

.modalCont div.modal_body{
    padding: 10px;
}
/** ////////////////////// */


/****************************/
/*  日付モーダル（ポップアップ）
/****************************/
#modalODateMonth,
#modalODateDay {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

#MonthSelectArea div,
#DaySelectArea div{
  margin-bottom:0.45rem;
}
.month {
  width: 80px;
  display: inline-block;
}
.day {
  width: 50px;
  margin:0 auto;
}
@media (max-width: 768px) {
	.day {
		width: 40px;
	}
}
@media (max-width: 406px) {
	.o_date {
		display: unset !important;
	}
	.o_date_y_area {
		display: block !important;
		min-width:50% !important;
		max-width: 63% !important;
		margin-bottom:5px;
	}
	.day {
		width: 40px;
		font-size:22px;
	}
}

.modal-body .month.disabled,
.modal-body .day.disabled {
  background-color: rgb(190, 189, 189);
}
.modal-body .month.active,
.modal-body .day.active {
  background-color: #FFF;
}

.modal-body .month.select_value,
.modal-body .day.select_value {
  background-color: rgb(73, 201, 101);
}
.col-15 {
    width: 14%;
    flex: 0 0 14%;
}
.col-4 {
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
}

/** ////////////////////// */


input.domrequired,
select.domrequired {
	background:#ffdbc1;
}

.error-message {
	display: block;
    color: red;
    font-size: 0.9em;
	font-weight:600;
	margin-top: 5px;
	margin-bottom: 25px;
}

.circle-icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 50%;
	background-color: #fdfdfd;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	border: 2px solid #333;
	margin-right: 10px;
	animation: blink 2s infinite alternate; /* アニメーションを適用 */
	outline: 1px solid #d30000;
}

.circle-icon.red {
	color: #fff;
	background-color: #ff5555;
	border: 2px solid #ff5555;
}
.blink {
	animation: blink2 2s infinite alternate; /* アニメーションを適用 */
}
/* 点滅アニメーションの定義 */
@keyframes blink {
	0% {
		opacity: 0.3; /* 通常状態 */
	}
	100% {
		opacity: 1; /* 通常状態 */
	}
}
/* 点滅アニメーションの定義 */
@keyframes blink2 {
	0% {
		background-color: #facece;
	}
	100% {
		background-color: #ff5555;
	}
}

.add-icon {
	margin-right: 8px;
	color: white; 
	display: inline-block; 
	align-items: center; 
	justify-content: center;
	border-radius: 50%; 
	font-size: 3.0rem;
	font-weight: bold; 
	line-height: 1rem;
}


/****************************
d_table
*****************************/
table.d_table{
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
}

table.d_table thead, table.d_table tbody{
    width: 100%;
}

table.d_table th{
    padding: 10px;
    background: #E6E6E6;
    border: solid 1px #B3B3B3;
}
table.d_table td{
    padding: 10px;
    border: solid 1px #B3B3B3;
    text-align: left;

    white-space:pre-wrap;
    word-wrap:break-word;
}



.user_body header{
	position: fixed;
	background-color: #fff;
	padding: 5px;
	text-align: center;
	border-bottom: solid 2px #f57d78;
	height: 35px;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.user_body .menu-icon{
	display: none;
}

.user_body header .hd_menu{
	position: fixed;
	left: 0;
	top: 35px;
	background-color: #fff;
	width: 250px;
	height: calc( 100% - 35px );
	overflow: auto;
	border-right: solid 1px #f57d78;
	transition: 0.3s;
}

.user_body header .hd_menu_ul{
	padding: 0;
	margin: 0;
	border-top: solid 1px #f57d78;
	border-bottom: solid 1px #f57d78;
}

.user_body header .hd_menu_ul li{
	list-style: none;
	padding: 0;
	border-bottom: solid 1px #fff;
	text-align: left;
}

.user_body header .hd_menu_ul li:nth-last-child(1){
	border-bottom: none;
}

.user_body header .hd_menu_ul li a{
	display: block;
	background-color: #f57d78;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.08rem;
	font-weight: 600;
	padding: 15px 5px 15px 33px;
	position: relative;
	transition: 0.4s;
}
.user_body header .hd_menu_ul li a:visited{
	color: #fff;
}

.user_body header .hd_menu_ul li a:hover{
	background-color: #fef8f8;
	color: #f57d78;
}
.user_body header .hd_menu_ul li a::before{
	content: "";
	position: absolute;
	border: solid 8px transparent;
	border-left: solid 12px #fff;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	transition: 0.4s;
}
.user_body header .hd_menu_ul li a:hover::before{
	left: 12px;
	border-left: solid 12px #f57d78;
}
.user_body main{
	width: calc( 100% - 250px);
	margin-left: auto;
	margin-top: 35px;
}

@media (max-width: 768px) {
	.user_body main{
		width: 100%;
	}
	.user_body .menu-icon{
		display:flex;
		position: absolute;
		top: 5px;
		left: 5px;
	}

	.user_body header .hd_menu {
		width: 90%;
		left: auto;
		right: 100%;
		font-size: .8rem;
		z-index:999999;
	}
	.user_body header .hd_menu.show_sp{
		right: 10%;
		box-shadow: 5px 0px 3px rgba(0, 0, 0, 0.2);
		padding-bottom: 50px;
	}
}

.med_btn.active {
	background-color: #F57D78;
	color:white;
}

.dc {
	width:99%;
}
.dc input {
	max-width:160px;
	margin-right:5px;
}
@media (max-width: 480px) {
	.dc label p {
		font-size:0.9rem;
	}
	.dc input {
		max-width:150px;
		margin-right:5px;
	}
}
@media (max-width: 455px) {
	.dc label p {
		font-size:0.85rem;
	}
	.dc input {
		width:140px;
		margin-right:5px;
	}
}
@media (max-width: 405px) {
	.dc.flex.hidden {
		display: none;
	}
	.dc.flex {
		display: block;
	}
	.dc.d_none {
		display:none;
	}
}

button.icon_entory {
	border: none;
	border-radius: 5px;
	padding:1px 10px;
	margin-left:8px;
}


/**ページネーション用*/
nav#pagination_content {
    margin: 10px 0;
}
nav#pagination_content ul {
	list-style: none;
}
ul.pagination {
    display:flex;
    align-items: center;
    justify-content: center;
}
ul.pagination li {
    margin:3px 20px;
}
ul.pagination li.active{
    font-size:1.3rem;
    font-weight:bold;
}

a[href^="tel"] {
	pointer-events: none;
	text-decoration: none;
	color: inherit;
}