/* ==============================
   Reset / Base Setting
   ============================== */
body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 16px;
}

.contents {
    width: 100%;
    margin: 0 auto;
}

a {
    background-color: transparent;
    text-decoration: none;
}

a.coming-soon {
    display: inline-block;
    position: relative;
}

a.coming-soon .img-wrapper {
    position: relative;
    display: block;
}

a.coming-soon img {
    display: block;
    width: 100%;
    height: auto;
}

a.coming-soon .coming-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 18px;
    color: #666666;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
}



/* ==============================
   ヘッダー
   ============================== */
/* 初期は非表示（PC） */
#sp-logo {
    display: none;
}
#sp-logo2 {
    display: none;
}
/* スマホ幅で表示 */
@media (max-width: 768px) {
	#logo {
		display: none;
	}
	
    #sp-logo {
        display: block;
        margin-left: 8px;
    }

    #sp-logo img {
        max-height: 40px;
        height: auto;
    }
	
    #sp-logo2 {
        display: block;
        margin-left: 30px;
        width: 40%;
        margin-right: auto;
    }

    #sp-logo2 img {
        max-height: 40px;
        height: auto;
    }
}

@media (max-width: 460px) {
	#sp-logo2 {
        margin-left: 20px;
        width: 50%;
    }
	
	#sp-logo img {
        max-height: 30px;
    }
}
/* ==============================
   グローバルナビゲーション
   ============================== */
.gNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(78, 167, 219, 1);
    position: relative;
    z-index: 1000;
    max-width: 960px;
    margin: 0 auto;
}

.gNav #logo img {
    margin-right: 10px;
}

.gNav ul {
    display: flex;
    gap: 0px;
    list-style: none;
}

.gNav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bolder;
    transition: color 0.3s;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 16px;
}

.gNav ul li a:hover {
    color: #0078d4;
}

.gNav ul li+li::before {
    content: "/";
    margin: 0 10px;
    color: #fff;
    font-weight: bold;
}

.gNav #logo img {
    margin-right: 10px;
    width: 200px;
    height: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(78, 167, 219, 1);
    backdrop-filter: blur(5px);
}

body {
    padding-top: 56px;
}

/* ==============================
   ハンバーガーメニュー
   ============================== */
.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 20px;
    top: 16px;
    right: 20px;
    z-index: 1100;
}

.hamburger-inner span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

.hamburger.active .hamburger-inner span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-inner span:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-inner span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ハンバーガーメニュー開閉時の背景オーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 1040;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==============================
   ドロワーメニュー
   ============================== */
.drawer-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 200px;
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
    padding-top: 60px;
    padding-bottom: 20px;
    z-index: 1050;
}

.drawer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu ul li {
    margin: 15px 0;
    text-align: center;
}

.drawer-menu ul li a {
    color: #5FB0DD;
    font-weight: bold;
    letter-spacing: 0.15em;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    text-align: left;
}

.drawer-menu.active {
    right: 0;
}

/* ==============================
   メニューオーバーレイ
   ============================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1040;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==============================
   フッター
   ============================== */
footer {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
}

.footer__top {
    background-color: #4EA7DB;
}

.footer__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto;
}

.footer__top p {
    color: #ffffff;
    text-align: left;
    padding: 48px;
    line-height: 1.6;
    font-size: 18px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: lighter;
    margin: 0;
	letter-spacing: 0.1em;
}

.footer__banners {
    display: flex;
    gap: 16px;
    padding-right: 48px;
}

.footer__banners .banner img {
    width: 180px;
    height: auto;
    display: block;
}

