@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
#container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #e8f5e9, #e3f2fd); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

header h1 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding: 0.5rem;
    position: relative;
    background: linear-gradient(to right, #2e7d32, #64b5f6); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header h1::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, #2e7d32, #64b5f6);
    margin: 0.5rem auto 0;
    border-radius: 1px;
}

.header-logo {
    max-width: 200px;
}

@media (max-width: 768px) {
    header h1 {
        width: 100%;
        font-size: 1rem;
        letter-spacing: 0.05rem;
        text-align: center;
    }
    
  .header-logo {
    max-width: 220px;
}
}

.menu {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.menu li {
    list-style: none;
    position: relative;
}

.menu li a {
    color: #2e7d32;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    word-break: keep-all;
    transition: background 0.3s ease, color 0.3s ease;
}

.menu li a:hover {
    background: #81c784; 
    color: white;
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
}

.menu li a.active {
    background: #2e7d32; 
    color: white;
    font-weight: bold;
    border: 1px solid #a5d6a7;
}

.menu-button {
    display: none;
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
        background: none;
        border: 2px solid #81c784;
        font-size: 24px;
        cursor: pointer;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1002;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: #2e7d32;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(46, 125, 50, 0.1);
        text-align: center;
    }

    .menu-button:hover {
        background: #81c784;
        color: white;
        transform: scale(1.05);
    }

    .menu {
        display: flex;
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(232, 245, 233, 0.95); 
        padding-top: 40px;
        z-index: 1001;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .menu.active {
        top: 0;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }
}

section {
    padding: 4rem 1.5rem;
  }

  .inner {
    max-width: 800px;
    margin: 0 auto;
  }

  
  section h2 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    position: relative;
  }

  section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #64b5f6;
    margin: 0.5rem 0 0;
    border-radius: 2px;
  }

  
  section p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  section p strong {
    font-weight: bold;
    color: #2e7d32;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(to right, #81c784, #64b5f6);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: bold;
    margin: 1rem 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .btn:hover {
    background: linear-gradient(to right, #66bb6a, #42a5f5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }

  .hero {
    background: linear-gradient(to bottom, #e8f5e9, #ffffff);
    padding: 4rem 1rem 5rem;
  }

  .hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .hero-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }

  .hero-text {
    max-width: 500px;
    text-align: left;
  }

  .hero-text h2 {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.9;
  }

  .cta {
    background: linear-gradient(to top, #e3f2fd, #ffffff);
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .cta p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }

  .card-section {
    background: #fff;
    box-shadow: 0 4px 3px rgba(142, 200, 240, 0.2);
    border-radius: 5px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    max-width: 900px;
  }
  .healy-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .healy-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .healy-image img {
    width: 150px;
    height: auto;
    margin: 10px 0;
  }
  
  .healy-text {
    flex: 1 1 500px;
  }

  

.for-whom.card-section {
  padding: 3rem 1rem;
}

.for-whom-inner {
  display: flex;
  flex-wrap: nowrap; 
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.for-whom-text {
  flex: 1 1 55%;
}

.for-whom-image {
  flex: 1 1 40%;
  text-align: center;
}

.for-whom-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-top: 65px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.check-list li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #2e7d32;
  line-height: 1.8;
  background: #f9fbe7;
  border-left: 4px solid #a5d6a7;
  border-radius: 6px;
}

.check-list li::before {
  content: '・';
  position: absolute;
  left: 0.8rem;
  top: 0.9rem;
  font-size: 0.9rem;
  color: #66bb6a;
}

  
@media (max-width: 768px) {
    
    section {
      padding: 3rem 1rem;
    }
  
    
    section h2 {
      font-size: 1.5rem;
    }

     section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #64b5f6;
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }
  
    
    .hero-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hero-text {
      text-align: left; 
    }
  
    .hero-text h2 {
      font-size: 1.6rem;
      text-align: center;
    }
    .hero-text p {
      font-size: 1rem;
      line-height: 1.7;
    }
  
    
    .healy-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .healy-text {
      text-align: left;
    }
  
    .healy-text h2 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .healy-image {
      order: -1; 
    }
  
    .healy-image img {
      max-width: 90%;
    }
  
    
    .btn {
      font-size: 0.95rem;
      padding: 0.7rem 1.5rem;
    }
  
    .cta {
      padding: 3rem 1rem;
    }
  
    .cta p {
      font-size: 1rem;
    }

    .for-whom-inner {
    flex-direction: column;
  }

  .for-whom-image {
    order: -1; 
  }

  }
  
  

.retorino-about p img{
  width: 350px;
}

.retorino-healy p img{
  width: 350px;
}

.session-intro {
  background: #f9fbe7;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.session-intro h2 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 1rem;
  border-bottom: 2px solid #a5d6a7;
  padding-bottom: 0.3rem;
}

.session-intro h3 {
  font-size: 1.4rem;
  color: #388e3c;
  margin-top: 2rem;
  border-left: 6px solid #a5d6a7;
  padding-left: 0.7rem;
}

.session-intro h4 {
  font-size: 1.15rem;
  color: #2e7d32;
  margin-top: 1.5rem;
  border-left: 4px solid #81c784;
  padding-left: 0.6rem;
}

.session-intro p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.session-intro ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.session-intro ul li {
  margin-bottom: 0.5rem;
  color: #2e7d32;
  font-size: 0.95rem;
}

.session-intro strong {
  font-weight: bold;
}

.retorino-menu .session-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.retorino-menu .session-list li {
  background: #f9fbe7;
  border-left: 6px solid #a5d6a7;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  font-size: 1rem;
  color: #2e7d32;
  transition: box-shadow 0.3s ease;
}

.retorino-menu .session-list li:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.retorino-menu .session-list li strong {
  display: block;
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: #388e3c;
}

.retorino-menu .retorino-course {
  background: #f9fbe7;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.session-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .session-flex {
    grid-template-columns: 1.2fr 1fr;
  }
}

.session-text h2 {
  margin-bottom: 0.5rem;
}

.session-text h3 {
  margin-bottom: 1rem;
  color: #2e7d32;
}

.price {
  font-size: 1.4rem;
  color: #e63946;
  font-weight: bold;
}

.session-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.retorino-course h2 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.retorino-course .course-lead {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.course-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.course-card {
  background: #fff;
  border-left: 6px solid #a5d6a7;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.course-card h3 {
  font-size: 1.2rem;
  color: #388e3c;
  margin-bottom: 0.8rem;
}

.course-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.course-price {
  margin-top: 3rem;
  background: #e8f5e9;
  padding: 1.5rem;
  border-radius: 8px;
}

.course-price h4 {
  font-size: 1.2rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.course-price ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.course-price li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.course-price strong {
  color: #e53935;
}

.course-price .note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

#contentBlog p img{
  width: 350px;
}

#sidePc {
  background: #f9fbe7;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 3rem auto;
  max-width: 100%;
  font-size: 1rem;
  color: #2e7d32;
}

#sidePc h3,
#sidePc h4 {
  font-size: 1.4rem;
  color: #388e3c;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #a5d6a7;
  padding-bottom: 0.3rem;
}

.side-category_list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.side-category_list li {
  flex: 1 1 45%;
  background: #ffffff;
  border-left: 4px solid #c8e6c9;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.side-category_list li:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.side-category_list li a {
  text-decoration: none;
  color: #2e7d32;
  font-weight: bold;
  transition: color 0.3s;
}

.side-category_list li a:hover {
  color: #64b5f6;
}

.side-category_list li img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sentence01 {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.sentence01 a {
  color: #388e3c;
  text-decoration: underline;
}

.blog-title-area h1 {
  font-size: 2rem;
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 3px solid #a5d6a7;
  line-height: 1.4;
}

.blog-title-area .h1txt {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  border-left: 4px solid #c8e6c9;
}

.h1txt a {
  text-decoration: none;
  color: #2e7d32;
  transition: border-bottom 0.2s ease;
  border-bottom: 1px solid transparent;
}

.h1txt a:hover {
  border-bottom: 1px solid #64b5f6;
}

#blog-textInner {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.9;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

#blog-textInner h1,
#blog-textInner h2,
#blog-textInner h3,
#blog-textInner h4 {
  font-weight: bold;
  color: #2e7d32;
  margin: 2rem 0 1rem;
  line-height: 1.4;
}

#blog-textInner h1 { font-size: 1.8rem; border-bottom: 2px solid #a5d6a7; padding-bottom: 0.3rem; }
#blog-textInner h2 { font-size: 1.5rem; border-left: 6px solid #81c784; padding-left: 0.5rem; }
#blog-textInner h3 { font-size: 1.3rem; border-left: 4px solid #a5d6a7; padding-left: 0.5rem; }
#blog-textInner h4 { font-size: 1.1rem; color: #388e3c; }

#blog-textInner p {
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 1rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
  transition: box-shadow 0.3s ease;
}

