@charset "UTF-8";
/*--------------------------------------------------
  メインビジュアル（ファーストビュー）
--------------------------------------------------*/
.main_visual {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 82px);
	margin-top: 82px;
}
@media screen and (max-width: 767px) {
	.main_visual {
		min-height: 100dvh;
		margin-top: 0;
	}
}

.main_visual > div {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	/* padding: 2em; */
	text-align: center;
}

.main_visual .first_step_view {
	background-color: #00b8ff;
}

.main_visual .first_step_view img {
	opacity: 0;
	width: 50%;
}
@media screen and (max-width: 767px) {
	.main_visual .first_step_view img {
		width: 85%;
	}
}

.main_visual .second_step_view .second_step_view_1,
.main_visual .third_step_view .second_step_view_1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.main_visual .second_step_view .second_step_view_1 img,
.main_visual .third_step_view .second_step_view_1 img {
	width: 100%;
	height: 100%;
}

.main_visual .second_step_view .second_step_view_2 {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 1;
	transform: translateX(-50%) translateX(-350px);
	width: 45vw;
	max-width: 1000px;
}

.main_visual .second_step_view .second_step_view_3 {
	position: absolute;
	left: 50%;
	bottom: 5vw;
	z-index: 1;
	transform: translateX(-50%) translateX(300px);
	width: 40vw;
	max-width: 800px;
}

@media screen and (max-width: 767px) {
	.main_visual .third_step_view .second_step_view_1 img {
		height: 100%;
	}
}

.main_visual .third_step_view .third_step_view_message {
	position: relative;
}
@media screen and (max-width: 767px) {
	.main_visual .third_step_view .third_step_view_message {
		top: 5vw;
	}
}

.main_visual .third_step_view .third_step_view_message p {
	text-align: left;
	color: #000;
}

.main_visual .third_step_view .third_step_view_message .text {
	margin-top: 20px;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.8;
}
@media screen and (max-width: 1440px) {
	.main_visual .third_step_view .third_step_view_message .text {
		margin-top: 10px;
		font-size: 1.1rem;
		line-height: 1.6;
	}
}
@media screen and (max-width: 767px) {
	.main_visual .third_step_view .third_step_view_message .text {
		margin-top: 0;
		font-size: 3.5vw;
		line-height: 1.6;
	}
}

.main_visual .third_step_view .third_step_view_message .name {
	margin-top: 20px;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1;
}
@media screen and (max-width: 1440px) {
	.main_visual .third_step_view .third_step_view_message .name {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 767px) {
	.main_visual .third_step_view .third_step_view_message .name {
		font-size: 8vw;
	}
}

.main_visual .third_step_view .third_step_view_takeda {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 800px;
	width: 35vw;
}
@media screen and (max-width: 767px) {
	.main_visual .third_step_view .third_step_view_takeda {
		width: 25vw;
	}
}

.main_visual .show {
	display: flex;
	animation: fadein 1s ease forwards;
}

.fadein-img {
	opacity: 0;
	visibility: visible;
	animation: fadein-img 1.5s ease forwards;
	animation-delay: 1s; /* 遅延表示したい場合（任意） */
}

@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes fadein-img {
	from {
		opacity: 0;
		visibility: hidden;
	}
	to {
		opacity: 1;
		visibility: visible;
	}
}


/*--------------------------------------------------
  ピックアップ
--------------------------------------------------*/
.pickup {
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	.pickup {
		margin-top: 60px;
	}
}

.pickup .heading_en_1 {
	text-align: center;
}

.pickup .movie_title {
	margin-top: 10px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
}

.pickup .movie_content {
	max-width: 560px;
	width: 100%;
	margin: 20px auto 0;
	aspect-ratio: 16 / 9;
}

.pickup .movie_content iframe {
	width: 100%;
	height: 100%;
}


/*--------------------------------------------------
  活動報告
--------------------------------------------------*/
.activity {
	display: flex;
	justify-content: space-between;
	gap: 95px;
	margin-top: 200px;
}
@media screen and (max-width: 767px) {
	.activity {
		flex-direction: column;
		gap: 30px;
		margin-top: 100px;
	}
}

.activity .heading_en_1 {
	margin-top: 5px;
}

.activity .activity_body {
	max-width: 970px;
	width: 100%;
}

.activity .activity_body .list {
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 767px) {
	.activity .activity_body .list {
		flex-direction: column;
		gap: 30px;
	}
}

.activity .activity_body .list > li {
	width: 310px;
}
@media screen and (max-width: 767px) {
	.activity .activity_body .list > li {
		width: 100%;
	}
}

.activity .activity_body .list .thumb {
	overflow: hidden;
	width: 310px;
}

.activity .activity_body .list .thumb img {
	object-fit: cover;
	width: 310px;
	height: 235px;
	transform: scale(1.0);
	transition: transform 0.3s ease-in-out;
}

.activity .activity_body .list .thumb img:hover {
	transform: scale(1.1);
}

.activity .activity_body .list .title {
	margin-top: 20px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	.activity .activity_body .list .title {
		margin-top: 10px;
	}
}

.activity .activity_body .list .sub {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
	font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
	.activity .activity_body .list .sub {
		margin-top: 10px;
	}
}

.activity .activity_body .list .sub .category span {
	display: inline-block;
	margin-right: 15px;
	font-size: 0.85rem;
}

.activity .activity_body .list .sub .category span::before {
	content: '#';
}

.activity .link_btn_box {
	margin-top: 40px;
	text-align: right;
}
@media screen and (max-width: 767px) {
	.activity .link_btn_box {
		text-align: center;
	}
}


/*--------------------------------------------------
  プロフィール
--------------------------------------------------*/
.bg_profile {
	min-height: 1160px;
	margin-top: 100px;
	background: url(../imgs/top/bg_profile.png) no-repeat center top / 100% 100%;
}
@media screen and (max-width: 767px) {
	.bg_profile {
		min-height: auto;
		margin-top: 70px;
		background-size: 200% 100%;
	}
}

.profile {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 130px 0 0;
}
@media screen and (max-width: 767px) {
	.profile {
		flex-direction: column;
		padding: 70px 0 80px;
	}
}

.profile .heading_en_1 {
	margin-top: 5px;
}

.profile .profile_head {
	width: 200px;
}
@media screen and (max-width: 767px) {
	.profile .profile_head {
		width: 100%;
	}
}

.profile .profile_body {
	max-width: 970px;
	width: 100%;
}

.profile .profile_body .generation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .generation {
		flex-direction: column;
		gap: 30px;
	}
}