.footer__bottom {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

a[href^="tel"] {
    color: #fff !important;
}

/* ▼ スマホ対応 */
@media (max-width: 768px) {
    .footer__top-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__banners {
        padding-right: 0;
        justify-content: center;
        margin-bottom: 20px;
    }
	
    .footer__banners .banner img {
        width: 140px;
	}
	
    .footer__top p {
        padding: 32px 20px;
    }
}

/* ==============================
   キービジュアル
   ============================== */
.kv {
    background-image: unset;
    border-bottom: unset;
    margin-top: 10px;
}

.kv .swiper-wrapper {
    /* box-shadow: 8px 0px 8px rgb(0 225 255 / 51%); */
    height: auto;
    min-height: 352px;
    position: relative;
    z-index: 1;
}

.swiper-slide {
	text-align: center;
}

.kv .swiper-wrapper h2 {
    display: inline;
    background: linear-gradient(to bottom, #CAE5F4 40%, transparent 0%);
    background-repeat: no-repeat;
    background-size: 100% 38px;
    background-position: 0 180%;
}

/* ==============================
   CTAボタン
   ============================== */
.kv .contents-btn {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.contents-btn {
	margin: 20px 0;
    text-align: center;
}

.contents-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    min-width: 320px;
    height: 48px;
    box-sizing: border-box;
    position: relative;
}

.contents-btn a:hover {
    background: #4EA7DB;
}

.contents-btn a:hover .btn-title {
    color: #fff;
}

.contents-btn a:hover .btn-icon {
    background: #666;
}

.contents-btn .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
}

.contents-btn .btn-title {
    color: #000;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    text-align: center;
}

.contents-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #666;
    margin-left: -17px;
    flex-shrink: 0;
}

/*.contents-btn .btn-icon::before {
    content: "\025b6";
    color: #fff;
    font-size: 17px;
    margin-left: 4px;
	display: block;
} */

.contents-btn .btn-icon::before {
  content: "";
  display: inline-block;
  margin-left: 3px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff; 
}

