@charset "UTF-8";
/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a,a:hover,a:visited{
    color: inherit;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/*リセットCSSここまで*/

/* ====================================
   1. リセット・共通設定
   ==================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* ====================================
   2. PCデフォルトスタイル (最大1000px)
   ==================================== */

/* --- ヘッダーエリア --- */
.header {
    background-color: white; 
}
.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; 
    padding: 0px 0;
}
.logo {
    height: 62px;
    width: 200px;
    display: inline-block;
}

/* --- メインエリア (.maineria) --- */
.maineria {
    background-color: #75C9E0; 
    width: 100%;
    padding-bottom: 20px; 
    text-align: center;
}
.maineria-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-visual {
    /* 画像サイズ: 高さ580px 幅1000px (PCの最大幅に合わせる) */
    width: 1000px;
    height: 580px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- CTAボタン --- */
.cta-button {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    position: relative;
    
    width: 600px;
    height: 74px;
    margin-top: 20px; 
    
    background-color: #FFF697;
    border: 3px solid #3C3D3D; 
    border-radius: 37px; 
    text-decoration: none; 
    color: #3C3D3D;
    font-weight: bold;
    box-sizing: border-box; 
}

.cta-main-text {
    font-size: 25px;
    line-height: 1; 
    padding-top: 10px;
}
.cta-sub-text {
    font-size: 14px;
    line-height: 1; 
    margin-top: 5px; 
}

.arrow-icon {
    position: absolute;
    right: 10px; 
    top: 50%;
    width: 10px; 
    height: 10px; 
    
    border-top: 1px solid #3C3D3D; /* 上辺 */
    border-right: 1px solid #3C3D3D; /* 右辺 */
    border-bottom: none;
    border-left: none; 
    transform: translateY(-50%) rotate(45deg);
}

/* --- creamyellowエリア --- */
.creamyellow {
    background-color: #F9F7EF;
    width: 100%;
    padding: 40px 0;
}
.creamyellow-inner {
    max-width: 800px; 
    margin: 0 auto;
}
.creamyellow-title {
    max-width: 590px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto ;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative; 
    
    font-size: 30px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif; 
    font-weight: bold; 
}

/* 左上角のライン */
.creamyellow-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    
    border-top: 1px solid #3C3D3D;
    border-left: 1px solid #3C3D3D;
    
    width: 80px; 
    height: 80px; 
}

/* 右下角のライン */
.creamyellow-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    
    border-bottom: 1px solid #3C3D3D;
    border-right: 1px solid #3C3D3D;
    
    width: 80px;
    height: 80px;
}

/* --- スマートフォン対応の調整 --- */
@media (max-width: 768px) { 
    .creamyellow-title {
        max-width: 90%; 
        height: auto;
        line-height: 1.5;
        padding: 10px 0;
         margin: 0 auto 0px; 
        font-size: 22px; 
    }

    .creamyellow-title::before,
    .creamyellow-title::after {
        width: 40px; 
        height: 40px; 
    }
}
.two-column {
    display: flex;
}
.text-column {
    flex-basis: 75.75%; 
    padding: 0 30px; 
    box-sizing: border-box;
}
 .big{font-size: 18px; 
    font-weight: bold; }

 .midi{font-size: 15px; 
    font-weight: bold; 
    padding-top: 1em;}

.image-column {
    background-color: transparent; 
    line-height: normal; 
    text-align: center;
    
    flex-grow: 1; 
    flex-shrink: 0;
    flex-basis: 254px; 
    width: 254px; 
    height: auto; 
    min-height: 150px; 
}

/* image-column内の画像に対するスタイル */
.image-column .responsive-image {
    width: 100%; 
    height: auto; 
    display: block;
    max-width: 254px; 
}



