@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  color: #333;
  background-color: #d6eee9;
}

main {
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

p {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-block {
  padding: 80px 20px;
  text-align: center;
}

.bg-white {
  background-color: #fff;
}

.bg-green {
  background-color: #2b9881;
  color: #fff;
}

.bg-light-green {
  background-color: #d6eee9;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #df4969;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn--primary {
  background-color: #df4969;
  color: #fff;
  position: relative;
  border: none;
}
.btn--primary:hover {
  background-color: #e7748d;
}

.title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "HanziPen SC", "Caveat", cursive;
}

@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 20px !important;
  }
}
.text-sm {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .text-sm {
    font-size: 14px;
  }
}

.text-md {
  font-size: 22px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .text-md {
    font-size: 16px;
  }
}

.text-lg {
  font-size: 26px;
  line-height: 1.75;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .text-lg {
    font-size: 18px;
  }
}

.thin {
  font-weight: 400;
}

.green-text {
  color: #2FC1A1;
}

.pink-text {
  color: #df4969;
}

.highlight-text-yellow {
  background: linear-gradient(transparent 60%, #FFF8B4 60%);
  padding-bottom: 2px;
}
.highlight-text-gray {
  background: linear-gradient(transparent 60%, #E3E0DD 60%);
  padding-bottom: 2px;
}

.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 100;
  transition: all 0.3s ease;
}
.header__inner {
  width: -webkit-fill-available;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 1rem 2rem;
  margin: 0 auto;
  z-index: 2;
  gap: 60px;
}
@media screen and (max-width: 952px) {
  .header__inner {
    gap: 0px;
  }
}
.header__logo {
  font-size: 28px;
  font-weight: 300;
  font-family: "HanziPen SC", "Caveat", cursive;
}
@media screen and (max-width: 900px) {
  .header__logo {
    font-size: 24px;
  }
}
.header__nav {
  display: flex;
}
.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.header__nav-item {
  margin-left: 1rem;
  width: 100px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "HanziPen SC", "Caveat", "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
.header__nav-item a {
  position: relative;
  color: #232E31;
}
.header__nav-item a span {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
}
.header__nav-item:hover {
  transform: translateY(-3px);
  color: #4285f4;
}
@media screen and (max-width: 900px) {
  .header__nav-item {
    font-size: 12px;
    width: 76px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-item {
    display: none;
  }
}
.header__nav-btn {
  margin-left: auto;
  position: relative;
}
.header__nav-btn .btn {
  border-radius: 5px;
  padding: 15px 50px;
  padding-left: 46px;
}
@media screen and (max-width: 900px) {
  .header__nav-btn .btn {
    padding: 15px 40px;
    padding-left: 36px;
  }
}
.header__nav-btn .btn p {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 400px) {
  .header__nav-btn .btn {
    padding: 15px 30px;
    padding-left: 26px;
  }
}

.hero {
  background-image: url(../../src/images/hero_image.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
  position: relative;
  min-height: 600px;
  height: 60vw;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  width: 80vw;
  max-width: 1000px;
  margin: auto;
  position: relative;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 26px;
    gap: 0px;
  }
}
.hero-main-contents {
  max-width: 400px;
}
.hero-main-contents-title {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .hero-main-contents-title {
    margin-bottom: 1rem;
  }
}
.hero-main-contents-img {
  max-width: 400px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .hero-main-contents-img {
    max-width: 80%;
    margin-bottom: 1rem;
  }
}
.hero-main-contents .btn {
  border-bottom: 4px solid #A02640;
  box-sizing: content-box;
}
.hero-main-contents-btn-text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .hero-main-contents-btn-text {
    font-size: 12px;
  }
}
.hero-main-contents-btn-arrow {
  position: absolute;
  display: flex;
  margin-left: 10px;
  width: 9px;
  right: 15px;
  top: calc(50% - 8px);
}
@media screen and (max-width: 400px) {
  .hero-main-contents-btn-arrow {
    right: 10px;
  }
}
.hero-main-contents-btn-arrow img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-main-contents {
    margin-top: 20px;
    margin-right: auto;
  }
}
.hero .btn.sp {
  margin: auto;
  margin-top: 0rem;
  margin-bottom: 2rem;
  width: 100%;
}
.hero .btn.sp p {
  font-size: 14px;
}
.hero-sub-contents {
  display: flex;
  margin-top: auto;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .hero-sub-contents {
    width: 100%;
    align-items: flex-start;
  }
}
.hero-video-img {
  height: 160px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hero-video-img {
    height: 140px;
  }
}
.hero-video-img img {
  height: 100%;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .hero-video-img img {
    max-height: 120px;
  }
}
.hero-video-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero-badge {
  margin-top: 20px;
  width: 120px;
}
.hero-badge img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-badge {
    margin-top: 10px;
    width: 100px;
  }
}
.hero-title {
  display: flex;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 12px 14px;
  line-height: 1;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .hero-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 24px;
    margin-bottom: 6px;
    padding: 12px 10px;
  }
}
.hero-bottom {
  background-color: #2b9881;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  margin-top: auto;
  width: 100%;
}
.hero-bottom-text {
  letter-spacing: 0.15em;
  font-size: 16px;
  font-weight: 500;
}
.hero-bottom-text .text-lg {
  padding: 0 4px;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .hero-bottom {
    width: 100vw;
  }
}
.hero .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 26px 40px;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 100vh;
    max-height: 700px;
    background-position: 60%;
  }
}

