@charset "utf-8";

/* ────────────────────────────────────────────

min-width: 768px 

──────────────────────────────────────────── */

html {
	font-size: 62.5%; /* font-sizeは16pxの62.5%の10px */
}
body {
	font-size: 1.6rem; /*font-size : 16px と同等*/
	overflow-x: hidden;
}

/* general framework */
[id^="anc"] {
	padding-top: 120px;
	margin-top: -120px;
}
.wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: linear-gradient(180deg,rgba(14, 46, 109, 1) 0%, rgba(6, 29, 74, 1) 50%, rgba(0, 0, 0, 1) 100%);
	z-index: 1;
}
.wrap::before {
	content: "";
	position: absolute;
	top: 450px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_contents.webp) no-repeat;
	background-size: 2500px;
	background-position: center top;
	z-index: 0;
}
.lineBg {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
		to bottom,
		#fff 2.5px,
		transparent 1px
	);
	background-size: 100% 15px;
	opacity: 0.04;
	z-index: 1;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 9vw;
	max-height: 110px;
	background: linear-gradient(0deg,rgba(6, 29, 74, 0) 0%, rgba(0, 23, 64, 1) 19%, rgba(0, 0, 0, 1) 100%);
	z-index: 99;
}
#headerWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2% 1%;
}
#headerWrap .logo {
	width: 16vw;
	max-width: 180px;
}
#headerWrap .logo a {
	display: flex;
}
#headerWrap .spHeader {
	display: none;
}
#headerWrap .menu {
	display: flex;
	align-items: center;
	gap: 3vw;
	height: 100%;
}
#headerWrap .globalNavi ul {
	display: flex;
	align-items: center;
	gap: 24px;
}
#headerWrap .globalNavi a {
	font-size: min(1.2vw, 16px);
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
	text-decoration: none;
	opacity: 1;
	transition: all .5s ease;
}
#headerWrap .globalNavi a:hover {
	opacity: .8;
}
#headerWrap .menu .contactBtn {
	position: relative;
	width: 180px;
	height: 60%;
	max-height: 55px;
	z-index: 1;
}
#headerWrap .menu .contactBtn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
	text-decoration: none;
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
	border-radius: 100vmax;
	transition: all .5s ease;
}
#headerWrap .menu .contactBtn a:hover {
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#headerWrap .menu .contactBtn a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	border-radius: 100vmax;
	background: transparent;
	transition: all .5s ease;
}
#headerWrap .menu .contactBtn a::after {
	content: "";
	position: absolute;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 100vmax;
	background: transparent;
	transition: all .5s ease;
}
#headerWrap .menu .contactBtn a:hover::before {
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
}
#headerWrap .menu .contactBtn a:hover::after {
	background: #fff;
}


#headerWrap .globalNavi .print {
	margin-left: 27px;
}

.contentWrap {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-top: 152px;
	z-index: 98;
}
.contentWrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background: url(/jp/ocean-forecast/lib/img/bg_top.webp) no-repeat;
	background-size: 2500px;
	background-position: top center;
	z-index: -1;
}
.contentWrap::after {
	content: "";
	position: absolute;
	top: 1275px;
	left: 0;
	width: 165px;
	height: 100%;
	max-height: calc(100% - 1275px);
	background: url(/jp/ocean-forecast/lib/img/mater.svg) no-repeat;
	background-size: cover;
	background-position: top center;
	z-index: -1;
}
.headContents {
	position: relative;
	margin-bottom: 200px;
}
.headContents .titleWrap {
	width: 100%;
	padding-top: 67px;
}
.headContents .titleWrap .subTtl {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 800px;
	height: 80px;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	padding-left: 75px;
	margin-bottom: 35px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 51%, rgba(255, 255, 255, 0) 100%);
}
.headContents .titleWrap .mainTtl {
	width: 100%;
	font-size: 76px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	padding-left: 75px;
	margin-bottom: 84px;
}
.headContents .titleWrap .contactBtn {
	position: relative;
	width: 55%;
	max-width: 405px;
	height: 70px;
	padding-left: 75px;
	z-index: 1;
}
.headContents .titleWrap .contactBtn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
	border-radius: 100vmax;
	transition: all .5s ease;
}
.headContents .titleWrap .contactBtn a:hover {
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.headContents .titleWrap .contactBtn a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	border-radius: 100vmax;
	background: transparent;
	transition: all .5s ease;
}
.headContents .titleWrap .contactBtn a::after {
	content: "";
	position: absolute;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 100vmax;
	background: transparent;
	transition: all .5s ease;
}
.headContents .titleWrap .contactBtn a:hover::before {
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
}
.headContents .titleWrap .contactBtn a:hover::after {
	background: #fff;
}


