@charset "utf-8";

/* ────────────────────────────────────────────

max-width: 767px 

──────────────────────────────────────────── */

body {
	overflow-x: hidden;
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 500;
	font-style: normal;
}

/* general framework */
.wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.mainContents {
	display: flex;
	flex-direction: column;
	background: rgb(188, 228, 253);
	background: linear-gradient(180deg, rgba(188, 228, 253, 1) 0%, rgba(1, 150, 222, 1) 50%, rgba(0, 78, 162, 1) 100%);
}

.spNone {
	display: none;
}

/* title */
/* font */
/* btn */
/* hover */
.hover {}

/* header */
header {
	margin: 0 auto;
}

.headerWrap {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 15px;
	z-index: 97;
	transition: 0.4s all;
}
.headerWrap.disable {
	transform: translate(-50%, -150%);
}

.headerLogoImgWrap {
	width: 45%;
	margin-top: 15px;
	z-index: 99;
}
.langSelect {
	display: flex;
	font-size: 24px;
	font-weight: 700;
	justify-content: center;
	color: #999;
	margin: 15px 20px 0 auto;
}
.langSelect li:first-child:after {
	content: "|";
	display: inline-block;
	padding: 0 10px;
	color: #004EA2;
}
.langSelect li.active {
	color: #004EA2;
	pointer-events: none;
}
.langSelect a {
	text-decoration: none;
}
.headerLogoImgWrap {
	width: 45%;
	margin-top: 15px;
	z-index: 99;
}

.headerNaviWrap {
	display: none;
}

#spMenuBtn {
	position: relative;
	width: 60px;
	height: 60px;
	margin-top: 15px;
	cursor: pointer;
	background: #0F3CAA;
	border-radius: 50px;
	z-index: 99;
}
#spMenuBtn span {
	position: absolute;
	width: 25px;
	left: 50%;
	transform: translateX(-50%);
	height: 3px;
	background: #fff;
	border-radius: 4px;
}
#spMenuBtn, #spMenuBtn span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
#spMenuBtn span:nth-of-type(1) {
	top: 20px;
}
#spMenuBtn span:nth-of-type(2) {
	top: 30px;
}
#spMenuBtn.active span:nth-of-type(2) {
	top: 29px;
}
#spMenuBtn span:nth-of-type(3) {
	top: 40px;
}
#spMenuBtn.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
	background: #fff;
}
#spMenuBtn.active span {
	background: #0F3CAA;
}
#spMenuBtn.active span:nth-of-type(1) {
	top: 9px;
  -webkit-transform: translate( -50% , 20px) rotate(-45deg);
  transform: translate( -50% , 20px) rotate(-45deg);
}
#spMenuBtn.active span:nth-of-type(2) {
  -webkit-transform: translate( -50% , 0) rotate(45deg);
  transform: translate( -50% , 0) rotate(45deg);
}
#spMenuBtn.active span:nth-of-type(3) {
  opacity: 0;
}

#spMenuWrap {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	height: 100vh;
	background: #0F3CAA;
	z-index: 98;
	transform: translateX(-120%);
	overflow-y: auto;
}
#spMenuWrap .menuContents {
	height: fit-content;
	overflow-y: auto;
}
#spMenuWrap.active {
	transform: translateX(0);
}

#spMenuWrap .menuUmiWrap {
	height: 55vh;
	padding: 25% 20px 5%;
}
#spMenuWrap .menuUmiList li:not(:last-child) {
	margin-bottom: 20px;
}
#spMenuWrap .menuUmiList li a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0 10px;
	width: 100%;
	text-decoration: none;
}
#spMenuWrap .menuUmiList li a::after {
	content:"";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: url(/lib/sea-pulse/img/common/img_arrow03.png) no-repeat;
	background-size: contain;
}
#spMenuWrap .menuUmiList li a span.icon {
	width: 18%;
}
#spMenuWrap .menuUmiList li a span.text {
	font-size: min(5.0vw, 20px);
	font-weight: 800;
	line-height: 1.0;
	color: #fff;
	transform: rotateZ(0.03deg);
}
#spMenuWrap .menuBannerWrap {
	height: 80vh;
	padding-top: 15%;
	--bgColorB:
	radial-gradient(19.8px at 50% 28px,#212C53 99%,#0000 101%) calc(50% - 28px) 0/56px 100%,
	radial-gradient(19.8px at 50% -14px,#0000 99%,#212C53 101%) 50% 14px/56px 100% repeat-x;
	-webkit-mask: var(--bgColorB);
	mask: var(--bgColorB);
	background: var(--bgColorB);
}
#spMenuWrap .menuBannerWrap figure {
	width: 70%;
	margin: 0 auto 3%;
}
#spMenuWrap .menuBannerWrap figure:nth-child(4) {
	margin-bottom: 7%;
}
#spMenuWrap .menuBannerWrap figure:last-child {
	margin: 0 auto;
}
@media screen and (min-width: 570px) {
	#spMenuWrap .menuUmiList li a span.icon {
		width: 10%;
	}
	#spMenuWrap .menuBannerWrap {
		padding-top: 7%;
	}
	#spMenuWrap .menuBannerWrap figure {
		width: 60%;
	}
	#spMenuWrap .menuBannerWrap figure:nth-child(3) {
		margin: 0 auto 3%;
	}
}


/* footer */
#footerWrap {
	position: relative;
	width: 100%;
	margin-top: -40px;
	z-index: 1;
}
.footerBg {
	--bgColorA:
	radial-gradient(19.8px at 50% 28px,#0F3CAA 99%,#0000 101%) calc(50% - 28px) 0/56px 100%,
	radial-gradient(19.8px at 50% -14px,#0000 99%,#0F3CAA 101%) 50% 14px/56px 100% repeat-x;
	-webkit-mask: var(--bgColorA);
					mask: var(--bgColorA);
	background: var(--bgColorA);
}
.footerNaviWrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding: 60px 20px 120px;
	margin: 0 auto;
}
.footerNaviWrap .umiNavi .logo {
	width: 55%;
	margin: 0 auto 22px;
}
.footerNaviWrap .umiNavi .umiLinkList {
	width: 100%;
	margin-bottom: 40px;
}
.footerNaviWrap .umiNavi .umiLinkList li {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 20px;
}
.footerNaviWrap .umiNavi .umiLinkList li:before {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 18px;
	background: #00AAFA;
	border-radius: 35px;
}
.footerNaviWrap .umiNavi .umiLinkList li a {
	font-size: min(5.5vw, 20px);
	color: #fff;
	text-decoration: none;
	padding-left: 25px;
	transform: rotateZ(0.03deg);
}
.footerNaviWrap .globalNavi {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
}
.footerNaviWrap .globalNavi figure {
	margin-bottom: 14px;
}
.footerNaviWrap .globalNavi figure:nth-child(4) {
	margin-bottom: 20px;
}
.footerNaviWrap .globalNavi figure:last-child {
	margin: 0;
}
#footerWrap .copyright {
	display: flex;
	align-items: center;
	width: 100%;
	--bgColorB: 
	radial-gradient(19.8px at 50% 28px,#212C53 99%,#0000 101%) calc(50% - 28px) 0/56px 100%,
	radial-gradient(19.8px at 50% -14px,#0000 99%,#212C53 101%) 50% 14px/56px 100% repeat-x;
	-webkit-mask: var(--bgColorB);
	mask: var(--bgColorB);
	background: var(--bgColorB);
	margin-top: -60px;
	padding: 40px 0 20px;
	justify-content: center;
}
#footerWrap .copyright p {
	width: fit-content;
	font-size: min(2.5vw, 10px);
	color: #fff;
}


.homeNavi {
	position: fixed;
	top: 201px;
	right: 0;
	background: rgba(258, 258, 258, 0.4);
	-webkit-backdrop-filter: blur(17px);
	backdrop-filter: blur(17px);
	border-radius: 15px 0 0 15px;
	box-shadow: 0px 0px 10px rgba( 0, 0, 0, 0.1);
	z-index: 30;
}
.homeNavi ul {
	padding: 30px 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.homeNavi ul li a {
	display: block;
	background: #DDDDDD;
	border-radius: 15px;
	width: 10px;
	height: 10px;
}
.homeNavi ul li.current a {
	background: #0F3CAA;
	cursor: auto;
	pointer-events: none;
}

.linkBtn {
	width: 290px;
	margin: 0 auto;
	border-radius: 64px;
}
.linkBtn.mgLAuto {
	margin: 0 0 0 auto;
	width: 200px;
}
.kawachanTop .linkBtn.mgLAuto a {
	font-size: 12px;
}
.kawachanTop .linkBtn.mgLAuto a::after {
	width: 30px;
	height: 30px;
}
.linkBtn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.0;
	color: #fff;
	padding: 17px 30px 17px 0;
	text-decoration: none;
	background: #0F3CAA;
	border-radius: 100vmax;
	transform: rotateZ(0.03deg);
}
.linkBtn a::after {
	content:"";position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: url(/lib/sea-pulse/img/common/img_arrow02.png) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
}

.activityTextWrap .linkBtn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.0;
	color: #fff;
	padding: 5% 0;
	text-decoration: none;
	background: #0F3CAA;
	border-radius: 100vmax;
	transform: rotateZ(0.03deg);
	padding: 32px 50px 32px 0;
}
.activityTextWrap .linkBtn a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url(/lib/sea-pulse/img/common/img_arrow02.png) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
}