#blog-textInner ul,
#blog-textInner ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

#blog-textInner li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
  position: relative;
  color: #2e7d32;
}

#blog-textInner ul li::before {
  content: '・';
  position: absolute;
  left: -1.2rem;
  color: #66bb6a;
  font-size: 0.9rem;
}

#blog-textInner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}

.category-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.category-page h1 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #a5d6a7;
  padding-bottom: 0.5rem;
}

.category-page > p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.category-page article {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.category-page article:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.category-page article h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2e7d32;
}

.category-page article h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-page article h2 a:hover {
  color: #64b5f6;
  text-decoration: underline;
}

.category-page article .excerpt,
.category-page article p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0;
}

.category-page .pagination,
.category-page .navigation,
.category-page .page-numbers {
  text-align: center;
  margin-top: 3rem;
}

.page-numbers {
  display: inline-block;
  margin: 0 0.4rem;
  padding: 0.5rem 0.9rem;
  background: #f1f8e9;
  color: #2e7d32;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.page-numbers.current,
.page-numbers:hover {
  background: #a5d6a7;
  color: #fff;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(to right, #e8f5e9, #e3f2fd); 
    color: #ccc;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: #42a5f5;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-inline: auto;
}

.two-column .column {
  flex: 1 1 45%;
  min-width: 280px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.two-column .column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.two-column .column:first-child {
  background: #e0f7fa; 
  border-left: 8px solid #64b5f6;
}

.two-column .column:last-child {
  background: #fff9c4; 
  border-left: 8px solid #fbc02d;
}

.two-column .column h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

.two-column .column a.btn {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(0,0,0,0.05);
  color: #333;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: background 0.3s;
  font-weight: bold;
}

.two-column .column a.btn:hover {
  background: rgba(0,0,0,0.1);
}

.two-column .column p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.two-column .column .infoimg{
  width: 150px;
}

.line-contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.line-contact-image {
  flex: 0 0 170px;
}

.line-contact-image .infoimg {
  width: 100%;
  max-width: 170px;
  height: auto;
}

.line-contact-text {
  flex: 1 1 auto;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    gap: 1.5rem;
  }

  .two-column .column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .line-contact-layout {
    flex-direction: column;
    align-items: center;
  }

  .line-contact-text {
    width: 100%;
  }
}

footer {
    line-height: 1.8;
    text-align: center;
    background-color: #a5d6a7;
    color: #2e7d32; 
    padding: 1rem;
}

.retorino-menu .session-list-modern .inner {
  max-width: 980px;
}

.retorino-menu .session-list-modern {
  background: transparent;
}

.retorino-menu .session-list-modern.card-section,
.retorino-menu .session-message-section.card-section {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.retorino-menu .session-list-modern .menu-section-title {
  margin: 2rem 0 1rem;
  font-size: 1.6rem;
}

.retorino-menu .session-list-modern .menu-card {
  background: #ffffff;
  border: 1px solid #dfe8d7;
  border-left: 0;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(30, 60, 30, 0.06);
}

.retorino-menu .session-list-modern .menu-card.menu-card-black {
  border: 1px solid #111111;
}

.retorino-menu .session-list-modern .menu-card.session-message {
  background: #E8EFEA;
  border: 1px solid #d2ddd5;
}

.retorino-menu .session-list-modern .menu-card h3 {
  margin: 0 0 .55rem;
  color: #2e7d32;
  font-size: 1.32rem;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.retorino-menu .session-list-modern .menu-card h3 .limited-text {
  color: #d63b3b;
}

.retorino-menu .session-list-modern .menu-card p {
  color: #2f2f2f;
  line-height: 1.9;
  margin: 0 0 .7rem;
}

.retorino-menu .session-list-modern .menu-card .recommend-title {
  margin: 1rem 0 0.6rem;
  padding-top: 0.85rem;
  border-top: 1px solid #dfe8d7;
  font-size: 1.02rem;
  font-weight: 700;
  color: #d97a00;
  letter-spacing: 0.01em;
}

.retorino-menu .session-list-modern .menu-card .about-block {
  margin: 0.15rem 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e2ebe0;
  border-radius: 10px;
  background: #fcfefb;
}

.retorino-menu .session-list-modern .menu-card .about-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2e7d32;
}

.retorino-menu .session-list-modern .menu-card .recommend-title,
.retorino-menu .session-list-modern .menu-card .flow-title,
.retorino-menu .session-list-modern .menu-card .about-title {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif !important;
  font-weight: 700;
}

.retorino-menu .session-list-modern .menu-card .recommend-title::before,
.retorino-menu .session-list-modern .menu-card .flow-title::before,
.retorino-menu .session-list-modern .menu-card .about-title::before {
  content: "✿";
  display: inline-block;
  margin-right: 0.35em;
  color: #7bb47f;
  font-size: 0.92em;
  transform: translateY(-0.02em);
}

.retorino-menu .session-list-modern .menu-card .about-text {
  margin: 0.45rem 0 0;
  line-height: 1.75;
  color: #2f2f2f;
}

.retorino-menu .session-list-modern .menu-card .flow-title {
  margin: 1rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2f6fb7;
  letter-spacing: 0.01em;
}

.retorino-menu .session-list-modern .menu-card .line-cta {
  margin: 1rem 0 0.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d9e7d9;
  border-radius: 10px;
  background: #f8fcf7;
  color: #2f2f2f;
  line-height: 1.75;
}

.retorino-menu .session-list-modern .menu-card .line-cta-note {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: #5b6a5b;
}

.retorino-menu .session-list-modern .menu-card .session-flow {
  margin: 0.35rem 0 0.25rem;
  padding: 0.7rem 0.8rem;
  list-style: none;
  counter-reset: flow-step;
  border: 1px dashed #c7ddc7;
  border-radius: 10px;
  background: #fbfdf9;
}

.retorino-menu .session-list-modern .menu-card .session-flow li {
  position: relative;
  margin: 0;
  padding: 0.6rem 0 0.6rem 2rem;
  line-height: 1.65;
  color: #2f2f2f;
  border-top: 1px solid #e7efe6;
  counter-increment: flow-step;
}

.retorino-menu .session-list-modern .menu-card .session-flow li:first-child {
  border-top: 0;
}

.retorino-menu .session-list-modern .menu-card .session-flow li::before {
  content: counter(flow-step) ".";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: #2f6fb7;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.retorino-menu .session-list-modern .menu-price {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: #edf5e7;
  color: #1b5e20;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid #d7e7cc;
}

.retorino-menu .session-list-modern .menu-pricing-box {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #dce8d8;
  border-radius: 10px;
  background: #ffffff;
}

.retorino-menu .session-list-modern .menu-pricing-box .menu-price {
  margin-bottom: 0.45rem;
}

.retorino-menu .session-list-modern .menu-option {
  margin: 0.15rem 0 0.35rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e4ece0;
  border-radius: 8px;
  background: #f9fcf7;
  color: #2f2f2f;
  font-size: 0.95rem;
  line-height: 1.65;
}

.retorino-menu .session-list-modern .menu-pricing-box .menu-option {
  margin: 0 0 0.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.retorino-menu .session-list-modern .menu-note {
  margin: 0;
  color: #5f695f;
  font-size: 0.88rem;
  line-height: 1.6;
}

.retorino-menu .session-list-modern .menu-card ul {
  display: block;
  list-style: disc;
  padding-left: 1.2rem;
  margin: .55rem 0 .8rem;
}

.retorino-menu .session-list-modern .menu-card li {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 .3rem;
  color: #304030;
  line-height: 1.8;
}

.retorino-menu .session-list-modern .point-check {
  list-style: none;
  padding: 0.45rem 0.85rem;
  margin: 0.6rem 0 0.4rem;
  background: #ffffff;
  border: 1px solid #e4ece0;
  border-radius: 10px;
}

.retorino-menu .session-list-modern .point-check li {
  list-style: none !important;
  margin: 0;
  padding: 0.55rem 0;
  line-height: 1.75;
  border-top: 1px solid #edf3ea;
}

.retorino-menu .session-list-modern .point-check li:first-child {
  border-top: 0;
}

.retorino-menu .session-list-modern .point-check li strong {
  display: block;
  margin-bottom: 0.15rem;
  line-height: 1.35;
  color: #d97a00;
}

.retorino-menu .session-list-modern .point-check li br {
  display: none;
}

.retorino-menu .session-list-modern .point-check li::marker {
  content: "";
}

.retorino-menu .session-list-modern .point-check li::before {
  content: none;
}

.retorino-menu .session-list-modern .notice-box {
  margin-top: .7rem;
  padding: .9rem 1rem;
  border: 1px solid #edd2cc;
  border-radius: 12px;
  background: #fff8f6;
}

.retorino-menu .session-list-modern .notice-box h4 {
  margin: 0 0 .5rem;
  color: #a53b2a;
  font-size: 1rem;
}

.retorino-menu .session-list-modern .note {
  color: #565656;
  font-size: .95rem;
}

.retorino-menu .session-list-modern .compare-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: 1fr;
  margin-bottom: .6rem;
}

.retorino-menu .session-list-modern .compare-grid > div {
  background: #f8fbf4;
  border: 1px solid #deead4;
  border-radius: 10px;
  padding: .75rem .85rem;
}

.retorino-menu .session-list-modern .compare-grid h4 {
  margin: 0 0 .45rem;
  color: #2a6f2d;
}

@media (min-width: 768px) {
  .retorino-menu .session-list-modern .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.retorino-profile {
  padding: 1rem 0 3rem;
}

.retorino-profile .card-section {
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(30, 80, 60, 0.08);
}

.profile-hero-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: center;
}

.profile-photo-wrap {
  margin: 0;
  text-align: center;
}

.profile-photo {
  width: 220px;
  max-width: 100%;
  border-radius: 50%;
  border: 6px solid #e8f5e9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.profile-label {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #2e7d32;
  background: #e8f5e9;
}

.retorino-profile h2 {
  margin: 0 0 1rem;
}

.profile-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.profile-meta li {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #dce8de;
  border-radius: 10px;
  background: #fcfefd;
}

.profile-meta .meta-key {
  font-weight: 700;
  color: #2e7d32;
}

.profile-meta .meta-val {
  color: #344;
}

.profile-body p {
  margin: 0;
}

@media (max-width: 768px) {
  .profile-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: center;
  }

  .profile-meta li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
}

.inner {
  width: min(100%, 800px);
}

#container {
  width: min(100%, 1280px);
}

