


/* base
-------------------------------------------*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

@font-face {
    font-family: 'ZenMaruGothic';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ZenMaruGothic-Bold.woff2') format('woff2'),
         url('../fonts/ZenMaruGothic-Bold.woff') format('woff'),
         url('../fonts/ZenMaruGothic-Bold.ttf') format('truetype');
}



@font-face {
    font-family: 'ZenMaruGothic';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ZenMaruGothic-Regular.woff2') format('woff2'),
         url('../fonts/ZenMaruGothic-Regular.woff') format('woff'),
         url('../fonts/ZenMaruGothic-Regular.ttf') format('truetype');
}

body {
    font-size: 16px;
    font-family: 'ZenMaruGothic', sans-serif;
    line-height: 1.8;
    color: #595757;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

a {
    color: #000;
    text-decoration: none;
}
  
ul {
    list-style-type: none;
}
  
.flame {
    overflow: hidden;
}
  
/* header
--------------------------------------------- */
header {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9); /* 透過度を調整して背景が少し見えるように */
    backdrop-filter: blur(10px); /* 背景が少しぼける効果 */
    top: 0;
    width: 100%;
    height: 120px;
    background-color: #fff;
    z-index: 99;
    }

/* 他のコンテンツの上に固定表示するための調整 */
body {
    padding-top: calc(0px + 20px); /* ヘッダーの高さ + 余白の分を全体のトップパディングに追加 */
}

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #fff;
    z-index: 1000;
}
  
    .l-header_inner {
        margin: 0 auto;
        width: 95%;
        display: flex;
        height: inherit;
        align-items: center;
        justify-content: space-between;
    }
  
    @media screen and (min-width: 1000px) {
    .l-header_inner {
        max-width: 1200px;
    }
    }
  
    .header__title {
        max-width: 200px;
        z-index: 9999;
    }
  
    .header_hamburger {
        vertical-align: middle;
        padding: 15px 12px;
        width: 48px;
        height: 48px;
        border: 1px solid #E2839A;
        border-radius: 50%;
        background-color: #E2839A;
        transform: translateX(0);
		position: fixed; /* 追加 */
		top: 53px; /* 上からの距離を指定、必要に応じて調整 */
		right: 20px; /* 右からの距離を指定、必要に応じて調整 */
		z-index: 9999; /* 他の要素よりも上に表示するためにz-indexを指定 */
    }
  
	.header_nav {
		position: fixed; /* ここを absolute から fixed に変更することで、スクロール中も画面内に表示 */
		right: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: #E0F1F3;
		border-left: 1px solid #000;
		transition: ease 0.3s;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-100%);
	}
  
    @media screen and (min-width: 1000px) {
        .header_nav {
            position: static;
            transform: initial;
            background-color: inherit;
            height: inherit;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            width: 75%;
            border: none;
            opacity: 1;
            visibility: visible;
        }
    }
  
    .header_nav ul {
        list-style-type: none;
    }
  
    .header_nav.active {
        opacity: 1;
		visibility: visible;
		transform: translateY(0);
    }
  
  
	@media screen and (min-width: 1000px) {
		.header_nav.active {
			opacity: 1;
			visibility: visible;
			transform: initial;
			background-color: inherit;
			height: inherit;
			display: flex;
			justify-content: flex-end;
			width: 75%;
			border: none;
		}
	}
  
    .hamburger {
        z-index: 9999;
    }
  
    @media screen and (min-width: 1000px) {
        .hamburger {
            display: none;
        }
    }
  
    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: relative;
        transition: ease 0.3s;
        display: block;
    }
  
    .hamburger span:nth-child(1) {
        top: 0;
    }
  
    .hamburger span:nth-child(2) {
        margin: 4px 0;
    }
  
    .hamburger span:nth-child(3) {
        top: 0;
    }
  
	.hamburger.active span:nth-child(1) {
		top: 5.75px;
		transform: rotate(45deg);
	}
  
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
  
	.hamburger.active span:nth-child(3) {
		top: -5.75px;
		transform: rotate(-45deg);
	}
  
    .header_nav>ul {
        margin: 130px 0 0 15%;
    }
  
    @media screen and (min-width: 1000px) {
        .header_nav>ul {
            margin: 0;
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
  
        .flex-spacer {
            width: 100%;
        }
    }
  
    .header_nav>ul>li {
        margin-top: 20px;
    }
  
    @media screen and (min-width: 1000px) {
        .header_nav>ul>li {
            margin: 10px 20px 10px 0;
            text-align: center;
        }
    }
  
    .header_nav>ul>li>a {
        display: block;
        font-size: 16px;
        font-weight: 400;
    }
  
/* ハンバーガーメニュー表示時にスクロールを禁止
.no-scroll {
    overflow: hidden;
}

/* headerここまで
--------------------------------------------- */
  

/* back. contents
  ------------------------------------------------*/
.back {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100dvh;
    background-image: url('../img/background.jpg');
    /* background-image: url('../img/hyoushi_web.jpg') */
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed; /* 背景画像を固定してスクロール時も動かないようにする */
}
  
.contents {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 95%;
    }
  
    @media screen and (min-width: 768px) {
    .contents {
        width: 540px;
    }
    }
/* back. contentsここまで
------------------------------------------------*/


/* key-visual
----------------------------------------------*/
  
.kv {
    overflow: hidden;
    position: relative;
    height: 100dvh;
}
  
.kv__bg {
    position: absolute;
    left: -2.5vw;
    width: 100vw;
    height: 100dvh;
    background-image: url('../img/background.jpg');
    /* background-image: url('../img/hyoushi_web.jpg'); */
    background-position: bottom center;
    background-size: cover;
    }
  
    @media screen and (min-width:768px) {
        .kv__bg {
            left: calc((540px - 100dvw) / 2);
        }
    }
  
.kv__ribbon {
    position: absolute;
    top: 180px;
    left: 50%;
    max-width: 80px;
    transform: translate(-50%);
}
  
.kv__title {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translate(-50%);
    width: 70%;
    max-width: 300px;
}
  
  
/* top
  ---------------------------------------- */
.top {
    padding-top: 20px;
    background-color: #fff;
}
  
.top .ribbon-separator {
    width: 80px;
    display: block;
    margin: 0 auto 50px;
}
  
/* modal
  ------------------------------------------*/
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1440px;
    margin: auto;
    text-align: center;
    opacity: 0;
    z-index: 1;
    }
  
    @media screen and (min-width: 768px) {
        .modal {
            max-width: 800px;
        }
    }
  
