<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ---------------------------------------------------------------------------
 * ROOT
--------------------------------------------------------------------------- */
:root {
	--color_01: #008ae5; /* var(--color_01) */
	--color_02: #ffd942; /* var(--color_02) */
	
	/*英語フォント*/
	--txt_eng: "A1 Gothic B"; /* var(--txt_eng) */
	/*日本語フォント*/
	--txt_jpn: "Noto Sans", sans-serif; /* var(--txt_jpn) */
}
/* ---------------------------------------------------------------------------
 * RESET STYLE
--------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* =============================================
 COMMON
============================================= */
body {
	background: #0091f2;
	font-family: 'Roboto', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	line-height: 1;
	-webkit-text-size-adjust: none;
}
body::before{
    content: "";
	width: 100vw;
	height: 100vh;
	background: url("../../img/2025/about_bg.jpg");
	background-size: cover;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateZ(0);
}
img {
	max-width: 100%;
	vertical-align: middle;
}
a {
	color: var(--color_01);
	text-decoration: none;
}
b {
	font-weight: bold;
}
.wrap {
	overflow: hidden;
}
@media print, screen and (max-width:640px) {
	.onlyPC {
		display: none !important;
	}
	.onlyTAB {
		display: none !important;
	}
	.onlySP {
		display: block;
	}
}
@media print, screen and (min-width:641px) {
	.onlyPC {
		display: block;
	}
	.onlySP {
		display: none !important;
	}
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
	.onlyTAB {
		display: block;
	}
	.noTAB {
		display: none !important;
	}
}
@media print, screen and (min-width:1001px) {
	.onlyTAB {
		display: none !important;
	}
}
/**/

.wrap_box{
	max-width: 1000px;
	padding: 35px;
	margin: 2rem auto 0;
	background: #fff;
	box-sizing: border-box;
	border-radius: 15px;
	border: 1px solid #000;
	box-shadow: 7px 7px 0px 0 rgb(0, 0, 0);
}

@media screen and (max-width:641px) {
.wrap_box.pt_space{
	padding: 35px 15px;
}
}

@media screen and (min-width:641px) {
	.wrap_box{
		padding: 70px 40px;
		margin: 4rem auto 0;
	}
}

.wrap_box_02{
	max-width: 1000px;
	padding: 90px 35px 80px;
	margin: 4rem auto;
	background: #fff;
	position: relative;
	box-sizing: border-box;
	border-radius: 15px;
	border: 1px solid #000;
	box-shadow: 7px 7px 0px 0 rgb(0, 0, 0);
}
/* .wrap_box_02::before{
	content: "";
    width: 25vw;
    height: 25vw;
    background: url(../../img/2025/img_member_02.png) no-repeat;
    background-size: contain;
    position: absolute;
}
.wrap_box_02::after{
	content: "";
    width: 25vw;
    height: 25vw;
	background: url(../../img/2025/img_member_01.png) no-repeat;
    background-size: contain;
    position: absolute;
} */

@media screen and (min-width:641px) {
	.wrap_box_02{
		padding: 60px 40px;
	}
	/* .wrap_box_02::before,
	.wrap_box_02::after{
		width: 160px;
		height: 160px;
	}
	.wrap_box_02::before {
		top: -6%;
		left: 2%;
	}
	.wrap_box_02::after {
		bottom: -6%;
		right: 2%;
	} */
}
/* @media screen and (max-width:640px) {
	.wrap_box_02::before {
			top: -4%;
			left: 2%;
		}
	.wrap_box_02::after {
		bottom: -4%;
		right: 2%;
	}
} */
@media screen and (max-width:540px) {
	.wrap_box_02{
		padding: 35px 35px;
		margin: 2rem auto;
	}
	/* .wrap_box_02::before {
		top: -2%;
		left: 2%;
	}
	.wrap_box_02::after {
		bottom: -2%;
		right: 2%;
	} */
}
/* @media screen and (max-width:400px) {
	.wrap_box_02{
		padding-top: 70px;
	}
} */

