@charset "utf-8";


/*===========================================================*/
/*機能編  4-2-1 背景色が伸びる（下から上） */
/*===========================================================*/


/*========= ローディング画面のためのCSS ===============*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#splash-logo img {
    width: 50px;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/

.splashbg {
    display: none;
}

body.appear .splashbg {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleY(0);
    background-color: #f2c6a6;
    /*伸びる背景色の設定*/
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

}

@keyframes PageAnime {
    0% {
        transform-origin: bottom;
        transform: scaleY(0);
    }

    50% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: top;
    }

    100% {
        transform-origin: top;
        transform: scaleY(0);
    }
}

/*画面遷移の後現れるコンテンツ設定*/

#wrapper {
    opacity: 0;
    /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
    background-color: #fce7b5;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*===========================================================*/
/*機能編  5-1-12 クリックしたらナビが下から上に出現 */
/*===========================================================*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    bottom: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    /*background:#eb6100;*/
    /*動き*/
    transition: all 0.6s;

    width: 100%;
    /*height: 100vh;*/
    background-color: #ffe9ca;
    /* 背景色（黒だと白が映えます） */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 10%),
        radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 15%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 12%),
        radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
    background-size: cover;
    /*filter: blur(5px); /* 全体的にさらにぼかす場合 */
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*===========================================================*/
/*機能編  5-2-5	MENUが×に */
/*===========================================================*/

.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 70px;
    border-left: 2px solid #333;
    display: none;
}

/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
    background: #333;
    width: 30%;
    opacity: 0;
    top: 22px;
    left: 20px;
}

.openbtn span:nth-of-type(2) {
    top: 22px;
    left: 18px;
    text-transform: uppercase;
    color: #333;
    font-size: 0.9rem;
}

@media screen and (max-width:550px) {
    .openbtn span:nth-of-type(2) {
        font-size: 0.8rem;
    }

}

@media screen and (max-width:990px) {
    .openbtn {
        display: block;
    }

}

.openbtn span:nth-of-type(3) {
    top: 35px;
}


/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
    opacity: 1;
}

.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 40px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
}



/*===========================================================*/
/*機能編  5-1-26 追従メニューの現在地ハイライト*/
/*===========================================================*/

/*========= 現在地表示のためのCSS ===============*/

#header {
    position: fixed;
    /*header固定*/
    height: 100px;
    /*Headerの高さ設定*/
    width: 100%;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

@media screen and (max-width:990px) {
    #header {
        height: 75px;
    }
}

#pc-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    margin: 0 0 0 5%;
}

#pc-nav li {
    width: auto;
}

#pc-nav li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 0 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

#pc-nav li.current a,
#pc-nav li a:hover {
    color: #eb6100;
}

/*===========================================================*/
/*機能編  9-1-5 スクロールをするとエリアの高さに合わせて線が伸びる*/
/*===========================================================*/

.scrollgress {
    z-index: 99;
    /*他のposition指定しているエリアより前に出すためz-indexの数字を大きく*/
}

/*===========================================================*/
/*機能編  7-1-35	下線が伸びて背景に変わる*/
/*===========================================================*/


.btnlinestretches3 {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    color: #333;
    padding: 5px 30px;
    display: inline-block;
    text-decoration: none;
    outline: none;
}

/*テキストの設定*/
.btnlinestretches3 span {
    /*テキストを前面に出すためz-indexの値を高く設定*/
    position: relative;
    z-index: 2;
}

.btnlinestretches3:hover span {
    color: #fff;
}

/*線の設定*/
.btnlinestretches3::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    /*線の形状*/
    background: #333;
    width: 100%;
    height: 3px;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}

/*線が伸びて背景に*/
.btnlinestretches3:hover::after {
    height: 100%;
}

/*===========================================================*/
/*機能編  8-1-3 ページの指定の高さを超えたら右から出現*/
/*===========================================================*/

/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eb6100;
    width: 60px;
    height: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: #777;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
    animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*　右の動き　*/

#page-top.RightMove {
    animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(100px);
    }
}

/*===========================================================*/
/*機能編  9-2-2 任意の場所をクリックすると隠れていた内容が開き、先に開いていた内容が閉じる*/
/*===========================================================*/

/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

@media screen and (max-width:768px) {
    .title {
        font-size: 0.9rem;
    }
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;

}

