@charset "UTF-8";
/* CSS Document */
/* 彼方号 共通スタイル（海道丸テンプレート準拠 / カラーのみ彼方号仕様） */
/* accent(電話CTA専用): #e99a20   structure(dark): #223240  base: #F7F9FB  text: #1A1E24  水色(背景/あしらい用): #dbedf8 */


/******************************************************

PC設定 1200px以上の場合に適用

*******************************************************/

/* 全体の設定 */

html {
	color: #1A1E24;
	}

body {
	width: 100%;
	font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	font-size: 16px;
	background-color: #F7F9FB;
	}

a {
	text-decoration: none;
	color: #1A1E24;
	cursor: pointer;
	}

p {
	color: #1A1E24;
	line-height: 1.8;
	}

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}

.container {
    padding: 120px 0;
}

.wrapper {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	}

.wrapper_small {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
	}


/* =========================================================
   下層MV（メインビジュアル）※全下層ページ共通のガワ
   背景写真は各セクションで .pageHead--xxx を当てて指定する
   （例：news → theme style.css の .pageHead--news）
   ========================================================= */
.pageHead {
	position: relative;
	min-height: 576px;
	padding: 80px 20px 68px;   /* 上=固定ヘッダー高(80px) / 下=h1を下寄せ */
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	background-color: #223240;   /* 画像未指定時のフォールバック */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.pageHead::before {   /* 写真上の暗色半透明オーバーレイ */
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(18,26,34,.52);
	pointer-events: none;
}

.pageHead__inner {
	position: relative;
	z-index: 1;
	color: #FFF;
}

.pageHead__en {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .24em;
	color: #dbedf8;
	margin-bottom: 14px;
}

.pageHead__ja {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.35;
	text-shadow: 0 2px 24px rgba(0,0,0,.28);
}


/* =========================================================
   パンクズリスト（MV直下）※全下層共通
   ========================================================= */
.breadcrumb {
	background: #F7F9FB;
	border-bottom: 1px solid #E3E8ED;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 10px;
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 0;
	list-style: none;
	font-size: 13px;
	color: #6B7684;
}

.breadcrumb__list li {
	display: flex;
	align-items: center;
	gap: 4px 10px;
}

.breadcrumb__list a {
	color: #1A1E24;
	transition: .2s;
}

.breadcrumb__list a:hover {
	color: #e99a20;
}

.breadcrumb__sep {
	color: #C7D0DA;
}

.breadcrumb__current {
	color: #6B7684;
}


.pc {
	display: block;
	}

.sp {
	display: none;
	}

.h2 {
	font-size: 42px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 80px;
	letter-spacing: .04em;
}

.btn {
	display: block;
	width: 300px;
	height: 70px;
	line-height: 70px;
	border: 1px solid #CCC;
	border-radius: 35px;
	position: relative;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 600;
	padding-left: 30px;
	transition: .2s;
	background-color: #FFF;
}

.btn::after {
	content: "→";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 26px;
	height: 40px;
	line-height: 40px;
	margin: auto;
	font-size: 18px;
	color: #1A1E24;
	transition: .2s;
}

.btn:hover {
	border: 1px solid #1A1E24;
	background-color: #1A1E24;
	color: #FFF;
}

.btn:hover::after {
	color: #FFF;
}



/* セクション見出し（下層ページでも使い回す共通コンポーネント） */
.heading {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 66px;
}

.heading::before {
	content: "";
	display: block;
	flex: none;
	width: 5px;
	height: 56px;
	margin-top: 3px;
	background-color: #dbedf8;
}

.heading__ja {
	font-size: 36px;
	font-weight: 700;
	color: #1A1E24;
	line-height: 1.3;
}

.moreLink {
	font-size: 18px;
	font-weight: 700;
	color: #1A1E24;
	transition: .2s;
}

.moreLink:hover {
	opacity: .6;
}



/* header */
.header {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
	background-color: transparent;
	transition: background-color .25s, box-shadow .25s;
}

.header.scroll {
	background-color: #FFF;
	box-shadow: 0 2px 14px rgba(34,50,64,.10);
}

.header__link {
	display: block;
	position: absolute;
	left: 1%;
	top: 15px;
	height: 50px;
	transition: .2s;
}

.header__link:hover {
	opacity: .7;
}

.header__logo {
	height: 50px;
	width: auto;
	display: block;
	transition: opacity .2s;
}

