@charset "UTF-8";
/* CSS Document */
* {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

header {
	width: 100%;
	margin: 0 auto;
	z-index: 10;
	background-color: #fff;
	padding: 5px 0 0 0;
	position: fixed;
}

.space{
	width: 100%;
	height:70px;
}

.h_wrapper{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.h_flex {
	display: flex;
}

.h_left {
	margin-right: 20px;
}

.h_right{
	display: flex;
	margin-left: auto;
}

.entry{
	width: 160px;
	height: 36px;
	background-color: #2f7bea;
	border-radius: 18px;
	margin-top: 15px;
	color: #fff;
	
}

/* ハンバーガーメニュー */
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
	margin:7px 0 0 20px;
	z-index: 1001;
}

/*ボタン内側*/

.openbtn .openbtn-area{
    transition: all .4s;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #2f7bea;
  	width: 45%;
  }


.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}

/* ×ボタンが開いた時は白色に */
.openbtn.active span{
	background: #fff;
}

/* ナビゲーションメニュー */
#g-nav {
	position: fixed;
	top: 0;
	right: -100%; /* 初期位置は画面外右側 */
	width: 100%;
	max-width: 400px; /* メニューの最大幅 */
	height: 100vh;
	background: rgba(47, 123, 234, 0.95); /* 青色の半透明背景 */
	transition: all 0.4s ease;
	z-index: 1000;
	overflow-y: auto;
}

/* メニューが開いた時 */
#g-nav.open {
	right: 0;
}

/* ナビゲーション内のラッパー */
.nav-wrapper {
	padding: 80px 40px 40px;
}

/* メニューリスト */
.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-list li a {
	display: block;
	padding: 20px 0;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.nav-list li a:hover {
	padding-left: 10px;
	color: #fff;
	opacity: 0.7;
}

/* オーバーレイ（背景の暗転） */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 999;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
	
	.entry{
		width: 140px;
		margin-top: 8px;
	}
	.h_left a img {
		width: 150px;
		margin-top: 9px;
	}
	.openbtn{
		margin: 3px 0 0 10px;
	}
	
	#g-nav {
		max-width: 100%;
	}
	
	.nav-wrapper {
		padding: 60px 30px 30px;
	}
	
	.nav-list li a {
		font-size: 16px;
	}
}



