@charset "utf-8";
/* CSS Document */
.sp{
	display: none !important;
}
/* =======================================
	お知らせ
======================================= */
#contents_news{
	clear:both;
	width: 100%;
	background: #01c0ef;
/*	border-top: 3px solid #d1c0a5;
*/	padding: 30px 0px;
/*	border-bottom: 3px solid #d1c0a5;
*/}
.sub_con_01{
	width: 95%;
	max-width:1150px;
	position:relative;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}

#important_box{
	position: relative;
	width: 260px;
	padding: 15px 25px 15px 0;
	vertical-align: middle;
	border-right: 4px solid #fef74e;
	float:left;
}
h2.important_title{
	font-weight: normal;
	color: #ffffff;
	font-size: 123.1%;
	text-align: center;
	letter-spacing: 2px;
	
}
span.s_title{
	font-size: 77%;
	color: #ffffff;
	padding-left: 5px;
}

ul#important_list{
	width:calc(95% - 260px);
}

ul#important_list li{
	width: 830px;
	height: 33px;
	border-bottom: 2px dashed #FFF;
	overflow: hidden;
	position: relative;
}
#important_list li:nth-child(4)  {
    border-bottom:none !important;
}
span.day01{
	font-size: 93%;
	font-weight:bold;
	color: #184d9a;
}
#important_list a{
	display:block;
	color: #184d9a;
	text-decoration:none;
	white-space:nowrap;
	overflow:hidden;
  text-overflow: ellipsis;
	font-size:93%;
	letter-spacing:3px;
	transition: 0.1s;
}
#important_list a:hover{
	color: #fef74e;
}


#important_list li {
  display: flex;
  align-items: center;
  gap: 10px; /* 矢印とのスペース調整 */
 　transition: all 0.3s ease;
}
.day01 {
  display: inline-flex;       /* インライン＋フレックスで横並び */
  align-items: center;        /* 縦位置を揃える */
  gap: 7px;                   /* 日付と矢印の間の余白 */
}

/* ▶ 矢印の初期状態 */
.day01::after {
  content: "▶";
  font-size: 0.9em;
  color: #fef74e;
  transition: transform 0.3s ease;
}
/* ホバー時に右へスライド */
#important_list li:hover .day01::after {
  transform: translateX(5px);
}


#important_box {
  position: relative;
  width: 260px;
  padding: 15px 25px 15px 0;
  vertical-align: middle;
  border-right: 4px solid #fef74e;
}

/* レスポンシブ：狭い画面で中央寄せ＆ボーダー右→下 */
@media screen and (max-width: 1150px) {
  #important_box {
    float: none;
    width: 100%;
    max-width: 1150px; /* 必要に応じて調整 */
    margin: 0 auto 20px auto; /* 上下マージン調整と中央寄せ */
    padding: 15px 0 15px 0;
    border-right: none;
    border-bottom: 4px solid #fef74e;
    text-align: center;
  }

  /* h2のテキストも中央寄せ */
  #important_box h2.important_title {
    text-align: center;
  }
}

/* レスポンシブ：幅狭めで中央寄せ */
@media screen and (max-width: 900px) {
  #important_list {
    float: none;
    width: 50%;           /* 画面幅の90% */
    max-width: 900px;     /* 最大幅は400pxくらい */
    margin: 0 auto 20px;  /* 上下マージン＋中央寄せ */
    padding: 0;
  }

  /* 各リストアイテムの幅を100%に */
  #important_list li {
    width: 100% !important;
  }
}


/* =======================================
	ボタン
======================================= */

.button_01.btn_01 {
	display:none;
}
	
.button{
	background-color: #fef74e;
	border: 2px solid #184d9a;
	display: inline-block;
	font-size:60%;
	color:#000;
	margin-top:15px;
	padding:0px 20px;
	/*************************************************************************************
	outlineプロパティは、アウトラインのスタイル・太さ・色をまとめて指定する際に使用します。
	borderプロパティとは異なり、outlineプロパティには上下左右の概念はありません。 
	アウトラインをつける（縁取りをする）対象が丸い場合には、アウトラインも丸くなります。
	*************************************************************************************/
	outline: none;
	text-decoration:none !important;
	border-radius:5px !important;
}

.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	border-radius:5px !important;
}
.button,
.button::before,
.button::after {
	/*********************************************************
	「box-sizing」はボックスサイズの算出方法を指定する 
	content-box
	パディングとボーダーを幅と高さに含めない（初期値）
	border-box
	パディングとボーダーを幅と高さに含める
	inherit
	親要素の値を継承する
	**********************************************************/
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	
	/*transitionで変化を設定 これにより滑らかに動く*/
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
}