.header__logo--dark {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.header.scroll .header__logo--white {
	opacity: 0;
}

.header.scroll .header__logo--dark {
	opacity: 1;
}

.globalNav {
	height: 40px;
	position: absolute;
	right: 1%;
	top: 20px;
	padding: 0;
}

.globalNav__box {
	height: 100%;
	display: flex;
	align-items: center;
}

.globalNav__item:not(:last-child){
	margin-right: 25px;
}

.globalNav__item:nth-of-type(6) {
	margin-right: 15px;
}

.globalNav__item--util:not(:last-child) {
	margin-right: 10px;
}

.globalNav__link {
	font-size: 16px;
	font-weight: 600;
	color: #FFF;
	transition: .2s;
}

.header.scroll .globalNav__link {
	color: #222;
}

.header.scroll .globalNav__line,
.header.scroll .globalNav__tel {
	color: #FFF;
}

.globalNav__link:hover,
.globalNav__link.current {
	opacity: .7;
}

/* --- Instagram（40px正円） --- */
.globalNav__instagram {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-image: url("/img/common/icon_instagram.png");
	background-size: contain;
	background-position: center center;
	transition: .2s;
}

.globalNav__instagram:hover {
	opacity: .8;
}

/* --- LINEで予約（電話番号ボタンと同形状） --- */
.globalNav__line {
	display: flex;
	align-items: center;
	gap: 6px;
	background-color: #06C755;
	height: 40px;
	color: #FFF;
	line-height: 1;
	border-radius: 20px;
	padding: 0 18px 0 12px;
	transition: .2s;
	font-weight: 700;
}

.globalNav__line-icon {
	width: 20px;
	height: 20px;
	display: block;
}

.globalNav__line span {
	font-size: 16px;
}

.globalNav__line:hover {
	background-color: #05a648;
	color: #FFF;
}

.globalNav__tel {
	display: block;
	background-color: #e99a20;
	height: 40px;
	font-size: 16px;
	color: #FFF;
	line-height: 40px;
	border-radius: 20px;
	padding: 0 18px 0 32px;
	position: relative;
	transition: .2s;
	font-family: "Inter", Arial, sans-serif;
	font-weight: 700;
}

.globalNav__tel:hover {
	background-color: #cf861a;
	color: #FFF;
}

.globalNav__tel::before {
	display: inline-block;
	content: "";
	width: 18px;
	height: 18px;
	background-color: #FFF;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.3 1l-2.2 2.2z'/></svg>") center/contain no-repeat;
	        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.3 1l-2.2 2.2z'/></svg>") center/contain no-repeat;
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 0;
	margin: auto;
}



/* mv（下層ページ共通のページタイトル） */
.mv {
	width: 100%;
	height: 340px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: #223240;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mv__h1 {
	font-size: 42px;
	font-weight: 600;
	padding: 18px 50px;
	text-align: center;
	background-color: #FFF;
	border-radius: 10px;
	border-bottom: 6px solid #dbedf8;
}

.mv__h1 span {
	display: block;
	color: #1A1E24;
	font-size: 15px;
	letter-spacing: .2em;
	margin-top: 6px;
	font-weight: 700;
}



/* breadcrumb */
.breadcrumb__box {
	display: flex;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
}

.breadcrumb__item {
	margin-right: 10px;
}

.breadcrumb__item:not(:first-child)::before {
	content: ">";
	margin-right: 10px;
	font-size: 14px;
	color: #999;
}

.breadcrumb__link {
	font-size: 14px;
	color: #6B7684;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}



/* reservation */
.reservation {
	background-color: #FFF;
}

.reservation__wrapper {
	border-radius: 30px;
	position: relative;
	padding: 100px 6%;
	background-color: #dbedf8;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.reservation__left {
	width: 48%;
}

.reservation__h2 {
	text-align: left;
	color: #1A1E24;
	margin-bottom: 20px;
}

.reservation__txt {
	color: #1A1E24;
	line-height: 2;
}

.reservation__right {
	width: 46%;
	max-width: 480px;
}

.reservation__btn {
	display: flex;
	width: 100%;
	height: 92px;
	justify-content: space-between;
	align-items: center;
	padding: 0 6%;
	transition: .2s;
	border-radius: 10px;
}

.reservation__btn:hover {
	opacity: .85;
}

.reservation__btn--tel {
	margin-bottom: 28px;
	background-color: #e99a20;
}

.reservation__btn--tel .reservation__btn-left {
	font-size: 24px;
	font-family: "Inter", Arial, sans-serif;
	font-weight: 600;
	color: #FFF;
	white-space: nowrap;
}

.reservation__btn--tel .reservation__btn-left::before {
	display: inline-block;
	content: "";
	width: 28px;
	height: 28px;
	background-color: #FFF;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.3 1l-2.2 2.2z'/></svg>") center/contain no-repeat;
	        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.6.1.4 0 .8-.3 1l-2.2 2.2z'/></svg>") center/contain no-repeat;
	vertical-align: -6px;
	margin-right: 10px;
}

.reservation__btn--line {
	background-color: #06C755;
}

.reservation__btn--line .reservation__btn-left {
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
	white-space: nowrap;
}

.reservation__btn--line .reservation__btn-left::before {
	display: inline-block;
	content: "";
	width: 28px;
	height: 28px;
	background-image: url("/img/common/icon_line.png");
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	vertical-align: -6px;
	margin-right: 10px;
}

.reservation__btn-right {
	color: #FFF;
}



/* footer__map */
.footer__map,
.footer__map iframe {
	display: block;
	width: 100%;
	height: 500px;
}



/* footer */
.footer {
	background-image: linear-gradient(rgba(34,50,64,.82), rgba(34,50,64,.82)), url("/img/common/bg_footer.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	position: relative;
	padding: 130px 0;
}

.footer__upper {
	padding: 0 50px;
	display: flex;
	justify-content: space-between;
}

.footer__upper-left {
	width: 40%;
}

.footer__logo {
	display: block;
	margin-bottom: 30px;
}

.footer__logo-img {
	height: 54px;
	width: auto;
	display: block;
}

.footer__txt {
	font-size: 14px;
	color: #FFF;
	line-height: 1.9;
}

.footer__nav {
	display: flex;
}

.footer__nav > li {
	margin-left: 40px;
}

.footer__nav > li > ul > li {
	line-height: 2;
}

.footer__nav > li > ul > li > a {
	font-size: 13px;
	color: #FFF;
	font-weight: 600;
}

.footer__nav > li > ul > li > ul > li > a {
	font-size: 12px;
	color: #c8d3dc;
	font-weight: 400;
}

.footer__nav > li > ul > li > ul > li > a:before {
	content: "-";
	margin-right: 5px;
}

.footer__nav a:hover {
	opacity: .7;
}

.footer__copyright {
	margin: 50px 50px 0 50px;
	border-top: 0.5px solid rgba(255,255,255,.5);
	padding-top: 30px;
	color: #FFF;
	font-size: 13px;
}



/******************************************************

タブレットの設定 960px~1199pxの場合に適用

*******************************************************/

@media screen and (max-width: 1199px){

/* 全体の設定 */
body {
	max-width: 1199px;
	min-width: 100%;
	}



/* header */
.header__logo-name {
	font-size: 24px;
	}

.globalNav {
	right: 0.5%;
	padding: 0 20px 0 25px;
	}

.globalNav__item:not(:last-child) {
	margin-right: 15px;
	}

.globalNav__link {
	font-size: 14px;
	}

.globalNav__tel {
	font-size: 14px;
	padding: 0 12px 0 32px;
	}

.globalNav__tel::before {
	width: 15px;
	height: 15px;
	left: 11px;
	}

.globalNav__line {
	font-size: 13px;
	padding: 0 14px 0 10px;
	}



/* reservation */
.reservation__wrapper {
	display: block;
	}

.reservation__left {
	width: 100%;
	margin-bottom: 40px;
	}

.reservation__h2 {
	text-align: center;
	}

.reservation__txt {
	text-align: center;
	}

.reservation__right {
	margin: 0 auto;
	width: 100%;
	}



/* footer */
.footer__upper-right {
	flex: 1;
	}

.footer__nav {
	flex-wrap: wrap;
	width: 100%;
	}

.footer__nav > li {
	width: 50%;
	box-sizing: border-box;
	margin-left: 0;
	margin-bottom: 30px;
	}

.footer__nav > li:nth-child(odd) {
	padding-right: 24px;
	}

}



/******************************************************

タブレットの設定 768px~959pxの場合に適用

*******************************************************/

@media screen and (max-width: 959px){

/* 全体の設定 */
body {
	max-width: 959px;
	min-width: 100%;
	}



/* header */
.header__link {
	top: 15px;
	left: 2%;
	}

.globalNav {
	height: 40px;
	right: 96px;
	top: 20px;
	padding: 0;
	background-color: transparent;
	}

.globalNav__item--nav {
	display: none;
	}

.globalNav__item--util {
	margin-right: 8px !important;
	}

.globalNav__instagram {
	width: 36px;
	height: 36px;
	}

.globalNav__line span {
	display: none;
	}

.globalNav__line {
	width: 36px;
	height: 36px;
	padding: 0;
	justify-content: center;
	border-radius: 100%;
	}

.globalNav__line-icon {
	width: 18px;
	height: 18px;
	}

.globalNav__tel {
	font-size: 18px;
	line-height: 40px;
	padding: 0 15px 0 40px;
	}

.globalNav__tel::before {
	width: 20px;
	height: 20px;
	left: 12px;
	}



/* 見出し */
.heading {
	margin-bottom: 54px;
	}

.heading::before {
	height: 48px;
	}

.heading__ja {
	font-size: 30px;
	}



/* footer */
.footer__upper {
	padding: 0 50px;
	display: block;
	}

.footer__upper-left {
	width: 100%;
	margin-bottom: 50px;
	text-align: center;
	}

.footer__logo-img {
	margin: 0 auto;
	}

.footer__txt {
	font-size: 13px;
	}

.footer__upper-right {
	display: flex;
	justify-content: center;
	}

.footer__nav {
	flex-wrap: nowrap;
	width: auto;
	}

.footer__nav > li {
	width: auto;
	box-sizing: border-box;
	margin-left: 24px;
	margin-bottom: 0;
	}

.footer__nav > li:nth-child(odd) {
	padding-right: 0;
	}

.footer__copyright {
	text-align: center;
	}

}


/******************************************************

SPの設定 767px以下の場合に適用

*******************************************************/

@media screen and (max-width: 767px){

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 14px;
	}

.container {
    padding: 60px 0;
}

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}

.pageHead {
	min-height: 240px;
	padding: 50px 16px 44px;
	}

.pageHead__en {
	font-size: 12px;
	margin-bottom: 10px;
	}

.pageHead__ja {
	font-size: 24px;
	}

.breadcrumb__list {
	padding: 11px 0;
	font-size: 12px;
	gap: 3px 8px;
	}

.h2 {
	font-size: 24px;
	margin-bottom: 30px;
	}

.heading {
	gap: 12px;
	margin-bottom: 27px;
	}

.heading::before {
	height: 40px;
	}

.heading__ja {
	font-size: 20px;
	}

.moreLink {
	font-size: 15px;
	}

.btn {
	width: 240px;
	height: 50px;
	line-height: 50px;
	font-size: 15px;
	padding-left: 25px;
	}

.btn::after {
	right: 22px;
	}



/* header */
.header {
	height: 50px;
	}

.header__link {
	top: 7px;
	left: 3%;
	}

.header__logo {
	height: 36px;
	}

.globalNav {
	height: 50px;
	width: 150px;
	right: 50px;
	top: 0;
	padding: 0;
	border-radius: 0;
	}

.globalNav__item--util {
	margin-right: 0 !important;
	height: 50px;
}

.globalNav__instagram,
.globalNav__line,
.globalNav__tel {
	width: 50px;
	height: 50px;
	border-radius: 0;
	}

.globalNav__instagram {
	border-radius: 0;
	}

.globalNav__line {
	justify-content: center;
	}

.globalNav__line-icon {
	width: 22px;
	height: 22px;
	}

.globalNav__tel {
	font-size: 18px;
	padding: 0;
	background-color: #e99a20;
	}

.globalNav__tel span {
	display: none;
	}

.globalNav__tel::before {
	width: 22px;
	height: 22px;
	left: 0;
	right: 0;
	}



/* mv */
.mv {
	height: 200px;
	}

.mv__h1 {
	font-size: 22px;
	padding: 12px 28px;
	border-radius: 5px;
	border-bottom: 4px solid #dbedf8;
	}

.mv__h1 span {
	font-size: 12px;
	margin-top: 4px;
	}



/* reservation */
.reservation__wrapper {
	border-radius: 15px;
	padding: 50px 20px;
	}

.reservation__h2 {
	margin-bottom: 20px;
	}

.reservation__left {
	margin-bottom: 20px;
	}

.reservation__btn {
	height: 60px;
	padding: 0 5%;
	border-radius: 5px;
	}

.reservation__btn--tel {
	margin-bottom: 15px;
	}

.reservation__btn--tel .reservation__btn-left,
.reservation__btn--line .reservation__btn-left {
	font-size: 17px;
	}

.reservation__btn--tel .reservation__btn-left::before {
	width: 20px;
	height: 20px;
	vertical-align: -4px;
	margin-right: 8px;
	}

.reservation__btn--line .reservation__btn-left::before {
	width: 22px;
	height: 22px;
	vertical-align: -5px;
	margin-right: 8px;
	}

.reservation__btn-right {
	font-size: 11px;
	}



/* footer__map */
.footer__map,
.footer__map iframe {
	height: 300px;
	}



/* footer */
.footer {
	padding: 50px 0 40px 0;
	}

.footer__upper {
	padding: 0 20px;
	}

.footer__logo-img {
	height: 42px;
	}

.footer__txt {
	font-size: 12px;
	}

.footer__upper-left {
	margin-bottom: 20px;
	}

.footer__upper-right {
	display: none;
	}

.footer__copyright {
	margin: 10px 20px;
	padding-top: 10px;
	font-size: 12px;
	}

.footer a {
	color: #FFF;
	}

}


/* =====================================================================
   NEWS（釣果とお知らせ）カード共通スタイル
   トップページ（/index.php）と WordPress（/news/）で共有する単一ソース。
   ※ common.css は全ページで必ず読まれる基幹ファイルなので、ここに置けば
     index.css / news.css の二重管理や上げ忘れによる崩れが起きない。
   ※ .news__item〜.news__item-desc の構造・クラス名はトップの
     DOMDocument スクレイプと完全一致させること。片方だけ触らない。
   ===================================================================== */
.news {
	background: #FFF;
}

.news__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.news__item {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	transition: .2s;
	border-bottom: 1px solid #E3E8ED;
	padding-bottom: 40px;
}

.news__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.news__more {
	display: block;
	margin-top: 50px;
}

.news__item:hover {
	opacity: .75;
}

.news__item-thumb {
	position: relative;
	flex: none;
	width: 220px;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #E3E8ED;
}

.news__item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 画像未設定時のプレースホルダ */
.news__item-thumb .ph {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	color: #9AA7B4;
	font-size: 13px;
	text-align: center;
	line-height: 1.5;
}

.news__item-badge {
	position: absolute;
	top: 0;
	left: 0;
	background: #D90000;
	color: #FFF;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 0 0 3px 0;
}

.news__item-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.news__item-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	color: #1A1E24;
}

