@charset "UTF-8";
.single-post {
  padding: 80px 20px 60px;
  background: #fff;
}
@media screen and (max-width:599px) {
  .single-post {
    padding: 30px;
  }
}
.single-post .container {
  width: 60vw;
}
@media screen and (max-width:599px) {
  .single-post .container {
    width: 100%;
  }
}
.single-post .post-thumbnail {
  margin-bottom: 24px;
  text-align: center;
}
.single-post .post-thumbnail img {
  width: 50%;
  height: auto;
  display: inline-block;
}
@media screen and (max-width:599px) {
  .single-post .post-thumbnail img {
    width: 90%;
    display: inline-block;
  }
}
.single-post .post-title {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.4;
  border-left: 6px solid #1b93d8;
  padding-left: 12px;
}
.single-post .post-content {
  font-size: 16px;
  line-height: 1.8;
}
.single-post .post-content p {
  margin-bottom: 1.5em;
}
.single-post .post-content img {
  display: block;
  width: 80%;
  height: auto;
  margin: 20px auto;
  border-radius: 4px;
}
.single-post .post-content h2, .single-post .post-content h3, .single-post .post-content h4 {
  margin: 40px 0 16px;
  font-weight: bold;
}
.single-post .post-content ul, .single-post .post-content ol {
  margin: 16px 0;
  padding-left: 20px;
}

.achieve {
  padding: 60px 20px;
  background-color: #fff;
}
.achieve .achieve-inner {
  padding-top: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width:599px) {
  .achieve .achieve-inner {
    width: 100%;
    margin: 0;
    padding-top: 0;
  }
}
.achieve .achieve-inner .achieve-desc {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media screen and (max-width:599px) {
  .achieve .achieve-inner .achieve-desc {
    width: 100%;
  }
}
.achieve .achieve-inner .achieve-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:599px) {
  .achieve .achieve-inner .achieve-content {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
    margin: 0;
  }
}
.achieve .achieve-inner .achieve-item {
  margin-bottom: 20px;
}
.achieve .achieve-inner .achieve-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.achieve .achieve-inner .achieve-item a .achieve-img {
  overflow: hidden;
}
.achieve .achieve-inner .achieve-item a .achieve-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
@media screen and (max-width:599px) {
  .achieve .achieve-inner .achieve-item a .achieve-img img {
    width: 100%;
    display: inline-block;
  }
}
.achieve .achieve-inner .achieve-item a:hover .achieve-img img {
  transform: scale(1.1);
}
.achieve .achieve-inner .achieve-item .achieve-title {
  font-size: 20px;
  margin-top: 12px;
}
@media screen and (max-width:599px) {
  .achieve .achieve-inner .achieve-item .achieve-title {
    font-size: 16px;
  }
}
.achieve .achieve-inner .achieve-item .achieve-excerpt {
  font-size: 14px;
  margin-top: 8px;
}
.achieve .achieve-inner .achieve-item .achieve-excerpt p {
  margin: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFFFFF;
}

h2 {
  font-size: 48px;
  margin-bottom: 8px;
}
@media screen and (max-width:599px) {
  h2 {
    font-size: 32px;
  }
}

p {
  font-size: 20px;
}
@media screen and (max-width:599px) {
  p {
    font-size: 16px;
  }
}

.container {
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.fa-brands {
  font-size: 20px;
  color: #0766FF;
}

.btn {
  display: inline-block;
  height: 42px;
  width: 207px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 42px;
  text-align: center;
}
.btn .fa-envelope {
  position: relative;
  top: 2px;
  margin-right: 7px;
  font-size: 20px;
}
.btn-primary {
  background-color: #1b93d8;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn-primary:hover {
  position: relative;
  top: 2px;
  background-color: rgb(159, 224, 252);
  color: #242424;
}

.cta-btn {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.instagram-icon {
  width: 24px;
  top: 0;
}

header {
  top: 0;
  height: 100px;
  position: fixed;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width:599px) {
  header {
    background-color: rgba(255, 255, 255, 0);
  }
}
header .header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  padding: 8px 16px;
}
@media screen and (max-width:599px) {
  header .header-inner {
    display: none;
  }
}
header .header-inner .logo {
  height: 60%;
}
header .header-inner nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .header-inner nav ul li a {
  text-decoration: none;
  font-size: 14px;
}
header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
}
header .hamburger span {
  width: 25px;
  height: 3px;
  background: #1b93d8;
  display: block;
}
@media screen and (max-width:599px) {
  header .hamburger {
    display: flex;
  }
}

