@charset "utf-8";
/* ==================================================================
CSS information
 style info :コンテンツ関係 他
================================================================== */

/* --------------------------------------------------------
	default.css上書き、リンク
-------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Mr+Dafoe&family=Mynerve&family=Rock+Salt&display=swap');

html {
	scroll-behavior: smooth;
}
body {
	color: #333;
	background-color: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
}
.naritai_en {
	font-family: 'Bebas Neue', sans-serif;
}
#page {
	width: 100%;
	margin: 20px auto 0 auto;
	text-align: left;
}
#page_fes {
	width: 100%;
	max-width: 800px;
	margin: 20px auto 0 auto;
	text-align: left;
}
img {
	width: 100%;
}

.disp_pc {
	display: none;
}
.disp_sp {
	display: block;
}
@media screen and (min-width: 769px) {
	.disp_pc {
		display: block;
	}
	.disp_sp {
		display: none;
	}
}


/* #header */
#header {
	margin-bottom: 14px;
	background: #FFF;
}
#header #utilityNav {
	text-align: right;
	width: 140px;
	margin-top: 20px;
	margin-left: 20px;
}
#header #utilityNav li {
	display: inline;
}
/* #footer */
#footer {
	width: 100%;
	background: #EBEFF1;
	text-align: center;
	margin: 0 auto;
	position: relative;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-top: 10px;
}
#footer .contact {
   margin-top: 2.5em;
   margin-bottom: 1.5em;
   line-height: 2em;
}

@media screen and (max-width: 959px) {
	.pc_none {
		display: block;
	}
	.sm_none {
		display: none;
	}

	#page {
		margin: 0 auto;
	}

	#header {
		width: 100%!important;
		margin-bottom: 20px;
		padding: 0 0px 0 0px;
		background: #FFF;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 599px) {
	#page {
		width: 100%;
		padding-bottom: 0;
	}

	/* #header */
	#header {
		width: 90%;
		margin-bottom: 0;
		padding: 0 0px 0 0px;
		background: #FFF;
		margin-left: auto;
		margin-right: auto;
	}

  	/* #utilityNav */
  	#header #utilityNav {
		text-align: right;
		width: 140px;
		margin: 10px auto;
	}
	#header #utilityNav li {
		display: inline;
  	}
}


/* 
 * なりたいフェス 
 */
.naritaifes_fv {
	width: 100%;
	height: auto;
}
/* 申込用 */
.form {
	margin: 40px auto 60px auto;
}
.form_txt {
	text-align: center;
	padding: 6px 0;
	font-size: clamp(18px, 3vw, 22px);
	letter-spacing: 1.2px;
}
.form_btn {
	position: relative;
	width: 80vw;
	max-width: 500px;
	height: 16vw;
	max-height: 100px;
	background-color: #F863A4;
	color: #ffffff;
	border-radius: 10vw;
	margin: 0 auto;
	box-shadow: 0 4px 10px rgba(10,10,10,0.5)
}
.form_btn a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	cursor: pointer;
}
.form_btn p{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 5vw;
	letter-spacing: 2px;
	text-align: center;
}
.form_note {
	font-size: clamp(13px, 2vw, 16px);
	letter-spacing: 1px;
	padding: 5px 0;
	text-align: center;
}
.form_note_red {
	color: #F863A4;
	padding-bottom: 0;
}

