@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;
}