.modal-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 3;
}
.modal-nav.active {
  transform: translateY(0);
}
.modal-nav ul {
  list-style: none;
  text-align: center;
}
.modal-nav ul li {
  margin: 20px 0;
}
.modal-nav ul li a {
  font-size: 14px;
  text-decoration: none;
}

.hero {
  position: relative;
  top: 0;
  height: 100vh;
  background-image: url(../images/image01.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 16px 32px;
  text-align: center;
}
@media screen and (max-width:599px) {
  .hero {
    background-image: url(../images/image09.jpg);
    background-attachment: scroll;
  }
}
.hero .catchcopy {
  color: #f7f7f7;
  font-size: 56px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  z-index: 1;
}
@media screen and (max-width:599px) {
  .hero .catchcopy {
    font-size: 32px;
  }
}
.hero .btn-primary {
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 黒の半透明オーバーレイ */
}

.features-section {
  height: 100vh;
}
@media screen and (max-width:599px) {
  .features-section {
    height: auto;
    padding: 30px;
  }
}
.features-section .container {
  padding-top: 100px;
}
@media screen and (max-width:599px) {
  .features-section .container {
    padding-top: 30px;
  }
}
.features-section .container .section-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media screen and (max-width:599px) {
  .features-section .container .section-title {
    font-size: 32px;
    margin-bottom: 0;
  }
}
.features-section .container .section-title span {
  font-size: 48px;
  color: #1b93d8;
  font-weight: bold;
}
@media screen and (max-width:599px) {
  .features-section .container .section-title span {
    font-size: 40px;
  }
}
.features-section .container .features-grid {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
  padding: 10px 100px;
}
@media screen and (max-width:599px) {
  .features-section .container .features-grid {
    display: block;
    padding: 10px 0;
  }
}
.features-section .container .feature-card {
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width:599px) {
  .features-section .container .feature-card {
    margin-bottom: 10px;
  }
}
.features-section .container .feature-card .feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.features-section .container .feature-card h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: bold;
  color: #1b93d8;
}
.features-section .container .feature-card p {
  font-size: 15px;
  line-height: 1.6;
}

.about {
  padding: 50px 100px;
}
@media screen and (max-width:599px) {
  .about {
    padding: 30px;
  }
}
.about .about-content {
  display: flex;
  align-items: center;
  gap: 40px; /* 画像とテキストの間隔 */
  margin-top: 20px;
}
.about .about-content .about-img {
  flex: 1 1 50%;
}
.about .about-content .about-img .about-image {
  width: 100%;
}
.about .about-content .about-desc {
  flex: 1 1 50%;
  font-size: 20px;
  line-height: 1.2;
  padding: 0 20px;
}
@media screen and (max-width:599px) {
  .about .about-content .about-desc {
    font-size: 16px;
    padding: 0;
  }
}
.about .about-content .about-desc .about-text {
  margin-bottom: 20px;
  line-height: 1.5;
}
.about .about-content .about-desc .about-btn {
  text-align: center;
}

