/* --- ベーススタイル --- */
:root {
    --color-text-main: #333;
    --color-bg-season: #C9EAFF;
    --color-bg-blue: #7A97F3;
    --color-bg-pink: #FFDBF3;
    --color-btn-pink: #FF78AD;
    --font-main: "noto sans jp", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--color-text-main);
    line-height: 150%; 
    font-size: 14px;
    font-weight: normal;
    background-color: #E5F5FD;
    background-image: url(../images/260316/bg-all.png);
    background-position-x: center;
    background-repeat: no-repeat;
}
ul{
    padding-left: 1.5em;
    line-height: 200%;
}
p{
    margin: 0;
}
h3,h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

main {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* --- 共通クラス --- */

section {
    width: 100%;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.container {
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.bg-white { background: #ffffff; }
.bg-season { background: var(--color-bg-season); }
.bg-blue { background: var(--color-bg-blue); }
.bg-pink { background: var(--color-bg-pink); }
.bg-closs-grid{ background-color: #ffffff; background-image: linear-gradient(#F4F4F4 2px, transparent 2px), linear-gradient(90deg, #F4F4F4 2px, transparent 2px); background-size: 25px 25px;}

.layout-grid-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5px;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.rounded-content {
    border-radius: 16px;
    border: 2px solid #333;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    position: relative;
}
.rounded-inner {
    overflow: hidden;
    border-radius: 16px;
}
.rounded-content.pad-20 { padding: 20px; }
.rounded-content.pad-0 { padding: 0px; overflow: hidden; }



.text_echo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    gap: 0.5em;
    color: #333;
    font-size: 16px;
    line-height: 120%;
    font-weight: 700;
}

.text_echo::before,
.text_echo::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 18px;
    background-color: #333;
    transform-origin: center;
}
.text_echo::before {
    transform: rotate(-20deg); 
}
.text_echo::after {
    transform: rotate(20deg);
}

.btn-pink {
    display: inline-flex;
    height: 56px;
    width: 100%;
    max-width: 300px;
    padding: 15px 15px 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    border: 2px solid #333;
    background: var(--color-btn-pink);
    box-shadow: 0 3px 0 0 var(--color-bg-blue);
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
    text-shadow: 1px 1px 0 #333, -1px 1px 0 #333, 1px -1px 0 #333, -1px -1px 0 #333, 1px 0px 0 #333, -1px 0px 0 #333, 0px 1px 0 #333, 0px -1px 0 #333;
}



.btn-pink:active { transform: translateY(3px); box-shadow: none; }
.btn-pink::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 8px;
}


.btn-line-green {
    display: inline-flex;
    height: 56px;
    width: 100%;
    min-width: 300px;
    max-width: 300px;
    padding: 15px 15px 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    border: 2px solid #333;
    background: #06C755;
    box-shadow: 0 3px 0 0 var(--color-bg-blue);
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
    text-shadow: 1px 1px 0 #333, -1px 1px 0 #333, 1px -1px 0 #333, -1px -1px 0 #333, 1px 0px 0 #333, -1px 0px 0 #333, 0px 1px 0 #333, 0px -1px 0 #333;
}
.btn-line-green:active { transform: translateY(3px); box-shadow: none; }
.btn-line-green::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 8px;
}

.cloud-decoration {
    position: absolute;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

/* --- 各セクション個別スタイル --- */

/* 1. FV */
#fv { background-color: #f0f8ff; padding: 0px; position: relative;}
.fv-content { text-align: center;  position: absolute; bottom: 45px; left: 0; right: 0;}
.fv-btn-area { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.fv-consult-text { font-weight: bold; color: var(--color-text-main); }

#fv-left { padding: 0px; position: fixed; top: 100px; max-width: 355px; left: 50%; margin-left: -565px;}
#fv-left .rounded-content{ border: solid 0px #fff;}
#fv-left .upper-line{padding-top: 20px; border-top: dashed 2px #C6C6C6;}

#fv-right { padding: 0px; position: fixed; top: 100px; max-width: 355px; right: 50%; margin-right: -565px;}
#fv-right .rounded-content{ border: solid 0px #fff;}
@media screen and (max-width: 1179px) {
    #fv-left, #fv-right {display: none;}
}

/* 2. Discount */
#discount { background-color: #fff; }
.discount-banners { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; align-items: center; }

/* 3. Concerns */
#concerns { color: #fff; position: relative; padding-top: 60px; padding-bottom: 60px; }
.concern-lead { font-size: 1.3rem; font-weight: bold; text-align: center; margin-bottom: 30px; line-height: 1.5; }
.concern-list { display: flex; flex-direction: column; gap: 25px; }

/* 吹き出しスタイル */
.concern-bubble {
    position: relative;
    color: var(--color-text-main);
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 15px;
}
.concern-img { height: auto; flex-shrink: 0; }
.concern-text { flex: 1; text-align: left; font-size: 0.95rem; }
.concern-item-left { margin-right: auto; margin-left: 0; }
.concern-item-right { margin-left: auto; margin-right: 0; flex-direction: row-reverse; }
.concern-item-right .concern-text { text-align: left; }

.cloud-top { top: -40px; left: 0; z-index: 20; }
.cloud-bottom { bottom: -40px; left: 0; z-index: 20; }

#experience { padding-top: 0px; }
.experience-title-img { margin-bottom: 20px; }

.cloud-3-1-1{top: -25px; left: -32px; z-index: 10;}
.cloud-3-1-2{top: 0px; left: -32px; z-index: 11;}
.cloud-3-3{bottom: -20px; right: -32px; z-index: 10;}

/* Area4専用：concern-bubbleの上書きスタイル */
.area4-custom {
    display: block !important; /* flex解除 */
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important;
}
.check-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.check-item-row {
    display: flex;
    align-items: flex-start; /* アイコンを上揃え */
    gap: 10px;
    text-align: left;
    line-height: 1.5;
    font-weight: bold;
    font-size: 0.95rem;
}
.check-item-row svg {
    flex-shrink: 0;
    margin-top: 4px; /* テキストとの位置合わせ */
}

.cloud-4-1-1{top: -58px; right: -32px; z-index: 10;}
.cloud-4-1-2{top: 15px; right: -22px; z-index: 11;}
.cloud-4-1-3{bottom: -20px; left: -22px; z-index: 10;}

/* 5. Recommendation */
#recommendation .recommendation-content { text-align: center; }

/* 6. Courses */
#courses { background-color: #fff; }
.course-card { display: flex; flex-direction: column; margin-bottom: 0; text-align: center; width: 100%; color: #333; font-family: "Noto Sans JP"; font-size: 14px; font-style: normal; font-weight: 700;}
.course-card-inner { background: #fff; margin: 15px; padding: 15px; border-radius: 8px; }
.course-card-title { display: flex; justify-content: flex-start; align-items: center; margin-bottom: 20px;}
.course-card-title-text{ text-align: left;}
.course-card-title-text-main{ font-size: 14px;}
.course-card-title-text-sub{ font-size: 12px;}
.flag-icon { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; margin: 0px 10px 10px 0px; border: 2px solid #fff; background: #eee; }

.course-stats { margin: 20px 0; }
.course-card-staff { display: flex; justify-content: flex-start; align-items: center; margin-bottom: 20px; background-color: #F4F4F4; border-radius: 5px; padding: 10px;}
.course-card-staff img { border-radius: 50%; margin-right: 10px;}
.title-sub-blue{ border-radius: 5px; background: #4467DB; box-shadow: 4px 4px 0 0 #304DAE; margin: 20px; padding: 5px 10px; color: #fff; text-align: center; font-family: "Noto Sans JP"; font-size: 16px; font-style: normal; font-weight: 700; line-height: 150%;}

/* 7. Interest */
#interest{ padding: 40px 0 20px;}
.interest-list { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; padding: 0 5px; }
.interest-item { background: rgba(255, 255, 255, 0.9); padding: 15px 20px; border-radius: 100px; text-align: center; font-weight: bold; width: fit-content; max-width: 85%; }
.interest-item:nth-child(1) { align-self: flex-start; margin-left: 0; }
.interest-item:nth-child(2) { align-self: flex-end; margin-right: 0; }
.interest-item:nth-child(3) { align-self: flex-start; margin-left: 10%; }

/* 8. Solution */
#solution{ padding: 0px 0 40px;}
.solution-card { width: 100%; text-align: center; position: relative; }

.cloud-8-1-1{top: -18px; right: -22px; z-index: 10;}
.cloud-8-1-2{bottom: -15px; left: -22px; z-index: 11;}
.cloud-8-2-1{bottom: -10px; right: -22px; z-index: 10;}
.cloud-8-2-2{bottom: -20px; right: -22px; z-index: 11;}
.cloud-8-3-1{bottom: -20px; left: -22px; z-index: 10;}

/* 9. Reasons */
#reasons p { line-height: 150%;}
.reason-card { background: #fff; margin-bottom: 0; text-align: center; width: 100%; }
.reason-card p { line-height: 150%;}
.reason-number { width: 52px; margin: 0 auto 10px; }
.reason-text-area { margin-top: 10px; line-height: 200%; font-weight: 500;}
.number-title{ text-align: left; width: 100%; max-width: 315px; margin: 0 auto;}
.number-title h3{ line-height: 150%;}

/* 10. Voice */
#voice { background-color: #fff; }
.voice-card { width: 100%; margin-bottom: 20px; line-height: 150%;}
.voice-card p,.voice-card h3 { line-height: 150%;}
.voice-title { font-weight: bold; margin-bottom: 10px; text-align: center; }
.text-title{font-weight: bold; line-height: 150%;}

/* 11. FAQ */
.faq-accordion { margin-top: 20px; }
.faq-item { background: #fff; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 15px; font-weight: bold; cursor: pointer; position: relative; display: flex; align-items: center; }
.faq-q-icon { width: 20px; margin-right: 10px; }
.faq-a-icon { width: 22px; height: 19px; margin-top: 20px; margin-right: 10px; }

/* アイコンのスタイル変更 */
.faq-toggle-icon {
    margin-left: auto;
    width: 20px;
    height: 20px;
    position: relative;
}
.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}
/* 横棒 */
.faq-toggle-icon::before {
    width: 70%;
    height: 2px;
}
/* 縦棒 */
.faq-toggle-icon::after {
    width: 2px;
    height: 70%;
}
/* アクティブ時: 縦棒を回転させて横にする（マイナスに見せる） */
.faq-item.active .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    display: flex;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    padding: 0;
    margin: 0 15px;
}
.faq-answer p { padding: 15px 0; margin: 0; }
.faq-item.active .faq-answer { max-height: 500px; border-top: dotted 1px #CCCCCC;}

/* 12. Special Spring */
#special-spring { text-align: center; }
#special-spring .title_img{ margin-bottom: -40px; }

/* 13. Footer */
#footer { text-align: left; padding: 40px 30px; font-size: 14px; line-height: 200%;}
.copy-text{ font-weight: bold; margin-top: 20px;}

.title_white-text{
color: #FFF;
text-align: center;
-webkit-text-stroke-width: 1.2px;
-webkit-text-stroke-color: #333;
font-family: "Noto Sans JP";
font-size: 16px;
font-style: normal;
font-weight: 900;
line-height: 200%; /* 32px */
}
.area-square {
    border-radius: 0px;
}

.note-text {
  /* --- ご指定のスタイル --- */
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.019px;

  /* --- ※の位置調整用（Flexbox） --- */
  display: flex;
  align-items: baseline; /* テキストのベースラインに合わせる */
  gap: 0.25em; /* ※とテキストの間隔 */
}

/* 「※」を自動生成する設定 */
.note-text::before {
  content: "※";
  flex-shrink: 0; /* ※が潰れないようにする */
}