.info {
	width: 95%;
	max-width: 500px;
	margin: 60px auto 80px auto;
}
.info_title {
	background-color: #5dc2d0;
	border-radius: 30px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 1px;
	color: #ffffff;
	padding: 10px;
}
.info_note {
	width: 90%;
	margin: 10px auto 20px auto;
	font-size: 15px;
	letter-spacing: 0.8px;
	text-align: justify;
}
.info_note_guest {
	margin: 10px auto 0 auto;
}
.info_note_guest span{
	font-size: 20px;
	font-weight: 600;
	background: linear-gradient(transparent 60%, #ffe67a 40%);
	margin-bottom: 10px;
	display: inline-block;
}
.info_guest_gr {
	display: flex;
	justify-content: space-around;
}
.info_guest {
	width: 160px;
	text-align: center;
}
.info_guest p{
	font-size: 16px;
	letter-spacing: 1.2px;
}
.info_guest p>span{
	font-size: 12px;
}
.info_guest p.guest_note{
	font-size: 12px;
}
.info_guest_note {
	font-size: 10px;
	text-align: center;
}


.note {
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 20px;
	margin: 80px auto 120px auto;
	width: 90%;
}

.organizer {
	width: 200px;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	/* 申込用 */
	.form_txt {
		font-size: 22px;
	}
	.form_btn {
		height: 70px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.form_btn:hover {
    	transform: translateY(-2px);
    	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  	}
	.form_btn p{
		font-size: 24px;
	}
	.form_note {
		font-size: 14px;
	}

	.note {
		width: 500px;
	}
}


/* 
 * 15年ページ
 */

/* モーダル 動画 */
/* .video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}
.video-modal.is-show {
  	display: flex;
    overflow-y: auto;
}
.close-button {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 44px;
	height: 44px;
	border-radius: 20px;
	font-size: 32px;
	z-index: 10000;
}
.video-container {
	width: 90%;
	max-width: 1000px;
	z-index: 100;
}
.video-container iframe {
  	width: 100%;
  	height: 100%;
	aspect-ratio: 16 / 9;
}
.video-modal .naritai_mov {
	width: 100%;
	background: none;
}
.video-modal .naritai_mov .naritai_title {
	width: 270px;
}
.video-modal .naritai_mov .naritai_title .naritai_title_en {
	font-size: 30px;
	line-height: 20px;
}
.video-modal .naritai_mov .naritai_title .naritai_title_jp span{
	font-size: 18px;
}
.video-modal .naritai_mov_gr {
	margin: 8vw auto;
}
@media screen and (min-width: 769px) {
	.video-modal {
		background: rgba(0, 0, 0, 0.9);
	}
	.close-button {
		top: 40px;
		right: 40px;
	}
	.video-container {
		width: 100%;
		margin: 0 auto;
	}
	.video-modal .naritai_mov {
		max-width: 520px;
		margin: 0 auto;
	}
	.video-modal .naritai_mov_gr {
		margin: 40px auto;
	}
} */


/* 
 * ハンバーガーメニュー
 */
.hamburger {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 30px;
	z-index: 100;
	background: none;
	border: none;
	cursor: pointer;
}
.hamburger span {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background: #333;
	transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.is-active span:nth-child(1) {
  	top: 15px;
  	transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  	opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  	top: 16px;
  	transform: rotate(-45deg);
}

/* メニュー初期 */
.navigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	display: none;
	z-index: 90;
	justify-content: center;
	align-items: center;
}
/* 開いた時のスタイル */
.navigation.is-active {
  	display: flex;
}
.navigation__list a {
	color: #333333;
	font-size: 18px;
	text-decoration: none;
	display: block;
	text-align: center;
}
.navigation__list li {
	position: relative;
	padding: 20px 0 15px 0;
}
.navigation__list li::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #1F61B3;
}
.navigation__list li.naritai_li01::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #1F61B3;
}
.navigation__list .nav_en{
	font-size: 26px;
	line-height: 21px;
}
.navigation__list .nav_jp {
	font-size: 13px;
	font-weight: 600;
	line-height: 15px;
	padding-top: 4px;
}
.navigation__list .nav_jp_min {
	padding: 0 0 5px 0;
}
.navigation__list span{
	color: #1F61B3;
} 
@media screen and (min-width: 769px) {
	.hamburger {
		top: 20px;
		right: 30px;
	}
}



/* 共通 */
/* タイトル */
.naritai_title {
	background-color: #ffffff;
	padding: 25px 0 15px 20px;
	position: relative;
	z-index: 3;
}
.naritai_title_en {
	font-size: 42px;
	line-height: 40px;
}
.naritai_title_en span{
	font-size: 50px;
}
.naritai_title_jp {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}
.naritai_title_jp span{
	font-size: 20px;
}
.naritai_title_jp_before {
	padding-bottom: 5px;
	margin-left: -8px;
}
.naritai_event .naritai_title {
	width: 290px;
}
.naritai_event .naritai_title_en span, .naritai_event .naritai_title_jp span{
	color: #EC007E;
} 
.naritai_mov .naritai_title {
	width: 320px;
}
.naritai_mov .naritai_title_en span, .naritai_mov .naritai_title_jp span{
	color: #1F61B3;
} 
.naritai_mov .naritai_title_jp {
	line-height: 24px;
}
.naritai_cast15 .naritai_title {
	width: 300px;
}
.naritai_cast15 .naritai_title_en span, .naritai_cast15 .naritai_title_jp span{
	color: #17ADE5;
}
.naritai_cast30 .naritai_title {
	width: 300px;
}
.naritai_cast30 .naritai_title_en span, .naritai_cast30 .naritai_title_jp span {
	color: #E7251C;
}
.naritai_paper .naritai_title {
	width: 190px;
}
.naritai_paper .naritai_title_en span, .naritai_paper .naritai_title_jp span {
	color: #621A82;
}
@media screen and (min-width: 769px) {
	.naritai_title {
		padding: 25px 0 15px 40px;
	}
	.naritai_mov .naritai_title {
		width: 360px;
	}
}


