@charset "UTF-8";

:root {
  --mincho: "Shippori Mincho", serif;
  --gothic: "Zen Kaku Gothic New", sans-serif;
  --condensed: "Roboto Condensed", sans-serif;
  --font16: clamp(0.875rem, 1.82vw, 1rem);
  --font18: clamp(1.0625rem, 2.21vw, 1.125rem);
  --font20: clamp(1.125rem, 2.08vw, 1.25rem);
  --font22: clamp(1.25rem, 2.6vw, 1.375rem);
  --font24: clamp(1rem, 2.08vw, 1.5rem);
  --font28: clamp(1.375rem, 2.86vw, 1.75rem);
  --font32: clamp(1.5rem, 3.12vw, 2rem);
  --font40: clamp(1.75rem, 3.65vw, 2.5rem);
  --font48: clamp(2rem, 4.17vw, 3rem);
  --font64: clamp(3rem, 6.25vw, 4rem);
  --font72: clamp(4rem, 8.34vw, 4.5rem);
  --font96: clamp(4.5rem, 9.38vw, 6rem);
  --space16: clamp(0.5rem, 1.04vw, 1rem);
  --space24: clamp(0.75rem, 1.56vw, 1.5rem);
  --space32: clamp(1rem, 2.08vw, 2rem);
  --space48: clamp(1.5rem, 3.12vw, 3rem);
  --space64: clamp(2rem, 4.17vw, 4rem);
  --space96: clamp(3rem, 6.25vw, 6rem);
  --space128: clamp(4rem, 8.34vw, 8rem);
  --space192: clamp(6rem, 12.51vw, 12rem);
}

/* CSS Document */
* {
  margin: 0;
  padding: 0;
  table-layout: fixed;
  list-style: none;
  box-sizing: border-box;
  border-collapse: collapse;
  line-break: normal;
  word-break: break-all;
}

body {
  font-family: sans-serif;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6rem;
  color: #323232;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
}

a,
a:link,
a:visited {
  transition: all 0.6s linear;
  color: #303b40;
  text-decoration: none;
}

a.current {
  color: rgba(238, 72, 58, 1);
  font-weight: bold;
}

.header {
  margin: auto;
  padding: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
  background-color: #fafafa;
}

.header_logo {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .header_logo {
    justify-content: center;
    align-items: center;
  }
}

