@charset "UTF-8";
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}

/* ページ内リンク */
html {
    scroll-behavior: smooth;
	font-size: 62.5%;
  height: 100%;
}

@media screen and (max-width:480px) {
html {
	font-size: 57.5%;
}
}



a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
b,
strong {
  font-weight: bold;
}
img {
  border: 0;
}
img.img-radius-non {
 border-radius:0;
}
a:hover img{
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity:0.7;
}


hr {
	margin:20px 0;
	padding:0px;
	border:#999 solid 1px;
}
hr.clear {
	clear:both;
	border:none;
	margin:10px 0;
	overflow:hidden;
}


@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
	  color:#333;
    page-break-after: avoid;
  }

}

* {
	margin: 0;
	padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}


@font-face {
	font-family: "YuGothic-M";
	font-weight: normal;
	 src: local("YuGothic-Medium"),
		  local("Yu Gothic Medium"),
		  local("YuGothic-Regular");
}

@font-face {
	font-family: "YuGothic-M";
	font-weight: bold;
	 src: local("YoGothic-Bold"),
		  local("Yu Gothic");
}


body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
background: #fff;
font-size: 1.6rem;
line-height: 1.5;
color: #333;
font-feature-settings: "palt" 1;
font-kerning: auto;
-webkit-text-size-adjust: 100%;
	
  height: 100%;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}


a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a.link_page {
padding:5px 10px;
border:#999999 solid 1px;
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		color:#333;
	}
}

/* テキスト関連
----------------------------------*/
h1 {
	font-size: 4.0rem;
}

p {
  margin: 10px 0 20px;
	font-size: 1.8rem;
	line-height: 2.0;
}
.text-small {
	font-size:1.4rem;
	color:#666;
}
.text-large {
	font-size:2.0rem;
}
.text-large-x {
	font-size:2.4rem;
	font-weight: bold;
}
.text-large-xx {
	font-size:2.8rem;
}
.text-large-xxx {
	font-size:3.2rem;
}
.text-bold {
	font-weight: bold;
}

.text-red {
	color:#F00;
}
.text-red2 {
	color:#E73656;
}
.text-yellow {
	color:#FCAC00;
}
.text-pink {
	color:#F36;
}
.text-blue {
	color:#09C;
}
.text-gray {
	color:#666;
}
.text-black {
	color:#000;
}
.text-green {
	color:#3CC;
}
.text-orange {
	color:#F90;
}
.text-white {
	color:#FFF;
}
.text-bg-white {
	background:#FFF;
}
.text-bg-red {
	color:#FFF;
	background:#F66;
	padding:0.2rem;
}
.text-bg-blue {
	color:#FFF;
	text-align: center;
	padding:0.2rem;
}
.text-bg-orange {
	color:#FFF;
	background:#F90;
	padding:0.2rem;
}
.text-bg-pink {
	color:#FFF;
	background:#F36;
	padding:0.2rem;
}
.text-bg-gray {
	color:#FFF;
	background:#333;
	padding:0.2rem;
}
.text-waku-pink {
	border:#F36 solid 2px;
	padding:0.2rem;
}
.text-pink-line {
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFDFEF 0%) repeat scroll 0 0;
	}
.text-center {
	text-align: center;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}


p.text-middle {
	vertical-align: middle;
}
p.text-middle img {
	vertical-align: middle;
}