.pageTopContentsWrap {
	position: relative;
	width: 100%;
	margin: 0 auto 60px;
	background: url(/lib/sea-pulse/img/top/img_topbg_sp.png) no-repeat;
	background-size: 100%;
	background-position: top right;
	padding: 0 20px;
}

.topMainTitleArea {
	position: relative;
	padding: 102% 0 32%;
}

.topCatchphraseA {
	width: 100%;
}

.topCatchphraseB {
	width: 100%;
	margin: 0 auto 15%;
}

.logoMindBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 326px;
	background: #8DD0F4;
	border-radius: 15vw;
	padding: 9%;
	min-height: 326px;
}

.logoMindBox figure {
	width: 45%;
	margin-bottom: 20px;
}

.logoMindBox .textArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	line-height: 1.0;
}

.logoMindBox .mindTitle {
	font-size: min(5.0vw, 18px);
	font-weight: 800;
	color: #004EA2;
	margin-bottom: 10px;
	transform: rotateZ(0.03deg);
}

.logoMindBox .mindSubTitle {
	font-size: min(4.0vw, 14px);
	color: #0096DE;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	transform: rotateZ(0.03deg);
}

.logoMindBox .mindText {
	font-size: min(4.0vw, 18px);
	font-weight: 800;
	line-height: 2.0;
	transform: rotateZ(0.03deg);
}

.topSectionTitle {
	width: 95%;
	margin: 0 auto 20px;
	text-align: center;
}

.topSectionText {
	display: flex;
	justify-content: center;
	font-size: min(3.8vw, 16px);
	line-height: 1.8;
	margin-bottom: 30px;
	transform: rotateZ(0.03deg);
}

.movieContentsWrap {
	position: relative;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto 100px;
}

.movieContentsWrap .movieWrap {
	width: 100%;
	margin: 0 auto;
}

.movieContentsWrap .movieWrap .videoForm {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	max-width: 100%;
	border-radius: 11px;
}

.newsContentsWrap {
	position: relative;
	width: 100vw;
	max-width: 100%;
	margin: 0 auto 100px;
}

/* スライド 1 */
#newsSwiper .swiper-wrapper {
	display: flex;
}

#newsSwiper .swiper-slide {
	opacity: 1;
	transform: scale(.8);
	transition: .7s;
}

#newsSwiper .swiper-slide-active {
	transform: scale(1);
	z-index: 1;
}

#newsSwiper .swiper-slide .newsBox a {
	display: block;
	position: relative;
	width: 100%;
	height: 50%;
	/* min-height: 440px; */
	background: #fff;
	border-radius: 15vw;
	padding: 15% 10%;
	text-decoration: none;
}

#newsSwiper .swiper-slide .newsBox .newIcon {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 30%;
}

#newsSwiper .swiper-slide .newsBox .newsImg {
	width: 100%;
	margin-bottom: 30px;
}

#newsSwiper .swiper-slide .newsBox .newsImg img {
	width: 100%;
}

#newsSwiper .swiper-slide .newsBox .newsDate {
	font-size: 14px;
	margin-bottom: 10px;
	color: #0196DE;
	margin-bottom: 10px;
	transform: rotateZ(0.03deg);
}

#newsSwiper .swiper-slide .newsBox .newsLeadText {
	font-size: 14px;
	line-height: 1.6;
	color: #121212;
	transform: rotateZ(0.03deg);
}

#newsSwiper .swiper-news-next,
#newsSwiper .swiper-news-prev {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10vw;
	transform: translate(-50%, -50%);
	z-index: 10;
}

#newsSwiper .swiper-news-next {
	margin-left: 33%;
	transform: translate(-50%, -50%) rotate(180deg);
}

#newsSwiper .swiper-news-prev {
	margin-left: -33vw;
}


.threeThemesContentsWrap {
	position: relative;
	width: 100%;
	margin: 0 auto 30px;
	padding: 0 20px;
}

.themeContentsFlex {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 40px;
}

.themeContentsFlex.left {
	align-items: flex-start;
}

.themeContentsFlex.right {
	align-items: flex-end;
}

.themeContentsFlex .themeImgWrap {
	width: 70%;
	order: 0;
}

.themeContentsFlex .themeWhiteBox {
	display: flex;
	width: calc(100vw - (20px* 2));
	max-width: 100%;
	height: calc(100vw - (20px* 2));
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 500px;
	padding: 0 20px;
	margin-top: -23%;
	order: 1;
	z-index: 1;
}

.themeContentsFlex .themeWhiteBox .themeTitle {
	width: 85%;
	margin-bottom: 5px;
}

.themeContentsFlex .themeWhiteBox .themeText {
	display: flex;
	align-items: center;
	font-size: min(3.0vw, 14px);
	line-height: 2.0;
	text-align: center;
	margin-bottom: 20px;
	transform: rotateZ(0.03deg);
}
.themeContentsFlex .themeWhiteBox .linkBtn {
	width: 85%;
}

.loopSlideContentsWrap {
	position: relative;
	width: 100vw;
	max-width: 100%;
	margin: 0 auto 100px;
}
#loopSlider .swiper-wrapper {
  transition-timing-function: linear;
}
#loopSlider .swiper-container-free-mode > #loopSlider.swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}

.ambassadorContentsWrap {
	position: relative;
	padding-bottom: 40%;
	background: url(/lib/sea-pulse/img/top/img_bottombg.png) no-repeat;
	background-size: 110%;
	background-position: center bottom;
}
.kawaChanWrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 20px;
}
.kawaChanImg {
	width: 80%;
	z-index: 1;
}
.kawaChanWhiteBox {
	width: 100%;
	background: #fff;
	border-radius: 100px;
	padding: 20% 8% 8% 8%;
	margin-top: -16%;
}
.kawaChanWhiteBox .kawaChanPainting {
	position: absolute;
	width: 38vw;
	top: 92vw;
	right: 6vw;
	text-align: center;
	z-index: 2;
}
.kawaChanWhiteBox .kawaChanName {
	width: 100%;
	margin-bottom: 10px;
}
.kawaChanWhiteBox .leadText {
	font-size: min(3.0vw, 14px);
	line-height: 2.0;
	margin-bottom: 20px;
	transform: rotateZ(0.03deg);
}