/* =============================
   TOPページ お知らせ一覧
============================= */
.home-news {
    max-width: 784px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.home-news .news-item {
    display: table;
    width: 100%;
    border-bottom: 1px solid #000;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.home-news .news-item:last-child {
    border-bottom: none; 
}

.home-news .news-item .date {
    display: table-cell;
    width: 140px; 
    white-space: nowrap;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: bolder;
    color: #000;
    vertical-align: top;
    text-align: left;
}

.home-news .news-item .excerpt {
    display: table-cell;
    color: #000;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    text-align: left;
    word-break: break-word;
}

.home-news .news-item:hover .excerpt {
    text-decoration: underline;
    color: #00aadf;
}

.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-item-link:hover .excerpt {
    text-decoration: underline;
    color: #00aadf;
}



/* ==============================
   Intro
   ============================== */
.home__intro {
    background-color: #fbedee;
    padding: 0;
    background-color: #ffffff;
    background-image:
      radial-gradient(circle, rgba(87,168,155,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(87,168,155,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(87,168,155,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(87,168,155,0.5) 2px, transparent 2px);
    /* background-image: radial-gradient(circle, #57a89b 2px, transparent 2px), radial-gradient(circle, #57a89b 2px, transparent 2px), radial-gradient(circle, #57a89b 2px, transparent 2px), radial-gradient(circle, #57a89b 2px, transparent 2px); */
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

.home__intro--inner {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
}

.home__intro--inner .intro__main {
    display: block;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.intro__main h3 {
    margin: 0;
    color: #000;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 32px;
    font-weight: bold;
    padding: 32px;
}

.intro__main .category {
    display: flex;
    justify-content: center;
    gap: 40px;
	padding: 0 20px;
}

.intro__main ul {
    list-style: none;
    padding: 0;
}

.intro__main li a {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    text-decoration: none;
}

.intro__main li span {
    text-decoration: none;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
}

.intro__main li img {
    width: 100%;
}

.color01 {
    color: #1aa1b5;
}

.color02 {
    color: #d3714f;
}

.color03 {
    color: #5ea970;
}

.color04 {
    color: #D96C84;
}

#bunner {
    padding: 16px 0 64px;
}

#bunner img {
    width: 100%;
    max-width: 784px;
}

/* ==============================
   健康チェック
   ============================== */
.home__main {
    background-color: #ffffff;
    padding: 0;
    background-image:
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px);
    /* background-image: radial-gradient(circle, #60af72 2px, transparent 2px),
        radial-gradient(circle, #60af72 2px, transparent 2px),
        radial-gradient(circle, #60af72 2px, transparent 2px),
        radial-gradient(circle, #60af72 2px, transparent 2px); */
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

.home__diagnosis {
    background-color: unset;
    padding: 0;
}

.heading02 {
    width: 100%;
    background-color: #acd4d1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading02 img {
    max-width: 320px;
    width: auto;
    padding-top: 24px;
}

.heading02 h2 {
    text-align: center;
    color: #1ca1b5;
    margin: 16px auto 32px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
}

.home__main--inner {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 0 80px;
}


.home__main--inner p {
    color: #000;
    text-align: center;
    margin: 64px auto 10px;
	font-size: 32px;
}

.heading03 {
    text-align: center !important;
    color: #25aabf !important;
    font-size: 32px !important;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: bolder !important;
}

.home__diagnosis--points .contents {
    width: auto;
    max-width: 784px;
}

.home__diagnosis--points {
    background-color: #fff;
    text-align: center;
    padding: 45px 0 0;
    margin-top: 0px;
    position: relative;
}

.home__diagnosis--points h3 {
    text-align: center !important;
    color: #25aabf !important;
    font-size: 32px !important;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: bolder !important;
}

.home__diagnosis--points p {
    font-size: 48px;
    color: #fff;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    text-align: center;
    margin: 0 auto;
    border: solid 3px #25adbf;
    width: auto;
    min-width: 300px;
    max-width: 400px;
    border-radius: 21px;
    background-color: #25adbf;
    margin-top: 24px;
}

.home__diagnosis--points span {
    font-size: 48px;
    color: #fff;
}

.home__diagnosis--points:after {
    display: none;
}

.recommendation {
    width: auto;
    max-width: 784px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.recommend__category {
    margin-top: 60px;
}

.recommend__01,
.recommend__02,
.recommend__03,
.recommend__04 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #000;
    line-height: 3;
}

.recommend__item {
    width: 100%;
    margin: 32px auto;
    max-width: 784px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.recommend__item--01,
.recommend__item--02,
.recommend__item--03,
.recommend__item--04 {
    width: 100%;
    border: 3px solid #000;
    text-align: center;
    padding: 96px 0px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #000;
}

/* ==============================
   問診票
   ============================== */
.home__diagnosis--wrapper {
    background: url(https://choiken.com/wp-content/uploads/2025/10/choi_board_2.png) no-repeat center top;
    max-width: 784px;
    margin: 0 auto;
    box-sizing: border-box;
    aspect-ratio: 750 / 994;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}

.home__diagnosis--list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    list-style: none;
    padding-top: 160px;
}

.home__diagnosis--list li {
    border-bottom: 6px dotted #cccccc;
    border-radius: 4px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.home__diagnosis--inner ol li:before {
    content: "Q" counter(number);
    color: #000;
    font-size: clamp(30rem / 16, calc(0.02vw + 16vw * 0.5), 30rem / 16);
    font-weight: 700;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
}

.home__diagnosis--inner dl dt {
    font-size: 20px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #000;
}

.home__diagnosis--inner dl dd input:last-of-type+label {
    border-left: unset;
}

.home__diagnosis--list dd label {
    color: #cccccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.home__diagnosis--list dd input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.home__diagnosis--list dd label {
    color: #cccccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.home__diagnosis--list dd input[value="◯"]:checked + label {
    color: #60af72 !important;
}

.home__diagnosis--list dd input[value="✕"]:checked + label {
    color: #d96983 !important;
}

.home__diagnosis--list dd input + label:hover {
    color: #cccccc !important;
}

.home__diagnosis--list dd input:focus + label {
    color: inherit;
    outline: none;
}

.recommend__item {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.recommend__item a img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

label[for$="-cercle"],
label[for$="-cross"] {
    text-shadow:
        1px 0 0 currentColor,
        -1px 0 0 currentColor,
        0 1px 0 currentColor,
        0 -1px 0 currentColor;
}

@media screen and (max-width: 768px) {
    .recommend__item {
        grid-template-columns: 1fr;
    }
}
/* ==============================
   ○×質問リスト用 カスタムレイアウト
   ============================== */
.home__diagnosis--list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home__diagnosis--list .diagnosis-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

/* アイコン（大きめ） */
.home__diagnosis--list .diagnosis-item .q-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 本文エリア */
.home__diagnosis--list .diagnosis-item .q-body {
    flex: 1;
}

/* Q番号表示 */
.home__diagnosis--list .diagnosis-item .q-number {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 6px;
	text-align: left;
}

/* 質問テキスト */
.home__diagnosis--list .diagnosis-item dt {
    font-size: 18px;
    font-weight: 450;
    margin-bottom: 8px;
    color: #333;
}

/* ラジオ部分 */
.home__diagnosis--list .diagnosis-item dd {
    margin: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.home__diagnosis--list li::before,
.home__diagnosis--list li::marker {
    content: none !important;
}

.home__diagnosis--list {
    list-style: none !important;
    counter-reset: none !important;
}

.home__diagnosis--inner ol {
	width: 80%;
    margin: 0 auto;
	padding-top: 80px;
}

/* ==============================
   健康チェックレスポンシブ
   ============================== */

@media (max-width: 840px) {
  .home__diagnosis--inner ol {
    width: 80%;
    margin: 0 auto;
  }

  .home__diagnosis--list .diagnosis-item {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
	.home__diagnosis--wrapper {
		padding-top: 80px;
	}
  .diagnosis-item .q-icon {
    display: none;
  }

  .home__diagnosis--inner ol {
    padding-top: 0;
  }

  .home__main--inner p {
    margin: 20px auto 10px;
	font-size: 18px !important;
  }

  .home__diagnosis--list .diagnosis-item dd {
    gap: 0;
  }

  .result-image img,
  .recommend__item a img {
    width: 80% !important;
    height: auto;
	margin: 0 auto;
  }

  .heading02 img {
  max-width: 196px;
  height: auto;
  }
	
  .heading02 h2 {
  font-size: 18px !important;
  }
	
  .home__main--inner {
  padding: 40px 0 40px;
  }

}

@media (max-width: 700px) {
  .home__diagnosis--wrapper {
        padding-top: 40px;
  }
}
@media (max-width: 660px) {
	.home__diagnosis--inner dl dd label {
		padding: 0px 8px;
    }
}
@media (max-width: 570px) {
    .home__diagnosis--inner dl dd label {
	    font-size: 30px;
    }
	.home__main--inner p {
        font-size: 16px !important;
    }
	.home__diagnosis--list .diagnosis-item dt {
        font-size: 12px;
		margin-bottom: 0px;
	}
}
@media (max-width: 500px) {
	.home__diagnosis--list .diagnosis-item {
        margin-bottom: 0px;
    }
	.home__diagnosis--inner ol li {
		line-height: 1.2;
	}
}
@media (max-width: 420px) {
	.home__diagnosis--list li {
		border-bottom: none;
		padding-bottom: 2px;
	}
}

/* ==============================
   健康コンテンツ
   ============================== */
.home__main2 {
    background-color: #ffffff;
    padding: 0;
    background-image:
      radial-gradient(circle, rgba(217,106,101,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(217,106,101,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(217,106,101,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(217,106,101,0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

.heading04 {
    width: 100%;
    background-color: #dc7550;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading04 h2 {
    color: #fff !important;
    margin: 4px auto 24px;
    text-align: center;
	font-size: 24px;
}


.heading04 img {
    max-width: 320px;
    width: auto;
    padding-top: 24px;
}

.home__interest {
    position: relative;
    border: 3px solid #dc7550;
    margin: 0 auto 100px;
    width: auto;
    max-width: 784px;
    border-radius: 32px;
    padding-bottom: 48px;
}

.home__interest::after {
	content: "";
	position: absolute;
	left: 50%; transform:translateX(-50%);
	width: 0;
	height: 0;
	border-left: 45px solid transparent;
	border-right: 45px solid transparent;
	border-top: 60px solid #b3b3b3;
	bottom: -90px;
}

.home__interest h3 {
    text-align: center;
    color: #d96a65;
    font-size: 32px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: bolder;
}

.home__interest--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
	padding: 0px 24px;
}

.home__interest--item {
    display: inline-block;
    padding: 8px 48px;
    border: 2px solid #CE7A56;
    border-radius: 60px;
    font-size: 24px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
	font-weight: 400;
}

.home__interest--item:hover {
    background-color: #E0896A; /* ホバーは少し明るめ */
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 軽い影で浮き感 */
}

.home__interest--item.active {
    background-color: #CE7A56; /* 選択時は濃いめ */
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* 選択感を強調 */
}


/* ▼ 投稿表示部分 */
.home__healthcontent--wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 48px auto 10px;
}

.home__healthcontent--item {
    padding: 16px;
    box-sizing: border-box;
}

.home__healthcontent--item img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ==============================
   レスポンシブ
   ============================== */
@media (max-width: 768px) {
	.heading04 img {
        max-width: 196px;
        height: auto;
    }
	.heading04 h2 {
		font-size: 18px;
	}
    .home__healthcontent--wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px auto 32px;
    }
	.home__interest {
        margin-left: 40px;
        margin-right: 40px;
    }
	.home__interest h3 {
		font-size: 24px;
	}
	.home__interest--item {
		font-size: 16px;
	}
	.home__interest--wrapper {
        gap: 16px;
    }
	.home__healthcontent--item {
		padding: 0px;
	}
    .home__healthcontent--item img {
        width: 80%;
        height: auto;
    }
	.home__healthcontent--wrapper .home__healthcontent--item:nth-child(n+5) {
        display: none;
    }
	.home__interest--item.active::before {
		display: none;
	}
}

/* ==============================
   ケーススタディ
   ============================== */
.home__casestudy {
    max-width: 784px;
    margin: 0 auto;
}

.home__casestudy--wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 48px auto 100px;
}

.home__casestudy--item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home__casestudy--item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #636262;
    border-radius: 50px;
    margin-bottom: 16px;
}

.home__casestudy--item h3 {
    font-size: 18px;
    margin: 0 0 8px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #000;
    text-align: center;
}

.home__casestudy--item p {
    font-size: 14px;
    margin: 0;
    color: #555;
    text-align: left;
    padding: 8px;
}



/* ==============================
   イベント情報
   ============================== */
.home__event {
    background-color: #ffffff;
    padding: 0;
    background-image:
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px),
      radial-gradient(circle, rgba(96,175,114,0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

.heading05 {
    width: 100%;
    background-color: #60af72;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading05 img {
    max-width: 320px;
    width: auto;
    padding: 51px 0;
}

.home__evemt--wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 784px;
    width: auto;
    margin: 0 auto;
}

.home__event--item {
    width: calc(50% - 10px);
    text-align: center;
}

.home__event--item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.home__event--item h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
}

/* ==============================
   第2階層　キャンペーンページ
   ============================== */
#singlePage .kv .swiper-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#singlePage .kv .swiper-wrapper h2 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 40px;
    color: #7d7a7a;
    text-align: center;
    line-height: 1.6;
}

#singlePage .single__main {
    background-color: #fbedee;
    padding: 0;
    background-color: #ffffff;
    background-image: radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

#singlePage .single__main--inner {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 0 160px;
}

#singlePage p {
    max-width: 784px;
    margin: 0 auto;
    font-size: 20px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    line-height: 1.6;
    color: #000;
}

#singlePage .single__main--inner h2 {
    max-width: 784px;
    margin: 64px auto 48px;
    border-top: 4px solid #00aadf;
    border-bottom: 4px solid #00aadf;
    padding: 16px 0;
    text-align: center;
    color: #000;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: unset;
    font-size: 24px;
}

#singlePage h3 {
    font-size: 28px;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #00aadf;
    margin: 16px auto;
}

#singlePage .single__title--wrapper {
    max-width: 784px;
    margin: 80px auto 0;
    text-align: center;
    border: 4px solid #00aadf;
    background-color: #ffffff;
    padding: 8px;
}

#singlePage .single__img--wrapper {
    max-width: 784px;
    display: flex;
    margin: 32px auto 0;
    gap: 8px;
    flex-direction: row;
    justify-content: space-between;
}

#singlePage .single__img--wrapper img {
    width: 100%;
}

#singlePage .single__campaign--vidual {
    width: 100%;
    max-width: 784px;
    margin: 0 auto;
    padding-top: 16px;
    display: block;
}

.triangle {
    display: block;
    width: 0;
    height: 0;
    margin: 128px auto 80px;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 60px solid #b3b3b3;
}

#singlePage div .caption {
    color: #898989;
    font-size: 12px;
}