/*ボタン
-------------------------------------*/

        .button-container {
            width: 300px;
            margin: 40px auto;
            padding: 20px;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1); 
            }
            50% { 
                transform: scale(1.02); 
            }
        }

        a.button {
            display: block;
            padding: 1em 1.5em;
            text-align: center;
            text-decoration: none;
            background: linear-gradient(135deg, #E73656, #FF4569);
            color: #fff;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(231, 54, 86, 0.3);
            position: relative;
            overflow: hidden;
        }

        a.button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        a.button:hover::before {
            left: 100%;
        }

        a.button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 54, 86, 0.4);
            background: linear-gradient(135deg, #FF4569, #E73656);
        }

        a.button:active {
            transform: translateY(0px);
        }

        /* クラブ一覧に戻るボタン */
        .back-button-container {
            text-align: center;
            margin: 50px auto 30px;
            padding: 20px;
        }

        a.back-button {
            display: inline-block;
            padding: 12px 30px;
            text-decoration: none;
            color: #4CAF50;
            border: 2px solid #4CAF50;
            border-radius: 8px;
            background: #fff;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        a.back-button::before {
            content: '←';
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        a.back-button:hover {
            background: #4CAF50;
            color: #fff;
            transform: translateX(-3px);
        }

        a.back-button:hover::before {
            transform: translateX(-3px);
        }

        @media (max-width: 768px) {
            .button-container {
                width: 90%;
                margin: 20px auto;
            }

            a.button {
                width: 100%;
                font-size: 16px;
            }

            .back-button-container {
                margin: 10px auto 0px;
                padding: 15px;
            }
        }


/*--------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------*/
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.header-container h1 {
    margin: 0;
    flex: 1;
}
.header-container h1 a {
    display: block;
    text-decoration: none;
}
.site-name {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}
.site-name:hover {
    opacity: 0.8;
}
.enjoy-banner {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}
.enjoy-banner:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
    }
    
    .site-name {
        height: 60px;
    }
    
    .enjoy-banner {
        height: 32px;
    }
}
@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px 5px 15px;
        flex-wrap: wrap;
        gap: 1px;
    }
    
    .header-container h1 {
        flex: none;
        order: 1;
        width: 100%;
        text-align: center;
		line-height: 100%;
    }
	
    .header-container span {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .site-name {
        height: 65px;
    }
    
    .enjoy-banner {
        height: 28px;
    }
}
.enjoy-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.enjoy-club-label {
    font-size: 16px;
	color: #333;
    font-weight: bold;
}
.enjoy-club-label:hover {
    opacity: 0.8;
}
.enjoy-label {
    font-size: 12px;
    color: #666;
    font-weight: bold;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .enjoy-club-label {
        display: block;
    }
}
@media (max-width: 480px) {
    .enjoy-section {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .enjoy-club-label {
        font-size: 14px;
    }
    
    .enjoy-label {
        font-size: 10px;
        color: #666;
        font-weight: normal;
    }	
}
/*前の記事 次の記事
-------------------------------------*/
.prev-next-link a {
  border-bottom: 1px #ccc solid;
  display: block;
  text-decoration: none;
  padding: 10px 38px;

}
.prev-next-link a:hover {
  background-color: #f4f4f4;
}
.prev-next-link a:first-child {
  border-top: 1px #ccc solid;
}
.prev-next-label {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 8px;
}

.prev-link {
  background: url("../img/base/arrow-prev.svg") no-repeat 10px center;
}
.next-link {
  background: url("../img/base/arrow-next.svg") no-repeat right 10px center;
}
.prev-link,
.next-link {
  background-size: 14px 24px;
}

@media ( min-width: 600px) {
  .prev-next-link {
    display: flex;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  }
  .prev-next-link a {
    flex: 1;
  }
	.prev-next-link a {
    border: none;
		border-left: 1px #ccc solid;
	}
  .prev-next-link a:first-child {
    border: none;
  }
  .next-link {
    text-align: right;
  }
}


/*--------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------*/

footer {
	margin:0;
	padding:0;
	color:#333;
	background:#ececec;
	overflow:hidden;
  position: sticky;
  top: 100vh;
  width: 100%;
}
.footer-container {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.footer-container h2 {
    margin: 0;
    flex: 1;
}
.footer-container h2 a {
    display: block;
    text-decoration: none;
}
.footer-container .site-name {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}
.footer-container .site-name:hover {
    opacity: 0.8;
	text-decoration: none;
}
.footer-container .enjoy-banner {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}
.footer-container .enjoy-banner:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-container {
        padding: 12px 15px;
    }
    
    .footer-container .site-name {
        height: 60px;
    }
    
    .footer-container .enjoy-banner {
        height: 60px;
    }
}
@media (max-width: 480px) {
    .footer-container  {
        padding: 10px 15px 5px 15px;
        flex-wrap: wrap;
        gap: 1px;
    }
    
    .footer-container h2 {
        flex: none;
        order: 1;
        width: 100%;
        text-align: center;
		line-height: 100%;
    }
	
    .footer-container span {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .footer-container .site-name {
        height: 55px;
    }
    
    .footer-container .enjoy-banner {
        height: 55px;
    }
}
.footer-container .footer-enjoy-section {
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 2px;
}
.footer-container .enjoy-club-label {
    font-size: 16px;
	color: #333;
    font-weight: bold;
}
.footer-container .enjoy-club-label:hover {
    opacity: 0.8;
}
.footer-container .enjoy-label {
    font-size: 12px;
    color: #666;
    font-weight: bold;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-container .enjoy-club-label {
        display: block;
    }
}
@media (max-width: 480px) {
    .footer-container .footer-enjoy-section {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .footer-container .footer-enjoy-club-label {
        font-size: 14px;
    }
    
    .footer-container .enjoy-label {
        font-size: 10px;
        color: #666;
        font-weight: normal;
    }	
}

address {
	clear: both;
	text-align: center;
}
footer p {
	line-height: 125%;
	font-weight: 600;
}
a.home {
	font-style:normal;
	font-size:12px;
	color: #666;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
}




/*--------------------------------------------------------------------------
エラーページ
--------------------------------------------------------------------------*/
.error-container h1 {
	margin: 50px 0;
}

/*--------------------------------------------------------------------------
クラブ一覧ページ
--------------------------------------------------------------------------*/

/* メインコンテナ */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding:0 20px 40px 20px;
}

/* ページタイトル */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 20px;
    background: linear-gradient(135deg, #A2DAFA, #45a049);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(from 0deg at center, 
                transparent 0deg, 
                rgba(255,255,255,0.05) 1deg, 
                transparent 2deg, 
                transparent 10deg);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* クラブ一覧グリッド */
.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* クラブカード */
.club-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.club-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* カード上部（画像エリア） */
.club-card-header {
    display: flex;
    height:auto;
    position: relative;
}

.club-image-container {
    width: 220px;
    flex-shrink: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-image-i {
    width: 180px;
    height: 254px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: block;
}

.club-image-i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






.club-info-header {
    flex: 1;
    padding: 15px 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}




/* カテゴリナビゲーション */
.category-nav {
    margin-bottom: 40px;
    text-align: center;
}

.category-nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c5530;
    margin: 0 0 20px 0;
}

.category-nav-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 120px;
    flex-shrink: 0;
}

.category-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #333;
}