.profile .profile_body .generation > li:nth-child(2) {
	margin-top: 90px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .generation > li:nth-child(2) {
		margin-top: 0;
	}
}

.profile .profile_body .generation > li:nth-child(3) {
	margin-top: 180px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .generation > li:nth-child(3) {
		margin-top: 0;
	}
}

.profile .profile_body .generation a {
	position: relative;
	display: block;
	width: 310px;
	height: 500px;
	padding: 20px;
	background-color: #fff;
	border: #fff 4px solid;
	border-radius: 15px;
	box-shadow: 4px 4px 10px 0px rgba(0, 185, 255, 0.5);
}
@media screen and (max-width: 767px) {
	.profile .profile_body .generation a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		width: 100%;
		height: auto;
	}
}

.profile .profile_body .generation a:hover {
		border: #00b9ff 4px solid;
}

.profile .profile_body .generation a::after {
	content: '';
	position: absolute;
	right: -12px;
	bottom: -12px;
	width: 50px;
	height: 51px;
	background: url(../imgs/other/arrow_circle_blue.png) no-repeat left top / 50px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .generation a::after {
		right: -15px;
		bottom: -20px;
		width: 40px;
		height: 41px;
		background-size: 40px;
	}
}

@media screen and (max-width: 767px) {
	.profile .profile_body .generation .thumb {
		width: 40%;
	}
}

.profile .profile_body .generation .title {
	margin-top: 40px;
	text-align: center;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .generation .title {
		width: 50%;
		margin-top: 0;
		font-size: 1.5rem;
	}
}

.profile .profile_body .prof {
	margin-top: -110px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .prof {
		margin-top: 30px;
	}
}

.profile .profile_body .prof p {
	font-weight: 500;
	line-height: 2;
}

.profile .profile_body .layout_flex {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .layout_flex {
		flex-direction: column;
	}
}

.profile .profile_body .note {
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .note {
		flex-direction: column;
		gap: 30px;
	}
}