#singlePage .pc-hide {
  display: none;
}

#singlePage .sp-hide {
  display: block;
}

/* ==============================
   イベント一覧
   ============================== */
#event-archive {
    background-color: #ffffff;
    padding: 0;
    background-image: radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

#event-archive .single-content {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 0;
}

#event-archive .kv .swiper-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#event-archive .kv .swiper-wrapper h2 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 40px;
    color: #7d7a7a;
    text-align: center;
    line-height: 1.6;
	display: inline-block;
	border-top: 6px solid #CAE5F4;
}

#event-archive .home__evemt--wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 784px;
    width: auto;
    margin: 0 auto;
}

#event-archive .home__event--item {
    width: calc(50% - 10px);
    text-align: center;
}

#event-archive .home__event--item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
    border: 1px solid #000;
}

#event-archive .home__event--item h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
}

/* ==============================
   イベントページ
   ============================== */
#event-page {
    background-color: #ffffff;
    padding: 0;
    background-image: radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(96, 175, 114, 0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

#event-page .single-content {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 0;
}

#event-page .kv .swiper-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#event-page .kv .swiper-wrapper h2 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 40px;
    color: #7d7a7a;
    text-align: center;
    line-height: 1.6;
}

#event-page .content {
    width: auto;
    max-width: 784px;
    margin: 0 auto;
    line-height: 1.6;
}

#event-page .content p {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 16px;
    color: #000;
}

#event-page .content h2 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #000;
    border-top: 2px solid #57a89c;
    border-bottom: 2px solid #57a89c;
    padding: 16px 64px;
    margin: 24px 0;
    font-size: 24px;
    text-align: center;
}

#event-page .content h3 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: bolder;
    font-size: 20px;
    color: #57a89c;
}

#event-page .content h4 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: bolder;
}

#event-page img {
    width: 100%;
}

.kenmin-link {
  color: #199CCC;
  text-decoration: underline;
  font-weight: bold;
}

.kenmin-link:hover {
  opacity: 0.8;
}

.mission-title {
  color: #4ba043;
}


/* ==============================
   お知らせ一覧
   ============================== */
#news-archive {
    background-color: #ffffff;
    padding: 0;
    background-image: radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

#news-archive .single-content {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 0;
}

#news-archive .kv .swiper-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#news-archive .kv .swiper-wrapper h2 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 40px;
    color: #7d7a7a;
    text-align: center;
    line-height: 1.6;
}

#news-archive .home-news {
    max-width: 784px;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

#news-archive .news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

#news-archive .news-item {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #000;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

#news-archive .news-item:last-child {
    border-bottom: none; 
}

#news-archive .news-item .date {
    color: #000;
    font-size: 14px;
    margin-right: 1em;
    white-space: nowrap;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-weight: bolder;
}

#news-archive .news-item .excerpt {
    color: #000;
    flex: 1;
    text-align: left;
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
}

#news-archive .news-item:hover .excerpt {
    text-decoration: underline;
    color: #00aadf;
}

/* ==============================
   お知らせページ
   ============================== */
#news-page {
    background-color: #ffffff;
    padding: 0;
    background-image: radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px),
                      radial-gradient(circle, rgba(87, 168, 155, 0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

#news-page .single-content {
    background-color: #fff;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 0;
}

#news-page .kv .swiper-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#news-page .kv .swiper-wrapper h2 {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 40px;
    color: #7d7a7a;
    text-align: center;
    line-height: 1.6;
}

#news-page .content {
    width: auto;
    max-width: 784px;
    margin: 0 auto;
    line-height: 1.6;
}

#news-page .content p {
    font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif;
    font-size: 16px;
    color: #000;
}

/* ==============================
   NEWSページ内のリンクスタイル
   ============================== */
#news-page a {
    color: #0066cc;
    text-decoration: none;
}

#news-page a:hover {
    text-decoration: underline;
}

#news-page a:visited {
    color: #663399;
}

#news-page a:active {
    color: #004999;
}

/* ==============================
   レスポンシブ
   ============================== */
@media (max-width: 614px) {
	.intro__main .category {
		gap: 20px;
	}
	.intro__main li span {
		font-size: 10px;
        padding: 0px;
        padding-top: 8px;
	}
	.home__interest--item {
		font-size: 16px;
		padding: 8px 24px;
	}
	.home__interest h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    body {
    	padding-top: 0px;
	}
/* ==============================
   レスポンシブ TOPメイン
   ============================== */    
	.kv .swiper img {
	    padding: 0 20px;
		padding-bottom: 80px !important;
	}
	
	.gNav {
	    padding: 10px;
	}
	
    .gNav ul {
        display: none;
    }
	
	.gNav #logo img {
    	max-width: 96px;
    	height: auto;
	}

    .hamburger {
        display: block;
    }

    .kv .contents-btn {
        bottom: 2%;
    }
    
    .home-news {
        max-width: 784px;
        margin: 0 auto;
        width: 80%;
    }
    
    #bunner {
        padding: 16px 0 64px;
        width: 80%;
        margin: 0 auto;
    }
    
    .home__evemt--wrapper {
        flex-direction: column;
    }

    .home__event--item {
        width: 80%;
      text-align: center;
      margin: 0 auto;
    }

    .heading05 img {
        max-width: 196px;
        width: auto;
        padding: 28px 0;
    }

    .intro__main h3 {
        font-size: 24px;
        padding: 40px 0 18px;
    }

    .contents-btn a {
        min-width: 250px;
    }
    
    .home__intro--inner {
        max-width: 90vw;
    }

    .home__main--inner {
        max-width: 90vw;
    }

/* ==============================
   レスポンシブ 下層　キャンペーンページ
   ============================== */    
    #singlePage .kv .swiper-wrapper h2 {
        font-size: 32px;
    }
    
    #singlePage p {
        font-size: 16px;
    }
    
    #singlePage .single__main--inner {
        max-width: 90vw;
        padding: 40px 10% 80px;
    }
    
    #singlePage .single__img--wrapper {
        flex-direction: column;
    }
    
    .triangle {
        margin: 20px auto;
    }
	
    #singlePage .sp-switch-img {
        content: url("/wp-content/uploads/2025/11/sp_choiken_gaiyou_3.jpeg");
    }

    #singlePage .fade-item .caption {
        display: none;
    }
	
	#singlePage .pc-hide {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 16px;
    }
	
    #singlePage .sp-hide {
        display: none;
    }
/* ==============================
   レスポンシブ お知らせページ
   ============================== */    
    #news-archive .single-content {
        max-width: 90vw;
        padding: 40px 0 80px;
    }
    
    #news-archive .kv .swiper-wrapper h2 {
        font-size: 32px;
    }
    
	#news-page .kv .swiper-wrapper {
        min-height: 200px;
    }
	
    #news-page .kv .swiper-wrapper h2 {
        font-size: 20px;
    }
    
    #news-page .single-content {
        max-width: 90vw;
        padding: 40px 10% 80px;
    }


    