.header_logo dd h1,
.header_logo dd div {
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.header_logo dt img {
  max-width: 320px;
  margin: auto;
}

@media (max-width: 767px) {
  .header_logo dt img {
    max-width: 280px;
  }
}

.header_logo dd {
  text-align: right;
  font-size: 1rem;
  line-height: 1.6rem;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media (max-width: 767px) {
  .header_logo dd {
    display: none;
  }
}

.header_logo dd a {
  font-size: 1.6rem;
  color: rgba(238, 72, 58, 0);
}

.header .telnum {
  color: rgba(238, 72, 58, 1);
  font-family: var(--condensed);
  font-size: 2.4rem;
}

.header_menu {
  margin: 16px auto 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.header_menu li {
  text-align: center;
  transition: all 0.4s linear;
  padding-bottom: 8px;
  transition: all 0.6s linear;
  border-bottom: 2px solid rgba(238, 72, 58, 0);
  width: calc(100% / 7);
}

.header_menu li:hover {
  border-bottom: 2px solid rgba(238, 72, 58, 0.6);
}

.standards {
  display: grid;
  place-content: center;
  padding: 48px 24px;
}

.standards a {
  display: grid;
  place-content: center;
  border: 1px solid gray;
  padding: 16px 32px;
  font-size: 20px;
  max-width: 480px !important;
  width: 100% !important;
  border-radius: 999px;
}

.wbr {
  display: inline-block;
}

button {
  background-color: transparent;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  border: 0px;
  cursor: pointer;
}

.table {
  display: table;
  width: 100%;
}

@media (max-width: 767px) {
  .table {
    display: flex;
    flex-direction: column;
  }
}

.table>* {
  display: table-cell;
  vertical-align: top;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.container {
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.main {
  margin-left: auto;
  margin-right: auto;
  width: 920px;
  background-color: #fff;
}

.page_title {
  font-family: var(--gothic);
  font-size: var(--font28);
  text-align: center;
  display: block;
  padding-bottom: 32px;
  font-weight: 600;
}

.pagectl {
  text-align: right;
  color: #666;
  margin-bottom: 20px;
  margin-top: 20px;
}

.profimg {
  margin-left: 17px;
  margin-top: 24px;
}

.current_post {
  background-color: #fee37b;
  font-size: 13px;
  padding: 5px;
}

.clm1 {
  background-color: #fff;
  font-size: 13px;
  padding: 5px;
  text-decoration: none;
  color: #320;
  display: block;
}

.clm2 {
  background-color: #eee;
  font-size: 13px;
  padding: 5px;
  text-decoration: none;
  color: #320;
  display: block;
}

.main_right {
  height: 1100px;
  width: 270px;
  background-image: url(images/top_sidebg.png);
  background-repeat: repeat-y;
  background-position: top;
}

.timetable {
  background-color: #fff;
  border-color: #ccc;
  border-width: 1px;
  border-style: solid;
  border-collapse: collapse;
  margin-top: 10px;
}

.timetable td {
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
}

.news_title {
  background-image: url(images/top_news_title.png);
  background-repeat: repeat-y;
}

a#pageTop {
  display: grid;
  place-content: center;
  z-index: 999;
  border-radius: 64px;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.59);
  margin: auto;
  text-align: center;
  position: fixed;
  bottom: 28px;
  right: 12px;
}

@media (max-width: 767px) {
  a#pageTop {
    bottom: 120px;
  }
}

a#pageTop a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 1);
}

.overflow {
  width: 100%;
  overflow: auto;
}

.section_title {
  font-family: var(--mincho);
  font-size: var(--font32);
  font-style: normal;
  line-height: 160%;
  text-align: center;
  margin: auto;
  margin-bottom: var(--space32);
}

.section_title .small {
  font-size: var(--font24);
}

.header_inner {
  width: 100%;
  margin: auto;
  max-width: 1280px;
}

.inner {
  padding: 0 var(--space48);
  width: 100%;
  margin: auto;
  max-width: 1024px;
}

.wrapper {
  padding: var(--space48) 0;
  width: 100%;
  margin: auto;
}

.footer {
  padding-bottom: 128px;
  background-color: #f9f9f9;
}

.footer_clm {
  display: flex;
  gap: var(--space48);
  padding: var(--space48);
  max-width: 1280px;
  margin: auto;
}

@media (max-width: 767px) {
  .footer_clm {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
}

.footer_clm>* {
  flex: 1 1 calc((100% - (48px * 1)) / 2);
}

.footer_timetable {
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0 10px;
  border: 0
}

.footer_timetable td:nth-child(1) {
  background: #3286A7;
  color: white;
  font-weight: 600;
  border: 0;
  vertical-align: center;
}

.footer_timetable td:nth-child(2) {
  background: white;
  border: 0;
  vertical-align: center;
}

.footer_timetable td.close {
  background-color: #aaa;
  color: white;
  font-weight: 600;
}

.footer_timetable td.sat {
  background: #34AF94;
  color: white;
  font-weight: 600;
}

.footer h3 {
  color: #F87474;
  font-size: var(--font18);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  text-align: left;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .footer h3 {
    text-align: center;
  }
}

.footer h4 {
  font-size: var(--font16);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  text-align: left;
}

.footer_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  gap: 24px;
}

@media (max-width: 767px) {
  .footer_info {
    flex-direction: column;
    gap: 12px;
  }
}

.footer_logo {
  flex: 0 1 300px;
}

@media (max-width: 767px) {
  .footer_logo {
    flex: 1 1 auto;
  }
}

.footer_logo img {
  max-width: 300px;
  min-width: 150px;
}

.footer_lead {
  flex: 1;
}

@media (max-width: 767px) {
  .footer_lead {
    flex: 1 1 auto;
    text-align: center;
  }
}

.footer_lead p {
  padding: 0;
  font-size: 15px;
  margin: 4px 0;
  line-height: 100%;
  white-space: nowrap;
}

.footer_tel {
  display: flex;
  flex: 1 1 auto;
  white-space: nowrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .footer_tel {
    flex: 1 1 auto;
  }
}

.footer_tel_text {
  display: grid;
  place-content: center;
  width: fit-content;
  margin: auto;
  gap: 10px;
  border-radius: 32px;
  background: #555;
  color: white;
  padding: 6px 16px;
  white-space: nowrap;
  font-size: 15px;
}

a.footer_tel_num {
  color: #EE483A;
  font-family: var(--condensed);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  text-align: right;
}

.footer_bottom {
  text-align: center;
}

.footer_sitemap ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .footer_sitemap ul {
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer_sitemap ul li {
    flex: 1 1 calc((100% - (24px * 1)) / 2);
  }
}

.banner_drfile {
  max-width: 240px;
  margin: auto;
  margin-left: 0;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .banner_drfile {
    margin-left: auto;
  }
}

.banner_insta {}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.header_sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accessible_text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*---------------------
menu_sp
-----------------------*/
.menu_sp {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 12px 16px 32px 16px;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
  z-index: 999;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  /* 必要に応じて調整 */
  height: 100%;
  background-color: #fafafa;
  padding: 24px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
}

.side-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.side-menu nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.side-menu nav>* {
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}
@charset "UTF-8";

/* CSS Document */

header {
  margin-bottom: 0;
}

img {
  vertical-align: top;
  width: 100%;
}

.mainimg {
  width: 100%;
  margin: auto;
  background-color: #e3e2de;
  text-align: center;
}

.mainimg img {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

/*---------------------
banners
-----------------------*/
.banners {
  background-color: #e4d259;
  width: 100%;
  display: block;
  padding: var(--font64) 0;
}

.banners .inner {
  max-width: 1280px;
}

.banners_list {
  display: flex;
  gap: var(--font32);
}

@media (max-width: 767px) {
  .banners_list {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}

.banners_list>* {
  padding: 10px;
}

.banners_list>*:first-child {
  padding-left: 0;
}

.banners_list>*:last-child {
  padding-right: 0;
}

.buttons {
  margin-bottom: 64px;
}

.buttons>* {
  padding: 10px;
}

.buttons>*:first-child {
  padding-left: 0;
}

.buttons>*:last-child {
  padding-right: 0;
}

.buttons>* a {
  background: rgba(33, 40, 52, 1);
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  padding: 10px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
}

.buttons>* a:after {
  margin-left: 15px;
  color: #9f891e;
  content: "\f105";
  font-family: FontAwesome;
}

.info h3 {
  background: rgba(33, 40, 52, 1);
  color: rgba(255, 255, 255, 1);
  padding: 10px;
  display: block;
  min-width: 100px;
  max-width: 200px;
  text-align: center;
}

.info h4 {
  color: rgba(238, 72, 58, 1);
  font-weight: 600;
  margin-top: 10px;
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 32px;
}

.about>* {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info .news {
  background: rgba(255, 255, 255, 1);
  display: block;
  width: 100%;
  height: auto;

  margin-right: 15px;
}

article {
  padding: 20px;
}

/*---------------------
カレンダー
-----------------------*/
.schedule {}

.schedule_clm {
  display: flex;
  gap: 32px;
  margin: auto;
}

@media (max-width: 767px) {
  .schedule_clm {
    flex-direction: column;
  }
}





/*---------------------
point
-----------------------*/
.point {
  background-color: #fff;
  background-image: url(images/top_bg01.webp);
  background-size: 100% 100%;
  width: 100%;
  display: block;
  padding-bottom: 64px;

  margin: auto;
}

@media (max-width: 767px) {
  .point {
    background-color: #fff;
    background-image: url(images/top_bg01_sp.webp);
    width: 100%;
    display: block;
    padding-bottom: 64px;
  }
}

/*---------------------
point
-----------------------*/



.point>h2 {
  padding: 15px;
  display: grid;
  place-content: center;
  max-width: 400px;
  text-align: center;
  margin: auto;
  margin-bottom: 64px;
  position: relative;
  gap: 24px;
  font-size: var(--font24);
  font-family: var(--mincho);
  z-index: 2;
}

.point>h2::after {
  background-color: white;
  height: 24px;
  width: 100%;
  position: relative;
  margin-top: -50px;
  z-index: -1;
  content: "";
  display: block;
}

.point>h2 i {
  font-size: var(--font72);
  font-style: normal;
  gap: 16px;
  z-index: 5;
  /* 28.8px */
}

.point>h2 span {
  position: relative;
  display: flex;
  color: #000;
  text-align: center;
  font-family: var(--gothic);
  font-size: var(--font22);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 5;
  width: fit-content;

}

.point>h2 span::before {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  transform: rotate(-15deg);
  background-color: black;
  position: relative;
  top: 0;
  left: 0;
}

.point>h2 span::after {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  transform: rotate(15deg);
  background-color: black;
  position: relative;
  justify-content: space-between;
  align-items: center;
  top: 0;
  right: 0;
}

.point_list_wrapper {
  display: flex;
  width: 100%;
  gap: 32px;
  max-width: 1024px;
  margin: auto;
}

@media (max-width: 767px) {
  .point_list_wrapper {
    flex-direction: column;
  }
}

.point_list {
  counter-reset: number;
  gap: 32px;
  flex-direction: column;
  width: 100%;
  display: flex;
  padding-left: 60px;
}

.point_list>* {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
  background: #E4D259;
  display: flex;
  width: 460px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .point_list>* {

    width: 100%;


  }

}

.point_list>*:before {
  background: #4C4C4C;
  counter-increment: number 1;
  content: counter(number) " ";
  width: 50px;
  height: 50px;
  padding: 5px;
  position: absolute;
  top: 20px;
  left: -50px;
  color: white;
  font-family: var(--mincho);
  display: grid;
  place-content: center;
  font-size: 40px;
  line-height: 40px;
}

.point_list>*:nth-child(even) {
  margin-left: 64px;
}

@media (max-width: 767px) {
  .point_list>*:nth-child(even) {
    margin-left: auto;
  }
}

.point_list h2 {
  color: #000;
  font-family: var(--mincho);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.point_list p {
  color: #000;
  font-family: var(--gothic);
  font-size: var(--font18);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

/*---------------------
prof
-----------------------*/
.prof {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: var(--space64) var(--space32);
}

.prof::before {
  width: 160vw;
  height: 100%;
  transform: rotate(-5deg);
  flex-shrink: 0;
  background: #E6EFE8;
  position: absolute;
  top: 0;
  bottom: auto;
  left: -30vw;
  right: -30vw;
  z-index: 0;
  margin: auto;
  z-index: -1;
  content: "";
}



.prof_clm {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 96px;
  top: 0;
  height: fit-content;
}

@media (max-width: 767px) {
  .prof_clm {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
  }
}

.prof_clm>li:nth-child(1) {
  width: 35%;
}

@media (max-width: 767px) {
  .prof_clm>li:nth-child(1) {
    width: 100%;
  }
}

.prof_clm>li:nth-child(2) {
  width: 65%;
}

@media (max-width: 767px) {
  .prof_clm>li:nth-child(2) {
    width: 100%;
  }
}

.prof_clm>li:nth-child(3) {
  width: 65%;
}

.prof_clm .prof_left {
  position: relative;
}

.prof_photo {
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .prof_photo {
    width: 80%;
    margin: auto;
    max-width: 320px;
  }

}

.prof_clm .prof_card {
  background-color: white;
  position: absolute;
  left: 48px;
  top: auto;
  bottom: auto;
  right: -48px;
  margin: 0auto;
  height: 70%;
  z-index: 1;
  padding: 86px 24px 64px 24px;
  margin-top: -64px;
}

@media (max-width: 767px) {
  .prof_clm .prof_card {
    width: 90%;
    position: static;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}


.prof .prof_msg {
  font-size: 17px;
  font-family: var(--mincho);
  line-height: 180%;
}

@media (max-width: 767px) {

  .prof .prof_msg {
    font-size: 18px;
    padding: 0 24px;
  }

}

.prof h3 {
  font-size: var(--font24);
  font-family: var(--mincho);
  font-weight: 300;
}

.prof h4 {
  font-size: var(--font22);
  font-family: var(--mincho);
  font-weight: 300;

}

.prof h5 {
  font-size: var(--font16);
  font-family: var(--mincho);
  line-height: 160%;
  color: #A1A1A1;
}

.prof a {
  background: rgba(33, 40, 52, 0.6);
  padding: 10px;
  color: #fff;
  display: block;
  margin-top: 5px;
}

.prof a:hover {
  background: rgba(33, 40, 52, 1);
}

.prof_list {
  width: 100%;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  justify-content: space-between;
  align-items: stretch;
}

.prof_list>* {
  flex: 1;
  font-family: var(--mincho);
  font-size: 15px;
  display: flex;
  gap: 8px;
}

.prof_list>*>div:nth-child(1) {
  flex: 0 0 90px;

}

/*---------------------
staff
-----------------------*/
.staff {
  width: 100%;
  background-image: url(images/top_bg02.webp);
  background-size: 900px;
  background-repeat: repeat;
  background-position: top center;
  padding-bottom: 64px;
  position: relative;
  z-index: 5;
  margin-top: clamp(130px, 10vw, 250px);
}

@media (max-width: 767px) {
  .staff {
    width: 100%;
    background-image: url(images/top_bg02.webp);
    background-size: 600px;

  }
}

.staff_group {
  width: 100%;
  margin: auto;
  margin-bottom: 64px;
}

.staff_group img {
  width: 100%;
  height: auto;
  aspect-ratio: 1866 / 775;
  object-fit: cover;
  object-position: center;
  margin: auto;
}

.staff_flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  flex-wrap: nowrap;
  box-lines: multiple;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 64px;
  gap: 16px;
  max-width: 960px;
}

@media (max-width: 767px) {
  .staff_flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }

}

.staff_flex>.staff_item {
  display: flex;
  width: auto;
  flex-direction: column;

  align-items: center;
  gap: 12px;
}

.staff_flex>.staff_item .img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 220px;
  width: 100%;
}

@media (max-width: 767px) {
  .staff_flex>.staff_item .img img {
    max-width: 160px;
  }
}

.staff_flex>.staff_item h3 {
  font-size: var(--font22);
  font-family: var(--gothic);
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
}

.staff_flex>.staff_item .job {
  color: #54adac;
  text-align: center;
  font-size: var(--font16);
  margin: 0 auto;
}

.staff_flex>.staff_item .text {
  text-align: center;
  font-size: var(--font16);
  margin: 0 auto;
}

.collection {
  background-color: #e4d259;
  width: 100%;
  display: block;
}

.collection_flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.collection_flex>*:nth-child(1) {
  background-color: #fff;
  width: 100%;
  margin: 64px 40px;
  padding: 0;
}

.collection .imgbanner {
  padding: 10px;
  display: block;
  text-align: center;
}

.collection article {
  padding: 0;
  display: block;
}

.collection ul {
  margin: 15px;
}

.collection li a {
  border-bottom: 1px solid #e4d259;
  display: block;
  margin: 3px;
  padding: 5px;
}

.collection li a:hover {
  background: #e4d259;
}

.collection .links {
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 48px;
  padding-top: 0;
}

.collection .links li {
  display: inline-block;
  width: 32%;
}

.collection h2 {
  background: rgba(33, 40, 52, 1);
  color: #fff;
  padding: 15px;
  display: block;
  max-width: 400px;
  text-align: center;
  margin: auto;
  margin-bottom: 64px;
}
body{
  font-size: 16px;
  line-height: 1.6rem;
}

.calender * {
  box-sizing: border-box;
}

button {
  display: inline-block;
}

.calender {

  font-weight: normal;
  line-height: 16px;
  table-layout: fixed;
  border-collapse: collapse;
  margin:16px 20px 16px 6px;
  width:96%;
}

.calender td {
  font-size: 0.8rem;
  line-height: 1.6rem;
  border: 1px solid #ddd;
  vertical-align: top;
  width: auto;
  padding: 0;
  text-align: center;
  overflow: hidden;
}
.calender td.calheader {
  padding: 3px;
  font-size: 14px;
  line-height: 2rem;
  text-align: center;
  font-weight: 600;
}
.calender th {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #ddd;
  padding: 3px;
  background-color: #fafafa;
}



.calender span {
  text-align: center;
  padding: 3px;
  display: inline-block;
  border: 0;
}

.calender .daynum {
  font-size: 13px;
  line-height: 15px;
  display: block;
  background-color: #eee;
  color: black;
  padding: 2px;
  vertical-align: middle;
}

.calender .daynum small {
  font-size: 12px;
  line-height: 18px;
  vertical-align: middle;
}

.calender .amholiday {
  background-color: #367BE5;
  color: white;
  border: 0;
  margin:0;
}

.calender .pmholiday {
  background-color: #E29212;
  color: white;
  border: 0;
  margin:0;
}

.calender .orthoday {
  background-color: #32A419;
  color: white;
  border: 0;
  margin:0;
}

.calender .holiday {
  border: 1px solid #fd5587;
  color: #fd5587;
}

.calender .to17h {
  background-color: #da7dea;
  color: white;
  border: 0;
  margin:0;
}

.calender .to18h {
  background-color: #52bcd4;
  color: white;
  border: 0;
  margin:0;
}

.calender .emptyday {
  background-color: #eee;
  border: 0;
  margin:0;
}

.calender .closeday {
  background-color: #fd5587;
  color: white;
  border: 0;
  margin:0;
}

.calender .openday {
  background-color: #3f51b5;
  color: white;
  border: 0;
  margin:0;
}
.calender .calicon{
  margin:0 3px;
}
.calender .generaltime{
width:98%;
height:auto;
font-size: 1rem;
text-align: center;
overflow: visible;
}
.calender option {}

.calender select {
  border: 1px solid #666;
  font-size: 16px;
  background-color: #eee;
  margin-top: 20px;
  vertical-align: middle;
  height: 30px;
}

.todayisholiday {
  background-color: #f5d3dd;
}

.todayisnormal {
  background-color: #fff;
}


.addbtn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  /* border-radius: 30px; */
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #666;
  background-color: transparent;
  vertical-align: middle;
  margin-top: 20px;
  margin-left: 6px;
}

.deletebtn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  /* border-radius: 30px; */
  font-size: 16px;
  background-color: transparent;
  cursor: pointer;
  color: white;
  vertical-align: middle;
}

.deletebtn:after {
  content: "×";
  display: inline-block;
  border: 1px solid #fff;
  width: 18px;
  height: 18px;
  color: white;
  font-size: 18px;
  line-height: 18px;
  margin-left: 12px;
}
