@charset "UTF-8";
/* CSS Document */
/* 彼方号 トップページ専用スタイル（デザイン仕様書v2：写真支配・オレンジCTA） */


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

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

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

/* =========== ヒーロー =========== */
.hero {
	position: relative;
	width: 100vw;
}

.hero__bg {
	position: sticky; /* GPU合成層はここで止める：子のスクリムを外に出したので競合なし */
	top: 0;
	height: 100vh;
	min-height: 700px;
	max-height: 1100px;
	overflow: hidden;
	z-index: 0;
}

.hero__media {
	position: absolute;
	inset: 0;
	background: #223240; /* スライド読込前のつなぎ色 */
}

/* --- 背景スライドショー（4枚・5秒ずつ／フェード＋中央ケンバーンズzoom・20秒ループ） --- */
.hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transform-origin: center center;
	will-change: opacity, transform;
	animation: heroKenBurns 20s infinite;
}

.hero__slide--1 { background-image: url("/img/index/img_slideShow_01.jpg?v=20260806"); animation-delay: 0s; }
.hero__slide--2 { background-image: url("/img/index/img_slideShow_02.jpg?v=20260806"); animation-delay: 5s; }
.hero__slide--3 { background-image: url("/img/index/img_slideShow_03.jpg?v=20260806"); animation-delay: 10s; }
.hero__slide--4 { background-image: url("/img/index/img_slideShow_04.jpg?v=20260806"); animation-delay: 15s; }

@keyframes heroKenBurns {
	0%      { opacity: 0; transform: scale(1.0); }
	3.75%   { opacity: 1; }                          /* 約0.75秒でフェードイン */
	25%     { opacity: 1; transform: scale(1.10); }  /* 表示5秒の間、中央から少しずつズーム */
	28.75%  { opacity: 0; transform: scale(1.12); }  /* 次の画像へクロスフェード */
	100%    { opacity: 0; transform: scale(1.0); }   /* 非表示中に等倍へリセット */
}

/* hero__scrim は hero__bg から追い出して hero__body::before に移動 */
/* → GPU合成層と別レイヤーになるので z-index競合が起きない */

.hero__content {
	position: relative;
	margin-top: -100vh; /* sticky bg に重ねる */
	z-index: 1;         /* hero__bg(z-index:0)の上に積む */
}

.hero__body {
	position: relative;
	height: 100vh;
	min-height: 700px;
	max-height: 1100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #FFF;
}

.hero__body::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(18,26,34,.34); /* 写真上の白コピー可読性用の暗幕 */
	z-index: 0;
	pointer-events: none;
}

.hero__inner {
	position: absolute;
	bottom: 150px;
	left: 7%;
	z-index: 1; /* hero__body::before(scrim)の上に確実に出す */
}

.hero__copy {
	color: #FFF;
	font-size: 88px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 30px;
}

.hero__sub {
	font-size: 24px;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 50px;
	line-height: 2;
}

.hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.hero__btn {
	display: block;
	width: 300px;
	height: 60px;
	font-size: 18px;
	transition: .2s;
	text-align: center;
	line-height: 60px;
	font-weight: 600;
	border-radius: 5px;
}

.hero__btn-icon {
	width: 25px;
	height: 25px;
	display: inline-block;
	vertical-align: -7px;
	margin-right: 10px;
}

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

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

.hero__btn--tel {
	background: #e99a20;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	line-height: 1;
}

.hero__btn--tel::before {
	content: "";
	display: block;
	flex: none;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	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;
}

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

.scrollDown {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.scrollDown span {
	color: #FFF;
	font-size: 11px;
	letter-spacing: .15em;
	writing-mode: vertical-lr;
}

.hero__welcome {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 10%;
	box-sizing: border-box;
}

.hero__welcome::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(18,26,34,.34);
	z-index: 0;
	pointer-events: none;
}

.hero__welcome-txt {
	position: relative;
	z-index: 1;
	color: #FFF;
	font-size: 22px;
	line-height: 2.2;
	text-align: center;
	max-width: 960px;
}


/* =========== NEWS（釣果とお知らせ） =========== */
/* ▼ .news 系カードは /css/news.css に抽出（トップ／news共通・単一ソース）。
      2026-07-22〜。ここには追記しない。 */


/* =========== ABOUT（彼方号について） =========== */
.about {
	background-color: #f8fcfe;
}

.about__wrapper {
	display: flex;
	width: 100%;
}

.about__panel {
	flex: 0 0 58%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
	padding: 120px 90px 120px max(2.5%, calc((100vw - 1200px) / 2));
}