.headContents .earthWrap {
	position: absolute;
	top: 0;
	right: -30%;
	width: 100%;
	height: 610px;
	z-index: -1;
}
.headContents .earthWrap canvas {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.headContents .earthWrap::after {
	content: "";
	position: absolute;
	top: calc(50% + 10px);
	left: calc(50% + 80px);
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: rgba(0, 0, 0, .4);
	border-radius: 100vmax;
	filter: blur(37.5px);
	z-index: -1;
}
.mainContents {
	width: 100%;
	max-width: 1190px;
	margin: 0 auto;
	padding: 0 40px;
}
.leadWrap {
	margin-bottom: 240px;
}
.leadWrap p {
	font-size: 22px;
	font-weight: bold;
	line-height: 2.2;
	color: #fff;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}

.sectionTtlA {
	position: relative;
	font-size: 42px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1.2;
	padding-bottom: 20px;
	margin-bottom: 45px;
}
.sectionTtlA::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 550px;
	height: 2px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0) 100%);
}
.sectionTtlB {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 50px;
}
.sectionTtlC {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	color: #72B6FF;
	margin-bottom: 35px;
}
.sectionTtlC:has( + .priceWrap) {
	margin-bottom: 70px;
}

.featuresWrap {
	position: relative;
	margin-bottom: 200px;
}
.featuresWrap::after {
	content: "";
	position: absolute;
	top: 300px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 300dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_1.svg) no-repeat;
	background-size: 2500px;
	background-position: center top;
	z-index: -1;
}
.pointList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 30px;
	width: 100%;
}
.pointList li {
	position: relative;
	width: calc((100% - 60px) / 3);
	padding-top: 60px;
	margin-bottom: 50px;
}
.pointList li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 1;
}
.pointList li:nth-child(1)::before {
	background: url(/jp/ocean-forecast/lib/img/point_1.svg) no-repeat;
	background-position: left;
}
.pointList li:nth-child(2)::before {
	background: url(/jp/ocean-forecast/lib/img/point_2.svg) no-repeat;
	background-position: left;
}
.pointList li:nth-child(3)::before {
	background: url(/jp/ocean-forecast/lib/img/point_3.svg) no-repeat;
	background-position: left;
}
.pointList li:nth-child(4)::before {
	background: url(/jp/ocean-forecast/lib/img/point_4.svg) no-repeat;
	background-position: left;
}
.pointList li:nth-child(5)::before {
	background: url(/jp/ocean-forecast/lib/img/point_5.svg) no-repeat;
	background-position: left;
}
.pointList .listImg {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}
.pointList .listImg figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding-left: 16px;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}
.pointList .listTxt {
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.sectionNote {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	line-height: 1.7;
	text-align: center;
}

.serviceWrap {
	margin-bottom: 200px;
}
.serviceWrap .txtArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-bottom: 35px;
}
.serviceWrap .txtArea:has(.note) {
	position: relative;
	gap: 20px;
	width: 100%;
	max-width: 830px;
	background: rgba(255, 255, 255, .1);
	background-blend-mode: screen;
	padding: 35px 30px 15px;
	margin: 50px auto 0;
}
.serviceWrap .serviceTxt {
	font-size: 16px;
	color: #fff;
	line-height: 1.75;
	text-align: center;
}
.serviceWrap .txtArea .noteTtl {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 66px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: #7236E6;
	border-radius: 50%;
}
.serviceWrap .txtArea:has(.note) span {
	text-decoration: underline;
	cursor: pointer;
}
.serviceWrap .txtArea:has(.note) span::after {
	display: inline-block;
	content:"？";
	width: 12px;
	height: 12px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.0;
	vertical-align: text-top;
	color: #061D4A;
	background: #fff;
	border-radius: 100vmax;
}
.serviceWrap .serviceImg {
	margin-bottom: 100px;
}
.serviceWrap .serviceImg img {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}
.compareMovie {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
}
.compareMovie::after {
	content: "";
	position: absolute;
	top: -540px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_2.svg) no-repeat;
	background-size: 2500px;
	background-position: center top;
	z-index: -1;
}
.compareMovie .movieTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	margin: 0 12px 30px;
	border: 1px solid #fff;
	border-radius: 100vmax;
}
.compareMovie .movieTitle span {
	margin-right: 7px;
}
.compareMovie video {
	width: 100%;
	margin-bottom: 15px;
}
.compareMovie .movieDetails {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.compareMovie .movieDetails li {
	font-size: 20px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
}
.compareMovie .movieDetails li span {
	display: block;
	font-size: 12px;
	line-height: 1.5;
}
.fieldsWrap {
	position: relative;
	margin-bottom: 200px;
}
.fieldsWrap::after {
	content: "";
	position: absolute;
	top: 315px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 300dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_3.svg) no-repeat;
	background-size: 2500px;
	background-position: center top;
	z-index: -1;
}
.fieldList {
	width: 100%;
	max-width: 940px;
	margin: 0 auto 65px;
}
.fieldList > li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 20px 30px;
}
.fieldList > li::after {
	content:"";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.fieldList .fieldCircle {
	position: relative;
	width: 240px;
}
.fieldList .fieldMain {
  width: calc(100% - 300px);
}
.fieldList .fieldMain p {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 20px;
}
.fieldList .fieldMain .fieldDetail li {
	font-size: 20px;
	line-height: 1.75;
	color: #fff;
	text-indent: -1em;
	padding-left: 1em;
}
.specWrap {
	margin-bottom: 200px;
}
.specList {
	border-top: 1px solid rgba(255, 255, 255, .5);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	margin-bottom: 100px;
}
.specList > li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 24px 0;
}
.specList > li:not(:last-child)::after {
	content:"";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.specList > li .detailTtl {
	width: 285px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	margin-right: 15px;
}
.specList > li .detail {
	width: calc(100% - 285px);
}
.specList > li .detail.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.specList > li .detail p {
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
}
.specList > li .detail .paragraph {
	margin-bottom: 25px;
}
.specList > li .detail p.ttl {
	font-weight: bold;
	margin-bottom: 5px;
}
.specList > li .detail p.link {
	width: fit-content;
}
.specList > li .detail p.link::before {
	content: "▼";
}
.specList > li .detail p.link a {
	text-decoration: underline;
}
.specList > li .detail p.link a:hover {
	text-decoration: none;
}
.specList > li .detail > ul > li {
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
	text-indent: -1em;
	padding-left: 1em;
}
.specList > li .detail .note {
	padding-left: 20px;
}
.specList > li .detail .note p {
	font-size: 14px;
}
.specList > li .detail .note > ul > li {
	font-size: 12px;
	color: #fff;
	line-height: 1.7;
	text-indent: -1em;
	padding-left: 1em;
}
.specList > li .detail.source p {
	font-size: 16px;
	line-height: 1.4;
}
.specList > li .detail.source > ul > li {
	font-size: 16px;
	line-height: 1.4;
}
.specList > li .detail.source .paragraph {
	margin-bottom: 20px;
}
.mapWrap {
	margin-bottom: 100px;
}
.mapWrap .mapTxt {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.mapWrap .mapNote {
	font-size: 16px;
	line-height: 1.75;
	color: #fff;
	text-align: center;
	margin-bottom: 50px;
}
.mapWrap .mapImg {
	width: 100%;
	max-width: 820px;
	margin: 0 auto 50px;
}
.mapWrap .mapBtn {
	width: 100%;
	max-width: 405px;
	height: 60px;
	margin: 0 auto;
}
.mapWrap .mapBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 100vmax;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
	transition: all .5s ease;
}
.mapWrap .mapBtn a:hover {
	color: #061D4A;
	background: #fff;
}
.sampleWrap .sampleTxt {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 50px;
}
.sampleDataBlock {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 60px;
}
.sampleDataBlock .img {
	width: 405px;
}
.sampleDataBlock .data {
	width: calc(100% - 405px);
	border-top: 1px solid rgba(255, 255, 255, .5);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.sampleDataBlock .data li {
	position: relative;
	width: 100%;
	display: flex;
	padding: 17px 0;
}
.sampleDataBlock .data li:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.sampleDataBlock .data li p {
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
}
.sampleDataBlock .data li p:first-child {
	width: 40%;
	font-weight: bold;
}
.sampleWrap .downloadBtn {
	width: 100%;
	max-width: 405px;
	height: 60px;
	margin: 0 auto 12px;
}
.sampleWrap .downloadBtn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 100vmax;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
	transition: all .5s ease;
}
.sampleWrap .downloadBtn a::after {
	content:"";
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 23px;
	background: url(/jp/ocean-forecast/lib/img/ico_download.svg) no-repeat;
	background-size: cover;
	transition: all .5s ease;
}
.sampleWrap .downloadBtn a:hover {
	color: #061D4A;
	background: #fff;
}
.sampleWrap .downloadBtn a:hover::after {
	background: url(/jp/ocean-forecast/lib/img/ico_download_hover.svg) no-repeat;
	background-size: cover;
}
.sampleWrap .downloadNote {
	font-size: 14px;
	color: #fff;
	line-height: 2.0;
	text-align: center;
}
.howToMovie {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}
.serviceOverviewWrap {
	margin-bottom: 200px;
}
.serviceOverviewWrap .sectionTtlA {
	margin-bottom: 70px;
}
.serviceOverviewWrap .flowGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8%;
	margin-bottom: 100px;
}
.serviceOverviewWrap .flowBlock {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.serviceOverviewWrap .flowBlock:not(:last-child)::after {
	content:"";
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	width: 31px;
	height: 10px;
	background: url(/jp/ocean-forecast/lib/img/flow_arrow.svg) no-repeat;
	background-size: contain;
}
.serviceOverviewWrap .flowBlock .number {
	margin-bottom: 35px;
}
.serviceOverviewWrap .flowBlock .img {
	max-width: 100%;
	margin-bottom: 20px;
}
.serviceOverviewWrap .flowBlock .ttl {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 10px;
}
.serviceOverviewWrap .flowBlock .txt {
	font-size: 12px;
	color: #fff;
	line-height: 1.5;
	text-align: center;
}
.serviceOverviewWrap .priceWrap {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 15px;
	margin-bottom: 240px;
}
.serviceOverviewWrap .priceWrap .priceNote {
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	text-align: center;
}
.serviceOverviewWrap .priceBlock {
	width: calc((100% - 15px) / 2);
}
.serviceOverviewWrap .licenseName {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	line-height: 1.35;
	margin-bottom: 12px;
}
.serviceOverviewWrap .licenseDesc {
	font-size: 16px;
	color: #fff;
	line-height: 1.75;
	margin-bottom: 17px;
}
.serviceOverviewWrap .priceDetail {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, .5);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.serviceOverviewWrap .priceDetail li {
	position: relative;
	display: flex;
	gap: 15px;
	padding: 16px 0;
}
.serviceOverviewWrap .priceDetail li p {
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
}
.serviceOverviewWrap .priceDetail li p:first-child {
	width: 125px;
	font-weight: bold;
}
.serviceOverviewWrap .priceDetail li:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.serviceOverviewWrap .priceTxtArea {
	display: flex;
	gap: 30px;
	flex-direction: column;
	margin-bottom: 60px;
}
.serviceOverviewWrap .priceTxtArea p {
	font-size: 20px;
	line-height: 1.4;
	color: #fff;
}
.contactWrap {
	margin-bottom: 245px;
}
.contactWrap .contactBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 58px 66px 58px 77px;
	border: 2px solid #fff;
	border-radius: 20px;
}
.contactWrap .contactBox .contactBtn {
	position: relative;
	width: 405px;
	height: 70px;
	z-index: 1;
}
.contactWrap .contactBox .contactBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
	border-radius: 100vmax;
	transition: all .5s ease;
}
.contactWrap .contactBox .contactBtn a:hover {
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contactWrap .contactBox .contactBtn a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	border-radius: 100vmax;
	background: transparent;
	transition: all .5s ease;
}
.contactWrap .contactBox .contactBtn a::after {
	content: "";
	position: absolute;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 100vmax;
	background: transparent;
	transition: all .5s ease;
}
.contactWrap .contactBox .contactBtn a:hover::before {
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
}
.contactWrap .contactBox .contactBtn a:hover::after {
	background: #fff;
}

