body {
  background: rgb(255, 255, 255);
  margin: 0;
  overflow-x: hidden;
  font-family: "Kosugi Maru", sans-serif;
}

body img {
  display: block;
  max-width: 100%;
}

body a {
  text-decoration: none;
  display: block;
}

body p{
  line-height: 1.7;
}

header {
  width: 100%;
}

.header_inner {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.header_inner .site_logo {
  width: 25%;
  max-width: 300px;
  margin-right: auto;
}

.header_inner ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 15px;
}

.header_inner ul a {
  color: #51b25c;
}

footer {
  background: #51b25c;
  padding: 32px 16px;
  color: #fff;
  text-align: center;
}

h2,
h3 {
  color: #51b25c;
  font-weight: 800;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-top: 0;
}

.main_content_inner {
  /* width: 100%; */
  max-width: 1140px;
  margin: 0 auto;
  padding: 65px 15px;
}

.first_view {
  width: 100%;
  height: 0;
  padding-top: 45%;
  background-size: cover;
  background-repeat: no-repeat;
}

#news {
  background: #51b25c;
}

#news h2 {
  color: #fff;
}

#news ul {
  background: #fff;
  padding: 24px;
  margin: 0 auto;
  border-radius: 13px;
}

.col2_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.col2_wrap img {
  border-radius: 13px;
}

.col2_wrap div {
  flex: 1;
  width: 100%;
}

#menu,
#ev {
  background: #ebffee;
}

.menu_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.menu_wrap div {
  /* flex: 1; */
  width: 31%;
}

.menu_wrap img {
  border-radius: 13px;
}

.ev_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  background: #fff;
  padding: 24px;
  margin: 0 auto;
  border-radius: 13px;
  align-items: center;
}

.ev_wrap_item {
  flex: 1;
}

.ev_wrap_item h2 {
  text-align: left;
}
table{border-collapse: collapse;
  border-spacing: 0;}
.time_table{
    width: 100%;
}
.time_table th,.time_table td{
  border:solid 1px #333;
  padding: 10px;
  text-align: center;
}

#about img{
  text-align: center;
  margin: 0 auto 24px;
}
#about .col2_wrap{
  max-width: 800px;
  margin: auto;
}

#menu th{
  width: 15%;
}
#menu th,#menu td{
  border: solid 1px #51b25c;
  background: #fff;
  padding: 16px;
}

.tel{
  font-weight: bold;
  color: #d3381c;
}

#ev ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  text-align: center;
}
.ev_batch li{
  background: #51b25c;
  color: #fff;
  padding:1.3em 2em;
  border-radius: 7px;
}
.ev_kessai li{
  max-width: 100px;
  font-size: 12px;
  border: solid 2px #51b25c;
  border-radius: 7px;
  padding: 12px;
}
.ev_kessai li img{
  margin-bottom: 7px;
}

.about_img{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.about_img li{
  flex: 1;
}
@media screen and (min-width:600px) {
  #sp_header {
    display: none;
  }
}

@media screen and (max-width:599px) {
  .first_view {
    background-position: center;
  }

  h2 {
    font-size: 26px;
  }

  .col2_wrap,
  .menu_wrap,
  .ev_wrap,
  .header_inner {
    flex-direction: column;
  }

  .header_inner .site_logo {
    margin-right: 0;
  }

  .header_inner .site_logo {
    width: 65%;
  }

  .header_inner ul {
    padding: 0;
  }

  #pc_header {
    display: none;
  }

  .main_content_inner {
    padding: 32px 15px;
  }

  .first_view {
    padding-top: 110%;
  }
  .menu_wrap div{
    width: 100%;
  }
  #menu th, #menu td{
    display: block;
  }
  #menu th{
    width: inherit;
  }
  .about_img{
    flex-direction: column;
  }
}



.header {
  background: var(--background-navbar);
  /* position: fixed; */
  width: 100%;
  height: 52px;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  /* background: var(--background-navbar); */
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  background: #fff;
}

/* Hamburger menu button */
.menu-btn:checked~.menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #51b25c;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #51b25c;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #51b25c;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}

.navtext img {
  width: 65%;
  margin: auto;
}