/* ==============================
   Reset / Base Setting
   ============================== */
body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #666666;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
}



/* ==============================
   ヘッダー
   ============================== */
/* ==============================
   グローバルナビゲーション
   ============================== */
.gNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1000;
    max-width: 960px;
    margin: 0 auto;
}

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

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

.gNav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bolder;
    transition: color 0.3s;
    font-family: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 16px;
}

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

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.8);
    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: #333;
    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: "MS Gothic", "Noto Sans JP", sans-serif;
}

.footer__top {
    background-color: #00aadf;
}

.footer__top p {
    color: #ffffff;
    text-align: left;
    padding: 48px;
    line-height: 1.6;
    font-size: 16px;
    font-family: "MS Gothic", "Noto Sans JP", sans-serif;
    font-weight: lighter;
    width: auto;
    max-width: 1170px;
    margin: 0 auto;
}

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

/* ==============================
   キービジュアル
   ============================== */
.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;
}

/* ==============================
   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: #000;
}

.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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: bold;
    padding: 32px;
}

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

.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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
}

.intro__main li img {
    width: 100%;
    min-width: 208px;
	max-width: 200px;
}

.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: "MS Gothic", "Noto Sans JP", sans-serif;
}

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


.home__main--inner p {
    font-size: 16px;
    color: #000;
    font-family: ui-rounded;
    text-align: center;
    margin: 64px auto 0;
}

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

.home__diagnosis--points .contents {
    border: 3px solid #25aabf;
    width: auto;
    max-width: 784px;
    padding: 24px 0px 48px;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.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: "MS Gothic", "Noto Sans JP", sans-serif !important;
    font-weight: bolder !important;
}

.home__diagnosis--points p {
    font-size: 48px;
    color: #fff;
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
}

.home__diagnosis--inner dl dt {
    font-size: 20px;
    font-family: "MS Gothic", "Noto Sans JP", 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;
}

/* ==============================
   健康コンテンツ
   ============================== */
.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-image: radial-gradient(circle, #d96a65 2px, transparent 2px),
        radial-gradient(circle, #d96a65 2px, transparent 2px),
        radial-gradient(circle, #d96a65 2px, transparent 2px),
        radial-gradient(circle, #d96a65 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 img {
    max-width: 320px;
    width: auto;
    padding-top: 24px;
}

.heading04 h2 {
    text-align: center;
    color: #fff !important;
    margin: 16px auto 32px;
}

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

.home__interest h3 {
    text-align: center !important;
    color: #d96a65 !important;
    font-size: 32px !important;
    font-family: "MS Gothic", "Noto Sans JP", sans-serif !important;
    font-weight: bolder !important;
}

.home__interest--wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto;
}

.home__interest--item {
    text-align: center;
    padding: 0;
    font-size: 18px;
    font-family: "MS Gothic", "Noto Sans JP", sans-serif;
    color: #333;
}

.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: -73px;
}

.home__main2 h2 {
    text-align: center !important;
    color: #d96a65;
    font-size: 32px !important;
    font-family: "MS Gothic", "Noto Sans JP", sans-serif !important;
    font-weight: bolder !important;
}

.home__healthcontent--wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 100px;
}

.home__healthcontent--item {
    background: #fff;
    border: 3px solid #000;
    padding: 16px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.home__healthcontent--item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home__healthcontent--item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.home__healthcontent--item .health__icon {
    display: inline-block;
    background: #d96a65;
    color: #fff;
    font-size: 10px;
    padding: 8px;
    border-radius: 14px;
    margin-right: 8px;
}

.home__healthcontent--item h4 {
    display: inline-block;
    font-size: 16px;
    color: #333;
    margin: 0;
    vertical-align: middle;
}

.home__healthcontent--item .health__text {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    text-align: left;
}

.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: "MS Gothic", "Noto Sans JP", 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;
    border: 3px solid #000;
}

.home__event--item h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 64px;
    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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-weight: unset;
    font-size: 24px;
}

#singlePage h3 {
    font-size: 28px;
    font-family: "MS Gothic", "Noto Sans JP", 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;
    background-image: radial-gradient(circle, rgb(37 170 191 / 68%) 2px, transparent 2px), radial-gradient(circle, rgba(37, 170, 191, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(37, 170, 191, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(37, 170, 191, 0.5) 2px, transparent 2px);
    background-position: 0 0, 12px 0, 6px 12px, 18px 12px;
    background-size: 24px 24px;
}

#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;
}

/* ==============================
   イベント一覧
   ============================== */
#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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 40px;
    color: #7d7a7a;
    text-align: center;
    line-height: 1.6;
}

#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: 3px solid #000;
}

#event-archive .home__event--item h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #000;
}

#event-page .content h2 {
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-weight: bolder;
    font-size: 20px;
    color: #57a89c;
}

#event-page .content h4 {
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-weight: bolder;
}

#news-archive .news-item .excerpt {
    color: #000;
    flex: 1;
    text-align: left;
    font-family: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", 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: "MS Gothic", "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #000;
}

/* ==============================
   レスポンシブ
   ============================== */
@media (max-width: 999px) and (min-width: 769px) {
    .intro__main .category {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .intro__main .category li {
        width: calc(35% - 10px);
    }

    .intro__main li img {
        max-width: 100%;
        min-width: auto;
    }
}

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

    .hamburger {
        display: block;
    }

    .intro__main .category {
        flex-direction: column;
		align-items: center;
        gap: 16px;
    }

    .intro__main .category li {
        width: 70%;
        margin: 0 auto;
		text-align: center;
    }
	
	.intro__main li img {
    display: block;
    margin: 0 auto;
	max-width: 300px;
    width: 100%;
    }

    .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;
    }
	
/* ==============================
   レスポンシブ お知らせページ
   ============================== */    
    #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 h2 {
        font-size: 32px;
    }
    
    #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: 32px;
    }
    
    #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;
    }
    
    .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;
	}
}

@media (max-width: 428px) {
	.kv .contents-btn {
    	bottom: 24px;
	}
	
	.home-news .news-item .date {
		width: 80px;
	}
}

  @media (max-width: 768px) {
    .follow-banner img {
      width: 70px;
    }
    .follow-banner {
      right: 10px;
      bottom: 10px;
    }
  }