.imgPositionArea {
	width: 100%;
	z-index: 10;
}
.ambassadorContentsWrap .imgPositionArea {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
body.mamoru .imgPositionArea {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 0;
}
.moveImgContainer {
	position: absolute;
	max-width: fit-content;
	z-index: 1;
}
.top .moveImgContainer.moveImg01 {
	width: 56vw;
	top: 127vw;
	right: 0;
}
.top .moveImgContainer.moveImg02 {
	width: 110px;
	bottom: 14.5%;
	right: 4%;
}
.top .moveImgContainer.moveImg03 {
	width: 63px;
	bottom: 17%;
	left: 6%;
}
.top .moveImgContainer.moveImg05 {
	width: 36vw;
	bottom: -38vw;
	right: 2vw;
}
.top .moveImgContainer.moveImg06 {
	width: 25vw;
	top: 59vw;
	right: 12vw;
}
.top .moveImgContainer.moveImg07 {
	width: 14vw;
	top: 75vw;
	right: 6vw;
}
.top .moveImgContainer.moveImg08 {
	width: 22vw;
	top: 187vw;
	left: 11vw;
}
.top .moveImgContainer.moveImg09 {
	width: 14vw;
	top: 213vw;
	left: 4vw;
}
.top .moveImgContainer.moveImg10 {
	width: 26vw;
	top: 316vw;
	right: 15vw;
}
.top .moveImgContainer.moveImg11 {
	width: 18vw;
	top: 350vw;
	right: 5vw;
}
.top .moveImgContainer.moveImg12 {
	width: 38vw;
	bottom: 32vw;
	right: 9vw;
}





/* suki */
.scrollWrap {
	background: #C7E8FB;
	transition: background 0.5s ease;
	overflow-y: hidden;
}
.scrollWrap.bg-changed01 {
	background: #F8D6E6;
}
.scrollWrap.bg-changed02 {
	background: #844E7E;
}
.scrollWrap.bg-changed03 {
	background: #123577;
}
#scrollNaviWrap {
	position: fixed;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	width: 12vw;
	z-index: 15;
}
#seaBgWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 200vw;
	height: 130vh;
	overflow: hidden;
	z-index: 10;
	background: url(/lib/sea-pulse/img/suki/bg_sea_sp.png);
	background-size: cover;
	background-repeat: repeat-x;
	background-position: left top;
}
#seaBgWrap img {
	width: 100%;
}
#cloudBgWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 120%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}
#cloudBgWrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#shipImgWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 40%;
	z-index: 11;
	/* 初期状態は後で gsap.set() で設定 */
}
#shipImgWrap img {
	width: 100%;
	display: block;
}
#sangoBgWrap {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 55%;
	z-index: 11;
}
#fishBgWrap01 {
	display: none;
	position: fixed;
	top: 33%;
	right: 6%;
	width: 37%;
	z-index: 11;
}
#fishBgWrap02 {
	display: none;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: 1%;
	width: 23%;
	z-index: 11;
}
#vinylBgWrap {
	display: none;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: -9%;
	width: 40%;
	z-index: 11;
}
#fishBgWrap03 {
	position: fixed;
	top: 21%;
	left: -2%;
	width: 20%;
	z-index: 11;
}
#squidBgWrap {
	position: fixed;
	top: 25%;
	left: -10%;
	width: 35%;
	z-index: 11;
}
#whaleBgWrap {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 90%;
	z-index: 11;
}
#fishBgWrap04 {
	position: fixed;
	top: 35%;
	left: -3%;
	width: 18%;
	z-index: 13;
}
#sunkenShipBgWrap {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 85%;
	z-index: 11;
}

#bubbleBgWrap01 {
	display: none;
	position: fixed;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	width: 75%;
	height: 80%;
	z-index: 11;
}
#bubbleBgWrap01-2 {
	display: none;
	position: fixed;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: 75%;
	height: 80%;
	z-index: 11;
}
#bubbleBgWrap02 {
	display: none;
	position: fixed;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	width: 75%;
	height: 80%;
	z-index: 11;
}

#bubbleBgWrap03 {
	display: none;
	position: fixed;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: 75%;
	height: 80%;
	z-index: 11;
}




.scrollSection {
	width: 100vw;
	height: 100svh;
	display: flex;
}
.scrollSection .scrollContentsBox {
	width: 360px;
}
.scrollSection:has(.scrollContents11) {
	height: 140svh;
}
.horizontal-group {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.horizontal-group .horizontal-wrapper {
	display: flex;
	width: fit-content;
}

.scrollContents01 {
	position: relative;
	width: 100%;
	padding-top: 30%;
}
.scrollContents01 h1.mainTitle {
	position: relative;
	width: fit-content;
	width: 70%;
	margin-left: 10px;
	z-index: 2;
}
.scrollContents01 .mainTitleBg {
	position: absolute;
	width: 100%;
	bottom: -6%;
	left: 0;
	z-index: 1;
}

.scrollContents02 {
	width: 100%;
	margin: 0 auto;
	padding: 22% 28px 0;
}
.scrollCommonFlex {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.scrollCommonFlex .textArea {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.scrollCommonFlex .textArea .sectionTitle {
	width: 100%;
	margin-bottom: 3%;
}
.scrollCommonFlex .textArea p {
	font-size: min(2.5vw , 14px);
	line-height: 2.0;
	transform: rotateZ(0.03deg);
}
.scrollCommonFlex .textArea .linkBtn {
	margin: 6% auto 0;
}
.scrollCommonFlex .imgArea {
	width: 60%;
	margin-bottom: 3%;
}

.scrollContents03 {
	width: 100%;
	margin: 0 auto;
	padding: 22% 28px 0;
}
.scrollContents03 .scrollCommonFlex .textArea {
	align-items: flex-start;
}
.scrollContents03 .scrollCommonFlex .imgArea {
	width: 65%;
	margin: -20% 5% 5% auto;
	z-index: -1;
}

@media screen and (min-width: 600px) {
	.scrollContents02 .scrollCommonFlex .imgArea {
		width: 45%;
	}
	.scrollCommonFlex .textArea .sectionTitle {
		width: 80%;
		margin-left: 4%;
	}
	.scrollContents03 .scrollCommonFlex .imgArea {
		width: 55%;
		margin: -20% 5% 0% auto;
	}
	.scrollCommonFlex .textArea .linkBtn {
		margin: 3% auto 0;
	}
}

#horizontal-B {
	z-index: 12;
}
.scrollContents04 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.activityBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: fit-content;
	min-height: 70%;
	background: rgba(19, 46, 60, 0.3);
	border-radius: 30px;
	padding: 8% 3vw;
}
.activityBox .activityTitle {
	font-size: min(4.5vw, 20px);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 4%;
	transform: rotateZ(0.03deg);
}
.activityBox .activitySubTitle {
	font-size: min(3.4vw, 16px);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 3%;
	transform: rotateZ(0.03deg);
}
.activityFlex {
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
}
.activityFlex .imgArea {
	margin-bottom: 4%;
	text-align: center;
}
.activityFlex .textArea p {
	font-size: min(2.6vw, 12px);
	font-weight: 800;
	color: #fff;
	line-height: 1.8;
	margin-bottom: 5%;
	transform: rotateZ(0.03deg);
}
.activityFlex .textArea .linkBtn {
	margin-left: 0;
}
.activityFlex .textArea .linkBtn {
	margin: 0 auto;
}
.activityFlex .movieArea {
	margin-bottom: 4%;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.activityFlex .movieArea iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
	border-radius: 10px;
}
.activityFlex .movieArea .movieFrame {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	max-width: 100%;
}
.scrollContents05 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.scrollContents06 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.scrollContents07 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.scrollContents08 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.scrollContents09 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.scrollContents10 {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 20px;
}
.scrollContents11 {
	margin: 25% auto 0;
	padding: 0 20px;
	z-index: 13;
}
.scrollContents11.darkBg::after {
	content:"";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 12;
	background: rgba(0, 62, 146, 0.4);
	z-index: -1;
}
.scrollContents11 #sukiFooter {
	display: flex;
	flex-direction: column;
}
.sukiFooterUmi {
	width: 75%;
	margin-bottom: 10%;
}
.sukiFooterUmiList li:not(:last-child) {
	margin-bottom: 5%;
}
.sukiFooterGlobalNavi figure:not(:last-child) {
	margin-bottom: 5%;
}
.suki #sukiFooter .copyright {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px 0;
	font-size: 10px;
	line-height: 1.0;
	color: #fff;
	text-align: center;
	z-index: 99;
}