.about__panel .heading {
	margin-bottom: 10px;
}

.about__txt {
	font-size: 16px;
	line-height: 1.9;
}

.about__media {
	flex: 1;
	background-image: url("/img/index/bg_about.jpg");
	background-size: cover;
	background-position: center center;
}

.about__links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: #E3E8ED;
	border: 1px solid #E3E8ED;
}

.about__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px;
	background: #FFF;
	color: #1A1E24;
	font-size: 16px;
	font-weight: 700;
	transition: .2s;
}

.about__link:hover {
	opacity: .6;
}

.about__link::after {
	content: "→";
	margin-left: auto;
}

.about__link-icon {
	flex: none;
	width: 22px;
	height: 22px;
	color: #1A1E24;
}

.about__link-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.about__more {
	align-self: flex-start;
	margin-top: 20px;
}


/* =========== PRICE（料金案内） =========== */
.price {
	background-color: #FFF;
}

.price__grid {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 48px;
	align-items: center;
}

.price__lead {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.price__lead .heading {
	margin-bottom: 10px;
}

.price__lead p {
	font-size: 16px;
	line-height: 1.9;
	color: #1A1E24;
}

.price__more {
	align-self: flex-start;
	margin-top: 20px;
}

.price__boxes {
	display: flex;
	flex-direction: row;
	gap: 0;
}

.price__box {
	flex: 1;
	box-sizing: border-box;
	border: 1px solid #E3E8ED;
	border-top: none;
	padding: 28px 24px;
	background: #FFF;
}

.price__box:not(:first-child) {
	border-left: none;
}

.price__box--noriai {
	border-top: 3px solid #dbedf8;
}

.price__box--charter {
	border-top: 3px solid #e99a20;
}

.price__plan {
	font-size: 16px;
	font-weight: 700;
	color: #6B7684;
}

.price__amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 8px 0;
}

.price__num {
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
}

.price__kara {
	font-size: 16px;
	font-weight: 900;
}

.price__note {
	font-size: 15px;
	color: #6B7684;
}


/* =========== GUIDE（ご利用案内） =========== */
.guide {
	background-color: #f4fafd;
}

.guide__links {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 28px;
}

.guide__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	background: #FFF;
	border: 1px solid #E3E8ED;
	padding: 40px 20px;
	text-align: center;
	color: #1A1E24;
	transition: .2s;
}

.guide__link:hover {
	opacity: .7;
}

.guide__link-icon {
	flex: none;
	width: 40px;
	height: 40px;
	color: #1A1E24;
}

.guide__link-label {
	font-size: 18px;
	font-weight: 700;
}

.guide__link-desc {
	font-size: 16px;
	font-weight: 400;
	color: #6B7684;
	line-height: 1.7;
}

.guide__link-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.guide__more {
	display: block;
	margin-top: 40px;
}


/* =========== SCHEDULE（出船予定） =========== */
.schedule {
	background: #FFF;
}

.schedule__panel {
	background: #dbedf8;
	padding: 36px;
}

.schedule__note {
	margin-top: 22px;
	font-size: 15px;
	line-height: 1.9;
	color: #1A1E24;
	text-align: center;
}

.schedule__note a {
	font-weight: 700;
}

.schedule__embed {
	height: 600px;
	border: 1px solid #E3E8ED;
	background: #FFF;
}

.schedule__embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}


/* =========== FAQ（よくあるご質問） =========== */
.faq {
	background-color: #f4fafd;
}

.faq__list {
	border-top: 1px solid #E3E8ED;
}

.faq__item {
	border-bottom: 1px solid #E3E8ED;
	position: relative;
	padding: 26px 70px 26px 8px;
}

.faq__question {
	font-size: 16px;
	font-weight: 700;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.faq__question::before {
	content: "Q";
	color: #1A1E24;
	font-size: 18px;
	font-weight: 900;
	flex: none;
}

.faq__answer {
	font-size: 16px;
	color: #6B7684;
	line-height: 1.9;
	margin-top: 14px;
	padding-left: 34px;
	display: none;
}

.faq__item:first-child .faq__answer {
	display: block;
}

.acco__btn {
	position: absolute;
	right: 12px;
	top: 24px;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.acco__btn::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 6px;
	width: 20px;
	height: 2px;
	background: #1A1E24;
}

.acco__btn::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 15px;
	width: 2px;
	height: 20px;
	background: #1A1E24;
	transition: .2s;
}

.acco__btn--open::after {
	opacity: 0;
}