.about .section-block {
  text-align: center;
}
.about .section-block .kouza-setumei {
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.about .image {
  max-width: 700px;
  margin: 2rem auto;
}
.about .image img {
  width: 100%;
}
.about ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 10px;
}
.about ul li {
  display: flex;
  align-items: center;
}
.about ul li .text-sm {
  margin-bottom: 0;
}
.about ul li:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.about .instructors {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 700px;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  .about .instructors {
    flex-direction: column;
  }
}
.about .instructors .instructor-block {
  width: 45%;
  margin: 0 1rem;
}
@media screen and (max-width: 768px) {
  .about .instructors .instructor-block {
    width: 90%;
  }
  .about .instructors .instructor-block img {
    max-width: 300px;
    margin-bottom: 14px;
  }
}
.about .instructors .instructor-block img {
  width: 100%;
}
.about .point-block {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 7rem auto;
}
.about .point-block .point-image {
  width: 100%;
  max-width: 500px;
  margin-bottom: 2rem;
  border-radius: 18px;
}
.about .point-block .text-sm {
  margin-bottom: 2rem;
}
.about .point-block:last-child {
  margin-bottom: 0;
}

.contents .contents-list {
  max-width: 700px;
  margin: 3rem auto;
  background-color: #fff;
  padding: 4rem 7rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .contents .contents-list {
    padding: 2rem;
  }
}
.contents .contents-list-item {
  margin-bottom: 1rem;
}
.contents .contents-list-item .text-sm {
  text-align: left;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contents .contents-list-item .text-sm {
    font-size: 12px;
  }
}
.contents .contents-list-item .text-sm:first-child {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contents .contents-list-item .text-sm:first-child {
    font-size: 14px;
  }
}

.sample-video {
  margin: 3rem auto;
  max-width: 700px;
}

.price-block {
  max-width: 700px;
  padding: 50px 170px;
  border-radius: 10px;
  background-color: #fff;
  margin: 2rem auto 3rem;
}
@media screen and (max-width: 768px) {
  .price-block {
    padding: 30px 40px;
    max-width: 330px;
  }
}
.price-block img {
  width: 100%;
}
.price-list {
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  .price-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    max-width: 300px;
    padding: 0px 40px;
  }
}
.price-list-item {
  text-align: center;
}
.price-list-item img {
  max-width: 100%;
  height: auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
  gap: 30px;
}
.faq-item {
  border: 2px solid #ddd;
  border-radius: 10px;
}
.faq .question-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding: 20px;
  border-bottom: 1px dotted #ddd;
}
.faq .question-container .q {
  font-size: 14px;
  font-weight: bold;
  color: #2b9881;
  margin-right: 5px;
}
.faq .answer-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  padding: 20px;
}
.faq .answer-container .a {
  font-size: 14px;
  font-weight: bold;
  color: #b63d3d;
  margin-right: 5px;
}
.faq .text-sm {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  text-align: left;
}

.entry-form {
  max-width: 700px;
  margin: 2rem auto;
}
.entry-form-item {
  margin-bottom: 1.5rem;
  text-align: left;
}
.entry-form-item label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .entry-form-item label {
    font-size: 12px;
  }
}
.entry-form-item input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #eee;
  font-size: 16px;
}
.entry-form-item input::-moz-placeholder {
  color: #aaa;
  opacity: 0.8;
}
.entry-form-item input::placeholder {
  color: #aaa;
  opacity: 0.8;
}
.entry-form-item input:focus {
  outline: none;
  border-color: #4285f4;
}
.entry-form-item-name {
  display: flex;
  gap: 1rem;
}
.entry-form-item-name input {
  width: 50%;
}
.entry-form-item-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.entry-form-item-date input {
  width: 80px;
}
.entry-form-item-date span {
  font-size: 0.9rem;
  color: #666;
}
.entry-form-item textarea {
  width: 100%;
  padding: 0.8rem;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #eee;
  font-weight: 500;
  font-size: 16px;
}
.entry-form-item textarea::-moz-placeholder {
  color: #aaa;
  opacity: 0.8;
  font-weight: normal !important;
}
.entry-form-item textarea::placeholder {
  color: #aaa;
  opacity: 0.8;
  font-weight: normal !important;
}
.entry-form-btn {
  text-align: center;
  margin-top: 2rem;
}
.entry-form-btn .btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.footer {
  padding: 20px 0;
  background-color: #d6eee9;
  color: #333;
  text-align: center;
}
.footer__copyright {
  font-size: 0.75rem;
}

/* iOS向けのラジオボタンスタイル調整 */
input[type=radio] {
  width: -moz-fit-content;
  width: fit-content;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #999;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
}

input[type=radio]:checked {
  background-color: #fff;
  border-color: #4a90e2;
}

input[type=radio]:checked:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #4a90e2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.entry-form-item-radio label {
  font-weight: 500 !important;
}/*# sourceMappingURL=style.css.map */