
/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }

  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1300px;
  }
}

@media screen and (max-width:640px) {
body {
  font-size: 14px;
}

body,
.nav_wrap.fixed,
#mainvisual .inner,
header,
footer {
  min-width: 100%;
}

/* ナビ展開時スクロール禁止処理 */
body.nav-open {
  overflow: hidden !important;
}

/*============================================================================

  header

============================================================================*/

  header {
    display: none;
  }

/*============================================================================

  nav

============================================================================*/

.nav_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
}
.header_logo {
    margin-right: 0;
    margin-left: 0;
}
.nav_wrap .header_logo {
    width: calc(100% - 56px);
    height: 56px;
}

.nav_wrap .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 0;
}

.nav_wrap .header_logo img {
  width: 100%;
  height: 45px;
}

/* ハンバーガーボタン */
.btn_tgl_menu {
  position: relative;
  right: 0;
  color: #fff;
  width: 55px;
  background: #17bbbc;
  border: none;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
}

.btn_tgl_menu i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.btn_tgl_menu span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 35px;
  height: 2px;
  background: #fff;
  transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
  opacity: 1;
}

.btn_tgl_menu span:nth-of-type(1) {
  top: 10px;
}

.btn_tgl_menu span:nth-of-type(2) {
  top: 20px;
}

.btn_tgl_menu span:nth-of-type(3) {
  top: 30px;
}

/* MENUボタン押下時 */
.btn_tgl_menu.active {
  right: 16.25rem;
}

.btn_tgl_menu.active span:nth-of-type(1) {
  top: 20px;
  transform: rotate(225deg);
}

.btn_tgl_menu.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_tgl_menu.active span:nth-of-type(3) {
  top: 20px;
  transform: rotate(-225deg);
}

/* ドロップダウンメニュー */
.tgl_menu_list {
  position: fixed;
  top: 0;
  right: 0;
  right: -16.25rem;
  z-index: 2;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
  background: #17bbbc;
  padding: 15px;
}

.tgl_menu_list ul {
  flex-flow: column wrap;
}

.tgl_menu_list ul li {
  display: block;
  border-bottom: 1px solid #fff;
  width: 100%;
}

.tgl_menu_list ul li:first-child {
  border-top: 1px solid #fff;
}

.tgl_menu_list ul li::after {
  display: none;
}

.tgl_menu_list ul li a,
.tgl_menu_list ul li p {
  display: block;
  text-align: left;
  padding: 15px 10px;
  width: auto;
  color: #fff;
  font-weight: normal;
}

.tgl_menu_list ul li a span,
.tgl_menu_list ul li p span {
  display: none;
}

.tgl_menu_list ul li a:hover {
  color: #fff;
}

body.nav-open .tgl_menu_list {
  overflow-y: scroll;
  right: 0;
}

/* ------- スライドメニュー シングル------- */
.tgl_menu_list .nav_single_menu div {
  position: static;
  opacity: 1;
  visibility: visible;
  width: 100%;
  padding-bottom: 10px;
  box-shadow: none;
}

.tgl_menu_list .nav_single_menu div a {
  margin-left: 15px;
  background: none;
  padding: 3px;
  line-height: 2;
  text-indent: -1.2em;
  padding-left: 1.2em;
  border-bottom: none;
}

.tgl_menu_list .nav_single_menu div a::before {
  position: static;
  display: inline;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 10px;
}

.tgl_menu_list .nav_single_menu div a i.nav_arrow {
  display: none;
}

.tgl_menu_list .nav_single_menu div a:hover {
  color: #fff;
  background: none;
}

/* ------- スライドメニュー メガ------- */
.tgl_menu_list .nav_mega_menu {
  position: relative;
}

.tgl_menu_list .nav_mega_menu p::before {
  position: absolute;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  border: none;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
}

.tgl_menu_list .nav_mega_menu .mega_menu_wrap {
  display: none;
  position: static;
  opacity: 0;
  visibility: hidden;
  background: none;
  box-shadow: none;
  transition: height 0.5s cubic-bezier(.19, 1, .22, 1);
}

.tgl_menu_list .nav_mega_menu.active .mega_menu_wrap {
  opacity: 1;
  visibility: visible;
}

.tgl_menu_list .mega_menu_inner {
  display: block;
  padding: 0 0 10px 0;
  width: 100%;
}

.tgl_menu_list .mega_menu_top a {
  padding: 12px 12px 12px 0;
}

.tgl_menu_list .mega_menu_top a::before {
  position: static;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  border: none;
  margin-right: 10px;
}

.tgl_menu_list .menu_list {
  margin-left: 0;
}

.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list p {
  display: none;
}

.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li {
  border: none !important;
}
.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a{
  padding: 3px;
  padding-left: 1.2em;
}

.tgl_menu_list .nav_mega_menu div a {
  margin-left: 15px;
  background: none;
  padding: 3px;
  line-height: 2;
  text-indent: -1.2em;
  padding-left: 1.2em;
}


/* メガメニュー展開時 */
.tgl_menu_list .nav_mega_menu.active p::before {
  content: "\f068";
}

/* ナビ展開時の後ろの背景 */
.nav_overlay {
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

body.nav-open .nav_overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ヘッダー固定ボタンエリア */
.btn_area {
  width: 100%;
}

.btn_area ul {
  display: flex;
  background: #fff;
  padding: 5px 2.5px;
}

.btn_area li.btn {
  width: 100%;
  border-radius: 5px;
  margin: 0 2.5px;
}

.btn_area li.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px 2%;
}

.btn_area li.btn a i {
  width: 15px;
  margin-right: 3px;
}

.btn_area li.btn_tel {
  background: #007ABA;
}

.btn_area li.btn_yoyaku {
    background: #f08181;
}

.btn_area li.btn_monshin {
  background: #00A3BB;
}

.btn_area li.btn_access {
  background: #00C7A3;
}

/* 準備中用のクラス */
.btn_area li.btn.coming {
  background: #aaa !important;
}

.btn_area li.btn.coming a {
  pointer-events: none;
  padding: 2px 2% 18px;
}

.btn_area li.btn.coming a::before {
  content: "（準備中）";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 90%;
}

/*============================================================================

#mainvisual

============================================================================*/

#mainvisual {
  background-position: center;
  background-attachment: scroll;
  height: 200px;
  margin-top: 110px;
}

#mainvisual .inner {
  width: auto;
  height: inherit;
}

/* 下層ページヘッドライン */
.kv_links_tit_ja {
  font-size: 18px;
	padding: 0;
}
	@media screen and (max-width:365px){
		.kv_links_tit_ja{
			font-size: 16px;
		}
	}
	@media screen and (max-width:330px){
		.kv_links_tit_ja{
			font-size: 15px;
		}
	}
.kv_links {
    bottom: -370px;
    right: 0;
    left: 0;
    width: 94%;
    margin: auto;
    padding: 20px 20px 0;
    border-radius: 60px 60px 0 0;
}
.kv_links_tit:before {
display: none;
}
.kv_links_tit_en {
    top: -48px;
    left: inherit;
    right: -24px;
    font-size: 42px;
    transform: rotate(11deg);
}
.kv_links_btn {
    display: block;
}
.kv_links_btn li {
    margin-bottom: 5px;
    margin-left: 0;
}
.kv_links_btn li a {
    min-width: 100%;
    height: 100px;
    padding-top: 24px;
    font-size: 20px;
}
.mainvisual_catch {
    left: 11px;
    width: 80%;
}
.mainvisual_catch p {
    left: -21px;
}
.mainvisual_catch span {
    top: -25px;
    left: 4px;
    font-size: 10px;
    letter-spacing: 0;
}



/*============================================================================

#contents

============================================================================*/

.box1 {
  width: auto;
  margin: 0 6% 80px;
}

.box2 {
  width: auto;
  margin: 0 6% 80px;
}

#contents {
  width: auto;
}

#contents_left {
  width: auto;
  float: none;
  margin-right: 0;
}

#contents_right {
  width: auto;
  padding: 0 6%;
  float: none;
}

/*============================================================================

footer

============================================================================*/

.footer_info_overview_tel {
    margin-bottom: 20px;
    padding-left: 0;
}
.footer_info_overview_tel dt {
    width: 68px;
    height: 32px;
    margin-right: 10px;
    font-size: 12px;
}
.footer_info_overview_tel a {
    padding-left: 4px;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.1em;
}
.footer_info_overview_point {
    padding-left: 0;
}
.footer_info_overview_point ul {
    display: block;
    justify-content: flex-start;
    align-content: center;
}
.footer_info_overview_point ul li {
    width: 100%;
    margin-right: 0;
	margin-bottom: 10px;
    padding: 18px 0;
}
.footer_info_link ul li {
    width: 246px;
    margin-right: 6px;
    text-align: center;
}
.footer_info {
  width: auto;
  padding: 40px 6%;
}