.faq__item:first-child .acco__btn::after {
	opacity: 0;
}



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

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

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

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

.hero__inner {
	bottom: 160px;
	left: 6%;
	}

.hero__copy {
	font-size: 67px;
	}

.hero__sub {
	font-size: 20px;
	margin-bottom: 30px;
	}

.hero__welcome-txt {
	font-size: 19px;
	}

.about__panel {
	flex: 0 0 60%;
	padding: 100px 68px 100px max(2.5%, calc((100vw - 1200px) / 2));
	}

}



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

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

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

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

.hero__bg {
	height: 700px;
	min-height: 0;
	}

.hero__content {
	margin-top: -700px; /* bg固定高さ700pxに合わせる */
	}

.hero__body {
	height: 700px;
	min-height: 0;
	}

.hero__inner {
	width: 100%;
	}

.hero__copy {
	font-size: 56px;
	}

.hero__sub {
	font-size: 18px;
	}

.hero__welcome-txt {
	font-size: 16px;
	}

.hero__cta {
	justify-content: flex-start;
	}

.about__wrapper {
	flex-direction: column;
	}

.about__panel {
	flex: none;
	width: 100%;
	padding: 60px 24px;
	}

.about__media {
	flex: none;
	width: 100%;
	height: 400px;
	}

.price__grid {
	grid-template-columns: 1fr;
	gap: 40px;
	}

.guide__links {
	grid-template-columns: repeat(2,1fr);
	}

.schedule__embed {
	height: 500px;
	}

}



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

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

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

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

/* --- スマホは縦長画像に差し替え --- */
.hero__slide--1 { background-image: url("/img/index/img_slideShow_01_sp.jpg?v=20260806"); }
.hero__slide--2 { background-image: url("/img/index/img_slideShow_02_sp.jpg?v=20260806"); }
.hero__slide--3 { background-image: url("/img/index/img_slideShow_03_sp.jpg?v=20260806"); }
.hero__slide--4 { background-image: url("/img/index/img_slideShow_04_sp.jpg?v=20260806"); }

.hero__bg {
	height: 100vh;
	min-height: 600px;
	}

.hero__content {
	margin-top: min(-100vh, -600px); /* min-height:600pxに追従 */
	}

.hero__body {
	height: 100vh;
	min-height: 600px;
	}

.hero__inner {
	width: calc(100% - 40px);
	left: 20px;
	bottom: 120px;
	}

.hero__copy {
	font-size: 36px;
	margin-bottom: 15px;
	}

.hero__sub {
	font-size: 14px;
	margin-bottom: 30px;
	}

.hero__cta {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 2%;
	}

.hero__btn {
	width: 49%;
	height: 44px;
	line-height: 44px;
	font-size: 14px;
	}

.hero__btn span {
	display: none;
	}

.hero__btn--tel::before {
	width: 16px;
	height: 16px;
	}

.hero__btn-icon {
	width: 18px;
	height: 18px;
	vertical-align: -4px;
	margin-right: 5px;
	}
	
.scrollDown {
	display: none;
	}

.hero__welcome {
	padding: 80px 8%;
	}

.hero__welcome-txt {
	font-size: 15px;
	line-height: 2;
	}

.about__panel {
	padding: 60px 20px;
	}

.about__media {
	height: 280px;
	}

.about__txt {
	font-size: 14px;
	}

.about__link {
	font-size: 14px;
	padding-left: 5px;
	padding-right: 8px;
	}

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

.about__panel .heading {
	margin-bottom: -5px;
	}

.about__more {
	margin-top: 0;
	}

.price__lead .heading {
	margin-bottom: -5px;
	}

.price__more {
	margin-top: 0;
	}

.price__lead p {
	font-size: 14px;
	}

.price__box {
	padding: 18px 14px;
	}

.price__plan {
	font-size: 13px;
	}

.price__num {
	font-size: 28px;
	}

.price__kara {
	font-size: 15px;
	}

.price__note {
	font-size: 12px;
	}

.guide__links {
	grid-template-columns: 1fr;
	gap: 16px;
	}

.guide__link {
	padding: 28px 20px;
	}

.guide__link-label {
	font-size: 16px;
	}

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

.schedule__panel {
	padding: 16px;
	}

.schedule__embed {
	height: 500px;
	}

.faq__item {
	padding: 20px 44px 20px 4px;
	}

.faq__answer {
	padding-left: 0;
	font-size: 14px;
	}

.acco__btn {
	right: 4px;
	top: 20px;
	}

}