.title::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);

}

.title::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    background: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}


/*===========================================================*/
/*機能編  9-4-1 ニュースティッカー*/
/*===========================================================*/

/*ニュース1行の周りの余白*/
.slider a {
    display: block;
    background: #fff;
    padding: 10px 0;
}

/*日付*/
.slider time {
    display: inline-block;
    font-size: 0.8rem;
    margin-right: 10px;
    color: #777;
}

/*768px以下の見た目*/
@media screen and (max-width:768px) {
    .slider {
        padding: 20px;
        background: #fff;
    }

    .slider li {
        border-bottom: 1px dashed #ccc;
    }

    .slider li:last-child {
        border-bottom: none;
    }

    .slider time {
        display: block;
        padding-bottom: 10px;
    }
}


/*===========================================================*/
/* 印象編 4 最低限おぼえておきたい動き*/
/*===========================================================*/

/*4-9　シャッ（左から）*/
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #eb6100;
    /*伸びる背景色の設定*/
}

.bgLRextend.pnk::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e9759c;
    /*伸びる背景色の設定*/
}

.bgLRextend.blue::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #469ed9;
    /*伸びる背景色の設定*/
}

#service h2 span.bl_circle::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 2.2em;
    height: 2.2em;
    border: 4px solid rgba(100, 200, 255, 0.3);
    border-radius: 48% 52% 50% 45% / 45% 48% 52% 50%;
    z-index: -1;
    pointer-events: none;
    background-color: rgba(100, 200, 255, 0);
    /*伸びる背景色の設定*/
}

/* 2つ目の円（小さめ・右下寄り） */
#service h2 span.bl_circle::after {
    content: "";
    position: absolute;
    bottom: -90%;
    left: 13%;
    transform: translate(-50%, -50%);
    width: 1.2em;
    height: 1.2em;
    border: 5px solid rgba(100, 200, 255, 0.4);
    border-radius: 52% 48% 45% 52% / 52% 45% 48% 50%;
    z-index: -2;
    pointer-events: none;
}

#service h2 span.bl_circletxt {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    line-height: 4.5rem;
    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #e9759c;
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

#service2 h2 span.bl_circle::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 2.2em;
    height: 2.2em;
    border: 4px solid rgba(100, 200, 255, 0.3);
    border-radius: 48% 52% 50% 45% / 45% 48% 52% 50%;
    z-index: -1;
    pointer-events: none;
    background-color: rgba(100, 200, 255, 0);
    /*伸びる背景色の設定*/
}

/* 2つ目の円（小さめ・右下寄り） */
#service2 h2 span.bl_circle::after {
    content: "";
    position: absolute;
    bottom: -90%;
    left: 13%;
    transform: translate(-50%, -50%);
    width: 1.2em;
    height: 1.2em;
    border: 5px solid rgba(100, 200, 255, 0.4);
    border-radius: 52% 48% 45% 52% / 52% 45% 48% 50%;
    z-index: -2;
    pointer-events: none;
}

#service2 h2 span.bl_circletxt {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    line-height: 4.5rem;
    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #e9759c;
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

@media screen and (max-width: 768px) {
    #service h2 span.bl_circletxt {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-weight: 700;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 4.5rem;
        position: relative;
        /*display: inline-block;*/
        z-index: 10;
        color: #e9759c;
        text-shadow:
            0px 0px 5px #ffffff,
            /* 最も内側のぼかし */
            0px 0px 8px #ffffff,
            0px 0px 15px #ffffff;
        /* 最も外側の広がるぼかし */
    }

    #service2 h2 span.bl_circletxt {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-weight: 700;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 4.5rem;
        position: relative;
        /*display: inline-block;*/
        z-index: 10;
        color: #e9759c;
        text-shadow:
            0px 0px 5px #ffffff,
            /* 最も内側のぼかし */
            0px 0px 8px #ffffff,
            0px 0px 15px #ffffff;
        /* 最も外側の広がるぼかし */
    }
}


@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

/* 4-1 ふわっ（下から） */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 4-2　パタッ（左へ） */
.flipLeft {
    animation-name: flipLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    perspective-origin: left center;
    opacity: 0;
}

@keyframes flipLeftAnime {
    from {
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
        opacity: 0;
    }

    to {
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
        opacity: 1;
    }
}