/* =============================================
 protect
============================================= */
.protect {
    display: block;
    position: relative;
    -webkit-user-drag: none;
    user-select: none;
}
.protect::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.protect img {
    -webkit-user-drag: none;
    pointer-events: none;
}
@media print {
    .protect {
        display: none !important;
    }
}
/* =============================================
contents
============================================= */
#wrap {}
/* =============================================
 header
============================================= */
header {
    width: 100%;
	position: relative;
}
header .header-img img,
header .header-info img {
	width: 100%;
}
header .header-img{

}
.header-info{
	width: 90%;
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media screen and (min-width:641px) {
	.header-info{
        width: 70%;
        bottom: 11%;
	}
}
/* .fade {
    animation: fadeIN 2s cubic-bezier(0.25, 1, 0.5, 1) 3s 1 forwards;
}
@keyframes fadeIN {
    0% {
        opacity: 0;
		filter: brightness(2);
    }
    100% {
        opacity: 1;
		filter: brightness(1);
    }
}
.zoomin {
    animation: zoomIn 3.5s ease-in-out 1 forwards;
}
@keyframes zoomIn {
    0% {
        transform: scale(1.5) translate(-50%, -50%);
    }
    30% {
        transform: scale(1) translate(-50%, -50%);
        opacity: 1;
    }
    85% {
		top: 50%;
        transform: scale(1) translate(-50%, -50%);
        opacity: 1;
		filter: brightness(0) invert(1);
    }
    100% {
		top: 6%;
        transform: scale(1) translate(-50%, 0);
        opacity: 1;
		filter: brightness(1) invert(0);
    }
} */

/* =============================================
font
============================================= */
/*p {
   font-size: 1rem;
}*/
p + p{
	margin-top: 1em;
}
p:last-child {
    margin-bottom: 0;
}
.font_eng{
	font-family: var(--txt_eng);
}
.font_jpn{
	font-family: var(--txt_jpn);
}
@media screen and (min-width:641px) {
    /*p {
    font-size: 1.2rem;
    }*/
    .txtCenterPC {
    text-align: center;
    }
}
@media screen and (max-width:640px) {
    .txtCenterSP {
    text-align: center;
    }
}
/* =============================================
 container
============================================= */
.container {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    /*font-size: 1.6rem;*/
    line-height: 1.6;
    overflow: hidden;
}
.cont {
    width: 100%;
    padding: 40px 0;
    margin: 0;
    box-sizing: border-box;
	/* overflow: hidden; */
    color: #000;
}
.inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
	position: relative;
	z-index: 1;
}
@media screen and (min-width:641px) {
	.cont {
		padding: 60px 0;
	}
}

