@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");
.mv img {
  display: block;
  width: 100%;
  height: auto;
}

.mv2 {
  width: 100%;
  height: 100vh;
  background-image: url(../images/top/main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.mv3 img {
  display: block;
  width: 100%;
  height: auto;
}

section .sec_inner {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}
section .sec_inner h2 {
  font-size: 2.2rem;
  text-align: center;
}

section.top_about div.sec_inner .top_about_area {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  section.top_about div.sec_inner .top_about_area {
    flex-direction: column-reverse;
  }
}
section.top_about div.sec_inner .top_about_area .about_left {
  width: 50%;
}
@media (max-width: 800px) {
  section.top_about div.sec_inner .top_about_area .about_left {
    width: 100%;
    margin-top: 2rem;
  }
}
section.top_about div.sec_inner .top_about_area .about_left h3 {
  font-size: 1.6rem;
}
section.top_about div.sec_inner .top_about_area .about_left h3 span {
  font-size: 1rem;
}
section.top_about div.sec_inner .top_about_area .about_left p {
  margin-top: 2rem;
}
section.top_about div.sec_inner .top_about_area .about_left dl dt {
  display: inline-block;
  margin-top: 1rem;
  background-color: rgb(177, 229, 169);
  padding: 0.5rem;
  border-radius: 10px;
}
section.top_about div.sec_inner .top_about_area .about_left dl dd {
  margin-top: 0.5rem;
}
section.top_about div.sec_inner .top_about_area .about_right {
  width: 50%;
}
@media (max-width: 800px) {
  section.top_about div.sec_inner .top_about_area .about_right {
    width: 100%;
  }
}
section.top_about div.sec_inner .top_about_area .about_right img {
  display: block;
  width: 100%;
}

section.top_works .sec_inner h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
}
section.top_works .sec_inner h3::before {
  content: "⚫︎";
  font-size: 1.8rem;
  color: rgb(40, 97, 78);
}
section.top_works .sec_inner dl.works_area {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}
@media (max-width: 800px) {
  section.top_works .sec_inner dl.works_area {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4%;
  }
}
section.top_works .sec_inner dl.works_area .works_blk {
  width: 30%;
  display: flex;
  flex-direction: column;
  border: 1px solid;
  padding: 1rem;
  border-radius: 5px;
}
@media (max-width: 800px) {
  section.top_works .sec_inner dl.works_area .works_blk {
    width: 48%;
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  section.top_works .sec_inner dl.works_area .works_blk {
    width: 100%;
  }
}
section.top_works .sec_inner dl.works_area .works_blk dt {
  order: 2;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 800px) {
  section.top_works .sec_inner dl.works_area .works_blk dt {
    font-size: 1rem;
    color: rgb(255, 0, 0);
  }
}
section.top_works .sec_inner dl.works_area .works_blk dd {
  margin-top: 1rem;
}
section.top_works .sec_inner dl.works_area .works_blk dd:nth-of-type(1) {
  order: 3;
}
section.top_works .sec_inner dl.works_area .works_blk dd:nth-of-type(2) {
  order: 4;
}
section.top_works .sec_inner dl.works_area .works_blk dd:nth-of-type(2) a {
  display: block;
  width: 100%;
  background-color: aqua;
  color: rgb(48, 74, 74);
  text-align: center;
  border-radius: 5px;
  padding: 1rem 0;
}
section.top_works .sec_inner dl.works_area .works_blk dd:nth-of-type(3) {
  order: 1;
}
section.top_works .sec_inner dl.works_area .works_blk dd:nth-of-type(3) img {
  display: block;
  width: 100%;
  height: auto;
}
section.top_works .sec_inner ul.grid_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  section.top_works .sec_inner ul.grid_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  section.top_works .sec_inner ul.grid_list {
    grid-template-columns: none;
  }
}
section.top_works .sec_inner ul.grid_list li {
  border-width: 1px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
section.top_works .sec_inner ul.grid_list li a {
  order: 2;
  text-align: center;
  font-size: 1.2rem;
}
section.top_works .sec_inner ul.grid_list li img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  order: 1;
}

section.skill_lesson {
  background-color: rgb(83, 112, 83);
}
section.skill_lesson h2 {
  text-align: center;
}
section.skill_lesson h3 {
  text-align: center;
}
section.skill_lesson ul.dzin_skill {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  border-radius: 10px;
}
@media (max-width: 800px) {
  section.skill_lesson ul.dzin_skill {
    grid-template-columns: 1rf 1rf;
  }
}
@media (max-width: 480px) {
  section.skill_lesson ul.dzin_skill {
    grid-template-columns: none;
  }
}
section.skill_lesson li {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
section.skill_lesson li ul.naiyou {
  text-align: left;
}
section.skill_lesson li img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

section.contact .sec_inner table {
  width: 100%;
}
section.contact .sec_inner table tbody tr {
  border-bottom: 1px solid;
}
section.contact .sec_inner table tbody tr:nth-child(odd) {
  background-color: aliceblue;
}
section.contact .sec_inner table tbody tr th, section.contact .sec_inner table tbody tr td {
  padding: 1rem;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  section.contact .sec_inner table tbody tr th, section.contact .sec_inner table tbody tr td {
    display: block;
    width: 100%;
  }
}
section.contact .sec_inner table tbody tr th {
  width: 20%;
}
@media (max-width: 480px) {
  section.contact .sec_inner table tbody tr th {
    display: block;
    width: 100%;
  }
}
section.contact .sec_inner table tbody tr td a {
  color: rgb(96, 154, 196);
  text-decoration: underline;
}

section.flex_lesson {
  background-color: rgb(114, 176, 155);
}
section.flex_lesson .sec_inner dl .action {
  width: 30%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
section.flex_lesson .sec_inner dl .action dt.title {
  order: 2;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
}
section.flex_lesson .sec_inner dl .action dd.text {
  order: 3;
}
section.flex_lesson .sec_inner dl .action dd.link a {
  display: block;
  width: 100%;
  background-color: rgb(78, 86, 137);
  color: rgb(177, 229, 229);
  text-align: center;
  border-radius: 5px;
  padding: 1rem 0;
  order: 4;
}
section.flex_lesson .sec_inner dl .action dd.image {
  order: 1;
}
section.flex_lesson .sec_inner dl .action dd.image img {
  display: block;
  width: 100%;
  height: auto;
}
section.flex_lesson .sec_inner .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  grid-template-rows: 200px 200px;
}
section.flex_lesson .sec_inner .item {
  background-color: rgb(56, 17, 28);
  color: azure;
  padding: 1rem;
}

section.future {
  background-color: rgb(243, 219, 185);
}
section.future .sec_inner h2 {
  text-align: center;
}
section.future .sec_inner p {
  text-align: left;
  padding-top: 2rem;
}
section.future .sec_inner dl dt {
  display: inline-block;
  margin-top: 1rem;
  background-color: rgb(217, 141, 193);
  padding: 0.5rem;
  border-radius: 10px;
}
section.future .sec_inner dl dd {
  margin-top: 1rem;
}/*# sourceMappingURL=index.css.map */