@charset "utf-8";

/* ────────────────────────────────────────────

max-width: 767px 

──────────────────────────────────────────── */


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: 100px;
	margin-top: -100px;
}
.wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	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: 370px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_contents_sp.webp) no-repeat;
	background-size: contain;
	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: 70px;
	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%;
	padding: 15px 10px 15px 15px;
	background: rgba(8, 21, 47, 0);
	transition: all .5s ease;
}
#headerWrap:has(.menu.open) {
	background: rgba(8, 21, 47, 1);
}
#headerWrap .logo {
	width: 130px;
}
#headerWrap .logo a {
	display: flex;
}
#headerWrap .spHeader {
	display: flex;
	align-items: center;
	gap: 10px;
}
#headerWrap .spHeader .contactBtn {
	position: relative;
	width: 123px;
	height: 40px;
	z-index: 1;
}
#headerWrap .spHeader .contactBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	text-decoration: none;
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
	border-radius: 100vmax;
}
#headerWrap .contactBtn a:hover {
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#headerWrap .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 .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 .contactBtn a:hover::before {
	background: linear-gradient(90deg,rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
}
#headerWrap .contactBtn a:hover::after {
	background: #fff;
}

#headerWrap .spHeader #menuToggle {
	position: relative;
	width: 40px;
	height: 40px;
	background: url(/jp/ocean-forecast/lib/img/bg_toggle.svg) no-repeat;
	background-size: cover;
	cursor: pointer;
}
#headerWrap .spHeader #menuToggle div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	width: 16px;
	height: 16px;
	transition: all .5s;
}
#headerWrap .spHeader #menuToggle span {
	position: absolute;
	left: 0;
	width: 16px;
	height: 2px;
	background: #fff;
	border-radius: 100vmax;
	display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
#headerWrap .spHeader #menuToggle span:nth-of-type(1) {
  top: 0;
}
#headerWrap .spHeader #menuToggle span:nth-of-type(2) {
  top: 7px;
}
#headerWrap .spHeader #menuToggle span:nth-of-type(3) {
  bottom: 0;
}
#headerWrap .spHeader #menuToggle.active div {
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
}
#headerWrap .spHeader #menuToggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}
#headerWrap .spHeader #menuToggle.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
#headerWrap .spHeader #menuToggle.active span:nth-of-type(3) {
  opacity: 0;
}

#headerWrap .menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	padding: 70px 16px 0;
	background: rgba(8, 21, 47, .9);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease;
	z-index: -1;
	overflow: auto;
}
#headerWrap .menu.open {
	opacity: 1;
	visibility: visible;
}
#headerWrap .globalNavi ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#headerWrap .globalNavi li {
	position: relative;
	width: 100%;
}
#headerWrap .globalNavi 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%);
}
#headerWrap .globalNavi a {
	display: flex;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
	text-decoration: none;
	padding: 21px 16px;
}
#headerWrap .print {
	width: 260px;
	height: 50px;
	margin: 18px auto;
}
#headerWrap .print a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 100vmax;
	font-size: 14px;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
	transition: all .5s ease;
}
#headerWrap .print a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 20px;
  height: 22px;
  background: url(/jp/ocean-forecast/lib/img/ico_print.svg) no-repeat;
  background-size: contain;
	transition: all .5s ease;
}
#headerWrap .print a:hover {
	color: #061D4A;
	background: #fff;
}
#headerWrap .print a:hover::after {
	background: url(/jp/ocean-forecast/lib/img/ico_print_hover.svg) no-repeat;
	background-size: contain;
}
#headerWrap .menu .contactBtn {
	position: relative;
	width: 100%;
	max-width: 260px;
	height: 50px;
	margin: 0 auto;
	z-index: 1;
}
#headerWrap .menu .contactBtn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 100%;
	border-radius: 100vmax;
	font-size: 14px;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, rgba(255, 106, 0, 1) 0%, rgba(221, 157, 63, 1) 100%);
	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;
}

.contentWrap {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-top: 87px;
	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_sp.webp) no-repeat;
	background-size: contain;
	background-position: top center;
	z-index: -1;
}