.achievement {
  padding: 50px 100px;
}
@media screen and (max-width:599px) {
  .achievement {
    padding: 30px;
  }
}
.achievement-content {
  display: flex;
  align-items: center;
  gap: 40px; /* 画像とテキストの間隔 */
  margin: 20px 0;
}
@media screen and (max-width:599px) {
  .achievement-content {
    flex-direction: column;
    gap: 20px;
  }
}
.achievement-content .achievement-image {
  flex: 1 1 100%;
}
.achievement-content .achievement-image .achievement-img {
  width: 100%;
}
.achievement-content .achievement-text {
  max-width: 50%;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  .achievement-content .achievement-text {
    max-width: 100%;
  }
}
.achievement .desc {
  font-size: 20px;
  line-height: 1.6;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width:599px) {
  .achievement .desc {
    font-size: 16px;
    padding: 0;
    width: 100%;
  }
}
.achievement .banner-image {
  width: 100%;
}
.achievement .banner-image .banner {
  width: 100%;
}
.achievement .slider-container {
  overflow: hidden; /* スライダーが流れているときにスクロールバーが表示されないようにする */
  width: 100%;
}
.achievement .slider-container .slider-track {
  display: flex; /* スライドを横並びに表示 */
  white-space: nowrap; /* スライドが横に並ぶように設定 */
}
.achievement .slider-container .slider-track .slide {
  min-width: 30%;
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width:599px) {
  .achievement .slider-container .slider-track .slide {
    min-width: 80%;
  }
}
.achievement .achieve-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.course-menu {
  padding: 50px 100px;
}
@media screen and (max-width:599px) {
  .course-menu {
    padding: 30px;
  }
}
.course-menu .course-content {
  max-width: 1200px;
  margin: 0 auto;
}
.course-menu .course-content .course-desc {
  width: 70%;
  margin: 50px auto;
  line-height: 1.3;
}
@media screen and (max-width:599px) {
  .course-menu .course-content .course-desc {
    width: 90%;
    margin: 20px;
  }
}
.course-menu .course-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.course-menu .course-content .course-list {
  display: grid;
  margin: 0 auto;
  width: 70vw;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width:599px) {
  .course-menu .course-content .course-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.course-menu .course-content .course-list a.course-card {
  position: relative;
  aspect-ratio: 1/1;
  display: block;
  padding: 1.5rem;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: top 0.5s, box-shadow 0.5s;
}
.course-menu .course-content .course-list a.course-card:hover {
  top: -5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.course-menu .course-content .course-list h3 {
  font-size: 1.5rem;
  margin: 30px auto;
}
.course-menu .course-content .diet {
  background-image: url("../images/bgc01.png");
}
.course-menu .course-content .diet h3 {
  color: #2461ab;
}
.course-menu .course-content .body-make {
  background-image: url("../images/bgc02.png");
}
.course-menu .course-content .body-make h3 {
  color: #ba2a2a;
}
.course-menu .course-content .health {
  background-image: url("../images/bgc03.png");
}
.course-menu .course-content .health h3 {
  color: #279024;
}
.course-menu .course-content .short-term {
  background-image: url("../images/bgc04.png");
}
.course-menu .course-content .short-term h3 {
  color: #c85384;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.faq .faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.faq .faq-item .faq-question {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  background: none;
  font-size: 20px;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: bold;
  padding: 1rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width:599px) {
  .faq .faq-item .faq-question {
    font-size: 16px;
  }
}
.faq .faq-item .faq-question::after {
  content: "＋";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s;
}
.faq .faq-item .faq-question.active::after {
  content: "－";
}
.faq .faq-item .faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  line-height: 1.3;
  color: #333;
}

.access {
  padding: 50px;
}
@media screen and (max-width:599px) {
  .access {
    padding: 30px;
  }
}
.access .map {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 1em;
}

footer {
  background: #fff;
  padding: 16px;
}
footer .footer-inner {
  font-size: 14px;
  color: #222;
  padding: 0 100px;
}
@media screen and (max-width:599px) {
  footer .footer-inner {
    padding: 0 20px;
    font-size: 12px;
  }
}
footer .footer-inner .footer-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
footer .footer-inner .footer-info .logo {
  height: 60px;
}
footer .footer-inner .footer-info .address {
  line-height: 1.2;
}
footer .footer-inner .footer-info nav ul {
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footer-inner .footer-info nav ul li a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width:599px) {
  footer .footer-inner .footer-info nav ul li a {
    font-size: 12px;
  }
}
footer .footer-inner .footer-info nav ul li a:hover {
  text-decoration: underline;
}
footer .footer-inner .copyright {
  text-align: center;
  font-size: 14px;
  color: #888;
}

@media screen and (max-width:599px) {
  .about-content {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
.greeting {
  padding: 100px 50px 50px;
  background-color: #fff;
}
@media screen and (max-width:599px) {
  .greeting {
    padding: 30px;
  }
}
.greeting .container {
  max-width: 1000px;
  margin: 0 auto;
}
.greeting-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width:599px) {
  .greeting-content {
    flex-direction: column;
    gap: 20px;
  }
}
.greeting-content_text {
  font-size: 16px;
  line-height: 1.3;
}
.greeting .greeting-img {
  width: 100%;
}
.greeting .o2-desc {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  .greeting .o2-desc {
    flex-direction: column;
    gap: 10px;
  }
}
.greeting .o2-desc .gym-image1 {
  position: relative;
  height: 60vh;
  width: 50%;
}
@media screen and (max-width:599px) {
  .greeting .o2-desc .gym-image1 {
    width: 100%;
    height: 50vh;
  }
}
.greeting .o2-desc .gym-image1 .gym-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  .greeting .o2-desc .gym-image1 .gym-img1 {
    width: 50vw;
  }
}
.greeting .o2-desc .gym-image1 .gym-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  .greeting .o2-desc .gym-image1 .gym-img2 {
    width: 50vw;
  }
}
.greeting .o2-desc .gym-text1 {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  .greeting .o2-desc .gym-text1 {
    line-height: 1.3;
  }
}
.greeting .o2-desc .gym-text1 h2 {
  position: relative;
}
.greeting .o2-desc .gym-text1 h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 54px;
  width: 200px;
  height: 10px;
  z-index: -1;
  background-color: #ee882f; /* 下線の色 */
}
@media screen and (max-width:599px) {
  .greeting .o2-desc .gym-text1 h2::before {
    top: 30px;
    width: 140px;
  }
}
.greeting .gym-desc {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  .greeting .gym-desc {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.greeting .gym-desc .gym-image2 {
  position: relative;
  height: 60vh;
  width: 50%;
}
@media screen and (max-width:599px) {
  .greeting .gym-desc .gym-image2 {
    width: 100%;
    height: 50vh;
  }
}
.greeting .gym-desc .gym-image2 .gym-img3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  .greeting .gym-desc .gym-image2 .gym-img3 {
    width: 50vw;
  }
}
.greeting .gym-desc .gym-image2 .gym-img4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  .greeting .gym-desc .gym-image2 .gym-img4 {
    width: 50vw;
  }
}
.greeting .gym-desc .gym-text2 {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  .greeting .gym-desc .gym-text2 {
    line-height: 1.3;
  }
}
.greeting .gym-desc .gym-text2 h2 {
  position: relative;
}
.greeting .gym-desc .gym-text2 h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 54px;
  width: 330px;
  height: 10px;
  z-index: -1;
  background-color: #ee882f; /* 下線の色 */
}
@media screen and (max-width:599px) {
  .greeting .gym-desc .gym-text2 h2::before {
    top: 30px;
    width: 220px;
  }
}

