@charset "UTF-8";

/*共通部分
------------------------------*/
html{
		font-size: 100%
}
body{
	font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, 'sans-serif';
	line-height: 1.7;
	color: #432;
}
a{
	text-decoration: none;
}
img{
	max-width:100%;
}

/*レイアウト*/
.wrapper{
	max-width:1120px;
	margin:auto;
	padding: 0 1.5rem;
}
.align-center{
	tex-align:center;
}
/*見出し*/
.font-spec{
	font-family: 'Hiragino Sans';
	font-weight: normal;
}
.heading-large-t{
	font-size: 2rem;
	text-align: center;
	color: #333;
	text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
}
.page-title,
.heading-large{
	font-size:1rem;
	text-align: center;
	color: #333;
	text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
	margin-top: 2rem;
	line-height:1;
	width: auto;
	background-color: #0F0092;
}
.heading-medium {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000;
  font-size: 30px;
  text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5), 8px 8px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
	background-color: #006EF8;
}
.heading-small-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000;
  font-size: 30px;
  text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5), 8px 8px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
	background-color: #FF8828;
}
.heading-small {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000;
  font-size: 30px;
  text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5), 8px 8px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
	background-color: #02DA00;
}
.heading-side {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000;
  font-size: 30px;
  text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5), 8px 8px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
	background-color: #006EF8;
}
.heading-emergency {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000000;
  font-size: 30px;
  text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5), 8px 8px 0px rgba(0, 0, 0, 0.2);
  font-weight: bold;
	background-color: #ff0000;
	}
/*ボタン*/
.btn{
	display: inline-block;
	font-size: 1.5rem;
	background-color: #0bd;
	color: #fff;
	border-radius: 8px;
	padding:.75rem 1.5rem;
	transition: .5s;
}
.btn:hover{
	background-color:#0090aa;
	scale:1.2;
}
.btn-info{
	display: inline-block;
	font-size: 1.5rem;
	background-color: #CF8100;
	color: #fff;
	border-radius: 8px;
	padding:.75rem 1.5rem;
	transition: .5s;
}
.btn-info:hover{
	background-color:#A83E00;
	scale:1.2;
}
/*iframe*/
.iframe{
	width: 100%;
}

/*ヘッダー
-------------------------*/
.page-header{
	padding-top: .5rem;
	    /* 背景をグラデーションにする */
    background-image: linear-gradient(to right, rgba(70, 130, 180, 0.8), rgba(65, 105, 225, 0.2));
/* グラデーションの開始点と終了点を半透明に設定 */
    color:#cccccc;
	    /* 横幅いっぱいに広げる */
    width: 100%;          /* 幅を100%に設定 */
    margin: 0;            /* 外側の余白をリセット */
}

.logo{
	width: 210px;
}


/*ナビゲーションバーの記述*/
/* ナビゲーションバーの親要素 */
nav {
	text-align: center; 
}

/* ナビゲーションメニュー */
.main-nav {
    display: inline-block; /* これを nav ul に適用 */
    font-size: 0; /* リスト項目間の余白を消す */
    gap: 2.5rem; /* gap は flexbox や grid にのみ有効 */
}

/* リストの設定 */
nav ul {
    margin: auto;
    padding: 0 1.5rem;
    font-size: 0; /* 子要素間の余白を削除 */
}

/* 各リスト項目を横並びにする */
nav ul li {
    display: inline-block; /* li 要素を横並びに */
    list-style: none;
    height: 50px;
    width: auto; /* 項目の幅を指定 */
    font-size: 1rem; /* 各項目のフォントサイズを指定 */
}

/* リンクのスタイル */
nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    padding: 10px 15px; /* リンクの内側余白 (文字の周りのスペース) */
    display: inline-block; /* a要素をブロック要素として扱う */
    transition: background-color 0.3s ease, color 0.3s ease; /* なめらかな変化 */
}

/* ホバー時のスタイル */
nav li:hover {
    background-color: #1339C0;
    border-radius: 8px; /* 角を丸くする */
    transition: .5s;
}

body{
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-attachment: fixed; /* ← ここがポイント */


	background-image: url("../images/cover-home.webp"); /*背景画像と透過*/
	background-color: rgba(0,0,0,0.5);
  	background-blend-mode: darken;

}


/*ホーム部分の概要記述*/
.home-about{
	max-width: 736px;
	padding: 0 1.5rem;
	margin: 3rem auto 4rem;
	text-align: center;
}
.home-about p {
	margin-bottom: 3rem;
	text-align: center;
}

/*フッター
---------------------------*/
.page-footer{
	background-image:url("../images/footer-s.webp");
	background-size: cover;
	background-position: center;
	padding-top: 12rem;
	
}
.info{
	width: 100%;
	max-width: 544px;
	margin: auto;
	padding: 0 1.5rem;
	border-spacing: 0;/*1行ごとに1本の線を引く*/
	
}
.info th,
.info td{
	border-bottom: 1px solid #0524A5;
}
.info th{
	text-align: left;
	font-weight: normal;
	padding: 1rem;
}
.info td{
	padding: 1rem 0;
}
.copyright{
	background-color: #1A263D;
	text-align: center;
	padding: 2rem 0;
	margin-top: 6rem;
	color: #FFF;
}