.headContents {
	position: relative;
	margin-bottom: 308px;
}
.headContents .titleWrap {
	width: 100%;
}
.headContents .titleWrap .subTtl {
	display: flex;
	align-items: center;
	width: 290px;
	height: 36px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	padding-left: 15px;
	margin-bottom: 13px;
	background: rgba(255, 255, 255, 0.3);
}
.headContents .titleWrap .mainTtl {
	width: 100%;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	padding-left: 15px;
	margin-bottom: 84px;
}
.headContents .titleWrap .contactBtn {
	display: none;
}
.headContents .earthWrap {
	position: absolute;
	top: 122px;
	right: -65px;
	width: 100%;
	height: 215px;
	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% + 20px);
	left: calc(50% + 40px);
	transform: translate(-50%, -50%);
	width: 215px;
	height: 215px;
	background: rgba(0, 0, 0, .4);
	border-radius: 100vmax;
	filter: blur(13px);
	z-index: -1;
}
@media screen and (max-width: 767px) and (min-width: 501px) {
	.headContents .earthWrap::after {
		top: calc(50% + 30px);
		left: calc(50% + 30px);
		width: 300px;
		height: 300px;
	}
}
.mainContents {
	width: 100%;
	padding: 26px 16px 0;
	margin: 0 auto;
}
.leadWrap {
	margin-bottom: 80px;
}
.leadWrap p {
	font-size: 14px;
	font-weight: bold;
	line-height: 2.0;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
}

.sectionTtlA {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1.2;
	padding-bottom: 24px;
	margin-bottom: 22px;
}
.sectionTtlA::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	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: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 22px;
}
.sectionTtlC {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	color: #72B6FF;
	margin-bottom: 20px;
}
.sectionTtlC:has( + .priceWrap) {
	font-size: 20px;
}

.featuresWrap {
	margin-bottom: 80px;
}
.pointList {
	width: 100%;
}
.pointList li {
	position: relative;
	width: 100%;
	padding-top: 45px;
	margin-bottom: 30px;
}
.pointList li:last-child {
	margin-bottom: 20px;
}
.pointList li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	z-index: 1;
}
.pointList li:nth-child(1)::before {
	background: url(/jp/ocean-forecast/lib/img/point_1.svg) no-repeat;
	background-size: contain;
	background-position: left;
}
.pointList li:nth-child(2)::before {
	background: url(/jp/ocean-forecast/lib/img/point_2.svg) no-repeat;
	background-size: contain;
	background-position: left;
}
.pointList li:nth-child(3)::before {
	background: url(/jp/ocean-forecast/lib/img/point_3.svg) no-repeat;
	background-size: contain;
	background-position: left;
}
.pointList li:nth-child(4)::before {
	background: url(/jp/ocean-forecast/lib/img/point_4.svg) no-repeat;
	background-size: contain;
	background-position: left;
}
.pointList li:nth-child(5)::before {
	background: url(/jp/ocean-forecast/lib/img/point_5.svg) no-repeat;
	background-size: contain;
	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: 12px;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}
.pointList .listTxt {
	font-size: 14px;
	color: #fff;
	line-height: 2.0;
}
.sectionNote {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
	text-align: center;
}