#price {
  padding: 100px 50px 50px;
  background-color: #ffffff;
}
@media screen and (max-width:599px) {
  #price {
    padding: 30px;
  }
}
#price .container {
  max-width: 1000px;
  margin: 0 auto;
}
#price h2 {
  text-align: center;
}
#price .course-desc {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  #price .course-desc {
    flex-direction: column;
    gap: 10px;
  }
}
#price .course-desc .course-image1, #price .course-desc .course-image2 {
  position: relative;
  height: 60vh;
  width: 50%;
}
@media screen and (max-width:599px) {
  #price .course-desc .course-image1, #price .course-desc .course-image2 {
    width: 100%;
    height: 50vh;
  }
}
#price .course-desc .course-image1 .course-img1, #price .course-desc .course-image2 .course-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  #price .course-desc .course-image1 .course-img1, #price .course-desc .course-image2 .course-img1 {
    width: 50vw;
  }
}
#price .course-desc .course-image1 .course-img2, #price .course-desc .course-image2 .course-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  #price .course-desc .course-image1 .course-img2, #price .course-desc .course-image2 .course-img2 {
    width: 50vw;
  }
}
#price .course-desc .course-image1 .course-img3, #price .course-desc .course-image2 .course-img3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  #price .course-desc .course-image1 .course-img3, #price .course-desc .course-image2 .course-img3 {
    width: 50vw;
  }
}
#price .course-desc .course-image1 .course-img4, #price .course-desc .course-image2 .course-img4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 270px;
  height: auto;
}
@media screen and (max-width:599px) {
  #price .course-desc .course-image1 .course-img4, #price .course-desc .course-image2 .course-img4 {
    width: 50vw;
  }
}
#price .course-desc .course-text1, #price .course-desc .course-text2 {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width:599px) {
  #price .course-desc .course-text1, #price .course-desc .course-text2 {
    line-height: 1.3;
  }
}
#price .price-section {
  margin-bottom: 3rem;
}
#price .price-section h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  border-left: 5px solid #2c3e50;
  padding-left: 1rem;
}
#price .price-section ul {
  list-style: none;
  padding: 0;
}
#price .price-section ul li {
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}
#price .price-section ul li span {
  font-weight: bold;
  color: #2c3e50;
}
#price .price-section .price-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1b93d8;
  margin-top: 1rem;
  font-size: 16px;
  border: #ddd 1px solid;
}
#price .price-section .price-table th,
#price .price-section .price-table td {
  padding: 0.75rem;
  text-align: center;
  border: #ddd 1px solid;
}
#price .price-section .price-table th {
  font-weight: bold;
  color: #fff;
}
#price .price-section .price-table td {
  background-color: #fff;
}

