.hamburger-menu {
  width: 110px;
  height: 60px;
  position: relative;
}
#menu-btn-check {
  display: none;
}
.hamburger {
  transition: 0.3s;
  position: absolute;
  right: 0;
  top: 0px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 300;
  border-radius: 5px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;
    top: 68px;
    padding-top: 15px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 80px;
  /* left: 100%; */
  z-index: 800;
  background-color: #fff;
  transition: all 0.5s;
}
@media (min-width: 768px) {
	#menu-btn-check:checked ~ .menu-content {
	  left: 50%;
	  top: 70px;
	}
	.menu-content {
  		width: 50%;
    }
}
.menu-content h1 {
  position: relative;
  padding: 26px;
  line-height: 3rem;
  height: 90px;
  margin-top: 0;
  text-align: center;
  width: 100%;
  font-size: 18pt;
  margin: 0 auto 25px;
    margin-top: 0px;
    margin-bottom: 25px;
  background-color: #efefef;
  left: 0;
  margin-bottom: 30px;
}
.menu-content h1 span {
  left: 0;
  top: 10px;
  position: absolute;
  font-size: 10pt;
  right: 0;
}
.menu-content ul {
  padding: 0px 10px 0;
  background-color: #FFF;
  font-weight: normal;
  /* height: 100vh; */
}
.menu-content ul li:first-child {
    border-top:1px dashed var(--basic-blue);
    border-bottom:1px dashed var(--basic-blue);
    border-style: dotted;
}
.menu-content ul li {
  list-style: none;
  width: 240px;
  max-width: 450px;
  margin: 0 auto;
  border-bottom:1px dashed var(--basic-blue);
  border-style: dotted;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #3f3f3f;
  text-decoration: none;
  padding: 7px 15px 8px 40px;
  position: relative;
  color:var(--basic-blue);
  line-height: 1.8em;
}
#menu-btn-check:checked ~ .hamburger .hamburger__line--1 {
  transform: rotate(45deg);
  width: 50px;
  position: absolute;
  left: 5px;
  top: 30px;
}
.hamburger__line--1 {
  top: 21px;
}
#menu-btn-check:checked ~ .hamburger .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.hamburger__line--2 {
  top: 30px;
}
#menu-btn-check:checked ~ .hamburger .hamburger__line--3 {
  transform: rotate(-45deg);
  width: 50px;
  position: absolute;
  left: 5px;
  top: 30px;
}
.hamburger__line--3 {
  top: 39px;
}
.hamburger__line {
  position: absolute;
  left: 17px;
  width: 27px;
  height: 2px;
  background-color: #262626;
  transition: all 1s;
}
.generarlSubmitButton {
  cursor: pointer;
}
/*modal*/

/* ���[�_��CSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*�T�C�g�ɂ���Ă����̐��l�͒��� */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.scrollBox {
  width: 100%;                /* ������200px�Ɏw�� */
  height: 200px;               /* ������200px�Ɏw�� */
  border: 0px solid #000;      /* �킩��₷���{�[�_�[������ */
  overflow-y: scroll;          /* �c�����ɃX�N���[���\�ɂ��� */
}

/* form 必須 */
.required-mark::before {
  content: "必須";
  color: white;
  font-weight: bold;
  font-size: var(--font-size);
  position:absolute;
  margin-top: -0.5rem;
  margin-left:-0.5rem;
  background-color: var(--lucky-red);
  padding: 1px 6px;
  border-radius: 3px;
  z-index: 999;
}

.required-mark > span.errorTxt {
  padding-left: 2.5rem;
  display: block;
}

label.required-mark::before {
  display:inline-block;
  margin-right: 0.5rem;
  position: relative;
}

.optional-mark::before {
  content: "希望者のみ";
  color: white;
  font-weight: bold;
  font-size: var(--font-size);
  position: relative;
  margin-top: -0.5rem;
  margin-left:-0.5rem;
  margin-right: 0.5rem;
  background-color: var(--lucky-blue);
  padding: 1px 6px;
  border-radius: 3px;
  z-index: 999;
}

/* Form要素 要素間の縦方向間隔調整 */
input.logininput {
  margin-bottom: 0.25rem;
}
input.input__text-field {
  margin-bottom: 0.25rem;
}
div.passwordContainer.input__text-field {
  margin-bottom: 0.25rem;
}
h1.title {
  margin-left:0;
}
h1.title.header {
  color: inherit;
  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
  background: var(--grey--light);/*背景色*/
  border-left: solid 5px var(--lucky-blue);/*左線*/
  border-bottom: solid 1px var(--grey);/*下線*/

}

.favorite-hospital .hospital-name-label {
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.2rem;
}

.favorite-hospital .navigate {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  justify-content: space-between;
}

.favorite-hospital .navigate > .button--outlined {
  height: 2rem;
}

.tabs {
  /*margin-top: 50px;*/
  /*padding-bottom: 40px;*/
  /*background-color: var(--lucky-green--light);*/
  /*margin: 0 auto;*/
}

/*タブのスタイル*/
.tab_item {
  display: inline-block;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 0.5rem 1rem;
}

.tab_item:hover {
  opacity: 0.75;
}

.tab_item .subtitle {
  width:initial;
}
@media screen and (max-width: 649px)
.tab_item .subtitle {
  font-size:1.2rem;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 0.5rem 0.5rem 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#reserved-list:checked~#reserved-list_content,
#request-list:checked~#request-list_content,
#consultation-list:checked~#consultation-list_content
{
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
  background-color: var(--basic-blue);
}
.tabs input:checked+.tab_item img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.tabs input:checked+.tab_item .subtitle {
  color: #fff;
}