.profile .profile_body .note > p:nth-of-type(1) {
	width: 310px;
	padding: 20px 0 0 1em;
	text-indent: -1em;
	overflow: hidden;
	font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .note > p:nth-of-type(1) {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.profile .profile_body .note .memory {
		display: flex;
		align-items: flex-end;
		gap: 10px;
	}
}

.profile .profile_body .note .memory img {
	width: 184px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .note .memory img {
		width: 40%;
	}
}

.profile .profile_body .note .memory > p {
	margin-top: 10px;
	font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .note .memory > p {
		width: 59%;
	}
}

.profile .profile_body .link_btn_box {
	position: relative;
	top: 30px;
}
@media screen and (max-width: 767px) {
	.profile .profile_body .link_btn_box {
		top: 0;
		margin-top: 40px;
		text-align: center;
	}
}


/*--------------------------------------------------
  政策・ビジョン
--------------------------------------------------*/
.policy_vision {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 100px;
}
@media screen and (max-width: 767px) {
	.policy_vision {
		flex-direction: column;
		margin-top: 70px;
	}
}

.policy_vision .policy_vision_head {
	width: 230px;
}
@media screen and (max-width: 767px) {
	.policy_vision .policy_vision_head {
		width: 100%;
	}
}

.policy_vision .heading_en_1 {
	margin-top: 5px;
}

.policy_vision .policy_vision_body {
	max-width: 950px;
	width: 100%;
}

.policy_vision .policy_vision_body .catch {
	margin-top: -10px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	.policy_vision .policy_vision_body .catch {
		margin-top: 0;
		font-size: 8vw;
		line-height: 1.3;
		letter-spacing: 0;
	}
}

.policy_vision .policy_vision_body .image {
	display: flex;
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.policy_vision .policy_vision_body .image {
		flex-direction: column;
	}
}

.policy_vision .policy_vision_body .image .policy_vision_1 {
	position: relative;
	left: -40px;
	width: 690px;
}
@media screen and (max-width: 767px) {
	.policy_vision .policy_vision_body .image .policy_vision_1 {
		left: 0;
		width: 100%;
	}
}

.policy_vision .policy_vision_body .image .policy_vision_2 {
	position: relative;
	top: 30px;
	left: -30px;
	width: 300px;
}
@media screen and (max-width: 767px) {
	.policy_vision .policy_vision_body .image .policy_vision_2 {
		top: 20px;
		left: 0;
		display: block;
		width: 60%;
		margin: auto;
	}
}

.policy_vision .policy_vision_body .link_btn_box {
	margin-top: 60px;
	text-align: right;
}
@media screen and (max-width: 767px) {
	.policy_vision .policy_vision_body .link_btn_box {
		margin-top: 40px;
		text-align: center;
	}
}


/*--------------------------------------------------
  SNS
--------------------------------------------------*/
.sns {
	margin-top: 100px;
}
@media screen and (max-width: 767px) {
	.sns {
		margin-top: 70px;
		overflow: hidden;
	}
}

.sns .sns_body {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body {
		margin-top: 10px;
	}
}

.sns .sns_body .list {
	display: flex;
	gap: 100px;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list {
		flex-direction: column;
	}
}

.sns .sns_body .list .youtube {
	width: 450px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .youtube {
		width: 100%;
	}
}

.sns .sns_body .list .youtube .heading,
.sns .sns_body .list .timeline .heading {
	margin-bottom: 20px;
	text-align: center;
}

.sns .sns_body .list .youtube .heading img,
.sns .sns_body .list .timeline .heading img {
	width: 160px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .youtube .heading img,
	.sns .sns_body .list .timeline .heading img {
		width: 50%;
	}
}

.sns .sns_body .list .youtube .content {
	width: 100%;
	aspect-ratio: 9 / 16;
}

.sns .sns_body .list .youtube iframe {
	width: 100%;
	height: 100%;
}

.sns .sns_body .list .timeline {
	display: flex;
	gap: 30px;
	width: 650px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .timeline {
		flex-direction: column;
		width: 100%;
	}
}

.sns .sns_body .list .timeline > div,
.sns .sns_body .list .timeline .content,
.sns .sns_body .list .timeline .twitter-timeline {
	display: block;
	width: 310px !important;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .timeline > div,
	.sns .sns_body .list .timeline .content,
	.sns .sns_body .list .timeline .twitter-timeline {
		width: 100% !important;
		overflow-x: hidden;
	}
}

.sns .sns_body .list .timeline .content iframe,
.sns .sns_body .list .timeline .content .fb-page,
.sns .sns_body .list .timeline .content .fb-page span{
	width: 310px !important;
	height: 550px !important;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .timeline .content iframe:not(#twitter-widget-0),
	.sns .sns_body .list .timeline .content .fb-page,
	.sns .sns_body .list .timeline .content .fb-page span{
		width: 100% !important;
	}
}

.sns .sns_body .list .links {
	display: flex;
	gap: 30px;
	margin-top: 90px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .links {
		gap: 20px;
		margin-top: 40px;
	}
}

.sns .sns_body .list .links > div{
	width: 310px;
}
@media screen and (max-width: 767px) {
	.sns .sns_body .list .links > div{
		width: 100%;
	}
}


/*--------------------------------------------------
  後援会入会  お問い合わせ
--------------------------------------------------*/
.bottom_cta {
	display: flex;
	gap: 80px;
	margin: 100px auto;
}
@media screen and (max-width: 767px) {
	.bottom_cta {
		flex-direction: column;
		gap: 40px;
	}
}

.bottom_cta > div {
	width: 560px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.bottom_cta > div {
		width: 100%;
		text-align: left;
	}
}

.bottom_cta .heading_en_1 {
	margin-top: 5px;
}

.bottom_cta .description {
	margin-top: 20px;
	font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
	.bottom_cta .description {
		margin-top: 10px;
		font-size: 1.2rem;
	}
}

.bottom_cta .link_btn_box {
	margin-top: 20px;
}

.bottom_cta .link_btn_box a {
	width: 560px;
	padding: 15px;
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
	.bottom_cta .link_btn_box a {
		width: 100%;
		padding: 10px;
		font-size: 1.25rem;
	}
}




/*--------------------------------------------------
**************************************************
  PC用
**************************************************
--------------------------------------------------*/
@media screen and (min-width: 768px) {
	
}/* End PC */