/*トップ
-------------------------------*/
.cp_cssslider02 {
  width: 300px;
  padding-top: 200px; /* 画像の高さ */
  position: relative;
  margin: 2em auto;
  text-align: center;
}
.cp_cssslider02 > img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  border-radius: 3px;
  box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
}
.cp_cssslider02 input[name='cp_switch'] {
  display: none;
}
/* サムネイル */
.cp_cssslider02 label {
  margin: 15px 5px 0 5px;
  border: 2px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.6;
  border-radius: 3px;
  padding: 0;
}
.cp_cssslider02 label:hover {
  opacity: 0.9;
}
.cp_cssslider02 label img {
  display: block;
  width: 40px;
  border-radius: 2px;
}
.cp_cssslider02 input[name='cp_switch']:checked + label {
  border: 2px solid #FF7043;
  opacity: 1;
}
.cp_cssslider02 input[name='cp_switch'] ~ img {
  opacity: 0;
}
.cp_cssslider02 input[name='cp_switch']:checked + label + img {
  opacity: 1;
}

.index-news-top{
	margin : 30px ;
     padding : 20px ;
     border : 5px solid #00BDFF;
     background-color : #FFF5C2;
}
.index-news-top-2{
	   margin : 30px ;
     padding : 20px ;
     border : 5px solid #FF5200;
     background-color : #FFFFFF;
}
.index-news-top-emergency{
	   margin : 30px ;
     padding : 20px ;
     border : 5px solid #ff0000;
     background-color : #FFFFFF;
}
.top-info{
	margin : 30px ;
     padding : 20px ;
     background-color : #FFFFFF;
}
/*ニュース
--------------------------*/
.post{
	background-image: url("../images/cover-news-s.webp");
}

/*記事部分*/
.post{
	margin-bottom:3rem;

}
.post-title{
	font-weight:normal;
	margin-bottom: 1.25rem;
}
.post-info{
	display:flex;
	gap:1rem;
	margin-bottom: 2rem;
}
.news-contents{
	display: flex;
	justify-content: space-between;
}
.post-cat{
	display:flex;
	gap:.5rem;
	list-style: none;
}
.post-cat a{
	color: #432;
	background-color: #faf7f0;
	border-radius: 8px;
	font-size: .875rem;
	padding:.5rem .75rem;
}
.post-cat a:hover{
	background-color:#c9c2bc;
}
.post-date{
	font-size:.875rem;
}
.flexbox {
  display: flex;
  flex-direction:column;
}

/*サイドバー*/

.side-menu{
	list-style:none;
	text-align: center;
	margin-bottom: 4rem;
	background-image: url("../images/cover-news-s.webp");
}
.side-menu li{
	border-bottom:1px solid #c9c2bc;
}
.side-menu a{
	color: #432;
	display: block;
	padding: 1rem;
}
.side-menu a:hover{
	color:#0bd;
}

/*釣り場案内
----------------------------*/
.fising-map{
	background-image: url("../images/cover-news-s.webp");
}
.fising-map-ima{
	width: 1000px;
}
.fising-map-pit{
	background-image: url("../images/cover-news-s.webp");
}
.grid{
	display: grid;
	gap:2rem 1.5rem;
	grid-template-columns:repeat;
	text-align: center;	
}
.item img{
	aspect-ratio:1/1;/*画像の比率*/
	object-fit: cover;/*画像の比率*/
	border-radius: 16px;
}
.item p{
	font-size:.875rem;
}
/*チケット
----------------------*/
.ticket-point{
	background-image: url("../images/cover-news-s.webp");
}
.ticket-point-ima{
	width: 1000px;
}
.rule-winter{
	     margin : 30px ;
     padding : 20px ;
     border : 5px solid #FF5200;
     background-color : #FFFFFF;
}

/*お問い合わせ
--------------------*/
/*住所*/
.location{
	margin-bottom: 3.5rem;
	background-image: url("../images/cover-news-s.webp");
}
.location-info{
	margin-bottom: 2rem;
}
.location-info .info{
	padding:0;
}

.email{
	max-width:916px;
	background-color: #FAF7F0;
	border-radius: 48px;
	padding: 1.5rem 2.5rem 2.5rem;
	margin: 0 auto 2rem;
}
.email p{
	margin:1rem 0 2rem;
}

.sns{
	background-image: url("../images/cover-news-s.webp")
}

.sns-item{
	

	margin-bottom: 2rem;
}
.sns-item .heading-medium{
	margin-bottom: .5rem;
}

/*組合情報
------------------------------------------*/
.about-text{
	     margin : 30px ;
     padding : 20px ;
     border : 5px solid #147505 ;
     background-color : wheat;
}
.about-menber{
	background-color: wheat;
}


/*デスクトップ版
----------------------------------*/
@media (min-width:800px){
	/*見出し*/
	.page-title{
		font-size: 4rem;
	}
	.heading-large{
		font-size:4rem;
	}
	.post-title{
		font-size:2rem;
	}
	/*スライダー*/
.cp_cssslider02 {
  width: 800px;
  padding-top: 700px; /* 画像の高さ */
  position: relative;
  margin: 2em auto;
  text-align: center;
}
	
	/*ヘッダー*/
	.page-header{
		display:flex;
		justify-content: space-between;
		padding-top: 1.5rem;
	}
	.main-nav{
		font-size:2rem;
		text-align: right; /* ナビゲーション全体を右寄せ */
	}
	/*ヘッダーカバー画像*/
	.sub-cover{
		height:200px;
		margin-bottom: 6rem;
	}
	/*NEWS*/
	.news-contents{
		display:flex;
		justify-content: space-between;
	}
	.post{
		width: 70%;
	}
	.sideber{
		width: 30%;
	}
	.sideber .heading-medium{
		line-height: 1;
		margin-bottom: 1rem;
	}

/*activity*/
.activity-contents{
	display: flex;
	justify-content: space-between;
}

/*HOME*/
.cover-home{
	
}
/*釣り場案内*/
.grid{
	gap:3rem 2rem;
	grid-template-columns: repeat;
}
.item img{
	margin-bottom: .5rem;
}
.item p{
	font-size: 1rem;
}
}