/* スマホ表示用。flipLeftTriggerを指定している親要素に指定しないとうまく動かない*/
#vision,
.service-area {
    transform: translate3d(0, 0, 0);
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgLRextendTrigger,
.bgappearTrigger,
.fadeUpTrigger,
.flipLeftTrigger {
    opacity: 0;
}


/*===========================================================*/
/* 印象編　6-6　スクロールすると下のエリアがヘッダーにかぶさる*/
/*===========================================================*/

#top-main {
    width: 100%;
    height: 100vh;
    position: relative;
    /*background-color: #f8f9fa; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#rdmcircle {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #ffeecd;
    overflow: hidden;
}

.circle {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(10px);
    /* これで「ぼかし」を表現 */
    opacity: 0.7;
}

.main-wrapper {
    content: '';
    position: fixed;
    top: 10vh;
    left: 5%;
    z-index: 1;
    width: 90%;
    height: 80vh;
    /*background:url("../img/main.jpg") no-repeat center;
	background-size:cover;*/
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.logo-container {
    position: relative;
    z-index: 1;
    /* ここが基準になります */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    isolation: isolate;
    /* 子要素の z-index 管理を独立させる */
}

/* フォントの適用 */
.mizunowa-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    line-height: 4.5rem;

    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #469ed9;

    /* 2. グラデーションの設定 */
    /* 上から下に「薄い青」から「暗い青」へ */
    /*background: linear-gradient(to bottom, #3598c0, #336196); 
    -webkit-background-clip: text; /* テキストの形に背景を切り抜く */
    /*background-clip: text;
    color: transparent; /* 元の文字色を透明にして背景のグラデーションを見せる */

    /* 2. 白いぼやけた縁取り（グロー効果） */
    /* text-shadow を複数重ねることで、ぼかしの厚みと柔らかさを出します */
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */

    /* 3. 白いぼやけた縁取り（グロー効果） */
    /* グラデーションと text-shadow は併用すると影が文字の上に被ることがあるため、
     filter プロパティの drop-shadow を使うのがより綺麗です */
    /*filter: 
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
	*/
}

/* テキストの背後に「マーカーで描いたような円」を配置 */
.mizunowa-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* 円のサイズを調整 */
    width: 4.1em;
    height: 4.1em;

    /* 細いマーカー風の線 */
    border: 5px solid rgba(100, 200, 255, 0.4);
    /* 水色系（みずのわのイメージ） */
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    /* わずかに歪ませて手書き感を出す */

    z-index: -1;
    pointer-events: none;
}

.mizunowa-top-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #469ed9;
    /* 2. 白いぼやけた縁取り（グロー効果） */
    /* text-shadow を複数重ねることで、ぼかしの厚みと柔らかさを出します */
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

.mizunowa-bottom-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    /* ロゴ風に太めに設定 */
    font-size: 1rem;
    /* 柔らかい墨色 */
    letter-spacing: 0.3em;
    /* 文字間隔を広げてゆったりさせる */

    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #469ed9;
    /* 2. 白いぼやけた縁取り（グロー効果） */
    /* text-shadow を複数重ねることで、ぼかしの厚みと柔らかさを出します */
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

/* 左右のテキスト共通（PC） */
.hero-text1, .hero-text2 {
    position: absolute;
    writing-mode: vertical-rl;
    /* 縦書き */
    text-orientation: mixed;
    z-index: 2;
}

/* 右側に配置 */
.hero-text1 {
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
}

/* 左側に配置 */
.hero-text2 {
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}

/* テキストの詳細スタイル */
.hero-text1 h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0em;
    margin-left: 1em;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #e55478;
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