/* =============================================
 title
============================================= */
.title_box {
    position: relative;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 800px;
}
.title_box.txt_shadow{
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.title_box h2 {
    margin-bottom: 40px;
}
.title_box h2 span {
    display: block;
}
.ttl_eng {
	font-size: 5rem;
	font-size: clamp(3rem, 7.5vw, 4.5rem);
	font-family: var(--txt_eng);
	letter-spacing: 1px;
	line-height: 1;
	text-align: center;
}
.ttl_jpn {
	margin-bottom: 5%;
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-family: var(--txt_jpn);
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
	text-align: center;
}
.ttl_eng + .ttl_jpn {
	margin-top: 0.75em;
}
@media screen and (min-width:641px) {
	.title_box h2 {
		margin-bottom: 60px;
	}
}
/* =============================================
 about
============================================= */

@media screen and (max-width:640px) {
	.bg_01 {
		background: url("../../img/2025/back_sp.png"), url("../../img/2025/back_sp_end.png"), #2da6f2;
		background-position: center top, center bottom, center;
		background-size: 100%, 100%, 100%;
		background-repeat: no-repeat, no-repeat, no-repeat;
		padding: 8vw 0 8vw;
	}
}

.about {
    /*background: #0091f2;*/
	/* position: relative; */
}
/* .about::before{
	content: "";
	width: 100vw;
	height: 100vh;
	background: url("../img/2025/about_bg.jpg");
	background-size: cover;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateZ(0);
} */
/*.about::before,
.about::after {
    content: "";
	width: 80%;
	height: 100%;
    background: url(../../img/2024/bg_cloud.png) top center repeat-y;
    background-size: 100%;
	position: absolute;
}
.about::before{
	top: 10%;
	left: -35%;
}
.about::after{
	top: 30%;
	right: -35%;
}*/
/* .about_grid{
	max-width: 1000px;
	margin: 0 auto 30px;
}
.about_grid .txt{
	padding: 5px;
	background: #fff url("../../img/2024/bg_strip.png");
	background-size: 60px;
	position: relative;
}
.about_grid .txt .txt_inner {
    height: 100%;
	padding: 7%;
	background: #fff;
	box-sizing: border-box;
	font-family: "Reimin Y40 Bold";
	font-size: clamp(1rem, 2.5vw, 1.062rem);
	line-height: 2;
} */
.ttl_about {
	margin-bottom: 0.75em;
	color: var(--color_01);
	/*font-size: clamp(1.5rem, 3.7vw, 2.75rem);*/
	font-size: 6vw;
    /*font-family: var(--txt_jpn);*/
    letter-spacing: -0.1em;
    text-align: center;
    line-height: 1.3;
}
.font_jpn_01{
	font-family: "Noto Sans", sans-serif;
}
.font_jpn_02{
	font-family: "A1 Gothic B";
}
.txt_color_blue{
	color: #0051ad;
}
.ttl_about &gt; span {
	display: block;
}
.ttl_about .txtL{
	font-size: 7vw;
	line-height: 7.5vw;
	background: linear-gradient(transparent 50%, #fbff00 50%);
	display: inline-block;
}

/* .ttl_about span:first-child {
	text-align: left;
}
.ttl_about span:nth-child(2) {
	transform: translateX(-5%);
}
.ttl_about span:last-child {
	text-align: right;
} */
.profile{
	max-width: 1000px;
	padding: 15px;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
}
.profile_txt .member{
	background-color: #e6e6e6;
	padding: 3% 0 2%;
	margin: 1% 0 5%;
	border-radius: 5px;
}
.profile_img img{
	border-radius: 15px;
}
@media screen and (max-width:640px) {
	.profile_txt .member{
		margin: 3% 0 5%;
		padding: 4% 0 3%;
	}
}
@media screen and (max-width:640px) {
	.profile_txt{
		margin-top: 15px;
	}
}
@media screen and (max-width:768px) {
	.about_grid .img{
		margin-top: 30px;
	}
	.about_grid .img ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.about_grid .img li{
		width: 48%;
	}
	.about_grid .img li:first-child{
		width: 100%;
		margin-bottom: 4%;
	}
}
@media screen and (min-width:641px) {
	/*.about::before,
	.about::after {
		background-size: auto;
	}*/
	.profile{
		padding: 30px;
		background: #fff;
		display: flex;
		justify-content: space-between;
	}
	.profile_img{
		width: 100%;
		margin: 0 auto;
		text-align: center;
		flex-shrink: 0;
	}
	.profile_txt{
		width: 100%;
        box-sizing: border-box;
	}
}

@media screen and (min-width:769px) {
	.about_grid{
		margin: 0 auto 60px;
		display: flex;
		justify-content: space-between;
	}
	.about_grid .img{
		width: 40%;
		order: 1;
	}
	.about_grid .img img{
		width: 90%;
	}
	.about_grid .img li{
				margin-bottom: 10px;
	}
	.about_grid .img li:nth-child(2){
		text-align: right;
	}
	.about_grid .img li:last-child{
		margin-bottom: 0;
		text-align: center;
	}
	.about_grid .txt{
		padding: 10px;
		width: 55%;
		background-size: 120px;
		order: 2;
	}
	.about_grid .txt .txt_inner {
		padding: 30px;
		display: flex;
		align-items: center;
		text-align: center;
		font-size: clamp(0.875rem, 1.5vw, 1.062rem);
	}
	.about_grid .txt .txt_inner p span {
		display: inline-block;
	}
	/* .ttl_about {
		font-size: clamp(1.3rem, 3.5vw, 2rem);
	} */
	/* .ttl_about .txtL{
		font-size: clamp(2rem, 4vw, 2.6rem);
		line-height: 1.3;
		background: linear-gradient(transparent 50%, #fbff00 50%);
	} */
}
	@media screen and (min-width:640px) {
	.ttl_about {
		font-size: clamp(1.3rem, 3.5vw, 2rem);
	}
		.ttl_about .txtL{
		font-size: clamp(2rem, 4vw, 2.6rem);
		line-height: 1.3;
		background: linear-gradient(transparent 50%, #fbff00 50%);
	}
}


/* =============================================
 comment
============================================= */
.bg_02{
	background: url("../../img/2025/back_illust.jpg"), url("../../img/2025/back_illust.jpg"), #13a450;
	background-position: center top, center bottom, center;
}

/* @media screen and (min-width:769px) {
.bg_02{
	background-size: 50%, 50%, 50%;
	background-repeat: repeat-x;
	padding: 8vw 4vw 8vw;
}
} */
  @media screen and (min-width:1000px) {
.bg_02{
	background-size: 50%, 50%, 50%;
	background-repeat: repeat-x;
	padding: 8vw 0 8vw;
}
}
 @media screen and (min-width:641px) {
.bg_02{
	background-size: 70%, 70%, 70%;
	background-repeat: repeat-x;
	padding: 10vw 0 10vw;
}
}
 @media screen and (max-width:640px) {
.bg_02{
	background-size: 125%, 125%, 125%;
	background-repeat: repeat-x;
	padding: 18vw 0 18vw;
}
}


/* .comment {
    background: #13a450;
	position: relative;
} */
/* .comment::before {
    content: "";
	width: 100%;
	height: 30%;
	background: linear-gradient(rgba(48,102,10,0.3),rgba(48,102,10,0.0));
	position: absolute;
	top: 0;
	left: 0;
} */
.comment .title_box {
	color: #fff;
}
.comment_list{
	margin-top: 30px;
	display: flex;
}
.comment_list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.comment_list li{
	width: 48%;
	margin-bottom: 4%;
}
.comment_list a{
    color: #222;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	transition: .3s;
}
@media screen and (min-width:769px) {
	.comment_list{
		margin-top: 60px;
	}
	.comment_list ul{
		flex-wrap: inherit;
	}
	.comment_list li{
		width: 23%;
		margin-bottom: 0;
	}
}
@media (hover: hover) {
	.comment_list a:hover{
		transform: rotate(-5deg) scale(1.05);
		box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
	}
}

/* photo_flame */
.photo_flame{
	padding: 15px 15px 0 15px;
    background: #fff;
	display: block;
	position: relative;
    color: #222;
}
a.photo_flame::before{
	content: "";
	position: absolute;
    border-top: 6px solid transparent;
    border-right: 6px solid #ffea00;
    border-bottom: 6px solid #ffea00;
    border-left: 6px solid transparent;
    right: 5px;
    bottom: 5px;
}
.photo_flame .txt{
	padding: 10px 0 15px;
	display: block;
	font-family: var(--txt_jpn);
	letter-spacing: -0.1em;
	font-style: italic;
}
.photo_flame .txt span{
	display: block;
	text-align: center;
    line-height: 1.3;
}
.txt .name{
	font-size: clamp(1.5em, 3.1vw, 1.75em) ;
}
.txt .postion{
	font-size: clamp(0.875em, 1.8vw, 1em) ;
}
@media screen and (min-width:641px) {
	a.photo_flame::before{
		border-width: 10px;
	}
}

/* popup */
.box_inner{
	padding: 5%;
	position: relative;
    overflow: hidden;
}
.box_inner::after{
	content: "";
    width: 20vw;
    height: 20vw;
    /* background: url(../../img/2024/bg_strip_02.png) no-repeat; */
    background-size: contain;
    position: absolute;
    opacity: 0.2;
}
.box_inner::after {
    bottom: 0;
    right: 0;
	transform: rotate(185deg);
}
.box_inner .img{
	text-align: center;
}
.box_inner .txt{
	line-height: 1.6;
}
.box_inner .wrap_name{
	font-size: 1.25em;
	line-height: 1.3;
}
.box_inner .txt .name,
.box_inner .txt .postion{
	font-family: var(--txt_jpn);
	letter-spacing: -0.1em;
	font-style: italic;
}
@media screen and (max-width:640px) {
	.box_inner .wrap_name{
		margin: 15px 0;
		text-align: center;
	}
}
@media screen and (min-width:641px) {
	.box_inner{
		padding: 30px;
		display: flex;
	}
	.box_inner::after{
		width: 90px;
		height: 90px;
	}
	.box_inner .img{
		width: 30%;
		flex-shrink: 0;
	}
	.box_inner .txt{
		width: 100%;
		padding-left: 30px;
	}
	.box_inner .wrap_name{
		margin-left: -0.25em;
	}
}

/**/
.message {
	padding: 15px 30px;
	margin-top: 30px;
	margin-bottom: 40px;
	background: #fff;
	position: relative;
	/*overflow: hidden;*/
}
.message::before{
	content: "";
    width: 20vw;
    height: 20vw;
    /* background: url(../../img/2024/bg_strip_02.png) no-repeat; */
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}

.message .ttl_message {
	margin-bottom: 0.5em;
	position: relative;
	font-family: var(--txt_jpn);
	color: var(--color_01);
	font-size: clamp(1.5em, 3.7vw, 2.75em) ;
	font-style: italic;
	text-align: center;
	letter-spacing: -0.1em;
	line-height: 1.3;
}
.message .ttl_message span {
	display: inline-block;
}
.message .txt {
	width: 85%;
    margin: 0 auto;
	position: relative;
}
.message .txt::after{
    content: "";
	width: 45px;
    height: 55px;
    /* background: url(../../img/2024/img_arrow.png) no-repeat; */
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -50px;
    transform: rotate(15deg);
}
@media screen and (min-width:641px) {
	.message {
		padding: 30px;
		margin-top: 60px;
		text-align: center;
	}
	.message::before{
		width: 90px;
		height: 90px;
	}
	.message .txt::after {
        width: 55px;
        height: 80px;
        right: -70px;
	}
	.message .txt {
		width: auto;
		display: inline-block;
	}
}


/**/
.comment_qa {
	padding: 35px 35px 80px;
	margin: 80px 0 60px;
	background: #fff;
	position: relative;
	/* overflow: hidden; */
	border-radius: 15px;
	border: 1px solid #000;
	box-shadow: 7px 7px 0px 0 rgb(0, 0, 0);
}
.comment_qa .mb_space{
	margin-bottom: 10%;
}
@media screen and (max-width:1000px) {
	.comment_qa .mb_space{
		margin-bottom: 15%;
	}
}
@media screen and (max-width:800px) {
	.comment_qa .mb_space{
		margin-bottom: 20%;
	}
}
@media screen and (max-width:640px) {
	.comment_qa .mb_space{
		margin-bottom: 27%;
	}
}
.comment_qa::before{
	content: "";
    width: 25vw;
    height: 25vw;
    background: url(../../img/2025/img_member_04.png) no-repeat;
    background-size: contain;
    position: absolute;
}
.comment_qa::after{
	content: "";
    width: 25vw;
    height: 25vw;
	background: url(../../img/2025/img_member_03.png) no-repeat;
    background-size: contain;
    position: absolute;
}
.comment_qa .image01::before{
	content: "";
    width: 25vw;
    height: 25vw;
    background: url(../../img/2025/img_member_01.png) no-repeat;
    background-size: contain;
    position: absolute;
}
.comment_qa .image01::after{
	content: "";
    width: 25vw;
    height: 25vw;
    background: url(../../img/2025/img_member_02.png) no-repeat;
    background-size: contain;
    position: absolute;
}
.comment_qa .image02::after{
	content: "";
    width: 25vw;
    height: 25vw;
    background: url(../../img/2025/img_member_05.png) no-repeat;
    background-size: contain;
    position: absolute;
} 
.comment_qa .ttl_comment_qa {
	margin-bottom: 0.5em;
	position: relative;
	color: #000;
	font-size: clamp(1.5em, 3.7vw, 2.75em) ;
	text-align: center;
	line-height: 1.3;
}
.comment_qa .ttl_comment_qa span {
	display: inline-block;
}
.comment_qa .question {
	padding-left: 5em;
	margin-top: 2em;
	font-weight: bold;
	position: relative;
	font-family: "Noto Sans", sans-serif;
}
.comment_qa .question:before {
	content: "";
	width: 4em;
	height: 1px;
	background: #000;
	display: block;
	position: absolute;
	top: 0.7em;
	left: 0;
}
.comment_qa .answer {
	padding-left: 5em;
	position: relative;
	font-family: "Noto Sans", sans-serif;
}
.comment_qa .answer span {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
}
@media screen and (min-width:641px) {
	.comment_qa {
		padding: 70px 40px 90px;
		margin-top: 100px;
	}
	.comment_qa::before,
	.comment_qa::after,
	.comment_qa .image01::before,
	.comment_qa .image01::after,
	.comment_qa .image02::after{
		width: 160px;
		height: 160px;
	}
	.comment_qa::before {
		top: -4%;
		left: 2%;
	}
	.comment_qa::after {
		bottom: -4.5%;
		left: 2%;
	}
	.comment_qa .image01::before {
		top: 19.5%;
		right: -5%;
	}
	.comment_qa .image01::after {
		top: 46%;
		left: -9%;
	}
	.comment_qa .image02::after {
		top: 65.5%;
		right: -6%;
	}

}
@media screen and (max-width:980px) {
	.comment_qa .image01::before {
		top: 18.5%;
		right: -5%;
	}
	.comment_qa .image01::after {
		top: 44.5%;
		left: -7%;
	}
}
@media screen and (max-width:780px) {
	.comment_qa .image01::before {
		top: 17.5%;
		right: -5%;
	}
}
@media screen and (max-width:640px) {
.comment_qa::before {
		top: -4%;
		left: 2%;
	}
	.comment_qa::after {
		bottom: -3%;
		left: 2%;
	}
	.comment_qa .image01::before {
		top: 16%;
		right: -5%;
	}
	.comment_qa .image01::after {
		top: 45.5%;
		left: -7%;
	}
	.comment_qa .image02::after {
		top: 66%;
		right: -6%;
	}
}
@media screen and (max-width:540px) {
	.comment_qa::before {
		top: -2%;
		left: 2%;
	}
	.comment_qa::after {
		bottom: -2%;
		right: 2%;
	}
	.comment_qa .image01::before {
		top: 15.5%;
		right: -5%;
	}
	.comment_qa .image02::after {
		top: 66.5%;
		right: -6%;
	}
}
@media screen and (max-width:420px) {
	.comment_qa::before {
		top: -1.5%;
		left: 2%;
	}
	.comment_qa .image01::before{
		top: 16%;
		right: -5%;
	}
	.comment_qa .image01::after{
		top: 46.5%;
		left: -7%;
	}
	.comment_qa .image02::after {
		top: 67%;
		right: -6%;
	}
	.comment_qa::after{
		bottom: -1%;
		right: 2%;
	}
}
@media screen and (max-width:390px) {
	.comment_qa .image02::after {
		top: 67%;
		right: -6%;
	}
}
@media screen and (max-width:375px) {
	.comment_qa::before {
		top: -1.2%;
		left: 2%;
	}
	.comment_qa .image01::before{
		top: 15.7%;
		right: -5%;
	}
	.comment_qa .image01::after{
		top: 46.5%;
		left: -7%;
	}
	.comment_qa::after{
		bottom: -1%;
		right: 2%;
	}
}

/* =============================================
 関連番組
============================================= */
.bg_03 {
    background: url("../../img/2025/program_bg_pc.jpg") 10% 30%;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width:640px) {
.bg_03 {
    background: url("../../img/2025/program_bg_sp.jpg") 10% 30%;
    background-size: cover;
    background-repeat: no-repeat;
}
}
/* .program {
    background: #ccebff;
	position: relative;
} */
/* .program::before{
	content: "";
	width: 100vw;
	height: 100vh;
	background: url("../../img/2025/program_bg.jpg");
	background-size: cover;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateZ(0);
} */
/* .program::before {
    content: "";
	width: 100vw;
	height: 100vw;
    background: url("../../img/2025/program_bg.jpg");
    background-size: cover;
	position: absolute;
} */
/* .program::before,
.program::after {
    content: "";
	width: 80%;
	height: 100%;
    background: url(../../img/2024/bg_cloud.png) top center repeat-y;
    background-size: 100%;
	position: absolute;
} */
/* .program::before{
	top: 10%;
	left: -35%;
}
.program::after{
	top: 30%;
	right: -35%;
} */
.program .bnr-box {
    width: 50%;
    margin: 0 auto;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; */
}
.program .title_box {
	color: #000;
	position: relative;
}
/* .program .title_box::before {
	content: "";
    width: 25vw;
    height: 25vw;
    background: url(../../img/2025/img_member_05.png) no-repeat;
    background-size: contain;
    position: absolute;
} */
/* @media screen and (min-width:641px) {
	.program .title_box::before {
		width: 180px;
		height: 180px;
	}
	.program .title_box::before {
		top: -120%;
		left: 0;
	}
}
@media screen and (max-width:640px) {
	.program .title_box::before {
			top: -120%;
			left: 0;
		}
	} */
/* @media screen and (max-width:540px) {
	.program .title_box::before {
		top: -120%;
		left: 2%;
	}
} */
.program .bnr-box a {
    display: block;
    flex-basis: 48%;
	color: #222;
}
.program .bnr-box .bnr {
    margin-bottom: 8%;
    overflow: hidden;
}
.program .bnr-box .bnr .img {
    overflow: hidden;
}
.program .bnr-box .bnr img {
    transition: all 0.5s;
    width: 100%;
}
.program .bnr-box .bnr .bnr-info {
    text-align: left;
    background-color: #fff;
    padding: 10px;
    line-height: 1.5;
}
.program .bnr-box .bnr .bnr-info h3 {
    font-weight: 900 !important;
    font-size: 1rem;
}
.program .bnr-box .bnr .bnr-info p {
    font-size: 0.9rem !important;
    line-height: 1.4;
}
@media screen and (min-width:641px) {
	.program::before,
	.program::after {
		background-size: auto;
	}
}
@media (hover: hover) {
	.program .bnr-box .bnr img:hover {
		transform: scale(1.05, 1.05);
	}
}

/* =============================================
 youtube
============================================= */
.info-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.info-video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:640px) {
    .cont-video {
        width: 92%;
    }
}

.video_box1{
	width: 92%;
	max-width: 800px;
	margin:-20px auto 60px;
	position: relative;
}
.video_box2{
	width: 92%;
	max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	margin: 40px auto 0;
	position: relative;
	box-sizing: border-box;
}

.video_img_wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
.video_img_wrap:after {
	position: absolute;
	top: 0;
	left: 0;
	background:url("../../img/2023/arrow_vidio.png") center center no-repeat rgba(0,0,0,0.37);
	background-size: 10%;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
}
.video_img{
  width: 800px;
  height: 450px;
  object-fit: cover;
    overflow: hidden;
	margin: 0 auto;
}

@media screen and (min-width:769px) and (max-width:1000px)  {
.video_img_wrap {
	max-width: 640px;
}
.video_img{
  width: 640px;
  height: 360px;
}
p.videottl {
    max-width: 640px;
}
}

@media screen and (max-width:768px) {
.video_box1{
	margin: 0 auto 1em;

}
.video_box2{
	margin: 2em auto 0;
}
.video_img{
  width: 88vw;
  height: 48vw;
}
}
/* =============================================
 SNSシェア
============================================= */
.wrap_sblink {
    margin: 0;
    width: 100%;
    position: relative;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}
.sblink dt {
    margin-bottom: 15px;
    text-align: center;
    font-weight: 900;
}
.sblink dt span:before {
    content: "/";
    margin-right: 0.25em;
    display: inline-block;
    transform: scale(-1, 1) translateY(0.1em);
    font-size: 1.4em;
}
.sblink dt span:after {
    content: "/";
    margin-left: 0.25em;
    display: inline-block;
    transform: translateY(0.1em);
    font-size: 1.4em;
}
.list_sblink {
    font-size: 0;
    text-align: center;
}
.list_sblink li {
    margin: 0 0.4rem;
    display: inline-block;
}
.list_sblink li a {
    width: 16vw;
    height: 16vw;
    padding: 3vw;
    background: #000;
    border-radius: 100%;
    box-sizing: border-box;
    display: block;
    transition: all .3s;
}
.list_sblink li a img {
    max-width: 100%;
    vertical-align: middle;
}
.list_sblink li.sblink_twitter a {
    background: #1da1f2;
}
.list_sblink li.sblink_facebook a {
    background: #1877f2;
    ;
}
.list_sblink li.sblink_line a {
    background: #00b900;
}
@media screen and (min-width:375px) {
    .list_sblink li a {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
}
@media screen and (min-width:1000px) {
    .list_sblink li {
        margin: 0 0.6rem;
    }
}
/* ------------------------------------
 * footer
------------------------------------ */
.footer_wrap {
    background:#000;
	position: relative;
    color: #fff;
}
.footer_wrap a{
    color: #fff;
}
.footer {
    max-width: 1000px;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
}

.footer_copy {
    font-size: 0.875rem;
}
.footer .pageTop {
    position: absolute;
	top: -30px;
    right: 10px;
}
.pageTop a {
	width: 60px;
	height: 60px;
	background: var(--color_01);
	border-radius: 100%;
	display: block;
	position: relative;
}
.pageTop a::before {
	content: "";
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translate(-50%, -30%) rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 50%;
}
@media screen and (min-width:1000px) {
    .footer .pageTop {
		top: -40px;
        right: 30px;
    }
	.pageTop a {
		width: 80px;
		height: 80px;
		transition: all .3s;
	}
	.pageTop a::before {
		width: 20px;
		height: 20px;
		border-top: 4px solid #fff;
		border-right: 4px solid #fff;
	}
}
@media (hover: hover) {
	.pageTop a:hover {
		transform: translate(0, -10px);
	}
}
/* =============================================
 メニュー調整
============================================= */

@media screen and (max-width:640px) {
.pageMenu .side-menu {
    font-size: 1.14em !important;
}
}
@media screen and (min-width:1001px) {
.pageMenu .side-menu {
    font-size: 1.14em !important;
}
}
/* =============================================
 アクセス時モーダル表示
============================================= */
.popup_inline_open {
    background: #fff;
    line-height: 1.6;
}

/* ---------------------------------------------------------------------------
 * 汎用
--------------------------------------------------------------------------- */
/* テキスト
------------------------------------ */
.fs_xs {
	font-size: 0.75em !important;
}
.fs_s {
	font-size: 0.875em !important;
}
.fs_l {
	font-size: 1.25em !important;
}
.fs_xl {
	font-size: 1.5em !important;
}
.fs_xll {
	font-size: 1.9em !important;
}
.fs_res_s {
	font-size: clamp(0.875em, 2.2vw, 1em) !important;
}
.fs_res_l {
	font-size: clamp(1em, 2.5vw, 1.25em) !important;
}
.fs_res_xl {
	font-size: clamp(1.125em, 2.8vw, 1.5em) !important;
}
.fs_inherit {
	font-size: inherit !important;
}
.fw_normal {
	font-weight: normal !important;
}
.fw_bold {
	font-weight: bold !important;
}
.ti-05 {
	text-indent: -0.5em !important;
}
.ls01 {
	letter-spacing: 0.1em !important;
}
.ls-005 {
	letter-spacing: -0.05em !important;
}
.ls-01 {
	letter-spacing: -0.1em !important;
}
.ls-02 {
	letter-spacing: -0.2em !important;
}
.ls-03 {
	letter-spacing: -0.3em !important;
}

.ta_left {
	text-align: left !important;
}
.ta_right {
	text-align: right !important;
}
.ta_center {
	text-align: center !important;
}
.week {
	margin: 0 -0.5em;
	display: inline-block;
	font-size: 0.875em;
}
/* レイアウト
------------------------------------ */
.mt0 {
	margin-top: 0 !important;
}
.mt15 {
	margin-top: 15px !important;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb15 {
	margin-bottom: 15px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mt_1em {
	margin-top: 1em !important;
}
.mb_1em {
	margin-bottom: 1em !important;
}
.w_100 {
	width: 100% !important;
}
.d_ib{
	display: inline-block;
}</pre></body></html>