.modal.active {
    display: block;
    opacity: 1;
    z-index: 9999;
}
  
.modal_content {
    padding-bottom: 10px;
}
  
.modal__movie {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
  
.modal__movie iframe {
    width: 100%;
    height: 100%;
}
  
.modal_close {
    top: -60px;
    right: 0;
    position: absolute;
    cursor: pointer;
    width: 50px;
}
  
.modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    opacity: 0;
}
  
.modal_overlay.active {
    display: block;
    opacity: 1;
    z-index: 999;
}
  
/* animation
-------------------------------------------*/
.fadeIn {
    opacity: 0;
    animation: FadeIn 0.2s linear forwards;
    }
  
    @keyframes FadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
  
/* media
------------------------------------------ */
.media h2 {
    font-size: 30px;
    text-align: center;
}
  
.media {
    padding-bottom: 50px;
}
  
.media__inner {
    margin: 0 auto;
    width: 90%;
}
  
/* bg
-------------------------------------------*/
.bg-gray {
    margin-top: -20px;
    background-color: #F7F6EF;
}

.bg-gray-full {
    margin-top: 0px;
    background-color: #F7F6EF;
}
  
.bg-blue {
    margin-top: -20px;
    background-color: #CDEAFB;
}
  
.bg-green {
    background-color: #86BE4B;
}
  
/* wave
------------------------------------------- */
.wave {
    position: relative;
    height: 23vw;
    margin-bottom: -20px; /* 下のマージンを負に設定して隙間を埋める */
    }

    @media screen and (min-width: 768px) {
        .wave {
            height: 125px;
        }
    }
  
    .wave::after {
        content: "";
        background-repeat: no-repeat;
        width: 100%;
        height: 23vw;
        position: absolute;
        left: 0;
        bottom: 0;
        }
  
        @media screen and (min-width: 768px) {
            .wave::after {
                height: 150px;
            }
        }
  
        .wave-gray-top::after {
        background-image: url('../img/wave-gray-top.svg');
        }

        .wave-gray-bottom::after {
        background-image: url('../img/wave-gray-bottom.svg');
        }

        .wave-blue-top::after {
        background-image: url('../img/wave-blue-top.svg');
        }

        .wave-blue-bottom::after {
        background-image: url('../img/wave-blue-bottom.svg');
        }

.wave-content {
    background-color: #f7f7ef; /* クリーム色をwave-contentに適用 */
    margin-bottom: 100px; /* 必要に応じて調整 */
}
.wave-bottom-bg1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f7f7ef; /* クリーム色に設定 */
    top: 50%; /* 下部の半分だけを覆う */
}
.wave-bottom-bg2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f7f7ef; /* クリーム色に設定 */
    top: 50%; /* 下部の半分だけを覆う */
	z-index:-1;
}

.ribbon--wave {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}
  
.wave__title {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    font-size: 36px;
    margin-bottom: 40px; /* 余白を追加して調整 */
}
  
/* separator
----------------------------------------------*/
.separator {
    display: block;
    width: 90%;
    margin: 0 auto 20px;
    padding-top: 20px;
}
  
/* btn
----------------------------------------------*/
.btn {
    padding: 10px 20px;
    color: #fff;
    background-color: #f297a8;
    border-radius: 50px;
    vertical-align: middle;
}
  
  
/* about
--------------------------------------------*/
.about__text {
    font-size: 14px;
    text-align: center;
    line-height: 2;
}

@media screen and (min-width:768px) {
    .about__text {
        font-size: 16px;
    }
}

.about__text p {
    margin: 20px 0;
}

.movie {
    position: relative;
    margin: 80px auto 40px;
    width: 90%;
    aspect-ratio: 16 / 9;
}

.movie iframe {
    width: 100%;
    height: 100%;
}

.movie-lightbox {
    display: none;
}

    @media screen and (min-width:768px) {
        .movie-lightbox {
            display: block;
            position: absolute;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            top: 0;
            left: 50%;
            transform: translate(-50%);
            cursor: pointer;
        }
    }
  
/* news
---------------------------------------------*/


.news__title-lady {
    position: absolute;
    width: 30vw;
    max-width: 150px;
    top: 40px;
    left: 50%;
    transform: translate(50%);
    z-index: 9;
    font-size: 36px;
}

/*.news__contents {
	transform: translateX(10px) translateY(10px);
}*/