.hero-text2 h3 {
    font-size: 1.2rem;
    margin-top: -1em;
    margin-left: 1em;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #222222;
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

.hero-text1 p, .hero-text2 p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

/* --- レスポンシブ（スマホ版：横幅 768px 以下） --- */
@media screen and (max-width: 768px) {
    .main-wrapper {
        flex-direction: column;
        /* 縦に並べる */
        padding: 80px 15px;
        box-sizing: border-box;
    }

    /* フォントの適用 */
    .mizunowa-text {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        line-height: 4rem;
    }

    .mizunowa-top-text {
        font-size: .7rem;
    }

    .mizunowa-bottom-text {
        font-size: .7rem;
    }

    /* 全ての位置固定を解除 */
    .hero-text1, .hero-text2, .logo-container {
        position: static;
        transform: none;
        writing-mode: horizontal-tb;
        /* 横書きに戻す */
        text-align: center;
        margin: 20px 0;
    }

    .hero-text1 h2 {
        font-size: 1rem;
    }

    .hero-text2 h3 {
        font-size: .9rem;
        margin-left: 0em;
    }

    .hero-text1 p, .hero-text2 p {
        font-size: .8rem;
    }

    /* スマホでの並び順を調整（1:上, 2:真ん中, 3:下） */
    .logo-container {
        order: 1;
    }

    .hero-text1 {
        order: 2;
    }

    .hero-text2 {
        order: 3;
    }

    .hero-text1 h2, .hero-text2 h3 {
        margin-bottom: 0.5em;
    }
}



@media screen and (max-width:768px) {
    /*#top-main:before{
    background-position: top center;
    background-size:auto 90%;
    }*/
}

#container {
    position: relative;
    z-index: 1;
    /*background:#fff;*/

    width: 100%;
    /*background-color: #ffeecd; /* 背景色（黒だと白が映えます） */
    background-color: #fff;
    /*background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 10%),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 15%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 12%),
    radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
  
	background-size: cover;*/

    /*background-color: #ffeecd;
    
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 1) 0%, transparent 10%),
        radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.9) 0%, transparent 12%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 15%),
        radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.9) 0%, transparent 10%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 1) 0%, transparent 8%),
        radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.8) 0%, transparent 14%);
    
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    min-height: 100vh;*/
}


/* コンテンツ全体のコンテナ */
.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    /* 背景を少し透過させて背景の円を透かす */
    backdrop-filter: blur(10px);
    /* 背景をぼかして高級感を出す */
    border-radius: 30px;
    /* 大きめの角丸で優しさを表現 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* 柔らかい影 */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.content-area h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    color: #3e5166;
    /* ロゴに近い色 */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

/* 見出しの下に短い線を入れる */
.content-area h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e991ae, #e5618d);
    border-radius: 3px;
}

/* リストのデザイン */
.content-area ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.content-area li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 1.8em;
    position: relative;
    line-height: 1.6;
}

/* リストの先頭に可愛い水玉のアイコンを入れる */
.content-area li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 10px;
    height: 10px;
    background-color: #87ceeb;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
}

/* 下部の段落テキスト */
.content-area p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    background: rgba(255, 255, 255, 0.4);
    padding: 20px;
    border-radius: 15px;
    /*border-left: 5px solid #87ceeb;*/
    /* 左側にアクセントライン */
}



/* コンテンツ全体の共通スタイル */
.content-area {
    font-family: 'Zen Maru Gothic', sans-serif;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.3);
    /* 背景をわずかに透過 */
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* 2ページ目右端のような、タイトルの背景にある「マーカー風の円」 */
.content-area h3 {
    position: relative;
    display: inline-block;
    color: #3e5166;
    /* リーフレットのタイトル色に近い紺色 */
    font-size: 1.4rem;
    padding: 10px 20px;
    z-index: 2;
    margin-bottom: 25px;
}

.content-area h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    /* タイトルより一回り大きい円 */
    height: 140%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(135, 206, 235, 0.3);
    /* 非常に淡い水色の縁取り */
    border-radius: 55% 45% 50% 50% / 45% 50% 55% 50%;
    /* わずかに歪ませる */
    z-index: -1;
    filter: blur(2px);
}

@media screen and (max-width: 768px) {
    .content {
        max-width: 800px;
        margin: 40px auto;
        padding: 0px;
        background: rgba(255, 255, 255, 0.6);
        /* 背景を少し透過させて背景の円を透かす */
        backdrop-filter: blur(10px);
        /* 背景をぼかして高級感を出す */
        border-radius: 30px;
        /* 大きめの角丸で優しさを表現 */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        /* 柔らかい影 */
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .content-area li {
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 1rem;
        color: #555;
        margin-bottom: 15px;
        padding-left: 1.8em;
        position: relative;
        line-height: 1.6;
    }


}

/**ご相談**/
#faq {
    padding: 80px 5%;
    background-color: #ffffff;
    /* 背景色 */
    overflow: hidden;
}