.news__item-meta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.news__item-tag {
	background: #dbedf8;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
}

.news__item-tag--info {
	background: none;
	border: 1px solid #1A1E24;
	padding: 2px 10px;
}

.news__item-date {
	font-size: 12px;
	color: #6B7684;
}

.news__item-desc {
	font-size: 16px;
	line-height: 1.9;
	color: #6B7684;
}


/* NEWS カード：タブレット（959px以下）*/
@media screen and (max-width: 959px){

.news__item-thumb {
	width: 160px;
	}

}


/* NEWS カード：SP（767px以下）*/
@media screen and (max-width: 767px){

.news__list {
	gap: 28px;
	}

.news__item-title {
	font-size: 16px;
	}

.news__more {
	margin-top: 30px;
	}

.news__item {
	flex-direction: column;
	gap: 16px;
	padding-bottom: 28px;
	}

.news__item-thumb {
	width: 100%;
	aspect-ratio: 16/9;
	}

.news__item-desc {
	font-size: 14px;
	}

}


/* =====================================================================
   下層ページ共通コンポーネント
   ===================================================================== */

/* 画像プレースホルダ（ダミー用・実写真差し替え前提） */
.imgPh {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E3E8ED;
	color: #8595a3;
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
	padding: 16px;
	box-sizing: border-box;
}


/* 定義リスト（スペック表・情報一覧） */
.specList {
	border-top: 1px solid #E3E8ED;
}

.specList__row {
	display: flex;
	gap: 20px;
	padding: 16px 4px;
	border-bottom: 1px solid #E3E8ED;
}

.specList__row dt {
	flex: none;
	width: 128px;
	font-weight: 700;
	color: #1A1E24;
}

.specList__row dd {
	flex: 1;
	color: #333B44;
	line-height: 1.8;
}

@media screen and (max-width: 767px){

.specList__row {
	flex-direction: column;
	gap: 4px;
	padding: 14px 2px;
	}

.specList__row dt {
	width: auto;
	font-size: 14px;
	}

.specList__row dd {
	font-size: 14px;
	}

}


/* 小見出し（下層セクション内の見出し） */
.subhead {
	font-size: 18px;
	font-weight: 700;
	color: #1A1E24;
	margin: 44px 0 14px;
	padding-left: 12px;
	border-left: 4px solid #e99a20;
}

.subhead:first-of-type {
	margin-top: 0;
}

@media screen and (max-width: 767px){

.subhead {
	font-size: 16px;
	margin: 36px 0 12px;
	}

}