@media (max-width: 1100px) {
  header {
    padding: 0.9rem 1rem;
  }

  .menu {
    gap: 0.9rem;
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
  }

  .menu li a {
    font-size: 0.82rem;
    padding: 0.45rem 0.7rem;
  }

  .hero-inner,
  .for-whom-inner,
  .healy-inner,
  .session-flex {
    gap: 1.4rem;
  }

  .two-column .column {
    padding: 1.4rem;
  }
}

@media (max-width: 900px) {
  section {
    padding: 2.2rem 1rem;
  }

  .hero-inner,
  .for-whom-inner,
  .healy-inner,
  .session-flex,
  .profile-hero-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .for-whom-inner {
    flex-wrap: wrap;
  }

  .for-whom-image img {
    margin-top: 0;
  }

  .two-column {
    gap: 1rem;
  }

  .two-column .column {
    flex: 1 1 100%;
    min-width: 0;
  }

  .side-category_list {
    gap: 1rem;
  }

  .side-category_list li {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  section h2 {
    font-size: 1.4rem;
  }

  section p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .card-section,
  .session-intro,
  .retorino-menu .retorino-course,
  #sidePc {
    padding: 1.2rem 1rem;
    margin: 1rem auto;
    border-radius: 12px;
  }

  .course-card {
    padding: 1rem;
  }

  .menu li a {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .header-logo {
    max-width: 170px;
  }

  .menu-button {
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.45rem 0.65rem;
  }

  .menu-button .menu-button-text {
    font-size: 0.72rem;
  }

  section {
    padding: 1.6rem 0.7rem;
  }

  section h2 {
    font-size: 1.24rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.62rem 1.1rem;
  }

  .profile-photo {
    width: 170px;
  }
}

@media (max-width: 1024px) {
  header {
    padding: 0.8rem 1rem;
  }

  header nav {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #a5d6a7;
    background: rgba(255, 255, 255, 0.92);
    color: #2e7d32;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    position: fixed;
    top: 0.85rem;
    right: 0.9rem;
    z-index: 1003;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  }

  .menu-button .menu-button-icon {
    width: 18px;
    height: 14px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-button .menu-button-icon span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #2e7d32;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  .menu-button.is-open .menu-button-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button.is-open .menu-button-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open .menu-button-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-button .menu-button-text {
    color: #2e7d32;
  }

  .menu {
    top: 0;
    left: 100%;
    width: 100%;
    height: 100dvh;
    padding: 5.5rem 1.5rem 2rem;
    background: rgba(242, 249, 245, 0.98);
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.85rem;
    overflow-y: auto;
    transition: left 0.28s ease;
    backdrop-filter: blur(10px);
  }

  .menu.active {
    left: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .menu li a {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dce8de;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .menu li a:hover,
  .menu li a:focus {
    background: #eff8ef;
    color: #2e7d32;
    box-shadow: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}