.course {
  height: 100vh;
}
@media screen and (max-width:599px) {
  .course {
    height: 70vh;
  }
}
.course .video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width:599px) {
  .course .video-background {
    height: 70vh;
  }
}
.course .video-background video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:599px) {
  .course .video-background video {
    height: 100vh;
  }
}
.course .video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒の半透明オーバーレイ */
  z-index: 1;
}
.course .video-overlay-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 40%;
}
.course .video-overlay-content h2 {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 30px;
}

.benefits-content {
  height: auto;
  padding: 50px 200px;
  margin: 0 auto;
}
@media screen and (max-width:599px) {
  .benefits-content {
    padding: 20px 0;
    margin: 0;
  }
}
.benefits-content .benefits-image {
  width: 100%;
  height: auto;
}
.benefits-content .benefits-image .benefits-img1, .benefits-content .benefits-image .benefits-img2 {
  width: 100%;
}
.benefits-content .benefits-btn {
  width: 207px;
  margin: 20px auto;
}

.course-menu-page {
  padding: 60px 200px;
  background-color: #e7f9ff;
}
@media screen and (max-width:599px) {
  .course-menu-page {
    padding: 30px;
  }
}
.course-menu-page .container {
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0);
}
.course-menu-page .section-title {
  margin-bottom: 1rem;
}
.course-menu-page .intro-text {
  margin-bottom: 50px;
  line-height: 1.8;
}
.course-menu-page .course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.course-menu-page .course-grid .course-item {
  min-height: 250px;
}
.course-menu-page .course-grid .course-item.diet {
  background-image: url("../images/bgc05.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.diet {
    background-position: right bottom;
    background-size: 200%;
  }
}
.course-menu-page .course-grid .course-item.diet h3 {
  font-size: 32px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.diet h3 {
    font-size: 24px;
  }
}
.course-menu-page .course-grid .course-item.diet h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 256px;
  height: 10px;
  z-index: -1;
  background-color: #ee882f; /* 下線の色 */
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.diet h3::before {
    top: 20px;
    width: 192px;
  }
}
.course-menu-page .course-grid .course-item.diet p {
  font-size: 24px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.diet p {
    font-size: 16px;
  }
}
.course-menu-page .course-grid .course-item.body-make {
  background-image: url("../images/bgc06.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.body-make {
    background-position: right bottom;
    background-size: 200%;
  }
}
.course-menu-page .course-grid .course-item.body-make h3 {
  font-size: 32px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.body-make h3 {
    font-size: 24px;
  }
}
.course-menu-page .course-grid .course-item.body-make h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 384px;
  height: 10px;
  z-index: -1;
  background-color: #ee882f; /* 下線の色 */
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.body-make h3::before {
    top: 20px;
    width: 288px;
  }
}
.course-menu-page .course-grid .course-item.body-make p {
  font-size: 24px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.body-make p {
    font-size: 16px;
  }
}
.course-menu-page .course-grid .course-item.health {
  background-image: url("../images/bgc07.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.health {
    background-position: right bottom;
    background-size: 200%;
  }
}
.course-menu-page .course-grid .course-item.health h3 {
  font-size: 32px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.health h3 {
    font-size: 24px;
  }
}
.course-menu-page .course-grid .course-item.health h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 384px;
  height: 10px;
  z-index: -1;
  background-color: #ee882f; /* 下線の色 */
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.health h3::before {
    top: 20px;
    width: 288px;
  }
}
.course-menu-page .course-grid .course-item.health p {
  font-size: 24px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.health p {
    font-size: 16px;
  }
}
.course-menu-page .course-grid .course-item.short-term {
  background-image: url("../images/bgc08.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.short-term {
    background-position: right bottom;
    background-size: 200%;
  }
}
.course-menu-page .course-grid .course-item.short-term h3 {
  font-size: 32px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.short-term h3 {
    font-size: 24px;
  }
}
.course-menu-page .course-grid .course-item.short-term h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 320px;
  height: 10px;
  z-index: -1;
  background-color: #ee882f; /* 下線の色 */
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.short-term h3::before {
    top: 20px;
    width: 240px;
  }
}
.course-menu-page .course-grid .course-item.short-term p {
  font-size: 24px;
}
@media screen and (max-width:599px) {
  .course-menu-page .course-grid .course-item.short-term p {
    font-size: 16px;
  }
}
.course-menu-page .course-grid .course-item h3 {
  font-size: 20px;
  margin-bottom: 0.8rem;
}
.course-menu-page .course-grid .course-item p {
  line-height: 1.6;
}
.course-menu-page .cta-area {
  margin-top: 40px;
}
.course-menu-page .cta-area p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}
.course-menu-page .cta-area .btn {
  display: inline-block;
  background: #007acc;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.course-menu-page .cta-area .btn:hover {
  background: #005fa3;
}
.course-menu-page .sp-only {
  display: none;
}
@media (max-width: 600px) {
  .course-menu-page .sp-only {
    display: inline;
  }
}

