<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_YLW : #ffea00;
	--color_PNK : #ff2ea8;
	/* --color_RED : #e2041b; */
	/* --color_BLU : #004eff;
	--color_lBLU : #00e6ff;
	--color_GRN : #44bc08; */
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}
.dela {
	font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
	letter-spacing: 1px;
}
.dela em {
	font-weight: normal !important;
	position: relative;
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 {
	column-gap: 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 3%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(94% / 3);
}
@media screen and (min-width:768px) {
	.flex.col2 .flex_item:nth-child(1),
	.flex.col2 .flex_item:nth-child(2) {
		margin-bottom: var(--gap_48px);
	}
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(100%, 500px);
	}
	.flex.col3 .flex_item {
		width: min(100%, 400px);
	}
	.flex.col2 .flex_item:not(:first-of-type),
	.flex.col3 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1500px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}
.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.4em;
	font-weight: bold;
	padding: 0.8em var(--gap_24px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}
.btn:hover {
	box-shadow: unset !important;
}
#btn_pagetop {
    position: fixed;
	bottom: clamp(4px, 3.4vw, 10px);
	right: clamp(4px, 3.4vw, 10px);
    z-index: 500;
}
#btn_pagetop a img {
  width: clamp(50px, 9vw, 80px);
  display: block;
}

/* =============================================================
      main コンテンツ
============================================*/
#page {
	background-color: #9b86e9;
}
.kv {
	background: url(/sp/4u_helpme/images/kv_bg.jpg) center top/100% no-repeat;
	padding-bottom: calc(var(--gap_80px) * 2);
}
.kv .inner_wrap {
	max-width: 100%;
}
.logo_wrap {
	font-size: 0em;
	width: clamp(100px,52vw,979px);
	margin: 0 auto;
	padding-top: clamp(40px,20vw,380px);
}
.logo {
	background: url(/sp/4u_helpme/images/logo.png) center center/contain no-repeat;
	padding-top: calc(665 / 979 * 100%);
}
@media screen and (max-width: 767px) {
	.kv {
		background: url(/sp/4u_helpme/images/kv_bg_mob.jpg) center top/100% no-repeat;
	}
	.logo_wrap {
		width: clamp(100px,80vw,979px);
		padding-top: clamp(40px,40vw,380px);
	}
}

.oa_date_wrap {
	text-align: center;
	color: #fff;
	padding-top: var(--gap_24px);
}
.oa_date_wrap .oa_date_wrap_inner {
	padding-top: var(--gap_24px);
	padding-bottom: var(--gap_24px);
	background: rgba(130,106,218,0.8);
	background: linear-gradient(90deg, transparent 0%, rgba(130,106,218,0.8) 30%, rgba(130,106,218,0.8) 70%, transparent 100%);
	position: relative;
}
.oa_date_wrap .oa_date_wrap_inner::before {
	content: "2025年";
	position: absolute;
	bottom: 75%;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(20px, 4vw, 68px);
	font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
	text-shadow: 0 0 0.1em #363636, 0 0 0.1em #363636, 0 0 0.2em #363636;
}
.oa_date_wrap .oa_date_wrap_inner::after {
	content: "";
	position: absolute;
	bottom: 68%;
    left: 0;
    background: url(/sp/4u_helpme/images/kv_nextoa.png) center center / contain no-repeat;
    width: clamp(100px, 22vw, 335px);
    height: clamp(58px, 13vw, 194px);
	animation: pikopiko 1s steps(2, start) infinite;
}
.oa_date_wrap .oa_date_wrap_inner.oa2::after {
    background: url(/sp/4u_helpme/images/kv_nextoa2.png) center center / contain no-repeat;
}
@keyframes pikopiko {
	0% {
	  transform: rotate(5deg);
	}
	to {
	  transform: rotate(0);
	}
}
.oa_date {
	font-size: clamp(20px, 4vw, 68px);
	line-height: 1.1;
	text-shadow: 0 0 0.1em #363636, 0 0 0.1em #363636, 0 0 0.2em #363636;
	position: relative;
}
.oa_date em {
	color: var(--color_YLW);
}
.oa_date em:not(.nml) {
	font-size: 1.4em;
}
@media screen and (max-width: 767px) {
	.oa_date {
		padding: 0 clamp(10px,30vw,250px) 0 clamp(10px,2vw,50px);
	}
	.oa_date_wrap .inner_wrap {
		padding: 0;
	}
	.oa_date_wrap .oa_date_wrap_inner::before {
		bottom: 85%;
	}
	.oa_date_wrap .oa_date_wrap_inner::after {
		left: unset;
        right: max(4vw, 10px);
        bottom: 25%;
        transform: rotate(15deg);
		width: clamp(100px, 30vw, 335px);
        height: clamp(58px, 17vw, 194px);
	}
	@keyframes pikopiko {
		0% {
		  transform: rotate(20deg);
		}
		to {
		  transform: rotate(15deg);
		}
	}
}

/* =============================================================
    コンテンツ内　共通
============================================*/
.pnk {
	color: var(--color_PNK);
}

/* =============================================================
    コンテンツ内
============================================*/
#sec_intro {
	text-align: center;
	padding-bottom: var(--gap_96px);
	background: url(/sp/4u_helpme/images/bg_intro.jpg) center bottom no-repeat;
	position: relative;
}
#sec_intro::after {
	content: "";
	position: absolute;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, #277f67 0%, #277f67 25%, #e9b200 25%, #e9b200 50%, #ca2d38 50%, #ca2d38 75%, #8a48a2 75%, #8a48a2 100%);
	width: 100%;
	height: var(--gap_24px);
	top: 100%;
	left: 0;
}
.icon_mobile {
	width: clamp(80px,14vw,255px);
	margin: 0 auto;
}
.icon_mobile img {
	margin-top: max(-12vw,-120px);
}
.intro_read p {
	font-size: clamp(14px,2.6vw,32px);
	font-weight: bold;
	text-shadow: 0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.4em #fff,0 0 0.4em #fff,0 0 0.4em #fff;
}
.intro_read p:not(:last-of-type) {
	padding-bottom: var(--gap_8px);
}
.intro_read em {
	font-size: 1.3em;
}
@media screen and (max-width: 767px) {
	#sec_intro {
		background: url(/sp/4u_helpme/images/bg_intro.jpg) center center no-repeat;
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 900px;
    margin: var(--gap_80px) auto 0;
    /* border: var(--color_GRN) 2px solid;
    padding: var(--gap_16px); */
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
	filter: drop-shadow(0 0 var(--gap_16px) var(--color_BLK));
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.yt_mov_wrap {
    max-width: 900px;
    margin: var(--gap_48px) auto 0;
}
.yt_mov_wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: solid calc(var(--gap_8px) / 2) var(--color_BLK);
    padding: var(--gap_8px);
    vertical-align: top;
}

.tver_area {
	text-align: center;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
    margin: var(--gap_64px) auto 0;
    width: clamp(250px, 50vw, 400px);
}
/* .tver_area img {
	box-shadow: 0 0 var(--gap_16px) #8cacaf;
} */
.tver_info {
    margin-bottom: var(--gap_8px);
}
.tver_info em {
	font-size: 1.3em;
	/* color: var(--color_YLW); */
}
.tver_area .tver_info_btm {
    color: inherit;
    margin: var(--gap_16px) auto 0;
    text-align: center;
    line-height: 1.2;
}

#sec_sns {
	text-align: center;
	margin-top: var(--gap_24px);
	position: relative;
	z-index: 100;
}
.text_pr01 {
	width: clamp(100px,78vw,889px);
	margin: 0 auto;
}
.text_pr01 img {
	margin-top: max(-6vw,-70px);
}
.text_pr02 {
	font-size: clamp(20px,3.8vw,48px);
	color: #fff;
	line-height: 1.2;
}
.text_pr02 *:not(.sns_title, .sns_title em) {
	text-shadow: 0 0 0.2em #826ada,0 0 0.2em #826ada,0 0 0.3em #826ada,0 0 0.3em #826ada;
}
.sns_title {
	font-size: 0.8em;
	font-weight: bold;
	padding: var(--gap_32px) 0 var(--gap_24px);
}
.sns_title em {
	font-size: 1.3em;
	line-height: 1;
    color: var(--color_BLK);
	padding: 0.2em;
    margin: 0.2em var(--gap_8px) 0;
    background-color: #fff;
    display: inline-block;
}
.sns_icon {
	display: inline-block;
	margin: 0 var(--gap_16px);
}
.sns_icon a {
	color: var(--color_BLK);
	line-height: 1;
	display: inline-block;
}
.sns_icon a .sns_font {
	font-size: clamp(24px,12.8vw,128px);
	line-height: 1;
}

#sec_helpme {
	text-align: center;
}
#sec_helpme .inner_wrap {
	max-width: 100%;
}
.helpme_title {
	font-size: clamp(20px,3.8vw,48px);
	line-height: 1.2;
	color: #fff;
	padding: var(--gap_80px) 0 var(--gap_48px);
	text-shadow: 0 0 0.2em #826ada,0 0 0.2em #826ada,0 0 0.3em #826ada,0 0 0.3em #826ada;
}
.helpme_title em {
	font-size: 1.3em;
	color: var(--color_YLW);
}


.help_title_wrap {
	width: clamp(100px,32vw,640px);
	margin: 0 auto;
	position: relative;
	z-index: 100;
}
.text_helpme {
	position: absolute;
	bottom: min(2vw, 15px);
	left: calc(50% + clamp(25px,4vw,70px));
	transform: translateX(-50%);
	width: clamp(80px,14vw,285px) !important;
	animation: pikopiko2 1s steps(2, start) infinite;
}
@keyframes pikopiko2 {
	0% {
	  transform: scale(1.2) translateX(-50%);
	}
	to {
	  transform: scale(1) translateX(-50%);
	}
}

.tablet_top {
	margin-top: max(-15vw,-300px);
}
.helpme_wrap {
	column-gap: 1% !important;
	justify-content: center;
}
.helpme_wrap .flex_item {
	margin-bottom: 0 !important;
}
.helpme_wrap .flex_item_inner {
	padding: clamp(60px,11vw,225px) clamp(20px,4vw,90px) clamp(20px,3vw,60px);
	margin-top: -1px;
	background: url(/sp/4u_helpme/images/tablet_mid.png) center top/100% repeat-y;
}
.swiper_wrap {
	position: relative;
	z-index: 150;
}
.swiper_helpme  {
	border: solid calc(var(--gap_8px) / 2) #000;
}
.help01 .swiper_wrap::after {
	position: absolute;
	z-index: 200;
	content: "";
	background: url(/sp/4u_helpme/images/text_help01.png) center center / contain no-repeat;
	left: var(--gap_24px);
    bottom: min(-2vw,-10px);
    width: clamp(50px,10vw,190px);
	height: clamp(23px,4.6vw,88px);
}
.help02 .swiper_wrap::after {
	position: absolute;
	z-index: 200;
	content: "";
	background: url(/sp/4u_helpme/images/text_help02.png) center center / contain no-repeat;
	left: var(--gap_24px);
    bottom: min(-2vw,-10px);
    width: clamp(50px,10vw,190px);
	height: clamp(23px,4.6vw,88px);
}
@media screen and (max-width: 767px) {
	.helpme_wrap {
		padding: 0 var(--gap_24px);
	}
	.help_title_wrap {
		width: clamp(100px,66vw,370px);
	}
	.text_helpme {
		bottom: max(1.4vw, 14px);
		left: calc(50% + max(4vw, 30px));
		width: clamp(80px, 30vw, 160px) !important;
	}
	.tablet_top {
		margin-top: max(-30vw, -160px);
	}
	.helpme_wrap .flex_item_inner {
		padding: clamp(60px,22vw,115px) clamp(20px,10vw,50px) clamp(30px,3vw,60px);
	}
}

.btm_wrap {
	font-size: clamp(20px,3.8vw,48px);
    color: #fff;
    padding: var(--gap_48px) 0;
	border-top: solid var(--gap_64px) #000;
    background: linear-gradient(90deg, #277f67 50%, #e9b200 50%);
	position: relative;
}
.btm_wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ca2d38 50%, #8a48a2 50%);
}
.btm_wrap .inner_wrap {
	position: relative;
	z-index: 150;
}
.btm_logo {
	width: clamp(80px,44vw,380px);
	margin: 0 auto var(--gap_24px);
}
.btm_read p {
	text-shadow: 0 0 0.1em #363636, 0 0 0.1em #363636, 0 0 0.2em #363636;
}

</pre></body></html>