/* ==============================
   レスポンシブ イベントページ
   ============================== */    
    #event-page .single-content {
        max-width: 90vw;
        padding: 40px 10%;
    }
    
    #event-page .content h2 {
        margin: 24px 0;
        font-size: 20px;
    	padding: 8px;
    }
    
    #event-page .kv .swiper-wrapper h2 {
        font-size: 20px;
    }
	
	#event-page .kv .swiper-wrapper {
        min-height: 200px;
    }
    
    #event-archive .kv .swiper-wrapper h2 {
        font-size: 32px;
    }
    
    #event-archive .single-content {
        max-width: 90vw;
        padding: 40px 5% 80px;
    }
    
    #event-archive .home__event--item {
        width: 100%;
    }
    
/* ==============================
   レスポンシブ フッター
   ============================== */    
    
    .footer__top p {
        font-size: 12px !important;
		text-align: center;
    }
    
    .footer__bottom {
        padding: 15px 8px;
        font-size: 8px;
    }
}

/* ==============================
   App Store
   ============================== */    

.app-links {
  margin: 40px 0;
  text-align: center;
}

.app-links__inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-link {
  max-width: 300px;
	flex: 0 0 300px;
  text-align: center;
}

.app-link img {
  width: auto !important;
  height: 70px;
  margin: 0 auto;
}

.app-link p {
  font-size: 14px !important;
  line-height: 1.4;
  text-align: center;
}	

/* ====== アニメーション ====== */
.fade-item {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.follow-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.follow-banner img {
    height: auto;
    border-radius: 10px;
	width: 130px;
}

.follow-banner:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ====== 子要素スタイル調整 ====== */
.fade-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.fade-item h2 {
  margin-bottom: 20px;
  text-align: center;
}

.fade-item h3 {
  margin-top: 60px;
  margin-bottom: 10px;
}

.fade-item h4 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.fade-item p {
  margin-bottom: 1.2em;
}

/* ====== アプリリンク部分 ====== */
.app-links__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.app-link {
  text-align: center;
  max-width: 300px;
}

.app-link img {
  margin-bottom: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  #fade-section {
    padding: 60px 15px;
  }

	.app-link {
    flex: unset;
	}
	
  .app-links__inner {
    align-items: center;
	justify-content: space-around;
  }
}

@media (max-width: 600px) {
	.home-news .news-item .date {
		width: 90px;
		font-weight: normal;
	}
	#singlePage h3 {
	    font-size: 20px;
	}
}

@media (max-width: 428px) {
	.kv .contents-btn {
    	bottom: 24px;
	}
}

@media (max-width: 480px) {
    .kv .swiper-wrapper {
        min-height: 280px;
    }
}

  @media (max-width: 768px) {
    .follow-banner img {
      width: 70px;
    }
    .follow-banner {
      right: 10px;
      bottom: 10px;
    }
  }
@media (max-width: 768px) {
    .kv .swiper-wrapper h2 {
        background-size: 100% 30px;
    }

	#news-page .kv .swiper-wrapper h2 {
        background-size: 100% 70px;
		background-position: 0 -45%;
    }
	
	#event-page .kv .swiper-wrapper h2 {
        background-size: 100% 70px;
		background-position: 0 -45%;
    }
}