.footer_info_left,
.footer_info_right {
  width: 100%;
}

.footer_info_left {
  margin-bottom: 20px;
}

.footer_info_logo,
.footer_info_logo img {
  width: 222px;
  height: 148px;
}

.footer_info_sche {
  float: none;
  width: 100%;
}

.footer_info_sche .tb01 :is(th, td) {
  font-size: 13.5px;
}

.footer_info_sche p {
  margin: 0;
}



.copy {
  margin-top: 35px;
}



/*============================================================================

$top

============================================================================*/

.top_feature .box1{
margin-bottom: 0;
}
.bg_green_right {
    margin-top: 45px;
    margin-bottom: 0;
    padding-top: 60px;
}
.bg_green_left {
    margin-bottom: 47px;
    padding-top: 0;
    padding-bottom: 40px;
}
.bg_green_left:after {
    top: inherit;
    bottom: 0;
    height: 390px;
}
.bg_green_left:before {
    right: -161px;
}

.feature_list {
    display: block;
    padding-top: 0;
}
.feature_box {
    width: 100%;
    margin-bottom: 20px;
}
.feature_box_tit_en {
    padding-right: 16px;
    font-size: 72px;
}
.feature_box_tit_ja {
    font-size: 26px;
}
.feature_box_info {
    width: 100%;
    min-height: auto;
    margin-top: -88px;
    padding-bottom: 10px;
    border-radius: 60px;
}
.top_place_bg {
    min-height: auto;
    padding-top: 114px;
}
.top_place_img01 {
    padding-left: 0;
}
.top_place_img02 {
    position: relative;
    top: -260px;
    left: -48px;
    width: 60%;
}
.top_place_img02:before {
    top: -30px;
    right: 130px;
    width: 74px;
    height: 74px;
}
.top_place_img03 {
    top: 174px;
    left: -21px;
    width: 40%;
}
.top_place_img03:before {
    top: -38px;
    left: -17px;
    width: 64px;
    height: 64px;
}
.top_place_img04 {
    top: -84px;
    right: -60px;
}
.top_place_img05 {
    top: 185px;
    right: -30px;
    width: 35%;
}
.top_place_img05:before {
    bottom: 57px;
    left: -63px;
    width: 74px;
    height: 74px;
}
.top_place_img01_logo {
    bottom: 17px;
    width: 65%;
}
.top_place_img01_logo span {
    top: -45px;
    right: -21px;
    font-size: 32px;
}
.top_place .box1 {
    position: relative;
    margin-bottom: 0;
}
.top_movie_in iframe {
    width: 100%;
    height: auto;
}


.recruit_box {
    margin-bottom: 69px;
    padding-top: 68px;
    padding-bottom: 40px;
}
.top_recruit .box1 {
    width: auto;
    padding-top: 42px;
	padding: 42px 0;
    border-radius: 60px;
    background-position: bottom -130px right;
}
.recruit_tit:before {
    top: -20px;
    right: 20px;
    height: 132px;
    border-radius: 0 50px 50px 0;
}
.recruit_tit {
    margin-bottom: 200px;
    padding-top: 14px;
    padding-left: 0;
    padding-bottom: 184px;
}
.recruit_info {
    display: block;
    min-height: 429px;
    padding: 40px 25px 25px;
}
.recruit_img_box {
    top: -312px;
    right: 25px;
}
.recruit_img_box_txt {
    padding-top: 0;
    padding-right: 4px;
	color: #f08181;
    font-size: 43px;
}
.recruit_orthoptist .recruit_img_box_txt {
    color: #1f7bb9;
}
.recruit_medicalassistant .recruit_img_box_txt {
    color: #17bbbc;
}
.recruit_text {
    width: 100%;
}
.recruit_info2 {
    display: block;
    padding: 39px 6% 16px;
}
.recruit_qa {
    width: auto;
    padding-top: 12px;
}
.recruit_qa .tit05 {
    padding-right: 0;
}
.qa1 dl dt {
    margin-bottom: 11px;
    padding-left: 72px;
    padding-bottom: 22px;
    font-size: 19px;
    line-height: 1.75;
}
.recruit_sche {
    width: 100%;
    max-height: auto;
    padding: 31px 6% 60px;
    border-radius: 60px;
}