/* テンプレートページ */
.template .mainContents {
	--templateBg: radial-gradient(19.8px at 50% 28px, rgb(188, 228, 253) 99%, #0000 101%) calc(50% - 28px) 0 / 56px 100%, radial-gradient(19.8px at 50% -14px, #0000 99%, rgb(188, 228, 253) 101%) 50% 14px / 56px 100% repeat-x;
	-webkit-mask: var(--templateBg);
	mask: var(--templateBg);
	background: var(--templateBg);
	background: linear-gradient(180deg, rgba(188, 228, 253, 1) 0%, rgba(1, 150, 222, 1) 50%, rgba(0, 78, 162, 1) 100%);
	margin-top: -45px;
}

.blog .template .mainContents {

}
.blogList .template .mainContents {

}
.template .imgPositionArea {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 0;
}
.mamoru .moveImgContainer.moveImg01 {
	width: 20vw;
	top: 37vw;
	left: 2vw;
}
.mamoru .moveImgContainer.moveImg02 {
	width: 40vw;
	top: 75vw;
	right: 0vw;
}
.mamoru .moveImgContainer.moveImg03 {
	width: 10vw;
	top: 130vw;
	right: 2vw;
}
.mamoru .moveImgContainer.moveImg04 {
	width: 9vw;
	top: -20vw;
	left: -3vw;
}
.mamoru .moveImgContainer.moveImg05 {
	width: 22vw;
	top: 156vw;
	right: -3vw;
}
.tukuru .moveImgContainer.moveImg01 {
	width: 30vw;
	top: -17vw;
	right: 0vw;
}
.tukuru .moveImgContainer.moveImg02 {
	width: 12vw;
	top: -16vw;
	left: 2vw;
}
.tukuru .moveImgContainer.moveImg03 {
	width: 26vw;
	top: 117vw;
	left: -3vw;
}

.templateMainImgArea {
	position: relative;
	width: 100vw;
	padding: 40% 20px 12%;
	margin: 0 auto;
}
.mamoru .templateMainImgArea {
	background: url(/lib/sea-pulse/img/mamoru/bg_main_sp.png) no-repeat;
	background-size: cover;
	background-position: top;
}
.tukuru .templateMainImgArea {
	background: url(/lib/sea-pulse/img/tukuru/bg_main_sp.png) no-repeat;
	background-size: cover;
	background-position: top;
}
.kawachanTop .templateMainImgArea {
	background: url(/lib/sea-pulse/img/suki/sakana-bro/bg_main_sp.png) no-repeat;
	background-size: cover;
	background-position: top;
}
.templateMainImgArea .mainTitle {
	width: fit-content;
	margin-bottom: 5px;
}
.templateMainImgArea .mainTitle img {
	max-height: 100px;
}
.templateMainImgArea .leadText {
	width: 100%;
	font-size: 14px;
	color: #fff;
	line-height: 1.6;
	transform: rotateZ(0.03deg);
}

.templateFlexWrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 70px 20px 0;
	margin: 0 auto 40px;
	z-index: 1;
}
.templateFlexWrap .textWrap {
	width: 100%;
}
.templateFlexWrap .flexTitle {
	padding: 0 20px;
	margin-bottom: 20px;
}
.templateFlexWrap .flexText {
	font-size: 16px;
	line-height: 2.4;
	transform: rotateZ(0.03deg);
}
.templateFlexWrap .imgWrap {
	width: 65%;
	margin: 0 auto 20px;
}

#templateSwiper {
	position: relative;
	width: 100vw;
	max-width: 100%;
	margin-bottom: 145px;
	overflow: hidden;
}
#templateSwiper .slideContents {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	border-radius: 100px;
	padding: 30px;
	min-height: 600px;
}
.mamoru #templateSwiper .swiper-slide {
	padding: 0 20px;
}
.mamoru #templateSwiper .slideContents {
	width: 100%;
	margin: 0 auto;
}
#templateSwiper .slideContents::after {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 100px;
	z-index: -1;
}
.mamoru #templateSwiper .slideContents::after {
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
}
#templateSwiper .slideContents.combineBlock::after {
	width: var(--slideBgSize);
}
#templateSwiper .slideContents.bgNone::after {
	display: none;
}
#templateSwiper .slideImgWrap {
	width: 65%;
	margin: 0 auto 20px;
	text-align: center;
}
#templateSwiper .slideTextWrap {
	width: 100%;
}
#templateSwiper .slideTextWrap .slideTitle {
	font-size: 18px;
	font-weight: 800;
	color: #003E92;
	line-height: 1.4;
	text-align: center;
	transform: rotateZ(0.03deg);
	margin-bottom: 10px;
}
#templateSwiper .slideTextWrap .slideText {
	font-size: 14px;
	line-height: 2.0;
	transform: rotateZ(0.03deg);
}
#templateSwiper .swiper-pagination {
	bottom: -6%!important;
}
#templateSwiper .swiper-pagination-bullet {
	width: 15px!important;
	height: 15px!important;
	background: #D9D9D9!important;
	opacity: 1!important;
	margin: 0 10px;
}
#templateSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #0F3CAA!important;
	opacity: 1!important;
}
#templateSwiper .swiper-next, #templateSwiper .swiper-prev {
	content:"";
	position: absolute;
	width: 8vw;
	height: 8vw;
	top: 50%;
	background: url(/lib/sea-pulse/img/common/img_arrow01.png) no-repeat;
	background-size: contain;
	z-index: 2;
}
#templateSwiper .swiper-next {
	right: 3vw;
	transform: translateY(-50%) rotate(180deg);
}
#templateSwiper .swiper-prev {
	left: 3vw;
	transform: translateY(-50%);
	display: none;
}

.templateActivityWrap {
	width: 100%;
	padding: 0 20px;
	margin: 0 auto 140px;
}

.templateSectionTitle {
	position: relative;
	z-index: 1;
	width: 60%;
	margin: 0 auto 20px;
}
.templateTextParagraph {
	font-size: 16px;
	line-height: 1.4;
	transform: rotateZ(0.03deg);
	margin-bottom: 40px;
}
.tukuru .templateTextParagraph {
	line-height: 2.0;
}
.templateActivityWrap .activityBoxArea {
	display: flex;
	flex-direction: column;
	margin-bottom: 120px;
}
.templateActivityWrap .whiteBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: 100px;
	padding: 50px 30px;
	z-index: 1;
}
.templateActivityWrap .whiteBox:not(:last-child) {
	margin-bottom: 40px;
}
.templateActivityWrap .activityTitle {
	font-size: 18px;
  font-weight: 900;
	color: #003E92;
	line-height: 1.4;
	text-align: center;
	transform: rotateZ(0.03deg);
	margin-bottom: 10px;
}
.templateActivityWrap .activityFlexWrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.templateActivityWrap .activityImgWrap {
	display: flex;
	justify-content: center;
	width: 100%;
	/* margin-bottom: 10px; */
	text-align: center;
}
.templateActivityWrap .activityImgWrap figure {
	width: 100%;
}
.templateActivityWrap .activityTextWrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.templateActivityWrap .activityTextWrap p {
	font-size: 14px;
	line-height: 2.0;
	transform: rotateZ(0.03deg);
	margin-bottom: 20px;
}
.templateActivityWrap .activityTextWrap .linkBtn {
	width: 100%;
	max-width: 100%;
}
.templateContactBtn {
	width: 100%;
	margin: 0 auto;
	border-radius: 64px;
}
.templateContactBtn a {
	position: relative;
	display: block;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.0;
	color: #fff;
	text-align: center;
	padding: 6% 0;
	text-decoration: none;
	background: #0F3CAA;
	border-radius: 84px;
	transform: rotateZ(0.03deg);
}
.templateContactBtn a::before {
	content: "";
	position: absolute;
	left: 2%;
	top: 50%;
	transform: translateY(-50%);
	background: url(/lib/sea-pulse/img/common/img_contact.png) no-repeat;
	background-size: contain;
	width: 9vw;
	height: 9vw;
}


/* ブログ */

body.blog {
	letter-spacing: 0;
}

.blog .templateActivityWrap {
	padding: 0;
}

