@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

a {
  color: #000;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Noto Serif JP", serif;
}

main {
  max-width: 700px;
  position: relative;
  margin: 0 auto;
}
main .wow {
  animation: wow 0.3s 0.2s both;
}
@keyframes wow {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0em);
  }
}
main .heading_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(24px, 2.8vw, 30px);
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1em;
}
main .heading_1 span.wow {
  padding: 0 1em;
  animation: heading_1_txt 0.3s 0s both;
}
@keyframes heading_1_txt {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  100% {
    transform: translateY(0em);
    opacity: 1;
  }
}
main .heading_1 i.wow {
  display: block;
  background: #ea9fa9;
  width: 3px;
  height: 2em;
  animation: heading_1_line 0.5s 0.2s both;
}
@keyframes heading_1_line {
  0% {
    opacity: 0;
    transform: rotate(0deg) translateY(1em);
  }
  40% {
    transform: translateY(0em);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: rotate(10deg);
  }
}
main .cta_fixed {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 700px;
  margin: auto;
  background: #000;
  padding: 5px;
}
main .cta_fixed .btn {
  text-align: center;
  padding: 10px;
  line-height: 0;
  border: solid 1px #fff;
}
main .cta_fixed .btn a img {
  height: 50px;
  animation: cta_btn 1s infinite;
}
@keyframes cta_btn {
  0% {
    transform: rotate(2deg);
  }
  2% {
    transform: rotate(-2deg);
  }
  4% {
    transform: rotate(2deg);
  }
  6% {
    transform: rotate(-2deg);
  }
  8% {
    transform: rotate(2deg);
  }
  10% {
    transform: rotate(-2deg);
  }
  12% {
    transform: rotate(2deg);
  }
  14% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 600px) {
  main .cta_fixed .btn a img {
    height: 30px;
  }
}
main h1 {
  font-size: clamp(13px, 2.4vw, 20px);
  padding: 0.5em 0.2em;
  text-align: center;
  background: #000;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
main .mainvisual {
  line-height: 0;
}
main .info {
  background-image: url("../img/top/info_bg.png");
  background-position: center;
  background-size: cover;
  padding: 40px 0;
}
main .info .inner {
  display: flex;
  padding: 0 clamp(10px, 3vw, 40px);
  max-width: 600px;
  margin: 0 auto;
}
main .info .inner::before, main .info .inner::after {
  content: "";
  display: block;
  width: 20px;
  border: solid 3px #000;
}
main .info .inner::before {
  border-right: none;
}
main .info .inner::after {
  border-left: none;
}
main .info .inner .list {
  flex: 1;
  padding: 10px clamp(0px, 2.5vw, 40px);
}
main .info .inner .list img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
main .info .inner .list table tr th,
main .info .inner .list table tr td {
  font-size: 24px;
  vertical-align: top;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  main .info .inner .list table tr th,
  main .info .inner .list table tr td {
    font-size: 16px;
  }
}
main .info .inner .list table tr th .address,
main .info .inner .list table tr td .address {
  font-size: 13px;
  padding-top: 0.5em;
}
main .info .inner .list table tr th {
  white-space: nowrap;
}
main .attention {
  padding: 40px clamp(20px, 4vw, 60px);
  background: #000;
}
main .attention h2 {
  text-align: center;
}
main .attention h2 img {
  width: auto;
  height: 40px;
}
main .attention p {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 2;
  margin-bottom: 20px;
}
main .attention .comment {
  font-size: clamp(14px, 1.8vw, 20px);
  background: #ffe200;
  text-align: center;
  padding: 0.5em;
  font-weight: 500;
}
main .benefits {
  padding: 60px clamp(20px, 4vw, 60px);
  background-image: url("../img/top/benefits_bg.png");
  background-position: center;
  background-size: cover;
}
main .benefits h2 {
  text-align: center;
  margin-bottom: 30px;
}
main .benefits .item {
  position: relative;
  border: solid 3px #000;
  margin-bottom: 40px;
  background: #fff;
}
main .benefits .item:last-child {
  margin-bottom: 0;
}
main .benefits .item .number {
  width: 120px;
  position: absolute;
  top: -30px;
  left: -40px;
  animation: number 0.5s 0.3s;
}
@media screen and (max-width: 800px) {
  main .benefits .item .number {
    width: 80px;
    top: -20px;
    left: -20px;
  }
}
@keyframes number {
  0%, 100% {
    transform: rotate(0deg);
  }
  20%, 80% {
    transform: rotate(10deg);
  }
  30%, 70% {
    transform: rotate(-10deg);
  }
  40%, 60% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
main .benefits .item h3 {
  background: #e60113;
  text-align: center;
  color: #fff;
  padding: 0.5em;
  font-size: clamp(18px, 2.8vw, 30px);
  border-bottom: solid 3px #000;
}
main .benefits .item .content_1 {
  font-family: "Noto Sans JP", sans-serif;
}
main .benefits .item .content_1 ul {
  display: flex;
  padding: clamp(20px, 3vw, 40px);
}
@media screen and (max-width: 600px) {
  main .benefits .item .content_1 ul {
    flex-direction: column;
  }
}
main .benefits .item .content_1 ul li {
  flex: 1;
  text-align: center;
  padding: 20px;
}
main .benefits .item .content_1 ul li:first-child {
  border-right: solid 3px #000;
}
@media screen and (max-width: 600px) {
  main .benefits .item .content_1 ul li:first-child {
    border-right: none;
    border-bottom: solid 3px #000;
  }
}
main .benefits .item .content_1 ul li h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 0.5em;
}
main .benefits .item .content_1 ul li h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #fee201;
  margin: 0 auto;
}
main .benefits .item .content_1 ul li p {
  color: #e60012;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}
main .benefits .item .content_1 ul li p small {
  font-size: 13px;
}
main .benefits .item .content_2 {
  font-family: "Noto Sans JP", sans-serif;
  padding: clamp(30px, 4vw, 40px) clamp(10px, 2vw, 40px);
}
main .benefits .item .content_2 h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e60113;
  font-size: 19px;
}
main .benefits .item .content_2 h4 img {
  width: 0.8em;
  margin: 0 0.3em;
}
main .benefits .item .content_2 p {
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 900;
  color: #e60113;
  text-align: center;
}
main .benefits .item .content_2 p small {
  font-size: 25px;
}
main .benefits .item .content_3 {
  padding: clamp(30px, 4vw, 40px) clamp(10px, 2vw, 40px);
  font-family: "Noto Sans JP", sans-serif;
}
main .benefits .item .content_3 h4 {
  border-radius: 10em;
  background: #ffeb50;
  font-size: clamp(13px, 1.8vw, 19px);
  text-align: center;
  padding: 0.5em;
}
main .benefits .item .content_3 .case {
  display: flex;
  gap: 40px;
  padding: 20px;
  border-bottom: solid 3px #000;
}
@media screen and (max-width: 800px) {
  main .benefits .item .content_3 .case {
    gap: 20px;
    padding: 20px 0;
  }
}
main .benefits .item .content_3 .case:last-child {
  border: none;
}
main .benefits .item .content_3 .case .clm_l {
  width: 60%;
}
main .benefits .item .content_3 .case .clm_r {
  width: 40%;
}
main .benefits .item .content_3 .case .clm_r a {
  font-size: clamp(13px, 1.4vw, 16px);
}
main .cta {
  background: #000;
  padding: clamp(10px, 2vw, 20px);
}
main .cta .inner {
  border: solid 2px #fff;
  padding: clamp(30px, 3vw, 40px) clamp(20px, 6vw, 80px);
}
main .cta .inner h2 {
  display: flex;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.2vw, 25px);
  color: #fff;
  margin-bottom: 0.5em;
  font-weight: 500;
}
main .cta .inner h2 img {
  display: block;
  width: 0.8em;
  margin: 0 0.3em;
}
main .cta .inner .btn {
  margin-bottom: 20px;
}
main .cta .inner .btn img {
  animation: cta_btn 1s infinite;
}
@keyframes cta_btn {
  0% {
    transform: rotate(2deg);
  }
  2% {
    transform: rotate(-2deg);
  }
  4% {
    transform: rotate(2deg);
  }
  6% {
    transform: rotate(-2deg);
  }
  8% {
    transform: rotate(2deg);
  }
  10% {
    transform: rotate(-2deg);
  }
  12% {
    transform: rotate(2deg);
  }
  14% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
main .cta .inner .logo {
  margin-bottom: 10px;
}
main .cta .inner .txt {
  display: flex;
}
main .cta .inner .txt::before, main .cta .inner .txt::after {
  content: "";
  display: block;
  width: 20px;
  border: solid 1px #fff;
}
main .cta .inner .txt::before {
  border-right: none;
}
main .cta .inner .txt::after {
  border-left: none;
}
main .cta .inner .txt p {
  color: #fff;
  padding: 10px clamp(10px, 1vw, 20px);
  font-weight: 500;
  line-height: 2;
  flex: 1;
}
main .instructor {
  padding: 40px clamp(20px, 4vw, 60px);
  font-family: "Noto Sans JP", sans-serif;
}
main .instructor .thumbnail {
  margin-bottom: 20px;
}
main .instructor .name {
  text-align: center;
  margin-bottom: 20px;
}
main .instructor .name span {
  display: block;
  font-weight: 800;
  font-size: 18px;
}
main .instructor .name span b {
  font-size: 30px;
}
main .instructor p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2;
}
main .seminar {
  padding: 20px clamp(20px, 3vw, 40px);
}
main .seminar .item {
  margin-bottom: 40px;
}
main .seminar .item .title {
  display: flex;
  justify-content: space-between;
  border-left: solid 10px #ea9fa9;
  padding-left: clamp(10px, 1vw, 20px);
  margin-bottom: 10px;
}
main .seminar .item .title h2 span {
  display: block;
}
main .seminar .item .title h2 span:nth-child(1) {
  font-size: clamp(16px, 1.8vw, 25px);
}
main .seminar .item .title h2 span:nth-child(2) {
  font-size: 15px;
}
main .seminar .item .title .time {
  font-size: clamp(16px, 1.8vw, 25px);
  font-weight: 700;
}
main .seminar .item p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  font-size: clamp(15px, 1.6vw, 17px);
}
main .copyright {
  padding: 10px 0 100px;
  text-align: center;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */