/* --- ベーススタイル --- */
:root {
    --color-text-main: #333;
    --color-bg-blue: #7A97F3;
    --color-bg-navy: #01224B;
    --color-bg-cream: #FFF8EB;
    --color-bg-pink: #FFEDF2;
    --color-bg-green: #E5F8AE;
    --color-btn-pink: #FF7885;
    --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: #01224B;
    background-image: url(../images/bg-all.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: contain;
}
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;
}
@media screen and (max-width: 768px) {
    main {
        max-width: 100%;
    }
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* --- 共通クラス --- */

section {
    width: 100%;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

section h2 img { width: 100%;}

.container {
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.bg-white { background: #ffffff; }
.bg-blue { background: var(--color-bg-blue); }
.bg-navy { background: var(--color-bg-navy); }
.bg-cream { background: var(--color-bg-cream); }
.bg-pink { background: var(--color-bg-pink); }
.bg-green { background: var(--color-bg-green); }
.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;}

.text-pink{ color: #D11E66;}
.text-gray{ color: #FABBD4;}

.marker_yellow{
    background: linear-gradient(transparent calc(100% - 0.7em), #FBF281 calc(100% - 0.7em)); display: inline; padding: 0 4px;
    box-decoration-break: clone; /* 改行してもスタイルを維持（Chrome等対応） */
    -webkit-box-decoration-break: clone; /* Safari用 */
}

.layout-grid-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5px;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.rounded-content {
    border-radius: 16px;
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    .rounded-content {
        width: calc(100% - 0px);
        max-width: 100%;
    }
}
.rounded-inner {
    overflow: hidden;
    border-radius: 16px;
}
.rounded-content.pad-20 { padding: 20px; }
.rounded-content.pad-0 { padding: 0px; overflow: hidden; }

.btn-pink {
    display: inline-flex;
    height: 56px;
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    padding: 15px 12.5px 15px 17.5px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 2px solid #333;
    background: var(--color-btn-pink);
    box-shadow: 0 3px 0 0 #FDD85F;
    gap: 5px;
    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 .btn-text{ flex-grow: 1; text-align: center;}


.btn-line-green {
    display: inline-flex;
    height: 42px;
    width: 100%;
    /*max-width: 300px;*/
    min-width: 300px;
    padding: 10px 12.5px 10px 17.5px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #E95180;
    gap: 5px;
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
}
.btn-line-greenk:active { transform: translateY(3px); box-shadow: none; }
.btn-line-green .btn-text{ flex-grow: 1; text-align: center;}

.btn-White {
    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 var(--color-btn-pink);
    background: #fff;
    box-shadow: 0 3px 0 0 var(--color-btn-pink);
    color: var(--color-btn-pink);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
}
.btn-White:active { transform: translateY(3px); box-shadow: none; }
.btn-White::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-btn-pink);
    border-right: 2px solid var(--color-btn-pink);
    transform: rotate(45deg);
    margin-left: 8px;
}

.cloud-parent{
    position: relative;
}
.cloud-decoration {
    position: absolute;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

.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);
}


.event_title{
    color: #01224B;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    padding: 10px 0;
    border-top: 1px solid #01224B;
    border-bottom: 1px solid #01224B;
}

.event_title_balloon {
    border-bottom: 1px solid #01224B;
    background-color: transparent;
    color: #01224B;
    position: relative;
    margin-bottom: 20px; 
}

/* =========================================
   擬似要素（三角形）の共通設定
   ========================================= */
.event_title_balloon::before,
.event_title_balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* 中央配置 */
    border-style: solid;
}

/* -----------------------------------------
   三角形の輪郭線（外側・ボーダー色）
   ----------------------------------------- */
.event_title_balloon::before {
    bottom: -16px;
    border-width: 16px 16px 0 0; 
    border-color: #01224B transparent transparent transparent;
    z-index: 1;
}

/* -----------------------------------------
   三角形の塗り（内側・背景色）
   ----------------------------------------- */
.event_title_balloon::after {
    bottom: -14px;
    border-width: 14px 14px 0 0; 
    border-color: #FFF8EB transparent transparent transparent;
    z-index: 2;
}

.event_title-white{
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.event_title-white.event_title_balloon {
    border-bottom: 1px solid #fff;
    color: #fff;
}

.event_title-white.event_title_balloon::before {
    border-color: #fff transparent transparent transparent;
}
.event_title-white.event_title_balloon::after {
    border-color: #01224B transparent transparent transparent;
}

/* --- 各セクション個別スタイル --- */

/* 1. FV */
#fv { background-color: #f0f8ff; padding: 0px; position: relative;}
#fv h1{ margin: 0;}
.fv-content { text-align: center;  position: relative; background-color: #01224B; padding-bottom: 20px;}
.fv-btn-area { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #fff;}

#fv .fv-btn-area{ width: 100%; margin-left: auto; margin-right: 15px;}
.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; color: #fff;}
#fv-right .rounded-content{ border: solid 0px #fff; padding: 40px 20px;}
#fv .btn-pink {
    padding: 15px 5px 15px 10px;
    gap: 0px;
}
@media screen and (max-width: 1179px) {
    #fv-left, #fv-right {display: none;}
}
@media screen and (max-width: 768px) {
    #fv img{
        width: 100%;
    }
}
#fv .btn-line-green{
    max-width: 300px;
}

.fv_column{
    color: #DA3A7A;
    display: flex;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    gap: 20px;
    width: 100%;
    padding: 10px 20px 20px;
}
.kv_column-contents{
    width: 100%;
    background-color: #fff;
    padding: 5px;
}

/* 2. Discount */
#event{ padding: 40px 20px;}

.event_content-text{
    color: #01224B;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}
.event_content-text span{
    color: #E95180;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.cloud-2-1{top: -25px; left: -32px; z-index: 10;}
.cloud-2-4{bottom: -25px; right: -32px; z-index: -1;}

/* 3. Concerns */
#concerns { color: #fff; position: relative; padding-top: 60px; padding-bottom: 40px; }
.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;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

#concerns .concern-bubble{ gap: 15px;}

.concern-img { height: auto; flex-shrink: 0; }
.concern-text {display: flex; flex: 1; text-align: left; font-size: 0.95rem; line-height: 200%; justify-content: center;}
#concerns .concern-text { font-size: 14px;}
.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; }

#experience { padding-top: 0px; }
#experience p {line-height: 150%;}
.experience-title-img { margin-bottom: 20px; }

@media screen and (max-width: 768px) {
    #concerns.concern-bubble {

    }
    .concern-img{
        min-width: 120px;
    }
    .concern-img img{
        width: 100%;
    }
}

/* 4.concern-bubble */
#schedule .rounded-content{
    padding: 35px 15px 20px;
}
#schedule .concern-bubble{
    flex-direction: column;
    align-items: flex-start;
}

.schedule_title{ color: #002D64; font-family: "Noto Sans JP"; font-size: 20px; font-style: normal; font-weight: 700; line-height: 150%;}
.schedule_text{ color: #000; font-family: "Noto Sans JP"; font-size: 14px; font-style: normal; font-weight: 400; line-height: 150%;}
.schedule_time-area{ display: flex; align-items: center; width: 100%;}
.schedule_badge{ border-radius: 6.12px; border: 1.53px solid #E95180; background:#FFF; padding: 10px 8px; color: #E95180; text-align: center; font-family: "Noto Sans JP"; font-size: 15.301px; font-style: normal; font-weight: 700; line-height: 130%; letter-spacing: 0.024px;}
.schedule_time{ margin-left: auto;}
.schedule_link{ border-radius: 106.349px; border: 1px solid #E95180;background: #FFF; text-decoration: none; display: flex; width: 100%; min-width: 300px; padding: 10px 40px; justify-content: center; align-items: center;}
.schedule_link-text{ color: #E95180;}
.schedule_link svg{ }

.cloud-4-1{top: -20px; right: -25px; z-index: 11;}
.cloud-4-3{top: -20px; right: -25px; z-index: 11;}


/* 5. Recommendation */
#session .rounded-content{
    padding: 30px 15px 30px;
}
#session .concern-bubble{
    flex-direction: column;
    align-items: center;
    border-radius: 0;
}

.session_title{ color: #002D64; font-family: "Noto Sans JP"; font-size: 20px; font-style: normal; font-weight: 700; line-height: 150%; text-align: center;}
.session_personal{ text-align: center; background-color: #FFF8EB; width: 100%; padding: 20px; border-radius: 10px;}
.session_personal_2column{ display: flex; gap: 10px; justify-content: center;}
.session_text{ color: #000; font-family: "Noto Sans JP"; font-size: 14px; font-style: normal; font-weight: 400; line-height: 150%;}
.session_time-area{ display: flex; align-items: center; width: 100%;}
.session_badge{ border-radius: 6.12px; border: 1.53px solid #E95180; background:#FFF; padding: 10px 8px; color: #E95180; text-align: center; font-family: "Noto Sans JP"; font-size: 15.301px; font-style: normal; font-weight: 700; line-height: 130%; letter-spacing: 0.024px;}
.session_time{ margin-left: auto;}



/* 6. booth */
.booth_contents{ padding: 20px;}
.booth_country{ display: flex; padding-right: 20px; align-items: center; gap: 10px; margin-bottom: 10px;}
.flag_img{ display: flex; gap: 5px;}
.flag_img img{ width: 45px; height: 45px;}
.country_name{ color: #002D64; font-family: "Noto Sans JP"; font-size: 16px; font-style: normal; font-weight: 700; line-height: 150%;}
.booth_text-area{ margin-bottom: 20px; padding-bottom:10px; border-bottom: 1px dashed #CCC; background: #FFF;}
.booth_title{ margin-bottom: 10px; color: #121212; font-family: "Noto Sans JP"; font-size: 14px; font-style: normal; font-weight: 700; line-height: 150%;}
.booth_text{ color: #121212; font-family: "Noto Sans JP"; font-size: 14px; font-style: normal; font-weight: 400; line-height: 150%;}


/* =========================================
   アコーディオン用スタイル
   ========================================= */
/* ボタントリガー */
.accordion-btn {
    cursor: pointer;
    /* 既存の .booth_country に display: flex; が当たっている想定です */
}

/* ＋アイコンのベース設定 */
.accordion-icon {
    margin-left: auto; /* 右端に押しやる */
    position: relative;
    width: 16px;
    height: 16px;
    display: block;
}

/* ＋の横線と縦線を作成 */
.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #002D64; /* サイトのテーマカラー（適宜調整してください） */
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* 横線 */
.accordion-icon::before {
    width: 14px;
    height: 2px;
}

/* 縦線 */
.accordion-icon::after {
    width: 2px;
    height: 14px;
}

/* アコーディオンが開いた時 (.is-open) に縦線を消して「マイナス」にする */
.accordion-btn.is-open .accordion-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* 初期状態：高さを0にして隠す */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr; /* 高さを0に */
    transition: grid-template-rows 0.3s ease-out; /* 開閉のスピードと動き方 */
}

/* 開いた状態：高さを中身に合わせて100%に */
.accordion-content.is-open {
    grid-template-rows: 1fr;
}

/* 中身のラッパー：はみ出しを防ぎ、余白や透明度も滑らかに表示 */
.accordion-inner {
    overflow: hidden; /* 必須：はみ出た要素を隠す */
    padding-top: 0;
    opacity: 0;
    transition: padding-top 0.3s ease-out, opacity 0.3s ease-out;
}

/* アコーディオンが開いた時の中身の装飾 */
.accordion-content.is-open .accordion-inner {
    padding-top: 15px; /* 上部の余白 */
    opacity: 1; /* ふわっと表示させる */
}

/* テキストの基本スタイル */
.accordion-toggle-text {
    text-align: center;
    font-size: 14px;
    color: #01224B;
    margin: 15px 0 0;
    font-weight: bold;
    cursor: pointer;
}
/* アコーディオンが開いた状態(.is-open)の「直後(+)」にあるテキストを非表示にする */
.accordion-btn.is-open + .accordion-toggle-text {
    display: none;
}


/* 7. benefits */
#benefits .rounded-content{
    margin-bottom: 40px;
}
#benefits .concern-list{
    gap: 5px;
}
#benefits .concern-bubble .note-text{margin-top: 10px;
    justify-content: center;
}
.benefits_content-text{
    color: #01224B;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    padding: 35px 15px 15px;
}
.benefits_content-text span{
    color: #E95180;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.cloud-7-1{top: -25px; z-index: 10;}
.cloud-7-2{top: -25px; z-index: 10;}
.cloud-7-3{top: -25px; z-index: 10;}

/* 8. access */
.access_title{ display: flex; align-items: center; gap: 5px; margin-bottom: 20px;}
.access_title-text{ font-size: 18px; font-weight: 700;}
.access_title-text span{ font-size: 14px; font-weight: 400;}

#access .rounded-content{
    padding: 30px 15px;
}

/* 9. 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 */
}

/* 14.  */
#recommendation_select{ position: relative; padding: 0 0 40px;}

/* 15. Footer */
.select_area{ padding: 20px; margin: 20px; border-radius: 16px;}
.select_area-inner{ display: flex; align-items: center;}
.select_area-text{ line-height: 150%; padding: 10px 15px; margin-right: 10px; border-radius: 10px; font-weight: bold;}
.select_area-text li{ margin-bottom: 10px; font-size: 12px; margin-left: 1.5em;}
.select_area-inner img{ height: fit-content;}
.select_area-recommend{ text-align: center; line-height: 250%; font-weight: bold;}


.title-area-square{ line-height: 250%; margin: 0 20px; padding: 10px; text-align: center; border-radius: 5px; position: relative;}

.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; /* ※が潰れないようにする */
}

.area-square{border-radius: 0px;}
