@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: #dcf0f5;
  line-height: 2;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

footer {
  line-height: 0;
}
footer img {
  width: 100%;
}

header.pc {
  padding: 20px 40px;
}
@media (max-width: 850px) {
  header.pc {
    display: none;
  }
}
header.pc .upper {
  color: #213453;
  font-weight: 500;
  padding-bottom: 10px;
}
header.pc .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
header.pc .inner .logo img {
  width: auto;
  height: 70px;
}
header.pc .inner .tel {
  margin-left: auto;
}
@media (max-width: 1150px) {
  header.pc .inner .tel {
    display: none;
  }
}
header.pc .inner .tel a {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0 2em;
  gap: 0.3em;
  background: #00afe5;
  color: #fff;
}
header.pc .inner .tel a span:nth-child(1) {
  font-size: 16px;
}
header.pc .inner .tel a span:nth-child(2) {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 0;
  gap: 0.2em;
}
header.pc .inner .tel a span:nth-child(2) img {
  width: 1.2em;
}
header.pc ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header.pc ul li a {
  width: 120px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}
header.pc ul li a img {
  height: 40px;
}

main {
  padding: clamp(60px, 8vw, 100px) 15px;
}
main .main_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(15px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
main .main_inner h1 {
  text-align: center;
  color: #00afe5;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  margin-bottom: 1em;
}
main .main_inner .table {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #8bb9c7;
}
main .main_inner .table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
main .main_inner .table table tr {
  border-bottom: 1px solid #8bb9c7;
}
main .main_inner .table table tr:last-child {
  border-bottom: none;
}
main .main_inner .table table th,
main .main_inner .table table td {
  padding: 1em;
  text-align: left;
  line-height: 2;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  main .main_inner .table table th,
  main .main_inner .table table td {
    display: block;
    padding: 0.6em 1em;
  }
}
main .main_inner .table table th {
  max-width: 30%;
  width: 120px;
  background: #ddf8ff;
}
@media (max-width: 768px) {
  main .main_inner .table table th {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  main .main_inner .table table td {
    background: #fff;
  }
}
main .main_inner ol.day_flow {
  max-width: 500px;
  margin: 0 auto;
}
main .main_inner ol.day_flow li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
main .main_inner ol.day_flow li .time {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .main_inner ol.day_flow li .time span {
  display: block;
  width: 100px;
  background: #00afe5;
  color: #fff;
  padding: 0.3em;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
}
main .main_inner ol.day_flow li .time::after {
  content: "";
  display: block;
  width: 2px;
  flex: 1;
  background: #00afe5;
}
main .main_inner ol.day_flow li:last-child .time::after {
  display: none;
}
main .main_inner ol.day_flow li .content {
  flex: 1;
  padding: 5px 0 40px;
}
main .main_inner .about {
  margin-bottom: 80px;
}
main .main_inner .about .introduction {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #ee7118;
}
main .main_inner .about p {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 400;
}
main .main_inner .features {
  margin-bottom: 80px;
}
main .main_inner .features .item {
  margin-bottom: 40px;
}
main .main_inner .features .item h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #00afe5;
  display: inline-block;
  padding: 0.3em 0.6em;
  border-radius: 5px;
  transform: rotate(-5deg);
}
main .main_inner .features .item p {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 400;
  padding: 10px clamp(10px, 3vw, 40px);
}
main .main_inner .program {
  margin-bottom: 80px;
}
main .main_inner .program .title {
  text-align: center;
  margin-bottom: 20px;
}
main .main_inner .program .title h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  margin-bottom: 0.2em;
  color: #ee7118;
}
main .main_inner .program .title p {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 400;
}
main .main_inner .program ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  main .main_inner .program ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .main_inner .program ul li {
  background: #fff9e1;
  border-radius: 10px;
  padding: 30px clamp(20px, 3vw, 40px);
}
main .main_inner .program ul li h3 {
  font-size: clamp(18px, 1.9vw, 20px);
  color: #ee7118;
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: center;
  letter-spacing: 0.05em;
}
main .main_inner .program ul li p {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.6;
}
main .main_inner .device .title {
  margin-bottom: 20px;
}
main .main_inner .device .title h2 {
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  margin-bottom: 0.2em;
  color: #00afe5;
}
main .main_inner .device .title p {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 400;
}
main .main_inner .device ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  main .main_inner .device ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .main_inner .device ul li {
  border: 1px solid #00afe5;
  border-radius: 10px;
  padding: 30px clamp(20px, 3vw, 40px);
}
main .main_inner .device ul li h3 {
  font-size: clamp(18px, 1.9vw, 20px);
  color: #00afe5;
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: center;
  letter-spacing: 0.05em;
}
main .main_inner .device ul li p {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.6;
}

.page_top {
  padding: 100px 20px;
}
.page_top .mainvisual {
  text-align: center;
  margin-bottom: 80px;
}
.page_top .mainvisual h1 {
  font-size: clamp(20px, 2.2vw, 24px);
  margin-bottom: 20px;
  color: #213453;
  font-weight: bold;
}
.page_top .mainvisual img {
  max-width: 300px;
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.page_top nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  align-items: center;
  gap: 20px;
  margin-bottom: 120px;
}
@media (max-width: 850px) {
  .page_top nav {
    display: none;
  }
}
@media (max-width: 1100px) {
  .page_top nav .tel {
    display: none;
  }
}
.page_top nav .tel a {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0 2em;
  gap: 0.3em;
  background: #00afe5;
  color: #fff;
}
.page_top nav .tel a span:nth-child(1) {
  font-size: 18px;
}
.page_top nav .tel a span:nth-child(2) {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 0;
  gap: 0.2em;
}
.page_top nav .tel a span:nth-child(2) img {
  width: 1.2em;
}
.page_top nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.page_top nav ul li a {
  width: 160px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  font-size: 17px;
}
.page_top nav ul li a img {
  height: 50px;
}
.page_top .about {
  text-align: center;
}
@media (max-width: 600px) {
  .page_top .about {
    text-align: left;
  }
}
.page_top .about .copy img {
  max-width: 700px;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.page_top .about .copy img.pc {
  display: inline-block;
}
.page_top .about .copy img.sp {
  display: none;
}
@media (max-width: 600px) {
  .page_top .about .copy img.pc {
    display: none;
  }
  .page_top .about .copy img.sp {
    display: inline-block;
    width: 90%;
  }
}
.page_top .about p {
  color: #1f3351;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 500;
}
@media (max-width: 600px) {
  .page_top .about p br {
    display: none;
  }
}
.page_top .about .photo img {
  max-width: 1000px;
  width: 100%;
}

.sp_header {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  z-index: 101;
}
@media (min-width: 850px) {
  .sp_header {
    display: none;
  }
}
.sp_header .logo img {
  width: auto;
  height: 50px;
}

.drawer_btn {
  font-size: 50px;
  width: 1em;
  height: 1em;
  background: #00afe5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
.drawer_btn span,
.drawer_btn span:after,
.drawer_btn span:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
}
.drawer_btn span:before {
  bottom: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.drawer_btn span:after {
  top: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.drawer_btn span.active {
  background: rgba(255, 255, 255, 0);
}
.drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
.drawer_btn span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}

.drawer_content {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 100px 20px 20px;
  overflow: scroll;
  position: fixed;
  top: -100vh;
  right: 0;
  opacity: 0;
  z-index: 100;
  transition: 0.3s;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.drawer_content.active {
  opacity: 1;
  top: 0;
}
.drawer_content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.drawer_content ul li a {
  border: 1px solid #213453;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  padding: 0.5em;
}
.drawer_content ul li a img {
  height: 50px;
}/*# sourceMappingURL=style.css.map */