/* 背景ノイズ */
.noise_bk {
	position: relative;
	overflow: hidden;
}
.noise_bk::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: url(#noiseFilter);
	opacity: 0.2;
	pointer-events: none;
}


/* 個別 */
/* 前置き */
.naritai_intro {
	width: 95%;
	max-width: 500px;
	margin: 40px auto;
}
.naritai_intro_title {
	font-size: 20px;
	padding-bottom: 10px;
}
.naritai_intro_txt {
	font-size: 16px;
	padding-bottom: 10px;
}


/* ファーストビュー */
.fv {
	position:relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-height: 1000px;
	padding-top: 1vw;
	margin: 0 auto;
}
.fv_img {
	position: relative;
}
.fv_img p{
	position: absolute;
	top: 20px;
	left: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 16px;
}
.fv_img_txt {
	opacity: 0;
	position: absolute;
	top: -10px;
	left: 50%;
    transform: translateX(-50%);
	max-width: 400px;
}
.fv_img_txt01.is-animated {
	animation: fadeInUp 0.8s ease forwards;
}
.fv_img_txt02.is-animated {
	animation: fadeInUp 0.8s ease forwards;
}
.fv_img_txt03.is-animated {
	animation: fadeInUp 0.8s ease forwards;
}
.fv_img_txt04.is-animated {
	animation: fadeInUp 2.8s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv_img_bk img{
	object-fit: cover;
}
.naritai_intro_note {
	position: absolute;
	font-size: 14px;
	line-height: 24px;
	width: 88%;
	max-width: 480px;
	bottom: 12vw;
	left: 50%;
    transform: translateX(-50%);
}
.naritai_intro_note span{
	display: inline-block;
	text-indent: 1em;
	text-align: justify;
}
@media screen and (min-width: 769px) {
	.fv {
		width: 100vw;
		max-width: none;
		max-height: none;
		padding-top: 1px;
	}
	.fv_img p{
		left: 30px;
		font-size: 14px;
		line-height: 24px;
}
	.fv_img_txt {
		top: -70px;
		width: 580px;
		max-width: none;
	}
	.fv_img_bk {
		width: 100vw;
		height: 1240px;
	}
	.fv_img_bk img{
		height: 1240px;
	}
	.naritai_intro_note {
		font-size: 16px;
		line-height: 26px;
		max-width: 800px;
		bottom: 100px;
	}
}



/* 動画 */
.naritai_mov {
	width: 100vw;
	background-color: #1F61B3;
	padding: 40px 0 0 0;
	margin: 0 auto;
}
.naritai_mov_gr {
    position: relative;
    margin: 5vw auto 12vw auto;
	text-align: center;
	width: 95%;
	max-width: 520px;
}
.naritai_mov_gr iframe{
	width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}
@media screen and (min-width: 769px) {
	.naritai_mov {
		max-width: 800px;
		margin: 40px auto;
		padding: 40px 0;
		border-radius: 15px;
	}
	.naritai_mov_sec {
		display: flex;
		max-width: 1200px;
		gap: 20px;
		width: 90%;
		margin: 0 auto;
	}
	.naritai_mov_gr {
	    margin: 40px auto 20px auto;
	}
}


/* イベント */
.naritai_event {
	width: 100vw;
	max-width: 520px;
	padding: 40px 0;
	margin: 0 auto 40px auto;
}
.naritai_event_sec {
	width: 90%;
	margin: 2vw auto;
}
.naritai_event .form {
	margin: 2vw auto;
}
.naritai_event .form_txt {
	font-size: clamp(15px, 2.4vw, 17px);
	margin: 2vw auto 0 auto;
}
@media screen and (min-width: 769px) {
	.naritai_event {
		max-width: 800px;
	}
	.naritai_event_sec {
		max-width: 520px;
	}
}


/* キャスト */
.naritai_cast {
	width: 95%;
	max-width: 500px;
	margin: 10.6vw auto;
	border-radius: 15px;
	padding: 6vw 0 10.6vw 0;
}
.naritai_cast15 {
	background-color: #17ADE5;
}
.naritai_cast30 {
	background-color: #E7251C;
}
.naritai_cast_sec {
	position: relative;
	width: 95%;
	margin: 8vw auto;
	display: flex;
	flex-direction: column;
}
.naritai_score {
	position: absolute;
	z-index: 2;
}
.naritai_score01 {
	top: -100px;
	right: -40vw;
	width: 120vw;
	max-width: 700px;
}
.naritai_score02 {
	top: 180px;
	left: -16vw;
	width: 140vw;
	max-width: 700px;
}
.naritai_score03 {
	bottom: -60px;
	left: -70vw;
	width: 110vw;
	max-width: 560px;
}
.naritai_score04, .naritai_score05, .naritai_score06, .naritai_score07, .naritai_score08, .naritai_score09, .naritai_score10 {
	display: none;
}

.naritai_cast_parts {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	cursor: pointer;
}
.naritai_cast_parts img{
	display: block;
    width: 100%;
}
.naritai_cast_top {
	height: 120px;
	display: flex;
	flex-direction: row-reverse;
	margin: 5px auto;
	border: solid 2px #333333;
	position: relative;
	background-color: #ffffff;
	z-index: 4;
}
.naritai_cast_top img{
	z-index: 1;
	width: 36vw;
	max-width: 140px;
	object-fit: cover;
}

.naritai_mae {
	width: 95%;
	margin: 6vw auto;
	color: #ffffff;
}
.naritai_mae_title1 {
	font-size: 14px;
	text-align: center;
}
.naritai_mae_title2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
	text-align: center;
	margin: 2vw auto 6vw auto;
}
.naritai_mae_txt {
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 24px;
	text-align: justify;
}
.naritai_mae_txt p{
	text-indent: 1em;
}
.naritai_cast_name {
	flex: 2;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	left: 0;
	padding-left: 15px;
	background-color: rgba(255,255,255,0.95);
	z-index: 3;
}
.naritai_cast_name_prof {
	font-size: 13.5px;
	line-height: 17px;
	font-feature-settings: "palt";
}
.naritai_cast_name_name {
	font-size: 18px;
	font-weight: 600;
	padding-top: 10px;
}
.naritai_cast_name_name span{
	font-size: 11px;
}
.naritai_cast_note {
	font-size: 11px;
	color: #ffffff;
	text-align: center;
}