/* --- whiteエリア --- */
.white {
    background-color: white;
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
.white-inner {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 0 20px; 
}
.text-area-700 {
    max-width: 700px;
    margin: 20px auto;
    padding: 10px;

    border: none; 
    text-align: left; 
}

/* タイトルスタイル */
.text-area-title {
    text-align: center; 
    font-weight: bold; 
    font-size: 28px;
    margin-bottom: 20px; 
    line-height: 1.5;
}

/* 本文スタイル */
.text-area-body {
    text-align: left; 
    font-weight: bold; 
    font-size: 18px;
}
/* --- whiteエリア --- */

.box1 {
    max-width: 800px;
    height: auto; 
    margin: 20px auto;
    background-color: transparent; 
    border: none;
    padding: 0;
    line-height: normal;
}

/* 見出しのスタイル */
.box1-heading {
    height: 24px; 
    line-height: 24px;
    width: 100%; 
    
    background-color: #E07C75; 
    text-align: center; 
    
    color: white; 
    font-size: 19px; 
    font-family: "Hiragino Kaku Gothic ProN", sans-serif; 
    font-weight: bold;
    
    margin: 0;
    padding: 0;
}



.cta-wrapper {
    text-align: center;
    margin-top: 30px; 
    margin-bottom: 30px; 
}

.cta-button {
    display: inline-flex;
    margin-left: 0;
    margin-right: 0;
}


/* 画像のスタイル */
.box1-image {
    width: 100%; 
    height: auto; 
    display: block; 
    margin: 0; 
}

/* システム改修No1457対応 */

.flex {
    display: flex;
    gap: 20px;
}

.bold {
    font-weight: bold;
}







/* --- スマートフォン対応の調整 (@mediaブロック内) --- */
@media (max-width: 768px) {

    .box1 {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .box1-heading {
        font-size: 17px; 
        height:1.2em;
        line-height: 1.2em;
    }
    
    .box1-image {
        width: 100%;
        height: auto;
    }

    .cta-wrapper {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px; 
}

/* タイトルスタイル */
.text-area-title {
    text-align: center;
    font-weight: bold; 
    font-size: 22px; 
    margin-bottom: 0px;
    line-height: 1.5;
}
}


/* --- aquaエリア --- */
.aqua {
    background-color: #75C9E0; 
    width: 100%; 
    padding: 50px 0;
    text-align: center;
}
/* --- aquaエリア --- */
/* ... (aqua の既存の定義) ... */

.aqua-inner {
    max-width: 1000px; 
    margin: 0 auto;
    padding: 63px 20px 20px 60px; 
    background-color: white; 
    text-align: center; }

/* 1. タイトルスタイル */
.aqua-title {
    text-align: center; 
    font-weight: bold;
    font-size: 25px; 
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    margin-bottom: 30px;
}

/* 2. 本文エリア (最大幅700px) */
.aqua-text-body {
    max-width: 700px; 
    margin: 0 auto 30px; 
    text-align: left; 
    line-height: 1.6;
    font-weight: bold;
}

/* 3. Frame1 (最大幅800px) */
.frame1 {
    max-width: 800px; 
    margin: 40px auto;
    padding: 30px;
    background-color: #F9F6EF; 
    
    /* 影の表現: 右斜め下に向かった影 */
    box-shadow: 6px 6px 0px #c1c1c1; 
}

/* Frame1 内のテキスト (最大幅700px) */
.frame1-text {
    max-width: 700px; 
    margin: 0 auto;
    text-align: left; 
}

/* 最初の2行の色設定 */
.frame1-text .highlight-line {
    color: #E15E4E; 
    font-weight: bold;
}



/* ==================================== */
/* QAセクション全体のスタイル */
/* ==================================== */
.qa-section {
    text-align: left;
    width: 90%; 
    max-width: 800px;
    margin: 50px auto; 
    padding: 20px;
}

.qa-title {
    text-align: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 3px solid #ffff; 
    padding-bottom: 10px;
}

/* 質問と回答のセット */
.qa-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* アコーディオンの開閉に使うチェックボックス (非表示にする) */
.qa-toggle {
    display: none;
}

/* 質問 (クリックできる部分) */
.qa-question {
    display: flex;
    align-items: flex-start; 
    
    cursor: pointer;
    padding: 15px 50px 15px 20px; 
    /* ---------------------------------------------------------------------- */
    background-color: #ffff;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s;
    position: relative;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
}

.qa-question:hover {
    background-color: #eee;
}

/* 質問の Q マーク */
.qa-q-mark {
    flex-shrink: 0;
    display: inline-block;
    color: #75C9E0; 
    margin-right: 10px;
    font-size: 1.1em;
}

/* 開閉アイコンのスタイリング */
.qa-question::after {
    content: '+'; /* 閉じているときは + */
    position: absolute;
    right: 20px; 
    bottom: 15px; 
    /* --------------------------------------------------------------- */
    font-size: 24px;
    color: #75C9E0;
    transition: transform 0.3s;
}

/* 回答のコンテナ */
.qa-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* 回答のスタイル  */
.qa-answer {
    display: flex; 
    padding: 15px 20px;
    margin: 0;
    background-color: #F4F3ED; 
    color: #141414;
    line-height: 1.6;
    font-size: 16px;
}

/* 回答の A マーク */
.qa-a-mark {
    flex-shrink: 0;
    display: inline-block;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1em;
    color: rgba(199, 78, 78, 0.8); 
}

/* 回答テキスト本体 */
.qa-text-content {
    flex-grow: 1;
}

/* **アコーディオン開閉のロジック** */
/* チェックボックスがチェックされたら */
.qa-toggle:checked ~ .qa-question::after {
    content: '−'; /* 開いたら − にする */
    transform: rotate(180deg);
}

.qa-toggle:checked ~ .qa-answer-container {
    max-height: 500px; 
}




/* ====================================
  電話問い合わせエリア (softyellow)
   ==================================== */

.softyellow.contact-area {
    background-color: #FFFCE9; 
    padding: 50px 0;
    text-align: center;
    
    width: 100vw; 
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.softyellow-inner.contact-inner { 
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0px;}

/* --- 見出し --- */
.contact-title {
    color: #3F6EA9; 
    font-size: 38px; 
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* --- 本文テキスト --- */
.contact-text-body {
    max-width: 800px; 
    margin: 0 auto 30px;
    text-align: left;
     font-weight: bold;
}

.contact-text-body p {
    color: #3F6EA9; 
    font-size: 18px; 
 
}

/* --- 電話番号ラベル枠 (中央寄せ) --- */
.contact-tel-wrapper {
    text-align: center;
}

.tel-label-box {
    display: inline-block;
    height: 28px; 
    line-height: 24px;
    margin-bottom: 0px; 
    
    background-color: white; 
    border: 1px solid #3F6EA9; 
    color: #3F6EA9; 
    box-sizing: border-box;
    border-radius: 2px;
}

.tel-label-text {
    font-size: 13px; 
    font-weight: bold;
    padding: 0 0px;
}

/* --- 電話番号 --- */
.tel-number-box {
    text-align: center;
}

.tel-number {
    color: #3F6EA9;
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}

.tel-hours {
    color: black; 
    font-size: 16px;
    margin-top: 0px; 
    margin-bottom: 0;
}


/* ====================================
   レスポンシブ (PC/SP サイズ指定)
   ==================================== */

/* PC (769px以上) */
@media (min-width: 769px) {
    .tel-label-box {
        width: 450px; 
    }
    .tel-number.pc-size {
        font-size: 60px; 
    }
}

/* SP (768px以下) */
@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .contact-text-body {
        padding: 0 10px;
       margin-bottom: 20px;
    }
    .contact-text-body p {
    font-size: 14px; 
 
}
    
    .tel-label-box {
        width: 300px; 
    }
    .tel-number.pc-size {
        font-size: 36px; 
    }
}

/* -------------------------------------
   フッターエリア
------------------------------------- */
.footer {
    text-align: center;
    padding: 0px 0;
}


.footer p {
    margin: 0;
    padding: 0;
}


/* 画像のスタイル */
.footer img {
    width: 800px;
    max-width: 100%;
    height: auto;
    display: inline-block; 
}

/* -------------------------------------
   インフォエリア
------------------------------------- */
.info {
    text-align: center;
    background-color: #75C9E0;
    width: 100%; 
    color: #fff;
    padding: 10px 0px;
}
.info p{ padding: 0px 0px; text-align: center; font-size: 15px;}


/* --- スマートフォン対応の調整 (@mediaブロック内) --- */
@media (max-width: 768px) {

.white {
    background-color: white; 
    width: 100%;
    padding: 0px 0;
    text-align: center;
}

.text-area-700 {
    margin: 0px auto;
    padding: 10px;
    border: none; 
    text-align: left;
}

    .aqua {
    padding: 30px 0;
}
    .text-content-wrapper{
        padding-bottom: 0px;
    }
    .aqua-title {
        font-size: 22px; 
        padding-top: 30px;
     margin-bottom: 0px;
    }

    .aqua-text-body {
        width: 98%;
        padding-top: 20px;
        padding-bottom: 0px;
        font-size: 12px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    
        .frame1-text {
        width: 94%;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

.aqua-inner {
    max-width: 96%; 
}
.qa-section {
    width: 90%; 
    max-width: 800px;
    margin: 0px auto; 
    padding: 0px;
}
 .qa-title {
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 3px solid #ffff; 
    padding-bottom: 10px;
}

.qa-question {
    font-size: 14px;
}

/* 回答のスタイル  */
.qa-answer {
    font-size: 13.5px;
}
/* 開閉アイコンのスタイリング */
.qa-question::after {
    bottom: 10px; 
}
   
    .frame1 {
        width: 96%;
        padding: 0px;
        margin: 20px auto;
       box-shadow: 4px 4px 0px #c1c1c1;
    }




.info p{ padding: 0px 24px; text-align: left; font-size: 11px;}
.tel-hours {
    font-size: 10px;
}

}




/* ====================================
  波型ブルー_クリーム
   ==================================== */

.wave-svg-inline {
    background-color: #75C9E0;
    width: 100%;
    height: 100px; /* PCでの高さ */
    position: relative;
}

.wave-svg-inline svg {
    width: 100%;
    height: 100px; /* PCでの高さ */
    position: absolute;
    left: 0;
    bottom: 0;
    fill: #F9F7EF; 
}


/* ====================================
   aquaエリア - 画像エリア
   ==================================== */

.list-image-area {
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0;
}

.full-width-image {
    width: 100%; 
    height: auto; 
    display: block; 
    margin: 0; 
    padding: 0;
}

/* --- スマートフォン対応の調整 (@mediaブロック内) --- */
@media (max-width: 768px) {
    
    .list-image-area {
        width: 100%;
        max-width: 100%; 
        padding: 0 2%; 
        padding-bottom: 30px;
        box-sizing: border-box;
    }

}




@media (min-width: 769px) {
    .pc { display: block !important; /* PC用要素を表示 */}
    .sp { display: none !important; /* SP用要素を非表示 */}
}
@media (max-width: 768px) {
    /* PC/SP 切り替え用クラス */
    .sp { display: block !important; /* SP用要素を表示 */}
    .pc { display: none !important; /* PC用要素を非表示 */}
}



/* ====================================
   aquaエリア - カスタム箇条書きリスト
   ==================================== */

.numbered-list-section {
    max-width: 700px; 
    margin: 0px auto;
    margin-top: 40px;
    margin-bottom: 0px;
    text-align: left; 
}

.custom-list {
    list-style: none; 
    margin: 0;
    padding: 0;
    counter-reset: list-counter; 
}

.custom-list li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 20px;
    line-height: 20px; 
}

.custom-list li::before {
    content: attr(data-content, counter(list-counter)); 
    counter-increment: list-counter; 
    
    position: absolute;
    left: 0;
    top: 0;
    
    /* 丸のスタイル */
    width: 20px; 
    height: 20px; 
    background-color: #E15E4E; 
    border-radius: 50%; 
    
    /* 数字のスタイル */
    color: white;
    font-size: 12px; 
    text-align: center; 
    line-height: 20px; 
    font-weight: bold;
}







/* ====================================
   スマートフォン設定 (768px以下)
   ==================================== */
@media (max-width: 768px) { 
    .wave-container {
        width: 100vw; 
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .wave-svg-inline {
        height: 40px;
    }
    .wave-svg-inline svg {
        height: 40px;
    }
}




/* ====================================
   波型クリーム_白
   ==================================== */

.wave-svg-inline2 {
    background-color: #F9F7EF;
    width: 100%;
    height: 100px; 
    position: relative;
}

.wave-svg-inline2 svg {
    width: 100%;
    height: 100px; 
    position: absolute;
    left: 0;
    bottom: 0;
    fill: #ffff; 
}

/* ====================================
   スマートフォン設定 (768px以下)
   ==================================== */
@media (max-width: 768px) { 
   
    .wave-container2 {
        width: 100vw; 
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    .wave-svg-inline2 {
        height: 40px;
    }
    .wave-svg-inline2 svg {
        height: 40px;
    }
}




/* ====================================
   波型_白_水色
   ==================================== */

.wave-svg-inline3 {
    background-color: #FFFF;
    width: 100%;
    height: 100px; 
    position: relative;
}

.wave-svg-inline3 svg {
    width: 100%;
    height: 100px; 
    position: absolute;
    left: 0;
    bottom: 0;
    fill: #75C9E0; }

/* ====================================
   スマートフォン設定 (768px以下)
   ==================================== */
@media (max-width: 768px) { 
    .wave-container3 {
        width: 100vw; 
        margin-left: calc(50% - 50vw); 
        margin-right: calc(50% - 50vw);
    }

    .wave-svg-inline3 {
        height: 40px;
    }
    .wave-svg-inline3 svg {
        height: 40px;
    }
}



/* ====================================
   波型_水色_白
   ==================================== */

.wave-svg-inline4 {
    background-color: #75C9E0;
    width: 100%;
    height: 100px; 
    position: relative;
}

.wave-svg-inline4 svg {
    width: 100%;
    height: 100px; 
    position: absolute;
    left: 0;
    bottom: 0;
    fill: #ffff; 
}

/* ====================================
   スマートフォン設定 (768px以下)
   ==================================== */
@media (max-width: 768px) { 
    .wave-container4 {
        width: 100vw; 
        margin-left: calc(50% - 50vw); 
        margin-right: calc(50% - 50vw);
    }

    .wave-svg-inline4 {
        height: 40px;
    }
    .wave-svg-inline4 svg {
        height: 40px;
    }
}

/* ====================================
   3. スマートフォン設定 (768px以下)
   ==================================== */
@media (max-width: 768px) {
    
    /* --- 共通: body幅の調整 --- */
    body {
        width: 96%; 
        margin: 0 2%; 
    }
    
    .maineria, .creamyellow, .white, .aqua,.info{
        width: 100vw; 
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .header-inner, .maineria-inner, .creamyellow-inner, .white-inner, .aqua-inner {
        padding-left: 2%; 
        padding-right: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
        box-sizing: border-box;
    }
       .header-inner {
        padding-top: 0px;
        padding-bottom: 0px;
       }
    
    /* --- CTAボタンの調整 --- */
    .cta-button {
        max-width: 260px;
        height: auto;
        min-height: 50px;
        padding: 10px 0;
        border-radius: 20px; 
    }
    .arrow-icon {
        right: 15px; 
    }
    

.cta-main-text {
    font-size: 13px;
    line-height: 1; 
    padding-top: 0px;
}
.cta-sub-text {
    font-size: 8px;
    line-height: 1; 
    margin-top: 3px; 
}


.two-column {
        flex-direction: column; 
    }
    
/* 1. テキスト（後で表示） */
    .text-column {
        order: 2; 
         padding: 0 10px; 
    }

     .big{font-size: 12.4px;
    font-weight: bold; }

 .midi{font-size: 12.4px; 
    font-weight: bold; 
    padding-top: 1em;}


/* 2. 画像（先に表示） */
    .image-column {
        order: 1; /* 1番目に表示 */
        max-width: 174px;
        margin: 0 auto;
    }
    
/* 3. 画像がコンテナの高さに収まるように調整 */
    .image-column .responsive-image {
        max-width: 100%;
        height: 100%; 
        object-fit: contain; 
         margin: 0 auto;
    }
    


    
    /* --- whiteエリアの調整 --- */
    .image-area-800, .box1 {
        width: 100%; 
    }

    .text-area-body p{
        font-size: 14px;
        padding: 20px 0px 0px 0px ;
    }
    .text-area-700 {
        font-size: 12px;
    }
    .custom-list li {
        font-size: 12px;
    margin-bottom: 1em;
}
.numbered-list-section {
    margin-top: 20px;
}
}