#faq h2 {
    text-align: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin-bottom: 60px;
    color: #e9759c;
}

.content-area2, .content-area3 {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    font-family: 'Zen Maru Gothic', sans-serif;
    position: relative;
}

/* タイトルの装飾（リーフレットの丸いニュアンス） */
.content-area2 h3, .content-area3 h3 {
    color: #3e5166;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #87ceeb;
}

.content-area2 ul, .content-area3 ul {
    list-style: none;
    padding: 0;
}

.content-area2 li, .content-area3 li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

/* リストの先頭をリーフレット風の水玉に */
.content-area2 li::before, .content-area3 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: #87ceeb;
    border-radius: 50%;
}

/* --- PC版：段違いの横並び設定 (769px以上) --- */
@media screen and (min-width: 769px) {
    #faq {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-container {
        /* HTMLで要素を囲むコンテナを追加推奨 */
        display: flex;
        justify-content: center;
        gap: 40px;
        width: 100%;
        max-width: 1100px;
        margin-top: 40px;
    }

    .content-area2 {
        align-self: flex-start;
        /* 上に配置 */
        flex: 1;
    }

    .content-area3 {
        /*align-self: flex-end;*/
        /* 下に配置（段違い） */
        margin-top: 0px;
        /* 下げる量 */
        flex: 1;
    }
}

/* --- スマホ版：縦並び設定 (768px以下) --- */
@media screen and (max-width: 768px) {
    .content-area2, .content-area3 {
        margin-bottom: 30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .content-area2, .content-area3 {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(8px);
        font-size: 1rem;
        padding: 15px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        font-family: 'Zen Maru Gothic', sans-serif;
        position: relative;
    }

    #faq {
        padding: 50px 0%;
        background-color: #ffffff;
        /* 背景色 */
        overflow: hidden;
    }

    .content-area2 h3, .content-area3 h3 {
        color: #3e5166;
        font-size: 1.1rem;
        margin-bottom: 25px;
        padding-left: 15px;
        border-left: 5px solid #87ceeb;
    }

    .content-area2 li, .content-area3 li {
        position: relative;
        padding-left: 1.8em;
        margin-bottom: 15px;
        color: #555;
        line-height: 1.6;
        font-size: 1rem;
    }

}


.content-area {
    max-width: 500px;
    /* スマートフォンでも見やすい幅に調整 */
    margin: 40px auto;
    font-family: 'Zen Maru Gothic', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/***相談の流れ（フロー）***/
.content-area.flow h3 {
    text-align: center;
    color: #ea7999;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.content-area.flow ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-area.flow li {
    width: 100%;
    /* 全てのボックスの横幅を揃える */
    background: #ffffff;
    border: 2px solid #5bb309;
    /* リーフレットの水色をアクセントに */
    color: #2f2f2f;
    text-align: center;
    padding: 15px 20px;
    border-radius: 15px;
    /* 角丸四角 */
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 30px;
    /* 三角を置くための余白 */
}

.content-area.flow li::before {
    content: "";
    position: relative;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background-color: #5bb309;
    border-radius: 0;
    box-shadow: 0 0 0 rgba(155, 235, 135, 0.5);
}

/* 下向き三角の作成（最後のリスト以外） */
.content-area.flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -22px;
    /* ボックスの下に配置 */
    left: 50%;
    transform: translateX(-50%);

    /* 三角形の形を作る */
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid #5bb309;
    /* ボックスの枠線と同じ色 */
}

/* 最後のリストの余白を調整 */
/*
.content-area.flow li:last-child {
    margin-bottom: 0;
    background: linear-gradient(135deg, #ea7999, #8b3155);
    color: #fff;
    border: none;
}*/

/**お問い合わせ**/
/* --- ベースデザイン --- */
.contact-area {
    padding: 80px 5%;
    background-color: #ffffff;
    /* 背景色  */
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-area h2 {
    text-align: center;
    color: #3e5166;
    margin-bottom: 50px;
}

/* --- Google マップリンク --- */
.map-link-fa {
    color: #ea4335;
    /* Googleマップのピンの色 */
    text-decoration: none;
    border-bottom: 1px dashed #ea4335;
    padding-bottom: 2px;
}

.map-link-fa i {
    margin-right: 5px;
}

@media screen and (max-width:550px) {
    .contact-area {
        padding: 0px 5%;
        background-color: #ffffff;
        /* 背景色  */
        font-family: 'Zen Maru Gothic', sans-serif;
    }
}

/* --- レイアウト設定 --- */
.contact-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 50px;
    /* 要素間の距離 */
}