#pagetopWrap {
	position: fixed;
	right: 64px;
	bottom: 115px;
	width: 100px;
	height: 100px;
	background: url(/jp/ocean-forecast/lib/img/btn_pagetop.svg) no-repeat;
	z-index: 98;
	opacity: 1;
	transition: all .5s ease;
}
#pagetopWrap:hover {
	opacity: .8;
}
#pagetopWrap a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

/* ポップアップ */
.popupWrap {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.popupWrap.active {
	display: block;
}
.popupOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	z-index: -1;
}
/* 注釈のポップアップ */
.notePopup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1040px;
	height: fit-content;
	padding: 0 40px;
}
.notePopup .notePopupInner {
	position: relative;
	width: 100%;
	padding: 30px 33px;
	background: #0D346F;
	border-radius: 20px;
}
.notePopup .notePopupInner .popupClose {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 100vmax;
	cursor: pointer;
}
.notePopup .notePopupInner .popupClose::before,
.notePopup .notePopupInner .popupClose::after {
	content:"";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35px;
	height: 2px;
	background: #0D346F;
}
.notePopup .notePopupInner .popupClose::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.notePopup .notePopupInner .popupClose::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.notePopupList {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.notePopupList li {
	width: 100%;
}
.notePopupList li p {
	font-size: 16px;
	color: #fff;
	line-height: 1.75;
}
.notePopupList li p.ttl {
	font-weight: bold;
}

.bottomGra {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 78dvh;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	z-index: -1;
}

/* footer */
footer {
	width: 100%;
	height: 60px;
	z-index: 97;
}
#footer {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6vw;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 57, 200, 0));
	background-size: 100% 160%;
	background-position: 0% 70px;
}
#footer::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 533px;
	background: url(/jp/ocean-forecast/lib/img/bg_bottom.webp) no-repeat;
	background-position: center bottom;
	background-size: auto;
	z-index: -2;
}
#footer p {
	font-size: 12px;
	color: #fff;
	line-height: 1.5;
}
#footer .footerLink {
	display: flex;
}
#footer .footerLink li {
	position: relative;
}
#footer .footerLink li a {
	display: flex;
	font-size: 12px;
	color: #fff;
	line-height: 1.4;
	padding: 0 10px;
	text-decoration: none;
}
#footer .footerLink li a:hover {
	text-decoration: underline;
}
#footer .footerLink li:not(:last-child)::after {
	content:"";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #fff;
}