.top_contact {
    padding-top: 71px;
    padding-bottom: 39px;
}
.top_contact .box1 {
    width: auto;
    padding-top: 54px;
    border-radius: 60px;
}
.top_contact_form {
    padding-top: 5px;
    padding-bottom: 50px;
}
.contact th label {
    display: block;
}
.contact th .required {
    display: block;
    width: 65px;
    color: #fff;
    padding: 6px 0;
    font-size: 16px;
    text-align: center;
}



/*============================================================================

$breadcrumbs ぱんくず

============================================================================*/

.breadcrumbs {
  width: 90%;
  margin: 0 5% 40px;
}

.breadcrumbs li {
  display: inline-block;
}

/*============================================================================

$共通

============================================================================*/

#contents {
  padding-bottom: 70px;
}
.box1 {
  width: auto;
  padding: 0 6% 8%;
}
.text {
  float: none;
  width: auto;
  border: none;
}

/*============================================================================

$見出し

============================================================================*/

h1 {
  font-size: 12px;
  width: auto;
  padding: 5px 15px;
  text-align: center;
  position: static;
  margin-top: 0 !important;
}

.tit01,
.tit02,
.tit03,
.tit04 {
  width: 100%;
  margin-bottom: 25px;
  text-align: center;
}
.tit01 {
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-size: 33px;
}
.tit03_en {
    font-size: 26px;
}
.tit06 {
    padding: 23px 20px;
    border-radius: 60px;
    line-height: 1.4;
    font-size: 24px;
    letter-spacing: 0.03em;
}
.tit06:before {
    top: 11px;
    left: 1px;
    width: 24px;
    height: 26px;
}
.nowrap {
  white-space: normal;
}



/* テーブル */
.tb01 {
  white-space: inherit;
}

.tb01 th {
  width: 30%;
  font-size: 14px;
}

.tb01 td {
  font-size: 14px;
  text-align: center;
}


.tb03,
.tb03 th {
  white-space: inherit;
}

.tb03.w075par {
  width: 100%;
}

/* 縦積みにした時 */
.tb03.ver th,
.tb03.ver td {
  display: block;
  width: 100%;
}

.tb03.ver td {
  border-top: none;
}

.tb03.ver th:not(:first-child) {
  border-top: none;
}

/* 横スクロール */
.scroll_tb {
  overflow-x: scroll;
}

.scroll_tb table {
  width: 816px;
}

.scroll_tb table th {
  position: sticky;
  left: 0;
}

.scroll_tb table th::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #00408f;
}

.tb04,
.tb04 th {
  white-space: normal;
}

.tb04 th {
  font-size: 13px;
}

.tb04 td,
.tb04 th {
  padding: 2%;
}

/* ボタン */
.btn01 {
    width: 90%;
    margin: 0 auto 70px;
}
.btn01 a {
    padding: 25px 80px;
    line-height: 1.5;
    border-radius: 80px;
    font-size: 20px;
}



/* アンカーリンク */
.ank02 {
  width: 100%;
}

.ank02 li {
  width: 100%;
}

.ank03 {
  width: 100%;
}

.ank03 li {
  width: 100%;
}

.ank04 {
  width: 100%;
}

.ank04 li {
  width: 100%;
}



/* 画像右寄せ */
.img_fr {
  float: none;
  margin-left: 0;
  text-align: center;
  max-width: 100%;
}

.img_fr img {
  margin-bottom: 15px;
}


/*============================================================================

$details

============================================================================*/
.text.text02 {
	width: 80%;
    margin: 0 auto;
	overflow-x: scroll;
}
.recruit table {
	white-space: nowrap;
}

/*============================================================================

$contact

============================================================================*/
.contact th,
.contact td {
  display: block;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 10px 5%;
}
.contact td {
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
}
.contact th.form_inquiry {
    padding-bottom: 0;
    vertical-align: top;
}
.contact tr:last-child td {
  border-bottom: none;
}
.form_list label {
    float: none;
    width: 100%;
    font-size: 18px;
}
.contact input[type="date"] {
  display: block;
  margin-bottom: 10px;
}
.submit_btn input[type="submit"] {
    min-width: 100%;
}
.submit_btn input[type="reset"] {
    min-width: 100%;
}

.contact select {
  display: block;
  margin-bottom: 20px;
}

.submit_btn input {
  max-width: 110px;
}