/* btn3 */
.btn3 {
	z-index: 2;
	color:#184d9a !important;
	line-height: 30px;
	letter-spacing:2px;
	position:relative;
	border-radius:5px !important;
}
.btn3:hover {
	border-radius:5px !important;
	background-color: #fff;
	border-color: #fef74e;
	color: #184d9a !important;
}
.btn3::before,
.btn3::after {
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #fef74e;
}
.btn3::before {
	right: 0;
}
.btn3::after {
	left: 0;
}
.btn3:hover::before,
.btn3:hover::after {
	width: 0;
	background-color: #fef74e;
	border-radius:5px !important;
}

/* =======================================
	ここまで
======================================= */




/* =======================================
  コラム
======================================= */

@media screen and (min-width: 850px) {
	.owl-carousel {
		max-width: 1400px;
		display: flex !important;
		gap: 15px; /* 各要素の間隔 */
		list-style: none;
		padding: 0;
		margin: 30px auto;
	}

	.owl-carousel li {
		flex: 1; /* 通常は均等幅 */
		max-width: 500px;
		background: #f6efe5;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		transition: transform 0.3s ease;
		position: relative; /* ラベル配置のために必要 */
	}
	.owl-carousel li .blog_img{
		width: 100%;
		height: auto;
		aspect-ratio: 3/2;
		overflow: hidden;
		position: relative;
		background: #fff;
	}
	.owl-carousel li img {
		width: 100%;
		height: auto;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	/* 一番左のカードだけ幅を1.25倍に */
	.owl-carousel li:first-child {
		flex: 1.25;
	}

	/* 一番左だけ NEW ラベル追加 */
	/* NEWラベル（点滅） */
	.owl-carousel li:first-child::before {
		content: "NEW";
		position: absolute;
		top: 50px;
		left: 10px;
		background: #ff4d6d;
		color: #fff;
		font-size: 0.9rem;
		letter-spacing: 2px;
		font-weight: bold;
		padding: 5px 30px;
		border-radius: 20px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
		letter-spacing: 1px;
		animation: blink 1.8s infinite;
	}

	/* 点滅アニメーション */
	@keyframes blink {
		0%, 100% { opacity: 1; }
		50% { opacity: 0; }
	}


	/* タイトル・本文装飾 */
	.column_title {
		font-size: 1.2rem;
		margin: 10px;
		font-weight: bold;
		color: #29353d;
	}

	.column_text {
		font-size: 0.9rem;
		margin: 0 10px 10px;
		color: #29353d;
	}

	.day {
		display: block;
		font-size: 0.8rem;
		margin: 8px 10px;
		color: #29353d;
	}
}

#column{
	border-top: 25px solid #0981A8;
	width: 100%;
	height: auto;
	background: #0db8d6;
	position: relative;
	padding-bottom: 200px;
}

.title_01 {
  font-size: 3.8rem; /* 大きめ */
  font-weight: 900; /* 極太でポップ感 */
  color: #f5e769; /* 白色 */
  text-align: left; /* 左寄せ */
  margin: 0 0 30px;
  padding-top: 100px;
  padding-left: 5%;
  font-family: 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
  letter-spacing: 3px; /* 少し広めで読みやすく */
}

span.st{
	font-size: 40%;
	letter-spacing: 5px;
	font-weight: normal;
}




/* =======================================
	ボタン2 
======================================= */
#btn_center{
	width:220px;
	height:45px;
	margin:0 auto;
}

.button_02{
	background-color: #ff4d6d;
	border: 2px solid #FFF;
	display: inline-block;
	width: 220px;
	height: 45px;
	font-size:93%;
	color:#FFF;
	/*************************************************************************************
	outlineプロパティは、アウトラインのスタイル・太さ・色をまとめて指定する際に使用します。
	borderプロパティとは異なり、outlineプロパティには上下左右の概念はありません。 
	アウトラインをつける（縁取りをする）対象が丸い場合には、アウトラインも丸くなります。
	*************************************************************************************/
	outline: none;
	text-decoration:none !important;
	border-radius:5px !important;
}

.button_02::before,
.button_02::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	border-radius:5px !important;
}
.button_02,
.button_02::before,
.button_02::after {
	/*********************************************************
	「box-sizing」はボックスサイズの算出方法を指定する 
	content-box
	パディングとボーダーを幅と高さに含めない（初期値）
	border-box
	パディングとボーダーを幅と高さに含める
	inherit
	親要素の値を継承する
	**********************************************************/
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	
	/*transitionで変化を設定 これにより滑らかに動く*/
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
}

/* btn02 */
.btn_02 {
	z-index: 2;
	color:#fff !important;
	line-height: 42px;
	letter-spacing:2px;
	position:relative;
	text-align:center;
	bottom:-50px;
	left:-5%;
	border-radius:5px !important;
}
.btn_02:hover {
	border-radius:5px !important;
	background-color: #fff;
	border-color: #ff4d6d;
	color: #ff4d6d !important;
}
.btn_02::before,
.btn_02::after {
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #ff4d6d;
}
.btn_02::before {
	right: 0;
}
.btn_02::after {
	left: 0;
}
.btn_02:hover::before,
.btn_02:hover::after {
	width: 0;
	background-color: #ff4d6d;
	border-radius:5px !important;
}