.serviceWrap {
	position: relative;
	margin-bottom: 80px;
}
.serviceWrap::after {
	content: "";
	position: absolute;
	top: -180px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_2.svg) no-repeat;
	background-size: 2160px;
	background-position: center top;
	z-index: -1;
}
.serviceWrap .txtArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}
.serviceWrap .txtArea:has(.note) {
	position: relative;
	gap: 5px;
	width: 100%;
	background: rgba(255, 255, 255, .1);
	background-blend-mode: screen;
	padding: 30px 8px 8px;
	margin: 45px auto 0;
}
.serviceWrap .txtArea:has(.note) span {
	text-decoration: underline;
	cursor: pointer;
}
.serviceWrap .txtArea:has(.note) span::after {
	display: inline-block;
	content:"？";
	width: 9px;
	height: 9px;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.0;
	vertical-align: text-top;
	color: #061D4A;
	background: #fff;
	border-radius: 100vmax;
}
.serviceWrap .serviceTxt {
	font-size: 14px;
	color: #fff;
	line-height: 2.0;
}
.serviceWrap .txtArea:has(.note) .serviceTxt {

}
.serviceWrap .txtArea .noteTtl {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	width: 230px;
	height: 50px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	background: #7236E6;
	border-radius: 50%;
}
.serviceWrap .serviceImg {
	margin-bottom: 25px;
}
.serviceWrap .serviceImg img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.compareMovie {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	width: 100%;
	padding: 0 5px;
	margin: 0 auto;
}
.compareMovie .movieTitle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	min-height: 48px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 2px;
	border: 1px solid #fff;
	border-radius: 100vmax;
}
.compareMovie .movieTitle span {
	display: block;
	width: 85px;
	margin: 0 auto;
}
.compareMovie video {
	width: 100%;
	margin-bottom: 15px;
}
.compareMovie .movieDetails {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.compareMovie .movieDetails li {
	font-size: 14px;
	line-height: 2.0;
	color: #fff;
	text-align: center;
}
.compareMovie .movieDetails li span {
	display: block;
	font-size: 10px;
	line-height: 1.2;
}




/* ポップアップ */
.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%;
	height: fit-content;
	padding: 0 15px;
}
.notePopup .notePopupInner {
	position: relative;
	width: 100%;
	padding: 15px;
	background: #0D346F;
	border-radius: 20px;
}
.notePopup .notePopupInner .popupClose {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100vmax;
	cursor: pointer;
}
.notePopup .notePopupInner .popupClose::before,
.notePopup .notePopupInner .popupClose::after {
	content:"";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	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: 14px;
	color: #fff;
	line-height: 1.75;
}
.notePopupList li p.ttl {
	font-weight: bold;
}
.fieldsWrap {
	position: relative;
	margin-bottom: 80px;
}
.fieldsWrap::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_1.svg) no-repeat;
	background-size: 2160px;
	background-position: center top;
	z-index: -1;
}
.fieldsWrap::after {
	content: "";
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_2.svg) no-repeat;
	background-size: 2160px;
	background-position: center top;
	z-index: -1;
}
.fieldList {
	width: 100%;
	margin: 0 auto 10px;
}
.fieldList > li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 17px;
	flex-direction: column;
}
.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: 210px;
	margin-bottom: 10px;
}
.fieldList .fieldMain p {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 2.0;
	text-align: center;
	margin-bottom: 10px;
}
.fieldList .fieldMain .fieldDetail li {
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	text-indent: -1em;
	padding-left: 1em;
}

.specWrap {
	position: relative;
	margin-bottom: 80px;
}
.specWrap::before {
	content: "";
	position: absolute;
	top: 85px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 300dvh;
	background: url(/jp/ocean-forecast/lib/img/bg_wave_3.svg) no-repeat;
	background-size: 2160px;
	background-position: center top;
	z-index: -1;
}
.specList {
	border-bottom: 1px solid #fff;
	margin-bottom: 100px;
}
.specList > li {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 12px 0;
}
.specList > li:first-child {
	padding: 0 0 12px;
}
.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: 96px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}
.specList > li .detail {
	width: calc(100% - 96px);
}
.specList > li .detail.flex {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.specList > li .detail p {
	font-size: 14px;
	color: #fff;
	line-height: 1.4;
}
.specList > li .detail .paragraph {
	margin-bottom: 20px;
}
.specList > li .detail p.ttl {
	font-weight: bold;
}
.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 > ul > li {
	font-size: 14px;
	color: #fff;
	line-height: 1.4;
}
.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: 14px;
	line-height: 1.4;
	word-break: break-all;
}
.specList > li .detail.source > ul > li {
	font-size: 14px;
	line-height: 1.4;
}
.specList > li .detail.source .paragraph {
	margin-bottom: 20px;
}

.mapWrap {
	margin-bottom: 40px;
}
.mapWrap .mapTxt {
	width: fit-content;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	color: #fff;
	margin: 0 auto 30px;
}
.mapWrap .mapNote {
	font-size: 14px;
	line-height: 1.6;
	color: #fff;
	text-align: center;
	margin-bottom: 22px;
}
.mapWrap .mapImg {
	width: 100%;
	max-width: 820px;
	margin: 0 auto 22px;
}
.mapWrap .mapBtn {
	width: 100%;
	max-width: 165px;
	height: 40px;
	margin: 0 auto;
}
.mapWrap .mapBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 100vmax;
	font-size: 12px;
	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 {
	width: fit-content;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	margin: 0 auto 22px;
}
.sampleDataBlock {
	margin-bottom: 22px;
}
.sampleDataBlock .img {
	width: 260px;
	margin: 0 auto 22px;
}
.sampleDataBlock .data {
	width: 100%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.sampleDataBlock .data li {
	position: relative;
	width: 100%;
	padding: 6px 0 10px;
}
.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: 14px;
	line-height: 1.4;
	color: #fff;
}
.sampleDataBlock .data li p:first-child {
	font-weight: bold;
	line-height: 2.0;
}
.sampleDataBlock .data li:last-child {
	padding: 6px 0 20px;
}
.sampleWrap .downloadBtn {
	width: 100%;
	max-width: 165px;
	height: 40px;
	margin: 0 auto 22px;
}
.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: 12px;
	font-weight: bold;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
	transition: all .5s ease;
}
.sampleWrap .downloadBtn a::after {
	content:"";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 17px;
	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: 12px;
	color: #fff;
	line-height: 1.7;
}