/* メインビュー */
.one-time {
  position: relative;
  padding-top: 70px;
}
.one-time img {
  width: 100%;
  max-width:1920px;
  margin: 0 auto;
}
.slick-arrow {
  height: 100%;
  width: 5rem;
  transform: translate(0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.slick-prev {
}
.slick-next {
  left: auto;
  right: 0;
}

@media screen and (max-width:767px){
	.one-time {
	  padding-top: 55px;
	}
}

main {
	max-width:1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1199px){
	main{
		padding: 0 1rem;
	}
}

.mv {
	position: relative;
}

.mv-txt {
	position:absolute;
	top:40%;
	left:10%;
	width:100%;
	z-index: 4;
	
}

.mv-txt2 {
	position:absolute;
	top:15%;
	left:10%;
	width:100%;
	z-index: 4;
	
}

.mv-txt p {
	color:rgba(241,248,170,1.00);
	opacity:0;
	animation:txt 3s 1s forwards;
	font-size:2rem;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.mv-txt2 p {
	color:rgba(241,248,170,1.00);
	opacity:0;
	animation:txt 3s 1s forwards;
	font-size:1.5rem;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

@keyframes txt {
	0% {
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

/* アニメーション用の初期状態 */
.ttl {
	position: relative;
}

.ttl h2 {
	opacity: 0;
	transform: translateY(-100px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	font-family: Arial, Helvetica, "sans-serif";
}

.ttl h3 {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
	
}

/* アニメーション実行後 */
.ttl.animate h2 {
	opacity: 1;
	transform: translateY(0);
}

.ttl.animate h3 {
	opacity: 1;
	transform: translateX(0);
}



.zone {
	padding: 2rem 0;
}
h2{
	color:#2f7bea;
	font-size:2rem;
}
h3{
	color:#000;
	font-size:1rem;
}


.box{
	opacity: 1;
	width:100%;
	margin: 2rem auto 2rem auto;
	background-color: #fff;
}
.box img{
	width:100%;
	display: block;
}
.disp_box{
	padding: 2rem 0;
}
.disp_box h4{
	color:#000;
	font-size:1.5rem;
	margin-bottom: 0.5rem;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: center;
}
.disp_box h5{
	color:#000;
	font-size:1.3rem;
	margin-bottom: 1.5rem;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: center;
}

.disp_box p{
	line-height: 1.75;
	letter-spacing: .07rem;
	font-weight: 400;
}


@media screen and (min-width:960px){
	.zone{
		margin: 0 auto;
		padding: 5rem 0;
	}
	.title_box{
		transform: scale(1.5);
	}
	
	.box{
		display: grid;
		grid-template: 
			"grid1 grid2" 1fr
			/1fr 1fr;
		margin-top: 3rem;
	}
	.disp_box{
		padding: 0 0 0 4rem;
	}
}


/* お知らせセクションのスタイル */
.news-list-section {
	width:100%;
}

.zone-news {
	background-color: #f5f5f5;
}

.news-container {
	width: 100%;
	margin: 2rem auto;
	background-color: #fff;
}

.news-list {
	width: 100%;
}

.news-items {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-item {
	display: flex;
	border-bottom: 1px solid #e0e0e0;
}

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

.news-date {
	flex-shrink: 0;
	width: 120px;
	color: #043456;
	font-weight: bold;
	font-size: 0.95rem;
}

.news-content {
	flex: 1;
}

.news-title {
	color: #043456;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.news-text {
	color: #333;
	line-height: 1.75;
	letter-spacing: 0.07rem;
	margin-top: 0.5rem;
}
.news-content p,
.news-detail-content p{
	line-height: 1.75;
	letter-spacing: .1rem;
}

.loading,
.no-news,
.error-message {
	text-align: center;
	padding: 2rem;
	color: #666;
}

.error-message {
	color: #d32f2f;
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {
	.news-item {
		flex-direction: column;
	}
	
	.news-date {
		width: 100%;
		margin-bottom: 0.5rem;
	}
}

@media screen and (min-width: 960px) {
	.news-container {
		max-width: 1000px;
	}
}

.news-item-top {
	transition: background-color 0.3s ease;
}

.news-item-top:hover {
	background-color: #f0f8ff;
}

.news-link {
	display: flex;
	text-decoration: none;
	color: inherit;
	width: 100%;
	padding: 1rem 0;
}

.news-link:hover .news-title {
	color: #0066cc;
	text-decoration: underline;
}

/* お知らせ一覧ページ用のスタイル */
.page-header {
	background-color: #043456;
	color: #fff;
	padding: 2rem;
	text-align: center;
}

.page-header h1 {
	color: #fff;
	font-size:2rem;
}

.breadcrumb {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #fff;
	text-align: end;
}

.breadcrumb a {
	color: #8fcdff;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.news-page,
.news-detail-page {
	min-height: 70vh;
	padding: 2rem 0;
}

.zone-news-page,
.zone-news-detail {
	background-color: #f5f5f5;
}

.news-container-page {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	background-color: #fff;
	padding: 2rem;
}

.news-items-full {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-item-full {
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.3s ease;
}

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

.news-item-full:hover {
	background-color: #f0f8ff;
}

.news-link-full {
	display: flex;
	text-decoration: none;
	color: inherit;
	width: 100%;
	padding: 1.5rem 0;
}

.news-link-full:hover .news-title {
	color: #0066cc;
}

/* お知らせ詳細ページ用 */
.news-detail-container {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	background-color: #fff;
	border: 2px solid #043456;
	border-radius: 8px;
	padding: 3rem;
}

.news-detail-article {
	line-height: 1.8;
}

.news-detail-date {
	color: #043456;
	font-weight: bold;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.news-detail-title {
	color: #043456;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	border-bottom: 3px solid #043456;
	padding-bottom: 1rem;
}

.news-detail-content {
	color: #333;
	line-height: 2;
	letter-spacing: 0.05rem;
	margin-bottom: 3rem;
	font-size: 1.05rem;
}

.news-detail-back {
	text-align: center;
	margin-top: 3rem;
}

/* ボタンスタイル */
.news-more-link {
	text-align: center;
	margin-top: 2rem;
}

.btn-more,
.btn-back,
.btn-home {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #2f7bea;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.btn-more:hover,
.btn-back:hover,
.btn-home:hover {
	background-color: #065a8a;
}

.page-footer {
	text-align: center;
	padding: 2rem;
	background-color: #f5f5f5;
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {
	.news-link,
	.news-link-full {
		flex-direction: column;
	}
	
	.news-date {
		width: 100%;
		margin-bottom: 0.5rem;
	}
	
	.news-detail-container {
		padding: 2rem 1.5rem;
	}
	
	.news-detail-title {
		font-size: 1.4rem;
	}
}

/* ========== ブログセクション ========== */
.zone-blog {
	background-color: #e8f5e9;
}

.blog-container {
	width: 90%;
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2rem;
}

.blog-list {
	width: 100%;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.blog-card {
	background-color: #fff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.blog-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.05);
}

.blog-info {
	padding: 1.5rem;
}

.blog-date {
	color: #043456;
	font-weight: bold;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.blog-title {
	color: #043456;
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.blog-description {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-top: 0.5rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.blog-more-link {
	text-align: center;
	margin-top: 2rem;
}

.no-blog {
	text-align: center;
	padding: 3rem;
	color: #666;
	font-size: 1.1rem;
}

/* ブログ一覧ページ */
.zone-blog-page {
	background-color: #f5f5f5;
	min-height: 70vh;
}

.blog-container-page {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0;
}

.blog-grid-page {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2.5rem;
}

/* ブログ詳細ページ */
.zone-blog-detail {
	background-color: #f5f5f5;
	min-height: 70vh;
}

.blog-detail-container {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	background-color: #fff;
	border: 2px solid #043456;
	border-radius: 8px;
	padding: 3rem;
}

.blog-detail-article {
	line-height: 1.8;
}

.blog-detail-image {
	width: 100%;
	margin-bottom: 2rem;
	border-radius: 8px;
	overflow: hidden;
}

.blog-detail-image img {
	width: 100%;
	height: auto;
	display: block;
}

.blog-detail-date {
	color: #043456;
	font-weight: bold;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.blog-detail-title {
	color: #043456;
	font-size: 2rem;
	margin-bottom: 2rem;
	border-bottom: 3px solid #043456;
	padding-bottom: 1rem;
	line-height: 1.4;
}

.blog-detail-content {
	color: #333;
	line-height: 2;
	letter-spacing: 0.05rem;
	margin-bottom: 3rem;
	font-size: 1.05rem;
}

.blog-detail-content img {
	max-width: 100%;
	height: auto;
	margin: 2rem 0;
	border-radius: 4px;
}

.blog-detail-content h2 {
	color: #043456;
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #043456;
}

.blog-detail-content h3 {
	color: #043456;
	font-size: 1.3rem;
	margin: 1.5rem 0 0.8rem;
}

.blog-detail-content p {
	margin-bottom: 1.5rem;
}

.blog-detail-back {
	text-align: center;
	margin-top: 3rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {
	.blog-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1.5rem;
	}
	
	.blog-container {
		padding: 1rem 0;
	}
	
	.blog-detail-container {
		padding: 2rem 1.5rem;
	}
	
	.blog-detail-title {
		font-size: 1.5rem;
	}
	
	.blog-image {
		height: 180px;
	}
}

@media screen and (max-width: 599px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-image {
		height: 200px;
	}
}



footer {
	background: url("images/footerview.jpg") center center;
	padding:2rem;
	width:100%;
	max-width:1920px;
	margin:0 auto;
}

.footer-wrapper{
	display: flex;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	max-width: 1200px;
	margin: 0 auto;
}



.banner {
	width: 48%;
	background-color: #ddd;
	padding: 1rem;
}
.banner-ttl {
	background-color: #fff;
	padding: 5px 10px;
	border: 1px solid #000;
	color: #000;
	font-size:2rem;
	text-align: center;
	margin: 0 auto;
	font-family: Arial, Helvetica, "sans-serif";
}
.copyright {
	text-align: center;
	color: #fff;
	margin-top:2rem;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.banner h6{
	text-align: center;
	font-size:1.5rem;
	margin: 1rem 0;
}

.banner-main {
	background-color: #000;
	padding: 5px 10px;
}

.banner-main-disp {
	color: #fff;
	font-size:2rem;
	font-family: Arial, Helvetica, "sans-serif";
}

.banner a  {
	display: block;
	text-align: center;
	margin:1rem auto;
	background-color: #2f7bea;
	color: #fff;
	border-radius: 20px;
	width:270px;
	padding:10px 0;
	
}

.shop-info {
	width:48%;
	padding: 1rem;
	margin-left: 150px;
}

.shop-info img {
	display: block;
}
.shop-info p {
	color:#fff;
	line-height: 1.75;
	margin-top:1rem;
	letter-spacing: .1rem;
}

#map {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;	
}

#map iframe {
	display: block;
	
}



@media screen and (max-width: 767px){
	.footer-wrapper{
		display: flex;
		flex-direction: column;
	}
	.banner {
		width: 100%;
		margin: 0 auto;
		background-color: #ddd;
		padding: 1rem;
	}
	.banner-ttl {
		font-size:1.5rem;
	}
	.banner-main-disp {
		font-size:1.5rem;
	}
	.shop-info {
		width:100%;
		padding: 1rem;
		margin-left: 0;
	}
}

/* お問い合わせページ */
.page-title{
	position: relative;
	width:100%;
	max-width:1440px;
	margin: 0 auto;
	height: 300px;
	overflow: hidden; 
}

.page-title img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	object-fit: cover; /* 画像を中央でトリミング */
	object-position: center; /* 中央を基準に表示 */
}
.page-title-h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 30%); 
	color: #fff;
	font-size: 2rem;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	z-index: 2;
	white-space: nowrap; /* テキストを1行に保つ */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.page-title {
		height: 200px; /* タブレットサイズ */
	}
	
	.page-title-h2 {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.page-title {
		height: 150px; /* 最小の高さ */
	}
	
	.page-title-h2 {
		font-size: 1.2rem;
		transform: translate(-50%, 50%); 
	}
}

/* ========== お問い合わせフォーム ========== */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.contact-form-container {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
    color: #043456;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.contact-description {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #043456;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.required {
    color: #e53935;
    margin-left: 0.3rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #2f7bea;
    border-radius: 30px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2f7bea;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ラジオボタンをボタン風にスタイリング */
.radio-button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-button-label {
    position: relative;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
}

.radio-button-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-button-text {
    display: block;
    padding: 0.8rem 2rem;
    background-color: #fff;
    border: 2px solid #2f7bea;
    border-radius: 30px;
    color: #2f7bea;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    user-select: none;
}

.radio-button-label:hover .radio-button-text {
    background-color: #e3f2fd;
    transform: translateY(-2px);
}

/* 選択された状態 */
.radio-button-label input[type="radio"]:checked + .radio-button-text {
    background-color: #2f7bea;
    color: #fff;
    box-shadow: 0 4px 8px rgba(47, 123, 234, 0.3);
}

/* フォーカス時 */
.radio-button-label input[type="radio"]:focus + .radio-button-text {
    outline: 2px solid #2f7bea;
    outline-offset: 2px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .radio-button-group {
        flex-direction: column;
    }
    
    .radio-button-label {
        width: 100%;
    }
}

/* 送信ボタン */
.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-submit {
    background-color: #2f7bea;
    color: #fff;
    padding: 1rem 4rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a5bb8;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* メッセージ表示 */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-submit {
        padding: 0.9rem 3rem;
        font-size: 1rem;
    }
}

/* ========== ニュース一覧ページ用スタイル(サムネイルなし) ========== */
.news-container-page {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  
}

.news-list-full {
  width: 100%;
}

.news-items-full {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item-full {
  border-bottom: 2px solid #e0e0e0;
  padding: 2.5rem 0;
  scroll-margin-top: 120px; /* ヘッダー70px + 余白50px = 120px */
}

.news-item-full:first-child {
  padding-top: 0;
}

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

.news-article-full {
  width: 100%;
}

.news-info-full .news-date {
  display: inline-block;
  color: #2f7bea;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.5rem 1.2rem;
  background-color: #e3f2fd;
  border-radius: 20px;
}

.news-info-full .news-title {
  color: #043456;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.news-info-full .news-content {
  color: #333;
  line-height: 2;
  letter-spacing: 0.05rem;
  font-size: 1.05rem;
}

.news-info-full .news-content p {
  margin-bottom: 1.2rem;
  line-height: 2;
}

.news-info-full .news-content h2,
.news-info-full .news-content h3,
.news-info-full .news-content h4 {
  color: #043456;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.news-info-full .news-content h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid #2f7bea;
  padding-bottom: 0.5rem;
}

.news-info-full .news-content h3 {
  font-size: 1.4rem;
}

.news-info-full .news-content h4 {
  font-size: 1.2rem;
}

.news-info-full .news-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-info-full .news-content ul,
.news-info-full .news-content ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}

.news-info-full .news-content li {
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.news-info-full .news-content a {
  color: #2f7bea;
  text-decoration: underline;
}

.news-info-full .news-content a:hover {
  color: #1a5bb8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {
  .news-info-full .news-title {
    font-size: 1.5rem;
  }
  
  .news-container-page {
    padding: 1.5rem;
  }
  
  .news-item-full {
    padding: 2rem 0;
  }
}

@media screen and (max-width: 599px) {
  .news-info-full .news-title {
    font-size: 1.3rem;
  }
  
  .news-info-full .news-date {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  
  .news-info-full .news-content {
    font-size: 1rem;
  }
  
  .news-container-page {
    width: 95%;
    padding: 1rem;
  }
  
  .news-item-full {
    padding: 1.5rem 0;
  }
}

/* ========== ブログ一覧ページ用スタイル(サムネイル付き詳細表示) ========== */
.blog-container-page {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-list-full {
  width: 100%;
}

.blog-items-full {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-item-full {
  border-bottom: 2px solid #e0e0e0;
  padding: 2.5rem 0;
  scroll-margin-top: 120px; /* ヘッダー70px + 余白50px */
}

.blog-item-full:first-child {
  padding-top: 0;
}

.blog-item-full:last-child {
  border-bottom: none;
}

.blog-article-full {
  display: flex;
  gap: 2rem;
}

.blog-thumbnail {
  flex-shrink: 0;
  width: 350px;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-item-full:hover .blog-thumbnail img {
  transform: scale(1.05);
}

.blog-info-full {
  flex: 1;
}

.blog-info-full .blog-date {
  display: inline-block;
  color: #2f7bea;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.5rem 1.2rem;
  background-color: #e3f2fd;
  border-radius: 20px;
}

.blog-info-full .blog-title {
  color: #043456;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.blog-info-full .blog-content {
  color: #333;
  line-height: 2;
  letter-spacing: 0.05rem;
  font-size: 1.05rem;
}

.blog-info-full .blog-content p {
  margin-bottom: 1.2rem;
  line-height: 2;
}

.blog-info-full .blog-content h2,
.blog-info-full .blog-content h3,
.blog-info-full .blog-content h4 {
  color: #043456;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.blog-info-full .blog-content h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid #2f7bea;
  padding-bottom: 0.5rem;
}

.blog-info-full .blog-content h3 {
  font-size: 1.4rem;
}

.blog-info-full .blog-content h4 {
  font-size: 1.2rem;
}

.blog-info-full .blog-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-info-full .blog-content ul,
.blog-info-full .blog-content ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}

.blog-info-full .blog-content li {
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.blog-info-full .blog-content a {
  color: #2f7bea;
  text-decoration: underline;
}

.blog-info-full .blog-content a:hover {
  color: #1a5bb8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {
  .blog-article-full {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .blog-thumbnail {
    width: 100%;
    height: 300px;
  }
  
  .blog-info-full .blog-title {
    font-size: 1.5rem;
  }
  
  .blog-container-page {
    padding: 1.5rem;
  }
  
  .blog-item-full {
    padding: 2rem 0;
  }
}

@media screen and (max-width: 599px) {
  .blog-thumbnail {
    height: 220px;
  }
  
  .blog-info-full .blog-title {
    font-size: 1.3rem;
  }
  
  .blog-info-full .blog-date {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  
  .blog-info-full .blog-content {
    font-size: 1rem;
  }
  
  .blog-container-page {
    width: 95%;
    padding: 1rem;
  }
  
  .blog-item-full {
    padding: 1.5rem 0;
  }
}

/* #appeal */

.appeal-grid {
	display: grid;
	grid-template: 1fr/ 1fr 1fr 1fr;
	gap: 30px;
}

@media screen and (max-width: 768px){
	.appeal-grid {
		grid-template:  1fr 1fr 1fr/1fr;
	}
}

.appeal-ttl{
	text-align: center;
	font-size:1.5rem;
	color: #000;
	margin-bottom:2rem;
}

.appeal-content img{
	display: block;
	width: 100%;
}

.appeal-content h4{
	font-size:1.2rem;
	margin: 1rem 0;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	letter-spacing: .1rem;
}

.appeal-content p{
	font-weight: 100;
	letter-spacing: .1rem;
	line-height: 1.75;
}

/* ========== 料金表セクション ========== */
.pricing-section {
  padding: 3rem 0;
  background-color: #f5f5f5;
  min-height: 70vh;
}

.pricing-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* セクションタイトル */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: #2f7bea;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* ========== メイン料金表 ========== */
.main-pricing-table {
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
  margin-top:1rem;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  border: 2px solid #333;
}

.pricing-table thead th {
  background-color: #f8f8f8;
  color: #333;
  font-weight: bold;
  padding: 1.2rem 0.8rem;
  text-align: center;
  border: 2px solid #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-table tbody td {
  padding: 1.4rem 0.8rem;
  text-align: center;
  border: 2px solid #333;
  font-size: 1.05rem;
  background-color: #fff;
}



.pricing-table .plan-name {
  font-weight: bold;
  color: #333;
  background-color: #f8f8f8;
  font-size: 1.1rem;
}

.pricing-table .price {
  font-weight: bold;
  color: #2f7bea;
  font-size: 1.2rem;
}

/* 列幅調整 */
.course-col {
  width: 20%;
}

.price-col {
  width: 25%;
}

.recovery-col,
.massage-col,
.personal-col {
  width: 18%;
}

.main-pricing-table p {
	margin-top:1rem;
	text-align: end;
}

/* ========== 都度料金表 ========== */
.sub-pricing-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
}

.sub-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #2f7bea;
}

.sub-pricing-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid #333;
}

.sub-pricing-table td {
  padding: 1.3rem 1rem;
  border: 2px solid #333;
  text-align: center;
  font-size: 1.05rem;
}


.sub-pricing-table .item-name {
  background-color: #f8f8f8;
  font-weight: bold;
  width: 60%;
}

.sub-pricing-table .item-price {
  color: #2f7bea;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40%;
}

.footerr{
	width:100%;
	max-width:1920px;
	margin: 0 auto;
	overflow: hidden;
	
}