.category-nav-item.category1 {
    background: #A2DAF7;
}

.category-nav-item.category2 {
    background: #F9D5E5;
}

.category-nav-item.category3 {
    background: #FDD361;
}

.category-nav-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}

.category-nav-label {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .category-nav-grid {
        gap: 15px;
    }
    
    .category-nav-item {
        padding: 15px 10px;
        width: 100px;
    }
    
    .category-nav-icon {
        font-size: 20px;
    }
    
    .category-nav-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .category-nav-grid {
        gap: 10px;
    }
    
    .category-nav-item {
        padding: 12px 8px;
        width: 90px;
    }
    
    .category-nav-title {
        font-size: 16px;
    }
}


/* クラブ一覧 */
.club-category14 {
    font-size: 12px;
	text-align: center;
	background: #A2DAF7;
    border-radius: 4px;
	margin: 4px 0px;
	padding: 4px 8px;
}
.club-category31 {
    font-size: 12px;
	text-align: center;
	background: #F9D5E5;
    border-radius: 4px;
	margin: 4px 0px;
	padding: 4px 8px;	
}
.club-category45 {
    font-size: 12px;
	text-align: center;
	background: #FDD361;
    border-radius: 4px;
	margin: 4px 0px;
	padding: 4px 8px;
}

.club-meta-line {
    margin:0 0px 12px 0px;
	padding: 4px 0px;
}