.howToMovie {
	width: 100%;
	margin: 0 auto;
}
.howToMovie video {
	width: 100%;
}

.serviceOverviewWrap {
	margin-bottom: 150px;
}
.serviceOverviewWrap .flowGrid {
	width: fit-content;
  margin: 0 auto 60px;
}
.serviceOverviewWrap .flowBlock {
	position: relative;
	display: flex;
	justify-content: flex-end;
  flex-wrap: wrap;
	gap: 0 8px;
}
.serviceOverviewWrap .flowBlock:not(:last-child) {
	margin-bottom: 42px;
}
.serviceOverviewWrap .flowBlock:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50px;
	bottom: -28px;
	width: 31px;
	height: 10px;
	background: url(/jp/ocean-forecast/lib/img/flow_arrow.svg) no-repeat;
	background-size: contain;
	transform: rotate(90deg);
}
.serviceOverviewWrap .flowBlock .number {
	width: calc(100% - 134px);
	margin-bottom: 15px;
}
.serviceOverviewWrap .flowBlock .img {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 124px;
}
.serviceOverviewWrap .flowBlock .ttl {
	width: calc(100% - 134px);
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 2.0;
	margin-bottom: 10px;
}
.serviceOverviewWrap .flowBlock .txt {
	width: calc(100% - 134px);
	font-size: 14px;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 20px;
}
.serviceOverviewWrap .priceWrap {
	margin-bottom: 80px;
}
.serviceOverviewWrap .priceWrap .priceNote {
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	text-align: center;
}
.serviceOverviewWrap .priceBlock {
	width: 100%;
}
.serviceOverviewWrap .licenseName {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 16px;
}
.serviceOverviewWrap .licenseDesc {
	font-size: 14px;
	color: #fff;
	line-height: 2.0;
	margin-bottom: 30px;
}
.serviceOverviewWrap .priceDetail {
	width: 100%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin-bottom: 28px;
}
.serviceOverviewWrap .priceDetail li {
	position: relative;
	padding: 8px 0 16px;
}
.serviceOverviewWrap .priceDetail li p {
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
}
.serviceOverviewWrap .priceDetail li p:first-child {
	font-weight: bold;
	line-height: 2.0;
}
.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: 20px;
	flex-direction: column;
	margin-bottom: 20px;
}
.serviceOverviewWrap .priceTxtArea p {
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
}
.contactWrap {
	margin-bottom: 175px;
}
.contactWrap .contactBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	width: 100%;
	padding: 30px 28px;
	border: 2px solid #fff;
	border-radius: 20px;
}
.contactWrap .contactBox > div {
	width: 100%;
	max-width: 205px;
	height: 40px;
}
.contactWrap .contactBox .contactBtn {
	position: relative;
	max-width: 286px;
	z-index: 1;
}
.contactWrap .contactBox .contactBtn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	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;
}

.bottomGra {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 50dvh;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	z-index: -1;
}

#pagetopWrap {
	position: fixed;
	right: 16px;
	bottom: 10px;
	width: 54px;
	height: 54px;
	background: url(/jp/ocean-forecast/lib/img/btn_pagetop.svg) no-repeat;
	background-size: contain;
	z-index: 98;
}
#pagetopWrap a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

/* footer */
footer {
	width: 100%;
	height: 175px;
	z-index: 97;
}
#footer {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	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% 220px;
}
#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: 3000px;
	z-index: -1;
}
#footer p {
	font-size: 12px;
	color: #fff;
	line-height: 1.5;
}
#footer .footerLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 0;
}
#footer .footerLink li {
	position: relative;
}
#footer .footerLink li a {
	display: block;
	font-size: 12px;
	color: #fff;
	line-height: 1.4;
	padding: 0 10px;
	text-decoration: none;
	text-align: center;
}
#footer .footerLink li a:hover {
	text-decoration: underline;
}
#footer .footerLink li:first-child::after {
	content:"";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #fff;
}
#footer .footerLink li:nth-child(3),
#footer .footerLink li:nth-child(4) {
	width: 100%;
}