@media screen and (min-width: 769px) {
	.naritai_cast {
		max-width: 800px;
		margin: 40px auto;
		padding: 40px 0 60px 0;
	}
	.naritai_cast_sec {
		flex-direction: row;
		flex-wrap: wrap;
		margin: 40px auto 20px auto;
	}
	.naritai_score01 {
		right: -320px;
		width: 800px;
		max-width: none;
	}
	.naritai_score02 {
		top: 510px;
		left: -100px;
		width: 820px;
		max-width: none;
	}
	.naritai_score03 {
		display: none;
	}
	.naritai_score04, .naritai_score05, .naritai_score06, .naritai_score07, .naritai_score08, .naritai_score09, .naritai_score10 {
		display: block;
	}
	.naritai_score04 {
		top: 220px;
		left: 100px;
		width: 45px;
	}
	.naritai_score05 {
		top: 410px;
		right: 90px;
		width: 30px;
		transform: rotate(-10deg);
	}
	.naritai_score06 {
		top: 100px;
		left: 30px;
		width: 20px;
		transform: rotate(-20deg);
	}
	.naritai_score07 {
		top: 170px;
		right: 30px;
		width: 20px;
		transform: rotate(-10deg);
	}
	.naritai_score08 {
		top: 560px;
		right: 20px;
		width: 10px;
		transform: rotate(20deg);
	}
	.naritai_score09 {
		top: 470px;
		left: 40px;
		width: 15px;
	}
	.naritai_score10 {
		top: 650px;
		left: 110px;
		width: 30px;
	}

	.naritai_mae {
		margin: 20px auto;
		max-width: 580px;
	}
	.naritai_mae_title1 {
		font-size: 15px;
	}
	.naritai_mae_title2 {
		margin: 20px auto 40px auto;
	}
	.naritai_mae_txt {
		font-size: 15px;
	}
	.naritai_cast_top {
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.naritai_cast_top:hover {
    	transform: translateY(-4px);
    	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	}
	.naritai_cast_name_prof {
		font-size: 14px;
	}
	.naritai_cast_name_name {
		font-size: 20px;
	}
	.naritai_cast_name_name span{
		font-size: 14px;
	}
}


/* モーダル */
.full-screen-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1F61B3;
	z-index: 9999;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.full-screen-modal.is-active {
  	display: flex;
  	align-items: flex-start;
  	justify-content: center;
	padding: 0;
}
.modal_content {
	min-height: 100%;
    background-color: #1F61B3;
    padding: 10vw 0;
    position: relative;
}
.close-btn {
	position: absolute;
	top: 6vw;
	right: 4vw;
	font-size: 10vw;
	color: #fff;
	cursor: pointer;
}
.close_btn_bottom {
	position: absolute;
	bottom: 20px;
	left: 50%;
    transform: translateX(-50%);
	font-size: 10vw;
	color: #fff;
	cursor: pointer;
}
.modal_main {
	position: relative;
	width: 90%;
	margin: 6vw auto 26vw auto;
	padding-bottom: 12vw;
	color: #ffffff;
}
.modal_cast_img {
	text-align: center;
}
.modal_cast_img img{
	display: inline;
	width: 70%;
}
.modal_cast_name {
	text-align: center;
	font-size: 6.4vw;
	letter-spacing: 2px;
	padding-top: 16px;
}
.modal_cast_name rt{
	font-size: 2.4vw;
}
.modal_cast_name span{
	font-size: 3vw;
	letter-spacing: 1px;
	padding-left: 4px;
}
.modal_cast_prof {
	text-align: center;
	font-size: 3.2vw;
	line-height: 5vw;
	padding-top: 20px;
}
.modal_main_comment {
	position: relative;
	margin: 8vw auto 12vw auto;
	font-size: 5vw;
	letter-spacing: 1.8px;
	line-height: 8vw;
	text-align: center;
}
.modal_main_comment::after {
	content: '';
	position: absolute;
	background-color: #ffffff;
	height: 1px;
	width: 60%;
	bottom: -15px;
	left: 50%;
    transform: translateX(-50%);
}
.modal_main_txt {
	width: 92%;
	margin: 4vw auto;
	font-size: 3.8vw;
	letter-spacing: 1.2px;
	line-height: 6.5vw;
}
.modal_main_txt p{
	text-indent: 1em;
}

.modal_link {
	width: 80%;
	margin: 10vw auto 5.2vw auto;
	padding: 3vw 2vw 3vw 6vw;
	border-top: dotted 1px #ffffff;
	border-bottom: dotted 1px #ffffff;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 22px;
}
.modal_link a{
	display: inline;
	color: #fff;
}
.modal_link a::after {
	display: inline-block;
	width: 17px;
	height: 17px;
	top: 0;
	right: 0;
	content: '';
	background-image: url(../img/arrow.webp);
	background-size: contain;
    background-repeat: no-repeat;
	margin-left: 5px;
	vertical-align: middle;
}
.modal_link li {
	list-style-type: disc;
	padding: 4px 0;
}
.modal_pic {
	width: 90%;
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 2vw;
}
.modal_pic_img {
	width: 39vw;
}
.modal_pic_img_yoko {
	width: 100%;
}
@media screen and (min-width: 769px) {
	.modal_content {
		padding: 40px 0;
	}
	.close-btn {
		font-size: 50px;
	}
	.close_btn_bottom {
		font-size: 50px;
	}
	.modal_main {
		margin: 20px auto 200px auto;
		padding-bottom: 100px;
	}
	.modal_cast_img {
		max-width: 360px;
		margin: 0 auto;
	}
	.modal_cast_img img{
		width: 100%;
	}
	.modal_cast_name {
		font-size: 28px;
		padding-top: 40px;
	}
	.modal_cast_name rt{
		font-size: 12px;
	}
	.modal_cast_name span{
		font-size: 16px;
	}
	.modal_cast_prof {
		font-size: 16px;
		line-height: 22px;
		padding-top: 10px;
	}
	.modal_main_comment {
		margin: 40px auto 80px auto;
		font-size: 24px;
		line-height: 38px;
	}
	.modal_main_comment::after {
		width: 35%;
		bottom: -35px;
	}
	.modal_main_txt {
		max-width: 800px;
		margin: 40px auto;
		font-size: 16px;
		line-height: 28px;
	}

	.modal_link {
		max-width: 600px;
		margin: 60px auto;
		padding: 20px 10px 20px 60px;
		font-size: 14px;
	}
	.modal_pic {
		max-width: 500px;
		gap: 20px;
	}
	.modal_pic_img {
		width: 47%;
	}
}




/* 特集紙面 */
.naritai_paper {
	width: 100vw;
	max-width: 520px;
	background-color: #621A82;
	padding: 40px 0;
	margin: 40px auto;
}
.naritai_paper_txt {
	width: 85%;
	max-width: 500px;
	font-size: 14px;
	line-height: 22px;
	color: #ffffff;
	margin: 20px auto;
}
.naritai_paper_pdf {
	margin: 20px auto;
	width: 90%;
	max-width: 500px;
}
.naritai_paper_pdf_parts {
	position: relative;
	padding: 10px 0 10px 18px;
	margin: 15px 0;
	background-color: #ffffff;
	border-radius: 5px;
}
.naritai_paper_pdf_parts p{
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	padding: 4px 0;
}
.naritai_paper_pdf_parts span{
	font-size: 13px;
	font-weight: 400;
	padding-left: 10px;
}
.naritai_paper_pdf_parts a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.naritai_paper_pdf_parts::after {
	position: absolute;
	display: inline-block;
	width: 17px;
	height: 17px;
	top: 50%;
    transform: translateY(-50%);
	right: 15px;
	content: '';
	background-image: url(../img/arrow_p.webp);
	background-size: contain;
    background-repeat: no-repeat;
	margin-left: 5px;
	vertical-align: middle;
}
@media screen and (min-width: 769px) {
	.naritai_paper {
		max-width: 800px;
		margin: 40px auto;
		padding: 40px 0;
		border-radius: 15px;
	}
	.naritai_paper_txt {
		margin: 40px auto 20px auto;
	}
	.naritai_paper_pdf_parts {
		padding: 18px 0 15px 20px;
		margin: 20px 0;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.naritai_paper_pdf_parts:hover {
    	transform: translateY(-2px);
    	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  	}
	.naritai_paper_pdf_parts p{
		font-size: 17px;
		line-height: 24px;
	}
	.naritai_paper_pdf_parts span{
		font-size: 14px;
	}
	.naritai_paper_pdf_parts::after {
		right: 20px;
	}
}


/* 協賛企業 */
.naritai_sponsor {
	width: 100vw;
	max-width: 520px;
	margin: 40px auto;
}
.naritai_sponsor .naritai_title {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
}
.naritai_sponsor_txt {
	width: 90%;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	margin: 0 auto 20px auto;
}
.naritai_sponsor_parts {
	width: 95%;
	text-align: center;
	margin: 0 auto;
}
.naritai_sponsor_parts p{
	font-size: 8px;
	text-align: left;
}
@media screen and (min-width: 769px) {
	.naritai_sponsor {
		width: 100vw;
		max-width: 800px;
		margin: 40px auto;
	}
}


/* 関連リンク集 */
.naritai_link {
	width: 100vw;
	max-width: 740px;
	margin: 60px auto 40px auto;
}
.naritai_link .naritai_title {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
}
.naritai_link_parts_gr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}
.naritai_link_parts {
	width: 42vw;
	margin: 5px auto;
	max-width: 500px;
}
.naritai_link_parts p{
	font-size: 16px;
	font-weight: 600;
	padding: 0 0 1.4vw 2vw;
}
.naritai_link_parts span{
	font-size: 13px;
	font-weight: 400;
	padding-left: 10px;
}
.naritai_link_link {
	margin: 0 auto;
	padding: 1vw 0 2vw 7vw;
	font-size: 13px;
	line-height: 22px;
}
.naritai_link_link a{
	display: inline;
	color: #333333;
}
.naritai_link_link a::after {
	display: inline-block;
	width: 16px;
	height: 16px;
	top: 0;
	right: 0;
	content: '';
	background-image: url(../img/arrow_b.webp);
	background-size: contain;
    background-repeat: no-repeat;
	margin-left: 10px;
	vertical-align: middle;
}
.naritai_link_link li {
	list-style-type: disc;
	padding-bottom: 5px;
}
@media screen and (min-width: 769px) { 
	.naritai_link {
		margin: 80px auto 120px auto;
	}
	.naritai_link_parts {
		width: 32%;
	}
	.naritai_link_parts p{
		padding: 10px 0 10px 20px;
	}
	.naritai_link_link {
		padding: 0 0 0 40px;
	}
}