.blog .mainContents {
	padding: 60px 20px 40px 20px;
	background: linear-gradient(180deg, #BCE4FD 0%, #BCE4FD 90%, #004EA2 100%);
}

.blog .templateMainImgArea {
	background: url(/lib/sea-pulse/img/blog/bg_main_sp.png) no-repeat;
	background-size: contain;
	background-position: top;
	position: relative;
	padding-top: 65%;
	width: 100%;
}
.blog .templateMainImgArea .mainImgPerson{
	position: absolute;
	bottom: 0;
	right: 8vw;
	width: 135px;
	height: auto;
	z-index: 10;
}

.blog .templateMainImgArea h1.mainTitle {
	position: absolute;
	top: 22vw;
	left: 50%;
	width: 90%;
	transform: translateX(-50%); 
	font-size: 28px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.4;
	text-align: center;
	z-index: 1;
}
.blog .templateMainImgArea p.mainTitle {
	position: absolute;
	top: calc(22vw + 2px);
	left: calc(50% + 2px);
	width: 90%;
	transform: translateX(-50%);
	font-size: 28px;
	font-weight: 800;
	/* color: #FFFFFF; */
	line-height: 1.4;
	text-align: center;
	text-shadow: 0 4px 0 #0F3CAA;
	-webkit-text-stroke: 11px #0F3CAA;
	z-index: 0;
}

.blog .blogTime {
	font-size: 14px;
	font-weight: 500;
	color: #0F3CAA;
	line-height: 1.8; 
	margin-bottom: 20px;
	display: block;
}
.blog .blogList {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 60px;
}
.blog .blogList .blogListItem {
	/* margin-bottom: 60px; */
}
.blog .blogList .blogListItem .blogSentense {
	font-size: 14px;
	color: #121212;
	line-height: 1.8;
}
.blog .blogList .blogListItem .blogSentense.fontBold {
	font-weight: 800;
}
.blog .blogList .blogListItem .blogSentense + .blogSentense {
	margin-top: 10px;
}
.blog .blogList .blogListItem figure {
	margin: 20px auto 0;
}
.blog .blogList .blogListItem div.horizontal {
	margin: 20px auto 0;
}
.blog .blogList .blogListItem figure img + figcaption {
	margin-top: 5px;
}
.blog .blogList .blogListItem figure figcaption {
	color: #121212;
	text-align: center;
	font-size: 11px;
	line-height: 1.8;
}

.blog .blogList .blogListItem figure.horizontal {
	max-width: 270px;
}
.blog .blogList .blogListItem div.horizontal {
	max-width: 270px;
}

.blog .blogList .blogListItem figure.horizontal img, .blog .blogList .blogListItem figure.vertical img {
	border-radius: 30px;
}

.blog .blogList .blogListItem figure.vertical {
	max-width: 210px;
}

.blog .blogList .blogListItem figure.NoBorR {
	max-width: 200px;
}

.blog .blogList .blogListItem figure img {
	width: 100%;
}

.blog main {
/* padding-bottom: 400px; */
}

.blog .pagerWrap {
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
margin-bottom: 60px;
}
.blog .pagerWrap .pagerList {
	width: 100%;
	background-color: #0F3CAA;
	border-radius: 30px;
	cursor: pointer;
}

.blog .pagerWrap .pagerList .linkPrev, .blog .pagerWrap .pagerList .linkNext {
	display: flex;
	gap: 10px;
	text-decoration: none;
}
.blog .pagerWrap .pagerList .linkPrev img, .blog .pagerWrap .pagerList .linkNext img {
	width: 100%;
	max-width: 100px;
	max-height: 100px;
	border-radius: 1em;
	height: auto;
	object-fit: cover;
}
.blog .pagerWrap .pagerList.left {
	position: relative;
}
.blog .pagerWrap .pagerList.left a {
	padding: 15px 15px 15px 64px;
}
.blog .pagerWrap .pagerList.left::before {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
    background-image: url('/lib/sea-pulse/img/blog/icon-arrowl.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
	pointer-events: none;
}
.blog .pagerWrap .pagerList.right {
	position: relative;
}
.blog .pagerWrap .pagerList.right a {
	padding: 15px 64px 15px 15px;
}
.blog .pagerWrap .pagerList.right::before {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	content: '';
    background-image: url('/lib/sea-pulse/img/blog/icon-arrowR.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
	pointer-events: none;
}


/* 前に戻る */
.blog .pagerWrap .pagerList .pagerLinkTextWrap {

}
.blog .pagerWrap .pagerList .pagerLinkTextWrap span {
	font-size: 16px;
	color: #FFFFFF;
	margin-bottom: 20px;
	font-weight: 800;
	line-height: 1.4;
	display: block;
}
.blog .pagerWrap .pagerList .pagerLinkTextWrap .pagerLinkText {
	font-size: 14px;
	line-height: 1.4;
	color: #FFFFFF;
	font-weight: 500;
}

.blog .titleActivity {
	font-size: 24px;
	text-align: center;
	line-height: 1.4;
	font-weight: 800;
	color: #FFFFFF;
	margin-bottom: 40px;
	-webkit-text-stroke: 2px #0F3CAA;
	text-shadow: 2px 2px 0px #004EA2;
}

.blog .summary .summaryWrap {
	background-color: #FFFFFF;
	border-radius: 30px;
	display: flex;
	gap: 30px;
	padding: 30px 90px;
	width: 100%;
	flex-direction: column;
	position: relative;
}

.blog .summary .summaryWrap .imgPerson {
	width: 128px;
	height: 123px;
	position: absolute;
	top: -70px;
	right: 0;
}

.blog .summary .summaryWrap ul {
width: 100%;
display: flex;
flex-wrap: wrap;
gap: 20px; 
}

.blog .summary .summaryText {
	width: 100%;
}

.blog .summary .summaryText span {
	color: #FFFFFF;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	display: block;
	max-width: 150px;
	font-weight: 900;
	background-color: #0F3CAA;
	border-radius: 30px;
	padding: 5px 20px;
	white-space: nowrap;
	margin: 0 auto 10px;
}

.blog .summary .summaryText a {
	color: #121212;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.blog .templateMainImgArea .mainTitleWidth {
	margin: 0 auto 1vw;
	position: static;
}

.blog .linkTextColor {
	color: #0F3CAA;
	word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word; 
}

.blog .summary .summaryText {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.blog .videoContainer {
	max-width: 270px; 
    width: 100%; 
    aspect-ratio: 16 / 9; 
}
.blog .videoContainer iframe{
    width: 100%;
    height: 100%;
}

.titleHighLight {
	display: inline-block;
	margin-bottom: 20px;
	position: relative;
}
.titleHighLight::before {
	content: ""; 
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 10px;
    background-color:#FFF88F;
    z-index: -1; 
}
.titleHighLight .highlightWrap {
	font-size: 18px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 12px;
}
.titleHighLight .highlightWrap img {
	margin-bottom: 8px;
	width: 40px;
	height: 24px;
}
.titleHighLight .highlightWrap span {
	line-height: 1.4;
	padding-right: 5px;
}

/* ブログ一覧 */
.blogList .blogListSubText {
color: #121212;
text-align: center;
line-height: 1.8;
margin-bottom: 80px;
font-size: 16px;
}
.blogList .blogListBox {
display: flex;
flex-direction: column;
gap: 20px;
width: 100%;
}
.blogList .blogListBox .blogListItem {
width: 100%;
cursor: pointer;
position: relative;
}
.blogList .blogListBox .blogListItem.new::before {
position: absolute;
content: '';
background: url(/lib/sea-pulse/img/blog/icon-new.png) no-repeat;
background-size: contain;
width: 100px;
height: 100px;
top: -30px;
left: -30px;
}

.blogList .blogListBox .blogListItem a {
background-color: #FFFFFF;
border-radius: 50px;
display: block;
padding: 30px;
text-decoration: none;
min-height: 350px;
}
.blogList .blogListBox .blogListItem figure {
width: 100%;
margin-bottom: 20px;
}
.blogList .blogListBox .blogListItem figure img {
	border-radius: 30px;
}
.blogList .blogListBox .blogListItem .blogArchiveTime {
color: #00AAFA;
line-height: 1;
font-size: 14px;
font-weight: 800;
margin-bottom: 10px;
display: inline-block;
}
.blogList .blogListBox .blogListItem .itemText {
font-size: 14px;
line-height: 1.6;
}
.blogList .templateMainImgArea {
background: url(/lib/sea-pulse/img/blog/bg_main_sp.png) no-repeat;
background-size: cover;
background-position: top;
position: relative;
padding-top: 65%;
width: 100%;
}

.blogList .templateMainImgArea .mainTitleWidth {
margin: 0px auto 1vw;
position: static;
}

.blogList .templateMainImgArea h1.mainTitle {
position: absolute;
top: 26vw;
left: 50%;
width: 90%;
transform: translateX(-50%);
font-size: 28px;
font-weight: 800;
color: #FFFFFF;
line-height: 1.4;
text-align: center;
z-index: 1;
}
.blogList .templateMainImgArea p.mainTitle {
position: absolute;
top: calc(26vw + 2px);
left: calc(50% + 2px);
width: 90%;
transform: translateX(-50%);
font-size: 28px;
font-weight: 800;
/* color: #FFFFFF; */
line-height: 1.4;
text-align: center;
text-shadow: 0 4px 0 #0F3CAA;
-webkit-text-stroke: 11px #0F3CAA;
z-index: 0;
}

.blogList .templateMainImgArea .mainImgFish {
position: absolute;
bottom: 25px;
right: 13vw;
width: 107px;
height: auto;
z-index: 10;
}
.blogList .templateActivityWrap {
padding: 0;
}

.blogList .mainContents {
background: linear-gradient(180deg, #BCE4FD 0%, #BCE4FD 90%, #004EA2 100%);
}
.blogList .mainContents {
padding: 60px 40px 0;
}
.reference {
border-radius: 40px;
background: rgba(255, 255, 255, 0.5);
padding: 30px;
margin-bottom: 80px;
}
.reference .referenceTitle {
	font-size: 14px;
	line-height: 1.8;
	font-weight: 800;
	margin-bottom: 10px;
}
.reference .blogList {
margin-bottom: 0;
}
.reference .blogList .blogListItem .blogSentense + .blogSentense {
	margin-top: 10px;
}
.blog .blogList:has(+ .reference) {
	margin-bottom: 30px;
}

	/* かわちゃん紹介 */
.kawachanTop .mainContents {
	padding-top: 45px;
	background: linear-gradient(180deg, #bce4fd 0%, #0196de 50%, #0051a5 100%);
	margin-top: -34px;
}
.titleShadowWrap {
	position: relative;
	height: 60px;
	width: 100%;
}
.titleShadowWrap.twoLines {
	height: 88px;
}
.titleShadowWrap.TwolinesExploration {
	height: 100px;
}
.titleShadowWrap.TwolinesSchool {
	height: 70px;
}

.kawachanTop h2.titleSub {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 23px;
	line-height: 1.2;
	font-weight: 800;
	color: #FFFFFF;
	z-index: 1;
}
.kawachanTop p.titleSub {
	width: 100%;
	position: absolute;
	top: 1px;
	left: calc(50% + 2px);
	transform: translateX(-50%);
	text-align: center;
	font-size: 23px;
	line-height: 1.2;
	font-weight: 800;
	color: #FFFFFF;
	text-shadow: 0 3px 0 #0F3CAA;
	-webkit-text-stroke: 6px #0F3CAA;
	z-index: 0;
}
.kawachanTop .subtitle {
text-align: left;
font-size: 20px;
line-height: 1;
margin-bottom: 40px;
font-weight: 800;
color: #0F3CAA;
}
.kawachanTop .titleSubText {
	font-size: 16px;
	line-height: 2;
	color: #121212;
	text-align: left;
}
.kawachanTop .titleSubText.white {
	color: #FFFFFF;
}
.kawachanTop .titleSubText.tac {
	text-align: center;
}
.kawachanTop .kawachanTopswiper {
	margin-top: 30px;
	margin-bottom: 30px;
	}
.kawachanTop .kawachanTopswiper + .linkBtn {
	margin-bottom: 80px;
}
.kawachanTop .kawachanTopswiper + .linkBtn a {
	padding-top: 32px;
	padding-bottom: 32px;
}
.kawachanTop .titleSubText + .titleSubText {
	margin-top: 10px;
}
.kawachanTop .titleAreaWrap {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 120px;
}
.kawachanTop .titleAreaWrap::before {
	position: absolute;
	top: -29px;
	right: 19px;
	content: '';
	width: 98px;
	height: 108px;
	background: url(/lib/sea-pulse/img/suki/sakana-bro/img_school02.png) no-repeat;
	background-size: contain; 
	}
.kawachanTop .titleAreaWrap::after {
	position: absolute;
	bottom: -5px;
	left: 4px;
	content: '';
	width: 142px;
	height: 132px;
	background: url(/lib/sea-pulse/img/suki/sakana-bro/img_school01.png) no-repeat;
	background-size: contain; 
	}
.kawachanTop .clubBox {
	background-color: #FFFFFF;
	border-radius: 30px;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	margin-bottom: 80px;
}
.kawachanTop .clubBox .boxTop {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 40px;
}
.kawachanTop .clubBox .boxTop figure img {
	width: 100%;
}
.kawachanTop .clubBox .boxTop .boxText {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.kawachanTop .clubBox .boxTop h4 {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 800;
	margin-bottom: 10px;
	color: #0F3CAA;
}
.kawachanTop .clubBox .boxTop p {
margin-bottom: 20px;
font-size: 14px;
line-height: 1.4;
transform: rotateZ(0.03deg);
}
.kawachanTop .clubBox .boxBottom ul {
	display: flex;
	flex-direction: column;
	gap: 40px;

}
.kawachanTop .clubBox .boxBottom ul li {
	width: 100%;
	display: flex;
	gap: 10px;
}
.kawachanTop .clubBox .boxBottom ul li figure {
	max-width: 100px;
	width: 100%;
}
.kawachanTop .clubBox .boxBottom ul li .listText {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
.kawachanTop .clubBox .boxBottom ul li .listText h5 {
	font-weight: 800;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 5px;
}
.kawachanTop .clubBox .boxBottom ul li .listText p {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	transform: rotateZ(0.03deg);
}
.kawachanTop .clubBox .boxBottom ul li .listText a {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #00AAFA;
	text-align: right;
	text-decoration: underline;
	transform: rotateZ(0.03deg);
}
.templateActivityWrap.introduction {
margin-bottom: 80px;
}
.templateActivityWrapOnlyFrame {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
.templateActivityWrap.introduction .activityImgWrap {
	margin-bottom: -60px;
	position: relative;
	z-index: 5;
}
.templateActivityWrap.introduction .activityTextWrap {
	width: 100%;
}
.templateActivityWrap.introduction .activityTextWrap.whiteBox  {
	padding: 80px 40px 40px;
}
.templateActivityWrap.introduction .linkBtn {
	width: 100%;
}
.templateActivityWrap.introduction .linkBtn a {
	padding: 6% 23% 6% 6%;
	font-size: 14px;
	justify-content: flex-start;
	line-height: 1.4;
}
.templateActivityWrap.introduction .linkBtn a::after {
	margin: 0 3% 0 2%;
	right: 5px;
}

.templateActivityWrap.coloring .titleSubText {
margin-bottom: 40px;
}
.listA {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.listA li {
	display: flex;
	flex-direction: column;
	padding: 46px 28px;
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 100px;
}
.listA li h3 {
	font-weight: 900;
	font-size: 18px;
	color: #0F3CAA;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 38px;
}
.listA li figure {
	padding: 0 28px;
	margin-bottom: 38px;
}
.listA li figure img {
	width: 100%;
}
.btnD {
	background-color: #0F3CAA;
	border-radius: 64px;
}
.btnD a {
color: #FFFFFF;
font-size: 16px;
font-weight: 800;
display: block;
width: 100% ;
padding: 28px;
line-height: 1;
text-decoration: none;
text-align: center;
}
.kawachanTop .templateMainImgArea {
	padding: 90px 20px 0;
	width: 100%;
}

.mainTitleWrap  .contentsLeft {
height: 306px;
position: relative;
}
.mainTitleWrap .contentsLeft picture {
position: absolute;
transform: translateX(-50%);
top: 50px;
left: 50%;
}
.mainTitleWrap .contentsLeft h1.titleMainText {
	position: absolute;
	top: 114px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	font-size: 28px;
	line-height: 1.2;
	color: #FFFFFF;
	text-align: center;
	z-index: 1;
	width: 100%;
}
.mainTitleWrap .contentsLeft p.titleMainText {
	position: absolute;
	top: 115px;
	left: calc(50% + 2px);
	transform: translateX(-50%);
	font-weight: 800;
	font-size: 28px;
	line-height: 1.2;
	color: #FFFFFF;
	text-align: center;
	text-shadow: 0 2px 0 #0F3CAA;
	-webkit-text-stroke: 11px #0F3CAA;
	z-index: 0;
	width: 100%;
}

.mainTitleWrap .contentsLeft p.titleMainSubText {
	position: absolute;
	top: 207px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 800;
	color: #FFFFFF;
	text-align: center;
	z-index: 1;
	width: 100%;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.mainTitleWrap .contentsLeft span.titleMainSubText {
	position: absolute;
	top: 208px;
	left: calc(50% + 1px);
	transform: translateX(-50%);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 800;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0 2px 0 #0F3CAA;
	-webkit-text-stroke: 7px #0F3CAA;
	z-index: 0;
	width: 100%;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.mainTitleWrap {
	display: flex;
	flex-direction: column-reverse;
}
.mainTitleWrap .contentsRight figure {
	margin-bottom: 46px;
	margin-left: 23%;
}
.mainTitleWrap .contentsRight img {
	max-width: 100%;
}

.kawachanTop .templateMainImgArea .mainTitleWidth {
margin-bottom: 16vw;
}

.kawachanTop #newsSwiper .swiper-slide .newsBox .newsImg img {
	border-radius: 30px;
}
.kawachanTop .templateActivityWrap.event {
	margin-bottom: 80px;
}
.kawachanTop .templateActivityWrapOnlyFrame.fish01, 
.kawachanTop .clubBox, 
.kawachanTop .templateActivityWrap.event .whiteBox, 
.kawachanTop .templateActivityWrap.introduction .activityTextWrap.whiteBox {
	position: relative;
	z-index: unset;
}
.kawachanTop .templateActivityWrap.event .activityImgWrap figure {
	margin-bottom: 10px;
}

.kawachanTop .moveImgContainer.moveImg01 {
	position: absolute;
	top: -6px;
	left: -56px;
	width: 126px;
	height: 106px;
}
.kawachanTop .moveImgContainer.moveImg02 {
	position: absolute;
	top: -20px;
	right: 0;
	width: 106px;
	height: 64px;
	
}
.kawachanTop .moveImgContainer.moveImg03 {
	position: absolute;
	top: -43px;
	right: 0;
	width: 111px;
	height: 84px;
}
.kawachanTop .moveImgContainer.moveImg04 {
	position: absolute;
	top: -48px;
	left: calc(50% - 65px);
	width: 130px;
	height: 70px;
}
.kawachanTop .moveImgContainer.moveImg05 {
	position: absolute;
	top: -64px;
	right: 8px;
	width: 146px;
	height: 140px;
	z-index: 100;
}
.kawachanTop .templateActivityWrap .activityBoxArea {
	margin-bottom: 0;
}
.spNone {
	display: none;
}
.pcNone {
	display: block;
}



/*めぐりいちTOP  */

.meguriichiTop {

}
.meguriichiTop .templateMainImgArea {
	padding: 0;
}
body.template.meguriichiTop .mainTitleWidth {
	width: 100vw;
	max-width: none;
	margin: 0 calc(50% - 50vw);
	padding: 0;
}
.meguriichiTop #keyVisual {
	height: auto;
	background: #1A2B7C;
	padding: 170px 0 220px;
	overflow: hidden;
}

.meguriichiTop #keyVisual .inner {
	position: relative;
}

.meguriichiTop #keyVisual .inner .main_copy {
	text-align: center;
	margin: 0 auto 20px;
	width: 63%;
	opacity: 0;
	position: relative;
	top: 50px;
}

.meguriichiTop #keyVisual .inner .main_copy.true {
	transition: all .5s 0s ease;
	opacity: 1;
	top: 0;
}

.meguriichiTop #keyVisual .inner .main_copy img {
	width: 250px;
	max-width: 400px;
	height: auto;
}

.meguriichiTop #keyVisual .inner .powered {
	text-align: center;
	font-size: 12px;
	color: #fff;
}

.meguriichiTop #keyVisual .inner .listImg li {
	position: absolute;
	transform: translate(-50%, -50%);
}

.meguriichiTop #keyVisual .inner .listImg li.gara {
	z-index: 0;
	opacity: 0;
}

.meguriichiTop #keyVisual .inner .listImg li.gara.true {
	transition: all 1s 0.7s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara01 {
	width: 58px;
	height: 58px;
	top: calc(50% - 190px);
	left: calc(50% - 149px);
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara02 {
	width: 63px;
	height: 63px;
	top: calc(50% - 80px);
	left: calc(50% - 150px);
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara03 {
	width: 43px;
	height: 43px;
	top: calc(50% + 180px);
	left: calc(50% - -50px);
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara04 {
	width: 78px;
	height: 78px;
	top: calc(50% + 140px);
	left: calc(50% - 180px);
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara05 {
	width: 66px;
	height: 66px;
	top: calc(50% - 180px);
	left: calc(50% + 100px);
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara06 {
	width: 40px;
	height: 40px;
	top: calc(50% + 90px);
	left: calc(50% + 150px);
}

.meguriichiTop #keyVisual .inner .listImg li.gara.gara07 {
	width: 62px;
	height: 62px;
	top: calc(50% + 170px);
	left: calc(50% + 150px);
}

.meguriichiTop #keyVisual .inner .listImg li.img {
	z-index: 1;
	opacity: 0;
}

.meguriichiTop #keyVisual .inner .listImg li.img img {
	display: block;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img01 {
	width: 83px;
	top: calc(50% - 170px);
	left: calc(50% - 98px);
}

.meguriichiTop #keyVisual .inner .listImg li.img.img01.true {
	transition: all 1s 0.5s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img02 {
	width: 91px;
	top: calc(50% - 8px);
	left: calc(50% - 180px);
}

.meguriichiTop #keyVisual .inner .listImg li.img.img02.true {
	transition: all 1s 0s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img03 {
	top: calc(50% + 210px);
	left: calc(50% - 120px);
	width: 106px;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img03.true {
	transition: all 1s .2s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img05 {
	width: 108px;
	top: calc(50% - 140px);
	left: calc(50% + 150px);
}

.meguriichiTop #keyVisual .inner .listImg li.img.img05.true {
	transition: all 1s 0.3s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img06 {
	width: 77px;
	top: calc(50% + 50px);
	left: calc(50% + 180px);
}

.meguriichiTop #keyVisual .inner .listImg li.img.img06.true {
	transition: all 1s 0.1s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img07 {
	top: calc(50% + 216px);
	left: calc(50% + 130px);
	width: 85px;
}

.meguriichiTop #keyVisual .inner .listImg li.img.img07.true {
	transition: all 1s 0.6s ease;
	opacity: 1;
}

.meguriichiTop #keyVisual .inner .listImg li.kumo {
	z-index: 2;
	opacity: 0;
}

.meguriichiTop #keyVisual .inner .listImg li.kumo.kumo01 {
	width: 92px;
	height: 36px;
	top: calc(50% + 210px);
	left: calc(50% - 50px);
}

.meguriichiTop #keyVisual .inner .listImg li.kumo.kumo01.true {
	opacity: 1;
	left: calc(50% - 200px);
	transition: all 1s 1s ease;
}

.meguriichiTop #keyVisual .inner .listImg li.kumo.kumo02 {
	width: 90px;
	height: 35px;
	top: calc(50% - 160px);
	left: calc(50% + 290px);
}

.meguriichiTop #keyVisual .inner .listImg li.kumo.kumo02.true {
	opacity: 1;
	left: calc(50% + 70px);
	transition: all 1s 1s ease;
}


body.template.meguriichiTop .templateActivityWrap .activityImgWrap {
flex-direction: column;
}

/* タブ */
.meguriichiTop .tabs {
	display: flex;
	gap: 20px;
	cursor: pointer;
}
.meguriichiTop .tab.active {
	font-weight: bold;
}
.meguriichiTop .tab img {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	object-fit: cover;
	filter: brightness(0.4);
}
.meguriichiTop .tab.active img {
	filter: brightness(1.0);
}
.meguriichiTop .tabContent {
	display: none;
}
.meguriichiTop .tabContent.active {
	display: block;
}


.meguriichiTop .activityTextWrap .linkBtn a::after {
	right: 15px;
	width: 30px;
	height: 30px;
}
.meguriichiTop .templateActivityWrap .activityBoxArea {
	margin-bottom: 80px;
}
.meguriichiTop .templateActivityWrap {
	padding: 0;
	margin: 0 auto;
}
.meguriichiTop .innerWrap {
	padding: 0 20px;
	}

.meguriichiTop .mainContents {
	padding-top: 50px;
	--templateBg: none;
	position: relative;
	z-index: 0;
}
.meguriichiTop .mainContents::before {
	position: absolute;
	top: -30px;
	left: 0;
	content: "";
	width: 100%; 
    height: 30px; 
    background: url('/lib/sea-pulse/img/suki/meguriichi/wave_sp.png') repeat-x; 
    background-size: contain; 
    z-index: 1; 
}


.meguriichiTop .philosophy .philosophyWrap {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
	color: #121212 ;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	border: 6px solid #0F3CAA ;
	padding: 42px 36px;
	margin-bottom: 80px;
	display: flex;
	gap: 55px;
	flex-direction: column;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0;
}

.meguriichiTop .philosophyTitle {
	font-size: 24px;
	line-height: 2;
	font-weight: 700; 
	display: flex;
	gap: 20px;
	flex-direction: column;
	letter-spacing: 0;
}

.meguriichiTop .philosophyTitle .blue {
	color: #0F3CAA;
}

.meguriichiTop .philosophySentense {
	font-size: 16px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
}
.meguriichiTop .philosophySentense p {
	line-height: 2.4;
}

.meguriichiTop .companyName {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	text-align: right;
}


.meguriichiTop .AnchorWrap {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	margin-bottom: 80px;
}

.meguriichiTop .AnchorWrap .AnchorList {
	display: flex;
	flex-wrap: wrap;
	gap: 11px; 
	margin-bottom: 20px;
}
.meguriichiTop .AnchorWrap .AnchorList li {
	width: calc((100% - 33px) / 4);
	background-color: #0F3CAA;
	border-radius: 20px;
	position: relative;
	
}
.meguriichiTop .AnchorWrap .AnchorList li::after {
	position: absolute;
	content: '';
	pointer-events: none;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	background: url(/lib/sea-pulse/img/suki/meguriichi/icon_arrow-down.png) no-repeat;
	background-size: contain;
}
.meguriichiTop .AnchorWrap .AnchorList li a {
	padding: 10px 21px 29px 21px;
	color: #FFFFFF;
	line-height: 1.2;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	text-align: center;
	display: block;
}
.meguriichiTop .AnchorWrap .note {
	color: #0F3CAA;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	text-align: right;
	transform: rotateZ(0.03deg);
}

.meguriichiTop .areaTitle {
	text-align: center;
	margin-bottom: 40px;
}
.meguriichiTop .areaTitle img {
	max-width: 70px;
}
.meguriichiTop .areaTitle figure {
	margin-bottom: 10px;
}
.meguriichiTop .areaTitleShadowWrap {
	position: relative;
	height: 34px;
}
.meguriichiTop .areaTitleShadowWrap p {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 800;
	font-size: 24px;
	line-height: 1.4;
	text-align: center;
	z-index: 1;
	color: #FFFFFF;
}
.meguriichiTop .areaTitleShadowWrap span {
	width: 100%;
	position: absolute;
	top: 2px;
	left: calc(50% + 2px );
	transform: translateX(-50%);
	font-weight: 800;
	font-size: 24px;
	line-height: 1.4;
	text-align: center;
	color: #FFFFFF;
	/* text-shadow: 0 4px 0 #0F3CAA; */
	-webkit-text-stroke: 6px #0F3CAA;
	z-index: 0;
}
.meguriichiTop .templateActivityWrap .activityTitle {
	line-height: 1.4;
	color: #0F3CAA;
	text-align: left;
	margin-bottom: 10px;
}
.meguriichiTop .templateActivityWrap .categoryMarkList {
	font-weight: 500;
	line-height: 1;
	color: #0F3CAA;
	font-size: 12px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.meguriichiTop .templateActivityWrap .categoryMarkList li {
	border-radius: 50px;
	border: 1px solid #0F3CAA;
	padding: 10px 20px;
}

.meguriichiTop .templateActivityWrap .activityImgWrap {
	width: 100%;
}

.meguriichiTop .templateActivityWrap .activityTextWrap {
	width: 100%;
}

.meguriichiTop .templateActivityWrap .whiteBox:not(:last-child) {
	margin-bottom: 60px;
}

.meguriichiTop h2.titleSub {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 23px;
	line-height: 1.4;
	font-weight: 800;
	color: #FFFFFF;
	z-index: 1;
}
.meguriichiTop p.titleSub {
	width: 100%;
	position: absolute;
	top: 2px;
	left: calc(50% + 2px);
	transform: translateX(-50%);
	text-align: center;
	font-size: 23px;
	line-height: 1.4;
	font-weight: 800;
	color: #FFFFFF;
	text-shadow: 0 4px 0 #0F3CAA;
	-webkit-text-stroke: 11px #0F3CAA;
	z-index: 0;
}
.meguriichiTop .titleSubText {
	text-align: left;
	font-size: 16px;
	line-height: 1.8;
	color: #121212;
	color: #FFFFFF;
	margin-bottom: 40px;
}

.meguriichiTop .recautionsBox {
	background-color: #FFFFFF;
	border-radius: 30px;
	padding: 50px 30px;
	margin-bottom: 100px;
}
.meguriichiTop .recautionsBox .boxList {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.meguriichiTop .recautionsBox .boxList li .title {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 10px;
	font-weight: 900;
	color: #0F3CAA;
	transform: rotateZ(0.03deg);
}
.meguriichiTop .recautionsBox .boxList li p {
	font-size: 14px;
	line-height: 1.8;
	font-weight: 500;
	color: #121212;
	transform: rotateZ(0.03deg);
}
.meguriichiTop .recautionsBox .boxList li p a {
	color: #121212;
	text-decoration: underline;
}
.meguriichiTop .recautionsBox .boxList li .listMark li {
	font-size: 14px;
	line-height: 1.8;
	font-weight: 500;
	padding-left: 20px;
	text-indent: -1em;
	position: relative;
	transform: rotateZ(0.03deg);
}
.meguriichiTop .recautionsBox .boxList li .listMark li::before {
	padding-left: 1em;
	text-indent: -1em;
	content: '・';
	display: inline-block;

}
.meguriichiTop .titleShadowWrap {
	height: 101px;
	margin-bottom: 30px;
}
.meguriichiTop .templateActivityWrap .activityImgWrap figure {
	margin-bottom: 15px;
}
.meguriichiTop .templateActivityWrap .activityImgWrap figure img {
	border-radius: 30px;
	object-fit: cover;
	height: 220px;
	width: 100%;
}
.meguriichiTop .tabs {
	margin-bottom: 20px;
}
.meguriichiTop .templateActivityWrap .whiteBox {
	padding: 30px;
	border-radius: 50px;
}
.meguriichiTop .templateActivityWrap .activityTextWrap p {
	line-height: 1.8;
}


.linkBtnWrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.linkBtnWrap .linkBtn {
	max-width: 300px;
	width: 100%;
}
.linkBtnWrap .linkBtn a {
	font-size: 14px;
	padding: 20px 30px 20px 20px;
}

.anchorPoint {
	padding-top: 30px;
	margin-top: -30px;
}

#pageTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	z-index: 15;
}

/* 関連サイト */
.siteBottomWrap {
	margin:0;
	position: relative;
	padding-bottom: 60vw;
	background: url(/lib/sea-pulse/img/top/img_bottombg.png) no-repeat;
	background-size: 110%;
	background-position: center bottom;
}
.relatedSiteWrap {
	width: 90vw;
	margin: 0 auto;
}
.relatedSiteWrap .relatedSiteTitle {
	width: fit-content;
	margin: 0 auto 10vw;
}

.relatedSiteWrap .relatedSite {}
.relatedSiteWrap .relatedSite h3 {
	font-size: min(5.0vw, 18px);
	color: #004EA2;
	font-weight: 600;
	margin:0 0 4vw 0;
}
.relatedSiteWrap .relatedSite ul {
	display: flex;
	flex-direction: column;
	gap: 8vw;
}
.relatedSiteWrap .relatedSite ul li {
	width: 100%;
	background-color:#FFF;
	padding:12vw 6vw 10vw;
	border-radius: 15vw;

}
.relatedSiteWrap .relatedSite .DetailWrap {
	display: flex;
	flex-direction: column;
	gap: 4vw;
	align-items: flex-start;
}

.relatedSiteWrap .ttlImg {
	width: 100%;
	border-radius: 8vw;
	overflow: hidden;
}
.relatedSiteWrap .relatedDetail {
	width:100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.relatedSiteWrap .relatedDetail .linkBtn {
	margin: 4vw 0 0 0;
}
.relatedSiteWrap .relatedDetail p {
	font-size: min(3.0vw, 14px);
	line-height: 2.0;
}