/*==================================================================

.layout

==================================================================*/

.layout_tit {
    font-size: 17px;
}

.layout_tit em {
  font-size: 24px;
}

/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 .layout01_box {
  display: block;
}

.layout01 .layout01_title {
  width: 100%;
}

.layout01 .layout01_text {
  width: 100%;
}

.layout01 .layout01_text img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02 {
  display: block;
}

.layout02 .layout02_box {
  width: 100%;
}

.layout02 .layout02_box img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03 {
  margin: 0 0 15px;
}

.layout03 .layout03_box {
  display: block;
}

.layout03 .layout03_title {
  width: 100%;
}

.layout03 .layout03_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
  padding: 0;
}

.layout03 .layout03_text {
  width: 100%;
  padding: 15px 3% 1%;
}


/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 .layout04_box {
  display: block;
}

.layout04 .layout04_title {
  width: 100%;
  padding: 2%;
}

.layout04 .layout04_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.layout04 .layout04_text {
  width: 100%;
}


/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05 .layout05_box {
  display: block;
}

.layout05 .layout05_title {
  width: 100%;
  text-align: center;
  display: block;
}

.layout05 .layout05_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.layout05 .layout05_text1:nth-child(2) {
  width: 100%;
  margin-top: 10px;
}

.layout05 .layout05_text1:nth-child(3) {
  width: 100%;
  border-left: none;
}

/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06 {
  margin: 0 0 15px;
}

.layout06 .layout06_box {
  display: block;
}

.layout06 .layout06_title {
  width: 100%;
  padding: 3%;
  display: block;
  text-align: center;
}

.layout06 .layout06_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

/* 数字 */
.layout06 .layout06_text1:nth-child(2) {
  width: 100%;
  margin-top: 10px;
}

.layout06 .layout06_text1:nth-child(3) {
  width: 100%;
  border-left: none;
}

/* 3つ並びのレイアウト。 */
.layout07 {
  display: block;
}

.layout07 .layout07_box {
  display: block;
  width: 100%;
}

/* layout09 */
.layout09 .layout09_box {
  display: block;
}

.layout09 .layout09_title {
  width: 100%;
  text-align: center;
  display: block;
}

.layout09 .layout09_title img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.layout09 .layout09_text1 {
  width: 100%;
  margin-top: 10px;
}

.layout10 .flow_box {
    display: flex;
    padding-bottom: 18px;
    padding-left: 0;
}
.layout10 .flow_box::before {
    left: 20px;
}
	.sche_flow_sentence01{
		padding-left: 0;
		text-align: center;
	}
	.sche_flow_sentence02{
		padding-left: 0;
		text-align: center;
	}
	.sche_flow_sentence03{
		padding-left: 0;
		text-align: center;
	}

.course_ablation::before {
  display: none;
}

/* layout11 */
[class^="layout11_text"] dl dt,
[class^="layout11_text"] dl dd {
  margin-left: 0;
  width: 100%;
}

[class^="layout11_text"] dl dt {
  margin-bottom: 0;
}

[class^="layout11_text"] dl dd {
  margin-bottom: 10px;
}

.layout11_image02 {
  flex-wrap: wrap;
}

.layout11_image02 span {
  width: 100%;
}

.layout11_image02 span:last-child {
  margin-top: 40px;
}

.layout11_image02 span:last-child::before {
  top: -32px;
  bottom: auto;
  left: 0;
  right: 0;
  justify-content: center;
  content: "\f078";
}

/*============================================================================

$news

============================================================================*/

.news_list li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*============================================================================

$mpcloud_schedule

============================================================================*/

#mpcloud_schedule {
  width: 100%;
  right: 0;
  left: 0;
  border-radius: 0;
}

.time_close {
  right: 20px;
  font-size: 17px;
}

.schedule_time {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.schedule_time dt {
  width: 35%;
  margin-bottom: 5px;
}

.schedule_time dd {
  width: 65%;
  margin-bottom: 5px;
}

.schedule_time dd i {
  margin: 0 3px 0 15px;
  vertical-align: text-bottom;
}


/*common*/
.pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}img{max-width:100%;height:auto}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center}


}

@media screen and (max-width:320px) {
.main_open {
  position: absolute;
  top: auto;
  bottom: 50px;
  right: 0;
  left: 0;
  width: 50%;
  margin: auto;
}

.sp_inline_iP {
  display: inline !important
}
}