.news__table {
    margin-top: 60px;
}

.news__table td {
    padding: 8px 0;
    vertical-align: top;
}

.news__table .date {
    min-width: 130px;
}

.news__table a {
    text-decoration: underline;
    color: #1558d6;
}
  
/* cando
-----------------------------------------------*/
.cando {
    margin-bottom: 60px;
}

.cando__lead {
    margin: 60px 0 30px;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    color: #C75B6F;
}

.cando__intro {
    text-align: center;
}

.cando__intro p {
    margin: 10px 0;
}

.cando__cloud {
    position: relative;
    height: 280px;
    margin: 80px auto 0;
    background: url('../img/cando_cloud01.png') no-repeat center/contain;
}

.cando__cloud:nth-child(2) {
    background-image: url('../img/cando_cloud02.png');
}

.cando__cloud:nth-child(3) {
    background-image: url('../img/cando_cloud03.png');
}

.cando__icon {
    position: absolute;
    width: 100px;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cando__text {
    position: absolute;
    width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cando__text h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: #C75B6F;
}


/* process
-----------------------------------------------*/
  .process__box {
    width: 90%;
    margin: 60px auto;
    padding: 50px 0;
    background-color: #fff;
    border-radius: 50px;
  }
  
  .process__icon {
    display: block;
    margin: 0 auto;
    width: 120px;
  }
  
  .process__text {
    margin: 0 auto;
    text-align: center;
    max-width: 80%;
  }
  
  .process__text h3 {
    margin: 24px 0;
    font-size: 24px;
  }
  
  .process__text p {
    text-align: center;
  }
  
  .process__applink {
    margin: 30px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
  }
  
  .process__applink a {
    width: 38%;
  }
  
  .process__counter {
    display: block;
    width: 120px;
    margin: 30px auto 0;
  }
  
/* mebuku
------------------------------------------------*/
  .mebuku__lead {
    margin: 30px 0;
    text-align: center;
  }
  
  .mebuku__flex {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 90%;
    margin: 40px auto;
  }
  
  .mebuku__flex img {
    width: 48%;
  }
  
  .mebuku__flex p {
    text-align: center;
    width: 48%;
  }
  
  .mebuku__example {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  
  .mebuku__example p:first-child {
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: #FFF799;
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
  }
  
  .mebuku__excuse {
    display: block;
    width: 90%;
    margin: 30px auto 80px;
  }
  
  .mebuku h3 {
    text-align: center;
    font-size: 24px;
  }
  
  .mebuku__caution {
    width: 80%;
    display: block;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
  }
  
  .mebuku__safe {
    margin: 20px auto 80px;
    width: 90%;
    display: block;
  }
  
  .mebuku__ready {
    width: 300px;
    display: block;
    margin: 0 auto;
    list-style-type: disc;
    font-size: 18px;
    padding-left: 1em;
    color: #2789B0;
    font-weight: bold;
  }
  
  .mebuku__small {
    font-size: 14px;
  }
  
  .mebuku__process {
    margin-top: 100px;
    list-style-type: none;
    counter-reset: item;
    counter-reset: 0;
  }
  
  .mebuku__process li {
  
    margin-bottom: 60px;
  }
  
  .mebuku__process p::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    text-align: center;
    background-color: #B0C7DA;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50px;
  }
  
  .mebuku__process p {
    width: fit-content;
    display: block;
    margin: 0 auto;
    padding-left: 50px;
    position: relative;
    font-size: 20px;
  }
  
  .mebuku__process li img {
    display: block;
    margin: 20px auto;
    width: 160px;
  }
  
  .mebuku__process li:last-child img {
    max-width: 100px;
  }
  
  .mebuku__links {
    margin-top: 100px;
  }
  
  .mebuku__btn {
    display: block;
    width: 250px;
    text-align: center;
    margin: 40px auto;
  }
  
/* connect
------------------------------------------------*/
  .connect h2 {
    color: #fff;
    font-size: 48px;
    text-shadow: #999 1px 1px 5px;
    letter-spacing: 0.5rem;
  }
  
  .connect__subtitle {
    margin: 20px 0 40px;
    padding: 8px 0;
    vertical-align: middle;
    font-size: 15px;
    text-align: center;
    background: linear-gradient(to right, transparent, #fff, #fff, #fff, #fff, transparent);
  }
  
  @media screen and (min-width: 768px) {
    .connect__subtitle {
      font-size: 20px;
    }
  }
  
  .connect__logo {
    width: 200px;
    margin: 20px auto 40px;
    display: block;
    padding: 20px;
    background-color: #fff;
    border: 4px solid #69aec9;
    border-radius: 10px;
  }
  
  .connect__lead {
    font-size: 14px;
    margin: 40px 0;
    text-align: center;
  }
  
  .connect__sect {
    text-align: center;
    font-size: 24px;
  }
  
  @media screen and (min-width: 768px) {
    .connect__lead {
      font-size: 16px;
    }
  }
  
  .connect__list {
    width: 98%;
    margin: 80px auto;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .connect__spacer {
    width: 100%;
  }
  
  .connect__list li {
    margin-bottom: 40px;
    width: 42%;
  }
  
  .connect__list h3 {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 4px 20px;
    text-align: center;
    border-radius: 50px;
    font-weight: normal;
    font-size: 16px;
    background-color: #fff;
  }
  
  .connect__list p {
    margin-top: 10px;
  }
  
  .connect__vision {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  .connect__vision li {
    margin: 30px 0;
  }
  
  .connect__vision h3 {
    margin-bottom: 10px;
  }
  
  .connect__info {
    width: auto;
    max-width: 85%;
    margin: 60px auto;
  }
  
  @media screen and (min-width: 768px) {
    .connect__info {
      max-width: unset;
    }
  }
  
  .connect__info td {
    padding: 4px 0;
  }
  
  .connect__info-l {
    width: 90px;
    vertical-align: top;
  }
  
  .connect__contact {
    position: relative;
  }
  
  .connect__btn {
    display: block;
    width: 240px;
    margin: 80px auto 80px;
    text-align: center;
  }
  
  .connect__qman {
    width: 120px;
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 2;
  }
  
/* service
------------------------------------------------*/
  .service__nav {
    margin: 10px auto 180px;
  }
  
  .service__btn {
    position: relative;
    display: block;
    width: 270px;
    margin: 40px auto;
    text-align: center;
    color: #000;
  }
  
  .service__btnwrapper {
    padding-left: 30px;
  }
  
  .service__btnwrapper:nth-child(1) .service__btn {
    background-color: #F8CCCD;
  }
  
  .service__btnwrapper:nth-child(2) .service__btn {
    background-color: #F4A367;
  }
  
  .service__btnwrapper:last-child .service__btn {
    background-color: #C3DD9D;
  }
  
  .service__btn img {
    position: absolute;
    width: 80px;
    top: 0;
    left: 0;
    transform: translate(-50%, -20%);
  }
  
  .serbox {
    width: 90%;
    margin: 80px auto 160px;
  }
  
  .serbox:last-child {
    margin-bottom: 80px;
  }
  
  .serbox__bg {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-bottom: 50px;
  }
  
  .serbox__title {
    position: relative;
  }
  
  .serbox__title img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
  }
  
  .serbox h3 {
    padding: 60px 0 20px;
    text-align: center;
    font-size: 24px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  
  .serbox__inner {
    width: 96%;
    margin: 0 auto;
  }
  
  
  /* service 子育て
  ----------------------------------------------- */
  .serbox-cc .serbox__bg {
    background: linear-gradient(#fff, #FDEAEA);
  }
  
  
  .serbox-cc h3 {
    background-color: #F8CCCD;
  }
  
  .serbox-cc__lead {
    margin: 40px auto;
    width: 90%;
    font-size: 18px;
    text-align: center;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-cc__lead {
      font-size: 24px;
    }
  }
  
  .serbox-cc__point {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
  }
  
  .serbox-cc__point img {
    width: 35%;
  }
  
  .serbox-cc__point li {
    margin: 20px 0;
    color: #E2839A;
    font-weight: bold;
  }
  
  .serbox-cc__sending {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 60px;
  }
  
  .serbox-cc__function li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-cc__function li {
      width: 80%;
      margin: 20px auto;
    }
  }
  
  .serbox-cc__function h4 {
    padding: 20px 0;
    width: 90px;
    background-image: url('../img/bg-grape.png');
    background-size: contain;
    background-position: center;
    color: #fff;
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
  }
  
  .fsz-14 {
    font-size: 14px;
  }
  
  .serbox-cc__function img {
    width: 80px;
  }
  
  .serbox-cc__function p {
    width: 50%;
    margin-left: 8px;
    font-size: 14px;
  }
  
  .serbox-cc__copy {
    width: 80%;
    margin: 60px auto 120px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #C75B6F;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-cc__copy {
      font-size: 24px;
    }
  }
  
  .phonebox li {
    margin: 120px 0;
  }
  
  .phonebox li:first-child {
    margin-top: 0;
  }
  
  .phonebox li:last-child {
    margin-bottom: 0;
  }
  
  .phonebox h4 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #C75B6F;
    text-align: center;
  }
  
  .phonebox__phone {
    display: block;
    width: 75%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .phonebox__info {
    width: 94%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .phonebox__info p {
    width: 60%;
  }
  
  .phonebox__info img {
    width: 40%;
  }
  
  img.phonebox__heighimg {
    width: 30%;
  }
  
  .serbox-cc__caution {
    display: block;
    width: 80%;
    margin: 120px auto 20px;
  }
  
  
/* service 助け合い
----------------------------------------------- */
  .serbox-h .serbox__bg {
    background: linear-gradient(#fff, #FEEFE2);
  }
  
  .serbox-h h3 {
    background-color: #F4A367;
  }
  
  .serbox-h__lead {
    margin: 40px auto;
    font-size: 16px;
    text-align: center;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-h__lead {
      font-size: 22px;
    }
  }
  
  .serbox-h__about {
    width: 80%;
    margin: 40px auto 80px;
  }
  
  .serbox-h__copy {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #EF845C;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-h__copy {
      font-size: 24px;
    }
  }
  
  .serbox-h__check {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .serbox-h__check img {
    width: 30%;
  }
  
  .serbox-h__check p {
    width: 60%;
    font-size: 14px;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-h__check p {
      font-size: 16px;
    }
  }
  
  .serbox-h__small {
    margin: 20px auto;
    text-align: center;
    font-size: 12px;
  }
  
/* service ゆでぴ
----------------------------------------------- */
  .serbox-yp .serbox__bg {
    background: linear-gradient(#fff, #EEF5E3);
  }
  
  .serbox-yp h3 {
    background-color: #C3DD9E;
  }
  
  .serbox-yp__lead {
    margin: 40px auto;
    width: 90%;
    font-size: 18px;
    text-align: center;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-yp__lead {
      font-size: 20px;
    }
  }
  
  .serbox-yp__about {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .serbox-yp__about img {
    width: 40%;
  }
  
  .serbox-yp__about-text {
    width: 55%;
  }
  
  .serbox-yp__about-text p {
    font-size: 16px;
  }
  
  .serbox-yp__connection {
    margin-top: 120px;
  }
  
  .serbox-yp__joined p {
    margin: 0 auto 20px;
    width: 80%;
  }
  
  .serbox-yp__function {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .serbox-yp__function-block {
    width: 45%;
    font-size: 14px;
  }
  
  .serbox-yp__get {
    margin-top: 120px;
  }
  
  .serbox-yp__get h4 {
    text-align: center;
    font-size: 16px;
    color: #4DBBAA;
  }
  
  @media screen and (min-width: 768px) {
    .serbox-yp__get h4 {
      font-size: 20px;
    }
  }
  
  .serbox-yp__get-lead {
    width: 85%;
    margin: 20px auto 0;
    text-align: center;
  }
  
  .serbox-yp__get-lead p {
    margin: 10px 0;
  }
  
  .serbox-yp__get-list {
    width: 90%;
    margin: 50px auto;
  }
  
  
  .serbox-yp__get-list li {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, transparent, #fff, #fff, #fff, #fff, transparent);
  }
  
  .serbox-yp__get-list li:nth-child(2) {
    flex-direction: row-reverse;
    background: none;
  }
  
  .serbox-yp__get-list img {
    width: 40%;
  }
  
  .serbox-yp__get-list p {
    font-size: 14px;
    margin: 20px 0;
    width: 55%;
  }
  
/* Q&A
------------------------------------------------*/
  .media .faq__title {
    font-size: 40px;
    letter-spacing: 0.7rem;
  }
  
  .faq__title-q {
    color: #2789B0;
  }
  
  .faq__title-a {
    color: #E2839A;
  }
  
  .faq__list {
    list-style-type: none;
    width: 90%;
    margin: 20px auto 80px;
  }
  
  
  .faq__item {
    position: relative;
    margin: 40px 0;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
  }
  
  .faq__btn {
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 45px;
  }
  
  .faq__btnImg {
    width: 1em;
    height: auto;
  }
  
  .faq__closeImg {
    transform: translateZ(0deg);
    transition: all 0.2s;
  }
  
  .faq__closeImg.active {
    display: inline-block;
    transform: rotateZ(180deg) translateY(-5px);
    transition: all 0.2s;
  }
  
  .faq__question {
    margin: 20px 0;
    padding-right: 3em;
    display: flex;
    align-items: baseline;
  }
  
  .faq__answer {
    display: none;
    margin-top: 20px;
    padding-right: 2em;
    align-items: baseline;
    transition: all 0.3s;
  }
  
  .faq__answer.active {
    display: flex;
    transition: all 0.3s;
  }
  
  .faq__mark {
    font-size: 1.5em;
    font-weight: 600;
    margin-right: 20px;
    color: #2789B0;
  }
  
  .faq__mark-a {
    margin-top: 10px;
    font-size: 36px;
    color: #E2839A;
  }
  
  .faq__top-sort {
    margin-top: 20px;
    text-align: center;
    font-size: 24px;
  }
  
  .faq__sort {
    width: 90%;
    margin: 60px auto 0;
    font-size: 22px;
  }
  
  .faq__answer .indent {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
    margin: 8px 0;
  }
  
  .faq__answer a {
    color: #2789B0;
    text-decoration: underline;
  }
  
  .faq__sitemap ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto 40px;
    padding-top: 40px;
  }
  
  .faq__sitemap li {
    width: 50%;
    margin: 10px 0;
    text-align: center;
  }
  
  .faq__sitemap li:nth-child(1),
  .faq__sitemap li:nth-child(3),
  .faq__sitemap li:nth-child(5) {
    border-right: 1px solid #000;
  }
  
/* sponsor
------------------------------------------------*/
  .sponsor__ready {
    padding-bottom: 100px;
    text-align: center;
  }
  
  .sponsor__list {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .sponsor__list li {
    padding-bottom: 60px;
    width: 45%;
  }
  
  .sponsor__list img {
    border: 1px solid #C75B6F;
  }
  
  .sponsor__list h3 {
    margin: 10px 0;
    text-align: center;
  }
  
  
/* footer
------------------------------------------------*/
  .footer {
    padding-top: 50px;
    background-color: #fff;
  }
  
  .footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer__links>a {
    padding: 5px 20px;
  }
  
  .footer__links>a:first-child {
    border-right: 1px solid #595757;
  }
  
  .footer__sitemap ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto 40px;
    padding-top: 40px;
  }
  
  .footer__sitemap li {
    width: 50%;
    margin: 10px 0;
    text-align: center;
  }
  
  .footer__sitemap li:nth-child(1),
  .footer__sitemap li:nth-child(3),
  .footer__sitemap li:nth-child(6),
  .footer__sitemap li:nth-child(8) {
    border-right: 1px solid #fff;
  }
  
  .footer__sitemap a {
    color: #fff;
  }
  
  .footer__info {
    color: #fff;
  }
  
  .footer__info__flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer__info__flex>img {
    width: 80px;
  }
  
  .footer__info__text {
    margin-left: 30px;
    text-align: center;
  }
  
  .footer__info__name {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .footer__info__address {
    margin-top: 20px;
    text-align: center;
  }
  
  .footer__info__copy {
    margin-top: 20px;
    text-align: center;
    padding-bottom: 120px;
  }

.footer__bg {
    width: 100%; /* 親要素の幅に対して100%の幅を持たせる */
    overflow: hidden; /* 余分な部分が見えないように設定 */
    margin: 0 auto; /* 中央揃えにするために自動マージンを適用 */
}

.footer__bg img {
    width: 100%; /* 画像の幅を100%に設定し、親要素に合わせてスケーリング */
    height: auto; /* 縦横比を保つ */
    display: block; /* 画像をブロック要素として表示し、不要なスペースを削除 */
}
  
/* totop
---------------------------------------------*/
  .totop {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 9;
    width: 100px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  
  .totop.active {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
  }
  
  
/*--------------------------------------------*/
/* privacy
--------------------------------------------*/
  .privacy {
    padding-top: 150px;
    background-color: #fff;
  }
  
  .privacy h1 {
    font-size: 26px;
    text-align: center;
  }
  
  .privacy__text {
    width: 85%;
    margin: 80px auto 0;
    line-height: 1.6;
  }
  
  .privacy__text h2 {
    text-align-last: left;
    font-size: 20px;
    margin-top: 60px;
  }
  
  .privacy__text h3 {
    font-size: 18px;
    font-weight: normal;
    margin: 40px 0 16px;
  }
  
  .privacy__text p {
    margin: 16px 0;
    font-size: 16px;
  }
  
  .privacy__text p .add {
    padding-left: 1em;
  }
  
  .privacy__text ul {
    list-style-type: disc;
    padding-left: 1em;
  }
  
  .privacy__text li {
    margin: 8px 0;
  }
  
  .privacy__text ul ul {
    list-style-type: circle;
    margin-bottom: 10px;
  }
  
  .privacy__text .add {
    display: block;
    margin: 8px 0 16px;
  }
  
  .privacy__text a {
    color: #1558d6;
    text-decoration: underline;
  }
  
/* contact
---------------------------------------------*/
  .contact {
    padding-top: 130px;
    background-color: #fff;
  }
  
  .contact h1 {
    font-size: 26px;
    text-align: center;
  }
  
  .contact__text {
    width: 85%;
    text-align: center;
    margin: 80px auto 0;
  }
  
  .contact__text h2 {
    text-align-last: left;
    font-size: 18px;
    margin-top: 60px;
  }
  
  .contact__text p {
    margin: 16px 0;
    font-size: 16px;
  }
  
  .contact__btn {
    display: inline-block;
    margin: 20px auto;
  }
  
  .icon__bordered {
    border: 3px solid #91C472;
    border-radius: 20px;
  }
  
/* TOPページ新着情報表示
---------------------------------------------*/
.news-block{

}

.header-front__content-news {
    background-color: #f7f7ef; /* この部分が背景色を設定しています */
    margin-top: -20px; /* 上の隙間を減らす */
    padding-top: 60px; /* 上部にパディングを追加 */
    padding-bottom: 20px; /* 余白が狭い場合、下部にも追加 */
}

.header-front__content-news_list {
    background-color: #f7f7ef; /* 背景色をクリーム色に設定 */
    list-style: none;
    margin: 0;
    padding: 20px; /* パディングを追加して余白を確保 */
}

.header-front__content-news_list-item {
    background-color: #f7f7ef; /* 背景色をクリーム色に設定 */
    padding: 15px;
}

.header-front__content-news h2 {
    text-align: center;
    font-size: 5em; /* 必要に応じて調整 */
    margin-bottom: 20px; /* 見出し下の余白 */
}

.header-front__content-news_list-item a {
    text-decoration: none;
    color: #333333; /* テキスト色を濃いグレーに設定 */
    display: flex;
    align-items: center;
}

.header-front__content-news_list-item-left {
    flex-shrink: 0;
    margin-right: 15px;
}

.header-front__content-news_list-item-left span {
    font-weight: bold;
    color: #ff6699; /* NEWの色をピンクに設定 */
    margin-right: 10px;
}

.header-front__content-news_list-item-left date {
    font-size: 14px;
    color: #666666; /* 日付の色を少し明るいグレーに設定 */
}

.header-front__content-news_list-item-right {
    font-size: 16px;
    line-height: 1.5;
    color: #333333; /* 記事タイトルの色を濃いグレーに設定 */
}

.header-front__content-news_list-item-right.desc {
    flex-grow: 1;
}

.header-front__content-news_link {
    display: block; /* ボタンをブロック要素に設定 */
    width: fit-content; /* ボタンの幅をコンテンツに合わせる */
    padding: 10px 20px;
    background-color: #ffcc99; /* ボタンの背景色をオレンジに設定 */
    color: #ffffff; /* ボタンのテキスト色を白に設定 */
    border-radius: 5px;
    text-decoration: none;
    margin: 15px auto 0; /* 上に15pxの余白、左右中央揃え */
	margin-bottom:40px;
　　z-index: 100;
}

.header-front__content-news_link:hover {
    background-color: #ff9966; /* ホバー時の色を少し濃いオレンジに設定 */
}

.header-front__content_bottun {
    display: block; /* ボタンをブロック要素に設定 */
    width: fit-content; /* ボタンの幅をコンテンツに合わせる */
    padding: 10px 20px;
    background-color: #ff9966; /* ボタンの背景色をオレンジに設定 */
    color: #ffffff; /* ボタンのテキスト色を白に設定 */
    border-radius: 5px;
    text-decoration: none;
    margin: 15px auto 0; /* 上に15pxの余白、左右中央揃え */
	margin-bottom:40px;
　　z-index: 100;
}

.header-front__content_bottun:hover {
    background-color: #ffcc99; /* ホバー時の色を少し濃いオレンジに設定 */
}


/* single.php用のスタイル調整 */

/* 記事タイトルをヘッダーの下に配置 */
.content-area {
    width: 60%; /* 全体幅の80%に設定 */
    margin: 0 auto; /* 自動で左右中央揃え */
    padding: 20px; /* 上下左右に20pxの余白を追加 */
    box-sizing: border-box; /* paddingがwidthに影響しないようにする */
}

/* 記事タイトルのスタイル */
.content-area h1 {
    font-size: 2.5em; /* タイトルのフォントサイズを調整 */
    margin-bottom: 10px; /* タイトル下の余白 */
    color: #333333; /* タイトルの文字色を設定 */
}

/* 投稿日のスタイル */
.content-area .post-date {
    font-size: 20px;
    color: #666666; /* グレーで表示 */
    margin-bottom: 60px; /* 余白を追加 */
}

/* 記事本文のスタイル */
.content-area p {
    font-size: 1.1em; /* 本文のフォントサイズを調整 */
    line-height: 1.6; /* 行間を調整 */
    color: #666666; /* 本文の文字色を設定 */
    margin-bottom: 20px; /* 段落下の余白 */
}

/* 画像や埋め込みコンテンツのスタイル */
.content-area img, .content-area iframe {
    max-width: 100%; /* コンテンツエリアの幅に合わせる */
    height: auto; /* アスペクト比を維持 */
    margin-bottom: 20px; /* 下の余白を追加 */
}

/* その他の調整が必要な要素のスタイル */
.content-area ul, .content-area ol {
    margin-left: 20px; /* リストのインデントを調整 */
    margin-bottom: 20px; /* 下の余白を追加 */
}

/* ヘッダーが固定されている場合、スクロール時にタイトルが隠れないように調整 */
header {
    z-index: 999; /* ヘッダーが最前面に来るように調整 */
    position: relative; /* 必要に応じて position: fixed を解除 */
}

/* 全体の背景色を設定 */
body.single {
    background-color: #f7f7ef; /* 記事ページの背景色をクリーム色に設定 */
}

/* ページネーションのスタイル */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 100px; /* 本文との間に余白を追加 */
}

.post-navigation .prev-link,
.post-navigation .next-link {
    font-size: 16px;
    color: #0066cc; /* リンク色を設定 */
    text-decoration: none;
}

.post-navigation .prev-link:hover,
.post-navigation .next-link:hover {
    text-decoration: underline; /* ホバー時の効果を設定 */
}


/* コンタクトページ */
/* 背景設定 */
.contact {
    position: relative;
    padding: 60px 20px;
    background-image: url('../img/background.jpg'); /* トップページと同じ背景 */
    background-position: top center;
    background-size: cover; /* containに変更すると、レスポンシブする */
    min-height: 100vh;
}

/* コンテンツボックス */
.contact .container {
    max-width: 960px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9); /* 背景を白の半透明に */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* テーブルスタイル */
.table-wrapper {
    margin: 0;
    padding: 0;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table-wrapper th, .table-wrapper td {
    padding: 15px;
    vertical-align: top;
}

.table-wrapper th {
    text-align: left;
    width: 25%;
    font-weight: bold;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.table-wrapper td {
    width: 75%;
    color: #666;
    font-family: 'Noto Sans JP', sans-serif;
}

/* フォームフィールドのスタイル */
.table-wrapper input[type="text"],
.table-wrapper input[type="email"],
.table-wrapper textarea,
.table-wrapper select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    box-sizing: border-box;
}

/* フォームのラベルスタイル */
.form-label {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.form-label_after {
    font-size: 0.9em;
    color: #ff6699;
    display: block;
    margin-top: 5px;
}

/* サブミットボタンのスタイル */
.submit input[type="submit"] {
    display: block;
    width: 100%;
    background-color: #ffcc99;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background-color 0.3s ease;
}

.submit input[type="submit"]:hover {
    background-color: #ff9966;
}

/* プライバシーリンクのスタイル */
.privacy a {
    color: #007BFF;
    text-decoration: underline;
}

.privacy a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* 各項目のスタイル */
.wrapper {
    display: flex;
    gap: 15px;
}

.wrapper-item {
    flex: 1;
}

.wrapper-item__ttl {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

/* コンタクトページのスマホ表示用のスタイル */
@media screen and (max-width: 767px) {
    /* 背景設定 */
    .contact {
        padding: 40px 15px; /* スマホでのパディングを調整 */
        background-position: top center;
        background-size: cover;
    }

    /* コンテンツボックス */
    .contact .container {
        max-width: 100%; /* 幅を100%にして、スマホでの余白をなくす */
        padding: 20px; /* パディングを調整 */
        border-radius: 5px; /* 角丸を少し減らす */
    }

    /* テーブルスタイル */
    .table-wrapper th, .table-wrapper td {
        display: block; /* テーブルセルをブロック表示に */
        width: 100%; /* 幅を100%に */
        padding: 5px; /* パディングを調整 */
        text-align: left; /* スマホでのテキストを左揃え */
    }

    .table-wrapper th {
        width: auto; /* 幅の固定を解除 */
        font-size: 1em; /* フォントサイズを調整 */
    }

    .table-wrapper td {
        width: auto; /* 幅の固定を解除 */
        font-size: 0.9em; /* フォントサイズを調整 */
    }

    /* フォームフィールドのスタイル */
    .table-wrapper input[type="text"],
    .table-wrapper input[type="email"],
    .table-wrapper textarea,
    .table-wrapper select {
        padding: 8px; /* パディングを調整 */
        font-size: 0.9em; /* フォントサイズを少し小さく */
    }

    /* 各項目のスタイル */
    .wrapper {
        flex-direction: column; /* スマホでのレイアウトを縦方向に変更 */
        gap: 10px; /* ギャップを少し減らす */
    }

    .wrapper-item__ttl {
        font-size: 1em; /* フォントサイズを調整 */
    }

    /* サブミットボタンのスタイル */
    .submit input[type="submit"] {
        padding: 12px; /* パディングを調整 */
        font-size: 1em; /* フォントサイズを少し小さく */
    }
}



/* 投稿アーカイブページのスタイル */
/* 投稿アーカイブページのスタイル */
.custom-archive {
    position: relative;
    padding: 60px 20px;
    background-image: url('../img/background.jpg'); /* トップページと同じ背景 */
    background-position: bottom center;
    background-size: cover;
    min-height: 100vh;
}

.custom-archive .container {
    max-width: 960px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9); /* 背景を白の半透明に */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-archive h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.custom-archive .posts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    padding: 0 20px;
}

.custom-archive .posts-list article {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-archive .posts-list article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-archive .posts-list article a {
    display: block;
    text-decoration: none;
    color: #333;
}

.custom-archive .post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.custom-archive .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-archive .posts-list article:hover .post-thumbnail img {
    transform: scale(1.1);
}

.custom-archive .posts-list h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
}

.custom-archive .post-excerpt {
    font-size: 1em;
    color: #555;
    margin-top: auto;
}

/* ページネーションのスタイル */
.custom-archive .pagination {
    margin-top: 40px;
    text-align: center;
}

.custom-archive .pagination a {
    color: #E2839A;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    border: 1px solid #E2839A;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-archive .pagination a:hover {
    background-color: #E2839A;
    color: #fff;
}

.custom-archive .pagination .current {
    background-color: #E2839A;
    color: #fff;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    border: 1px solid #E2839A;
}

/* スポンサー企業表示 */
.sponsor-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.sponsor-item {
    width: calc(50% - 20px); /* 2列で表示 */
    text-align: center;
}

.sponsor-item a {
    text-decoration: none;
    color: inherit;
}

.sponsor-item img {
    max-width: 100%;
    height: 180px;
    margin-bottom: 10px;
    padding: 40px 20px 0px 20px;
}

.sponsor-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

@media screen and (max-width: 768px) {
    .sponsor-item {
        width: 100%; /* スマホ表示時に1列で表示 */
    }
}



.faq .mebuku__links .mebuku__btn {
    color: #fff; /* 白色に設定 */
    text-decoration: none; /* もしリンクに下線がついている場合、これを無くす */
}

.faq .mebuku__links .mebuku__btn:hover {
    color: #fff; /* ホバー時の色も白に設定 */
    text-decoration: underline; /* ホバー時に下線を表示する場合 */
}



/* プライバシーポリシーページ */
.privacy__text ul {
    margin-left: 20px;
    list-style-type: disc;
}

.privacy__text ul li {
    margin-bottom: 10px;
}

.ex-items {
  list-style-type: none;
}

.my-numbered-blocks .ex-items {
  display: flex;
  align-items: flex-start; /* 上端を揃える */
}
.my-numbered-blocks .ex-items::before {
	  content: "例）";
    font-weight: bold;
    margin-right: 0.5em; /* 例）と文章の間に余白を作る */
    flex-shrink: 0; /* 例）が勝手に折り返されるのを防ぐ */
	}

.second-items {
  display: flex;
  align-items: flex-start; /* ○と文章を上揃え */
}

.second-items::before {
  content: "○";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  flex-shrink: 0; /* ○が縮まないようにする */
  margin-right: 0.5em;
}

.second-items span {
  display: inline-block;
  flex: 1; /* 文章部分が○の横に配置される */
}

.first-items .add {
  display: block; /* 住所情報は改行されて下に来る */
  margin-left: 1.5em; /* ○の分だけ左に余白を作る */
}

/* プライバシーポリシーページ表の罫線 */
.service_information_list {
    width: 100%;
    border-collapse: collapse;
}
.service_information_list th, 
.service_information_list td {
    border: 1px solid black; /* 罫線を黒で表示 */
    padding: 8px;
    text-align: left; /* 横方向を左揃え */
    vertical-align: top; /* 縦方向を上揃え */
}
.service_information_list th {
    background-color: #f2f2f2; /* ヘッダーを薄いグレーに */
}

.second-items {
    white-space: normal; /* 必要に応じて改行を許可 */
}

.small-font {
    display: block; /* 改行をしっかり適用できるようにする */
    max-width: 100%;
    word-wrap: break-word;
}

/* TOPページ情報追加250225 */
.service-instructions {
    width: 100%; /* 画像の横幅を画面幅いっぱいにする */
    height: auto; /* アスペクト比を保ちながら高さを自動調整 */
    display: block; /* 画像の周りの余白をなくすためにブロック要素に */
}