/* 左側：インフォメーション */
.info {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 20px;
    color: #3e5166;
    display: flex;
    flex-direction: column;
}

.info .logo-container {
    position: relative;
    z-index: 1;
    /* ここが基準になります */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    isolation: isolate;
    /* 子要素の z-index 管理を独立させる */
}

/* フォントの適用 */
.info .logo-container .mizunowa-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    line-height: 4.5rem;

    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #469ed9;
    /* 2. グラデーションの設定 */
    /* 上から下に「薄い青」から「暗い青」へ */
    /*background: linear-gradient(to bottom, #3598c0, #336196); 
    -webkit-background-clip: text; /* テキストの形に背景を切り抜く */
    /*background-clip: text;
    color: transparent; /* 元の文字色を透明にして背景のグラデーションを見せる */

    /* 2. 白いぼやけた縁取り（グロー効果） */
    /* text-shadow を複数重ねることで、ぼかしの厚みと柔らかさを出します */
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */

    /* 3. 白いぼやけた縁取り（グロー効果） */
    /* グラデーションと text-shadow は併用すると影が文字の上に被ることがあるため、
     filter プロパティの drop-shadow を使うのがより綺麗です */
    /*filter: 
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
	*/
}

/* テキストの背後に「マーカーで描いたような円」を配置 */
.info .logo-container .mizunowa-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* 円のサイズを調整 */
    width: 4.1em;
    height: 4.1em;

    /* 細いマーカー風の線 */
    border: 0px solid rgba(100, 200, 255, 0.4);
    /* 水色系（みずのわのイメージ） */
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    /* わずかに歪ませて手書き感を出す */

    z-index: -1;
    pointer-events: none;
}

.info .logo-container .mizunowa-top-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #469ed9;
    /* 2. 白いぼやけた縁取り（グロー効果） */
    /* text-shadow を複数重ねることで、ぼかしの厚みと柔らかさを出します */
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

.info .logo-container .mizunowa-bottom-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    /* ロゴ風に太めに設定 */
    font-size: 1rem;
    /* 柔らかい墨色 */
    letter-spacing: 0.3em;
    /* 文字間隔を広げてゆったりさせる */

    position: relative;
    /*display: inline-block;*/
    z-index: 10;
    color: #469ed9;
    /* 2. 白いぼやけた縁取り（グロー効果） */
    /* text-shadow を複数重ねることで、ぼかしの厚みと柔らかさを出します */
    text-shadow:
        0px 0px 5px #ffffff,
        /* 最も内側のぼかし */
        0px 0px 8px #ffffff,
        0px 0px 15px #ffffff;
    /* 最も外側の広がるぼかし */
}

.info p {
    font-size: 1rem;
    font-weight: normal;
    color: #2f2f2f;
    margin: 20px 0;
    text-align: center;
}

.info .tel {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3e5166;
    margin: 20px 0;
}

/* 右側：フォーム */
.form {
    flex: 1.5;
    /* フォーム側を少し広く */
}

.form-list {
    list-style: none;
    padding: 0;
}

.form-list li {
    margin-bottom: 20px;
}

.form-list dl dt {
    font-weight: bold;
    margin-bottom: 8px;
    color: #3e5166;
}

.form-list input[type="text"],
.form-list input[type="email"],
.form-list textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    /* paddingを含めた幅に */
}

/* 送信ボタン */
.submit-btn {
    text-align: center;
    margin-top: 30px;
}

.submit-btn input[type="submit"] {
    background: linear-gradient(to right, #87ceeb, #3e5166);
    /* ブランドカラーのグラデーション  */
    color: #fff;
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn input[type="submit"]:hover {
    opacity: 0.8;
}

/* --- レスポンシブ対応（スマホ用：768px以下） --- */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        /* 縦並びに変更 */
        gap: 30px;
    }

    .info, .form {
        width: 100%;
    }

    .info {
        padding: 30px 0px;
        text-align: center;
        /* スマホでは中央寄せが見やすい */
    }

    .info .tel {
        font-size: 1.4rem;
    }
}