/* フォーム全体のスタイル */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 80px;
  background-color: #f8f8f8;
  border-radius: 8px;
  /* 送信ボタン */
  /* バリデーションエラーのスタイル */
}
@media screen and (max-width:599px) {
  .wpcf7-form {
    padding-top: 50px;
  }
}
.wpcf7-form label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #333;
}
.wpcf7-form label input,
.wpcf7-form label textarea {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
@media screen and (max-width:599px) {
  .wpcf7-form label input,
.wpcf7-form label textarea {
    width: 90%;
  }
}
.wpcf7-form label input:focus,
.wpcf7-form label textarea:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
}
.wpcf7-form label textarea {
  min-height: 150px;
  resize: vertical;
}
.wpcf7-form .wpcf7-submit {
  height: 42px;
  width: 207px;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  justify-content: center; /* 横方向の中央揃え */
  align-items: center; /* 縦方向の中央揃え */
  background-color: #1b93d8;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none; /* 必要に応じて追加 */
}
.wpcf7-form .wpcf7-submit:hover {
  position: relative;
  top: 2px;
  background-color: rgb(159, 224, 252);
  color: #242424;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #d8000c;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 600;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 20px;
  background: url("../images/protein-spill.png") no-repeat center bottom;
  background-size: contain;
  -webkit-animation: fadeIn 1s ease-in-out;
          animation: fadeIn 1s ease-in-out;
}

/* タイトル */
.error-404 h1 {
  font-size: 2.5rem;
  color: #4545f8;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media screen and (max-width:599px) {
  .error-404 h1 {
    font-size: 1.5rem;
  }
}

/* サブテキスト */
.error-404 p {
  font-size: 1.1rem;
  color: #3153a3;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media screen and (max-width:599px) {
  .error-404 p {
    font-size: 1rem;
  }
}

/* ボタン */
.error-404 a.button-home {
  display: inline-block;
  background: #1b93d8;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.error-404 a.button-home:hover {
  background: #91d0f4;
  color: #000;
}
/*# sourceMappingURL=style.css.map */