.club-number-i {
	display: inline-block;
    background: #fff;
    color: #2c5530;
	border: 2px solid #2c5530;
    padding: 6px 10px;
    border-radius: 24px;
    font-size: 18px;
    font-weight: bold;
	margin:0px 2px;
	letter-spacing: 1px;
}

.club-category-i {
	display: inline-block;
    background: #fff;
	border: 1px solid #333;
    color: #333;
    padding: 4px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.club-name-i {
    font-size: 18px;
    font-weight: bold;
    color: #2c5530;
    line-height: 1.3;
    margin: 8px 8px 0 8px;
}
.club-info-header p {
    font-size: 14px;
	color: #666;
	line-height: 175%;
    margin: 0 0 0 0px;
}


/* カード下部（スケジュールエリア） */
.club-card-body {
    flex: 1;
    padding: 0 15px 15px;
}

.club-schedule-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.club-schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.club-schedule-date {
    font-weight: bold;
    color: #2c5530;
    font-size: 14px;
    margin-bottom: 2px;
}

.club-schedule-time {
    color: #666;
    font-size: 12px;
    margin-bottom: 6px;
}

.club-schedule-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.club-target {
    background: #e8f5e8;
    color: #2c5530;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
}

.club-capacity {
    font-weight: bold;
    color: #ff6b35;
    font-size: 12px;
    margin-left: auto;
}


/* レスポンシブ対応 */
@media (max-width: 980px) {
    .club-image-container {
        width: 220px;
    }
    
    .club-image-i {
        width: 180px;
        height: 255px;
    }
}
@media (max-width: 768px) {
    .main-container {
        padding:0 0 20px 0px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .club-grid {
        grid-template-columns: 1fr;
        gap: 15px;
		padding: 0 15px;
    }
    
    .club-card {
        min-height: 350px;
    }
    
    .club-card-header {
        height:auto;
    }
    
    .club-image-container {
        width: 300px;
    }
    
    .club-image-i {
        width: 210px;
        height: 297px;
    }
    
    .club-name-i {
        font-size: 18px;
    }
    
    .club-schedule-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .club-card-header {
        height:auto;
    }
    
    .club-image-container {
        width: 220px;
    }
    
    .club-image-i {
        width: 180px;
        height: 253px;
    }
    
    .club-name-i {
        font-size: 16px;
    }
.club-info-header p {
    font-size: 14px;
	line-height: 150%;
}
    .club-schedule-date {
        font-size: 12px;
    }
    
    .club-schedule-time {
        font-size: 11px;
    }
    
    .club-target {
        font-size: 9px;
    }
    
    .club-capacity {
        font-size: 11px;
    }
    
    .club-meta-line {
        gap: 6px;
        margin-bottom: 0px;
    }
}
/* 画像の遅延読み込み用スタイル */
.club-image.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.club-image.lazy-load.loaded {
    opacity: 1;
}

.club-image.lazy-load.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* akinomiクラス用のオーバーレイスタイル */
.club-card.akinomi {
    position: relative;
}

.club-card.akinomi::after {
    content: '冬季11・12月のみ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border-radius: 12px;
    z-index: 10;
    pointer-events: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .club-card.akinomi::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .club-card.akinomi::after {
        font-size: 16px;
    }
}


/* keikokuクラス用のオーバーレイスタイル */
.club-card.keikoku {
    position: relative;
}

.club-card.keikoku::after {
    content: '日時が開示されていません';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border-radius: 12px;
    z-index: 10;
    pointer-events: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .club-card.keikoku::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .club-card.keikoku::after {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------------------
カテゴリページ(club-c)
--------------------------------------------------------------------------*/

/* カテゴリページヘッダー */
.category-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.category-icon {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-breadcrumb {
    position: absolute;
    top: 60px;
    left: 0px;
    z-index: 2;
}
.category-breadcrumb a.back-button {
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 14px;
}


/* カテゴリ別の背景色 */
.category-header.category1 {
    background: linear-gradient(135deg, #A2DAF7, #7BC4F0);
}

.category-header.category2 {
    background: linear-gradient(135deg, #F9D5E5, #F3B8D1);
}

.category-header.category3 {
    background: linear-gradient(135deg, #FDD361, #FBC02D);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .category-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .category-breadcrumb {
        position: static;
        margin-bottom: 0px;
        align-self: flex-start;
    }
    
    .breadcrumb-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .category-icon {
        font-size: 30px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .breadcrumb-link {
        gap: 4px;
    }
}
/*--------------------------------------------------------------------------
クラブ個別ページ(club-e)
--------------------------------------------------------------------------*/
.club-container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            line-height: 1.6;
            color: #333;
        }

.winter {
	background: #acacac;
}
        .club-header {
          background: linear-gradient(135deg, #A2DAFA, #45a049);
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
		}
  
        .club-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            transform: translate(-50%, -50%);
            background: repeating-conic-gradient(from 0deg at center, 
                        transparent 0deg, 
                        rgba(255,255,255,0.05) 1deg, 
                        transparent 2deg, 
                        transparent 10deg);
            pointer-events: none;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }


        .club-title {
            font-size: 32px;
            font-weight: bold;
            margin: 0 0 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }


        .club-number {
    background: #fff;
    display: inline-block;
    color: #2c5530;
	border: 2px solid #2c5530;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 16px;
            margin-bottom: 0px;
    font-weight: bold;
    color: #2c5530;
	letter-spacing: 1px;
        }

.club-category {
    background: #fff;
    color: #333;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    width: fit-content;
    margin:0 4px 0px 4px;
}
.club-breadcrumb {
    position: absolute;
    top: 60px;
    left: 10px;
    z-index: 2;
}
.club-breadcrumb a.back-button {
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 14px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
.club-breadcrumb {
    position: absolute;
    top: 100px;
    left: 0px;
    }
}
@media (max-width: 480px) {
        .club-header {
            padding: 15px 10px 50px 10px;
		}
	
        .club-number {
    background: #fff;
    display: inline-block;
    color: #2c5530;
	border: 2px solid #2c5530;
            padding: 2px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 0px;
    font-weight: bold;
    color: #2c5530;
	letter-spacing: 1px;
        }

.club-category {
    background: #fff;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    width: fit-content;
    margin:0 4px 0px 4px;
}
.club-breadcrumb {
    position: absolute;
    top: 76px;
    left: 0px;
    }
}


        .club-content {
            padding: 40px 20px;
        }

        /* Main image section */
.club-main-image-section {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 320px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.club-main-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    pointer-events: none;
}

.club-sub-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
}

.club-sub-image {
    width: 257px;
    height: 363px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
}

        .club-sub-image:hover {
            transform: scale(1.02);
        }


        /* Mobile styles for images */
        @media (max-width: 768px) {
            .club-main-image-section {
    			box-shadow:none;
                grid-template-columns: 1fr;
                height: auto;
            }
            
            .club-main-image {
                height: 403px;
            }
			.club-main-image-section::before {
				background-color: rgba(255, 255, 255, 1);
			}

            .club-sub-image-container {
                padding: 20px;
                justify-content: center;
            }
            
			
			
			
            .club-sub-image {
                width: 100%;
                max-width: 257px;
    			height: 363px;
                cursor: default;
            }
            
            .club-sub-image:hover {
                transform: none;
            }
        }

        /* Catchcopy section */
        .club-catchcopy-section {
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(135deg, #A2DAFA, #45a049);
            color: white;
            padding: 40px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .club-catchcopy {
            font-size: 28px;
            font-weight: bold;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.4;
        }

        /* Activity description */
        .club-activity-description {
            margin-bottom: 40px;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            line-height: 1.8;
            font-size: 16px;
        }

        .club-section {
            margin-bottom: 40px;
            background: #f9f9f9;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .club-section-title {
            font-size: 20px;
            font-weight: bold;
            color: #2c5530;
            margin: 0 0 20px 0;
            position: relative;
            padding-bottom: 10px;
        }

        .club-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #A2DAFA, #81C784);
            border-radius: 2px;
        }

        .club-subsection-title {
            font-size: 16px;
            font-weight: bold;
            color: #4CAF50;
            margin: 20px 0 10px 0;
            padding-left: 15px;
            position: relative;
        }

        .club-subsection-title::before {
            content: '●';
            position: absolute;
            left: 0;
            color: #4CAF50;
        }

        .club-info-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }

        .club-info-label {
            font-weight: bold;
            color: #4CAF50;
            font-size: 14px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .club-info-value {
            font-size: 16px;
            color: #333;
        }

        /* Modal styles for image enlargement */
        .club-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            animation: fadeIn 0.3s ease;
        }

        .club-modal-content {
            margin: auto;
            display: block;
            width: auto;
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
        }

        .club-modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 10000;
        }

        .club-modal-close:hover,
        .club-modal-close:focus {
            color: #bbb;
            text-decoration: none;
        }

        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        /* Schedule table styles */
        .club-schedule-wrapper {
            position: relative;
            overflow-x: auto;
            margin: 0 -15px;
            padding: 0 15px;
            scrollbar-width: thin;
            scrollbar-color: #4CAF50 #f1f1f1;
        }

        .club-schedule-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .club-schedule-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .club-schedule-wrapper::-webkit-scrollbar-thumb {
            background: #4CAF50;
            border-radius: 4px;
        }

        .club-schedule-wrapper::-webkit-scrollbar-thumb:hover {
            background: #45a049;
        }

        .club-scroll-text {
            text-align: center;
            font-size: 13px;
            color: #666;
            margin-bottom: 10px;
            padding: 8px 16px;
            background:#FFF100;
            border: 1px solid #e3f2fd;
            border-radius: 20px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            animation: fadeInBounce 0.5s ease;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .club-scroll-text:hover {
            background: #F7D700;
            transform: translateY(-1px);
        }

        .club-scroll-text.clickable {
            display: flex;
        }

        .club-scroll-arrow {
            display: inline-block;
            width: 0;
            height: 0;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        .club-scroll-arrow.left {
            border-right: 6px solid #F7B700;
            animation: slideLeft 1.5s ease-in-out infinite;
        }

        .club-scroll-arrow.right {
            border-left: 6px solid #F7B700;
            animation: slideRight 1.5s ease-in-out infinite;
        }

        @keyframes fadeInBounce {
            0% { opacity: 0; transform: translateY(-10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideLeft {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-3px); }
        }

        @keyframes slideRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(3px); }
        }

        @media (max-width: 768px) {
            .club-scroll-text {
                display: flex;
            }
        }

        .club-schedule-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .club-schedule-table th {
            background: #4CAF50;
            color: white;
            padding: 15px 12px;
            text-align: left;
            font-weight: bold;
            font-size: 14px;
        }

        .club-schedule-table td {
            padding: 15px 12px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: top;
        }
        .club-schedule-table tr.nowrap , th.nowrap , td.nowrap {
		white-space: nowrap; 
        }
        .club-schedule-table td.td-wide {
			width: 20%;
}
        .club-schedule-table tr:hover {
            background: #f8f9fa;
        }

        .club-schedule-table tr:last-child td {
            border-bottom: none;
        }

        .club-date {
            font-weight: bold;
            color: #2c5530;
            font-size: 16px;
        }

        .club-time {
            color: #666;
            font-size: 14px;
            margin-top: 5px;
        }

        .club-target {
            background: #e8f5e8;
            color: #2c5530;
            padding: 4px 8px;
			margin: 0 0 2px 0;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
			white-space: nowrap;
        }

        .club-fee {
            font-weight: bold;
            color: #ff6b35;
            font-size: 18px;
        }

        .club-empty {
            color: #999;
            font-style: italic;
        }





        .club-notice {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .club-notice-title {
            font-weight: bold;
            color: #856404;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .club-notice-title::before {
            content: '⚠️';
            font-size: 18px;
        }






        /* Activity Photos Section */
        .club-activity-section {
            margin-bottom: 40px;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .club-activity-title {
            font-size: 20px;
            font-weight: bold;
            color: #2c5530;
            margin: 0 0 20px 0;
            text-align: center;
        }

        .club-activity-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .club-activity-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .club-activity-image:hover {
            transform: scale(1.02);
        }

        /* Contact Information */
        .club-contact-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            margin-top: 40px;
        } 

        .club-contact {
            background: linear-gradient(135deg, #A2DAFA 0%, #45a049 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }

        .club-contact-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .club-contact-info {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .club-contact-phone {
            font-size: 24px;
            font-weight: bold;
            color:#0D6E8E;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            padding: 10px 20px;
            background: rgba(255,255,255,0.9);
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .club-contact-phone:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .club-office-contact {
            background: #f8f9fa;
            color: #333;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e9ecef;
        }

        .club-office-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #666;
        }

        .club-office-info {
            font-size: 14px;
            margin-bottom: 8px;
            color: #666;
        }

        .club-office-phone {
            font-size: 18px;
            font-weight: bold;
            color: #4CAF50;
            text-decoration: none;
            display: inline-block;
            margin: 5px 0;
        }

        .club-office-line {
            display: inline-block;
            background: #00C300;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .club-office-line:hover {
            background: #00B300;
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .club-title {
                font-size: 24px;
            }
            
            .club-catchcopy {
                font-size: 22px;
            }

            
            .club-contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .club-contact-wrapper .club-office-contact {
                order: 2;
            }
            
            .club-schedule-table {
				min-width: 980px;
                font-size: 14px;
            }
            
            .club-schedule-table th,
            .club-schedule-table td {
                padding: 10px 8px;
            }

            .club-content {
                padding: 20px 15px;
            }
            
            .club-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .club-title {
                font-size: 21px;
				line-height: 125%;
            }
		}
/* 冬季のみ
---------------------------------------------*/
        /* ページ読み込み時プロンプト用CSS */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .prompt-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
            max-width: 400px;
            width: 90%;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .prompt-box:hover {
            transform: scale(1.05);
        }

        .prompt-box h2 {
            margin-top: 0;
            color: #333;
            font-size: 24px;
        }

        .prompt-box p {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .close-hint {
            color: #999;
            font-size: 14px;
            font-style: italic;
        }

        .fade-out {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* ボタンクリック時プロンプト用CSS（別クラス名） */
        .button-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none; /* 初期状態は非表示 */
            justify-content: center;
            align-items: center;
            z-index: 1001; /* ページ読み込み時より上に */
        }

        .button-prompt-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
            max-width: 400px;
            width: 90%;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .button-prompt-box:hover {
            transform: scale(1.05);
        }

        .button-prompt-box h2 {
            margin-top: 0;
            color: #333;
            font-size: 24px;
        }

        .button-prompt-box p {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .button-close-hint {
            color: #999;
            font-size: 14px;
            font-style: italic;
        }

        .button-fade-out {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
