@charset "UTF-8";









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

リセット

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
RESET_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
*{
	margin: 0;
	padding: 0;
	line-height: 100%;
	list-style-type: none;
}

h1,h2,h3,h4,h5,h6,
div,p,
span,em,strong,
ul,ol,li,
dl,dt,dd,
a{
	background-repeat: no-repeat;
	background-size: 100% auto;
}

a{
	outline: none;
}

img {
	vertical-align: bottom;
}

.sp{
	display: block !important;
}

.pc{
	display: none !important;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
RESET_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

共通処理

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
COMMON_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
body{
	background-image: url(../images/bg_roop.png);
	background-size: 869px 946px;
	background-attachment: fixed;
	background-position: center top;
	background-repeat: repeat-y;
	background-color: #e9e7f3;
	color: #180f3d;
	/*和文基本*/
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	/*明朝*/
	/*
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	*/
	/*欧文・数字*/
	/*
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	*/
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.065em;
	line-height: 1.65em;
	word-break: break-word;
}



/*
本文フォント
*/
/*簡体字*/
body.zh_hans{
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	/*明朝*/
	/*
	font-family: "Noto Serif SC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	*/
}

/*繁体字*/
body.zh_hant{
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	/*明朝*/
	/*
	font-family: "Noto Serif TC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	*/
}



/*
汎用ボタン
*/
.btn_a {}
.btn_a a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	box-sizing: border-box;
	padding: 0 25px 0 0;
	background-image: url(../svg/arrow_btn_a.svg);
	background-size: 7px auto;
	background-position: 30px center;
	background-repeat: no-repeat;
	background-color: #1b1d24;
	color: #ffffff;
	width: 240px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	min-height: 45px;
	clip-path: polygon(5% 0, 100% 0, 100% 0%, 100% 75%, 95% 100%, 0% 100%, 0% 100%, 0% 30%);
}
.btn_a.disabled a {
	background-color: #828282;
    color: #555;
    pointer-events: none;
}

/*右配置*/
.btn_a.set_r {
	display: flex;
	justify-content: flex-end;
	width: 300px;
	margin: 80px auto 0 auto;
}

/*左配置*/
.btn_a.set_l {
	display: flex;
	justify-content: flex-start;
	width: 300px;
	margin: 80px auto 0 auto;
}

/*中央配置*/
.btn_a.set_c {
	display: flex;
	justify-content: center;
	width: 300px;
	margin: 80px auto 0 auto;
}



/*
言語切替
*/
.language {
}



/*
汎用ボックス
*/
.currentbox_wrapper {
	display: flex;
	margin: 0 0 100px 0;
	filter: drop-shadow(0 0 20px rgba(16, 10, 38, 0.3));
	/*負荷軽減*/
	transform: translateZ(0);
}



/*
ベースレイアウト
*/
.currentbox {
	position: relative;
	background-color: rgba(255,255,255,0.6);
	flex-basis: 375px;
	width: 375px;
	height: 100%;
	padding: 100px 0;
}

/*左右パネル*/
.currentbox::after,
.currentbox::before {
	content: "";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.6);
	width: 240px;
	height: 100%;
}

/*左右：横断*/
.currentbox_l {
	background-color: rgba(255,255,255,0.6);
	flex-grow: 1;
}
.currentbox_r {
	background-color: rgba(255,255,255,0.6);
	flex-grow: 1;
}

/*左右：中央*/
.boxstyle_c .currentbox::after {
	display: none;
	left: -140px;
	width: 140px;
	border-radius: 30px 0 0 30px;
}
.boxstyle_c .currentbox::before {
	display: none;
	left: 375px;
	width: 140px;
	border-radius: 0 30px 30px 0;
}
.boxstyle_c .currentbox_l,
.boxstyle_c .currentbox_r {
}

/*左右：左*/
.boxstyle_l .currentbox::after {
	display: none;
}
.boxstyle_l .currentbox_l {
}
.boxstyle_l .currentbox_r {
}

/*左右：右*/
.boxstyle_r .currentbox::after {
	display: none;
}
.boxstyle_r .currentbox_l {
}
.boxstyle_r .currentbox_r {
}

/*初期アイテム設定*/
.currentbox .boxitem {
	position: relative;
	box-sizing: border-box;
	background-color: rgb(255 255 255 / 0.4);
	width: 100%;
	margin: 50px auto 0 auto;
	padding: 30px 30px 40px 30px;
}
.currentbox .boxitem:first-of-type {
	margin: 70px auto 0 auto;
}
.currentbox .boxitem.notitle {
	padding: 30px;
}



/*
汎用アニメーション
*/
/*一括指定*/
.wp_t_a,
.wp_t_b,
.wp_t_c,
.wp_t_d {
	animation-timing-function: cubic-bezier(.42,0,0,.99);
	animation-direction: normal;
	animation-fill-mode: forwards;
	animation-play-state: running;
	animation-iteration-count: inherit;
}

/*トグルタイプ*/
.wp_t_a_toggle {
	opacity: 0;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
.wp_t_a_toggle_active {
	opacity: 1;
}

/*通過タイプ*/
.wp_t_a {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_a_active {
	animation-name: anime_wp_t_a;
}
@keyframes anime_wp_t_a {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

/*通過タイプ*/
.wp_t_b {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_b_active {
	animation-name: anime_wp_t_b;
}
@keyframes anime_wp_t_b {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

/*通過タイプ*/
.wp_t_c {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_c_active {
	animation-name: anime_wp_t_c;
}
@keyframes anime_wp_t_c {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}

/*通過タイプ*/
.wp_t_d {
	opacity: 0;
	animation-duration: 800ms;
}
.wp_t_d_active {
	animation-name: anime_wp_t_d;
}
@keyframes anime_wp_t_d {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}



/*
flexの末尾調整用
*/
.emptyflexbox {
	background-color: transparent !important;
	height: 0 !important;
	min-height: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	border: none !important;
}
.emptyflexbox::before,
.emptyflexbox::after {
	display: none !important;
}



/*
magnificPopup
*/
/*フェードアニメーション初期設定*/
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: .8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
	width: 300px;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
/*ギャラリーモードUI*/
.mfp-arrow-right:after {
    border-left: 17px solid #00ccff !important;
}
.mfp-arrow-right:before {
	border-left: transparent !important;
}
.mfp-arrow-left:after {
    border-right: 17px solid #00ccff !important;
}
.mfp-arrow-left:before {
	border-right: transparent !important;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	font-size: 40px;
	color: #00ccff !important;
}
.mfp-counter {
	color: #00ccff !important;
}



/*
カルーセル：メイン
*/
/*アロー*/
.swiper-button-next:after,
.swiper-button-prev:after {
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	font-size: 0 !important;
	width: 25px;
	height: 50px;
}
.swiper-button-next:after {
	background-image: url(../svg/arrow_carousel_r.svg);
}
.swiper-button-prev:after {
	background-image: url(../svg/arrow_carousel_l.svg);
}

/*ページネーション*/
.swiper-pagination-bullet {
	border-radius: inherit !important;
	width: 40px !important;
	height: 6px !important;
}
.swiper-pagination-bullet-active {
	background-color: #6642f4 !important;
}



/*
追加文字スタイル
*/
.plsm {
	letter-spacing: 0em;
}
.sizel_1 {
	font-size: 0.9em;
}
.sizel_2 {
	font-size: 0.8em;
}
.sizel_3 {
	font-size: 0.7em;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
COMMON_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

ローディング

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
LOADING_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#loading{
	z-index: 999;
	background-color: #e9e7f3;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition-duration: 1000ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: bottom;
}



/*
SVG格納要素指定
*/
#loading > div {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -90px 0 0 -90px;
	display: inline-block;
	width: 180px;
	height: 180px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}

/*SVGオブジェクト全体のサイズ*/
#loading > div svg {
    width: 100%;
    height: 100%;
}

/*シンボル*/
#loading > div svg .load_logo {
	fill: #B5A9F4;
}

/*テキスト*/
#loading > div svg .load_text {
	fill: #27197C;
}

/*アニメーション用汎用設定*/
#loading > div svg .load_logo {
	animation-duration: 6000ms;
	animation-delay: 0;
	animation-timing-function: linear;
	animation-direction: normal;
	animation-fill-mode: forwards;
	animation-play-state: running;
	animation-iteration-count: infinite;
}



/*
ロード中演出
*/
#loading.start > div {
	opacity: 1;
	transform: scale(1);
}

#loading.start > div svg .load_logo {
	animation-name: common_anime_startloading;
}

@keyframes common_anime_startloading {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.2;
	}
	100%{
		opacity: 1;
	}
}



/*
フェードアウト演出
*/
#loading.remove > div {
	opacity: 0;
	transform: scale(0);
	animation-name: common_anime_removeloading;
}
@keyframes common_anime_removeloading {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100%{
		opacity: 0;
		transform: scale(0);
	}
}



/*
削除
*/
/*アニメーション停止*/
#loading.remove > div,
#loading.destroy > div svg .load_logo {
	animation-name: none;
}
/*不可視化・クリック非対象に*/
#loading.destroy{
	opacity: 0;
	pointer-events: none;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　LOADING_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/







/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

ナビゲーション

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Gnav_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#gnav {
	box-sizing: border-box;
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-image: url(../svg/icon_triangle_2.svg);
	background-position: top right;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}
#gnav::before {
	content: '';
	z-index: 1000;
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	background-image: url(../svg/icon_triangle_2.svg);
	background-position: top right;
	background-size: 20px 20px;
	background-repeat: no-repeat;
}



/*
トグル
*/
#gnav .toggle {
	z-index: 905;
	position: absolute;
	top: 20px;
	left: 20px;
	width: 40px;
	height: 35px;
	cursor: pointer;
}

.nav .toggle p {
	width: 40px;
	height: 35px;
}

#gnav .toggle p span {
	position: absolute;
	background-color: #6642f4;
	width: 100%;
	height: 3px;
	border-radius: 1px;
	transition-duration: 200ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(.42,0,0,.99);
    transition-delay: 0ms;
    transform-origin: center;
}
#gnav .toggle p span:nth-of-type(1) {top: 0;}
#gnav .toggle p span:nth-of-type(2) {top: 16px;}
#gnav .toggle p span:nth-of-type(3) {bottom: 0}

/*avtive*/
#gnav.toggleactive .toggle p{
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
#gnav.toggleactive .toggle p span:nth-of-type(1) {
	transform: translateY(16px) rotate(-45deg);
	/*background-color: #fff;*/
}
#gnav.toggleactive .toggle p span:nth-of-type(2) {
	transform: translateY(0) rotate(45deg);
	/*background-color: #fff;*/
}
#gnav.toggleactive .toggle p span:nth-of-type(3) {
	opacity: 0;
}



/*
リンクリスト
*/
#gnav .list {
	pointer-events: none;
	opacity: 0;
	position: fixed;
	box-sizing: border-box;
	background-image: linear-gradient(90deg, #d4cfea, #e9e7f3);
	font-size: 20px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	width: 100%;
	height: 100%;
	padding: 90px 30px 30px 30px;
	transition-duration: 600ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(.42,0,0,.99);
    transition-delay: 0ms;
    transform-origin: center;
}

/*簡体字版*/
.zh_hans #gnav .list {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版*/
.zh_hant #gnav .list {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

#gnav.toggleactive .list {
	pointer-events: inherit;
	opacity: 1;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

#gnav .list > ul {
	width: 100%;
	margin: 0 0 60px 0;
}
#gnav .list > ul li {
	position: relative;
	margin: 0 0 25px;
}

/*アンカー*/
#gnav .list a {
	position: relative;
	display: block;
	background-image: url(../svg/arrow_btn_a.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 10px auto;
	color: #4130ca;
	font-size: 30px;
	padding: 0 0 0 30px;
	line-height: 1em;
	letter-spacing: 0.065em;
	text-decoration: none;
}



/*
BGM
*/
#gnav #sound_bgm {
	position: absolute;
	top: 18px;
	right: 18px;
	/*
	background-image: url(../svg/icon_sound_speaker.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 23px 15px;
	padding: 0 0 0 40px;
	*/
}

#gnav #sound_bgm > p {
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.5);
	width: 40px;
	height: 40px;
	padding: 3px;
	font-size: 12px;
	line-height: 1em;
	text-align: center;
	cursor: pointer;
	border: 1px #bcbac6 solid;
	border-radius: 6px;
}
#gnav #sound_bgm > p span {
	display: block;
	background-image: url(../svg/icon_bgm_off.svg);
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: transparent;
	color: #b4b0ca;
	width: 100%;
	height: 100%;
	padding: 0;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 800;
	font-style: normal;
	border-radius: 4px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
/*
#gnav #sound_bgm > p span::before {
	content: "OFF";
}
*/

/*アクティブ*/
#gnav #sound_bgm > p.active span {
	background-image: url(../svg/icon_bgm_on.svg);
	color: #ffffff;
}
/*
#gnav #sound_bgm > p.active span::before {
	content: "ON";
}
*/

/*クレジット表記追加*/
#gnav #sound_bgm::after {
	pointer-events: none;
	content: "THEME SONG: 澤野弘之 / 0-virtual";
	position: absolute;
	top: 50px;
	right: 0;
	color: #6642f4;
	height: 500px;
	font-size: 10px;
	writing-mode: vertical-rl;
	text-shadow: 0 0 6px #ffffff, 0 0 10px #ffffff, 0 0 3px #ffffff;
}

/*英語版：クレジット表記追加*/
.en #gnav #sound_bgm::after {
	content: "THEME SONG: SawanoHiroyuki / 0-virtual";
}

/*簡体字版：クレジット表記追加*/
.zh_hans #gnav #sound_bgm::after {
	content: "主题曲: SawanoHiroyuki / 0-virtual";
}

/*繁体字版：クレジット表記追加*/
.zh_hant #gnav #sound_bgm::after {
	content: "主題曲: SawanoHiroyuki / 0-virtual";
}



/*
ページURL
*/
.indexpage {
	display: none;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Gnav_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/







/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

フッター

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#grandfooter {
	position: relative;
	margin: 150px 0 0 0;
}



/*
ロゴ
*/
#grandfooter .symbol h2 {
	position: absolute;
	top: -80px;
	left: 50%;
	margin: 0 0 0 -47.5px;
	background-image: url(../images/logo_soyogifractal_symbol2l.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 95px;
	height: 104.5px;
	text-indent: -9999px;
}



/*
ディープリンク
*/
#grandfooter .deeplinks {
	background-image: url(../images/sp_footer_bg.png);
	background-position: top center;
	background-size: auto 600px;
	background-repeat: repeat-x;
	width: 100%;
	padding: 100px 0 30px 0;
}

#grandfooter .deeplinks ul {}

#grandfooter .deeplinks ul li {
	text-align: center;
	margin: 30px 0 0;
}

#grandfooter .deeplinks ul li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 20px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
}

/*簡体字版：ディープリンク*/
.zh_hans #grandfooter .deeplinks ul li a {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版：ディープリンク*/
.zh_hant #grandfooter .deeplinks ul li a {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}



/*
言語切替
*/
#grandfooter .changelang {
	background-color: #1b1d24;
	color: #ffffff;
	text-align: center;
	padding: 4em 0 2em 0;
}
#grandfooter .changelang h4 {
	margin: 0 0 30px 0;
	color: #787487;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 900;
	font-style: normal;
}
#grandfooter .changelang li {
	margin: 0 0 1em 0;
}
#grandfooter .changelang li:last-child {
	margin: 0;
}
#grandfooter .changelang li a {
	display: inline-block;
	color: #ffffff;
	padding: 10px 13px;
	font-size: 13px;
	line-height: 1em;
	text-decoration: none;
	border-radius: 6px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
#grandfooter .changelang li a:hover {
	background-color: #6642f4;
}



/*
権利表記
*/
#grandfooter .copyright {
	background-color: #1b1d24;
	color: #787487;
	font-size: 13px;
	text-align: center;
	padding: 50px 0;
}



/*
ページの先頭に戻る
*/
#grandfooter .btt {
	position: absolute;
	bottom: 45px;
	right: 20px;
}

#grandfooter .btt a {
	display: block;
	background-image: url(../svg/arrow_btt.svg);
	background-position: center 20px;
	background-size: 15px auto;
	background-color: #ffffff;
	color: #1b1d24;
	padding: 40px 15px 15px 15px;
	font-size: 12px;
	text-decoration: none;
	writing-mode: vertical-rl;
	border: 1px #dad8e6 solid;
	border-radius: 100px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 0ms;
	transform-origin: center;
}
#grandfooter .btt a:hover {
	background-position: center 20px;
	color: #6642f4;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/







/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

コーディング用

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
コーディング用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*body::after {
	opacity: 0.5;
	z-index: -1;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../../xxx.png);
	background-position: top center;
	background-repeat: no-repeat;
	width: 100%;
	height: 7500px;
}*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
コーディング用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

下層

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
キービジュアルエリア
*/
#sub #vis {
	height: 130px;
	margin: 0 0 0px 0;
	padding: 0;
}

/*ロゴ*/
#sub #vis .logo h1 {
	z-index: 3;
	position: absolute;
	left: 50%;
	top: 50px;
	margin: 0 0 0 -94.5px;
	background-image: url(../images/logo_soyogifractal_1l.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 189px;
	height: 40px;
	text-indent: -9999px;
}



/*
サブタイトル
*/
.subtitle {
	z-index: 3;
	position: relative;
	top: 38px;
	width: 300px;
	margin: 0 auto;
	text-align: center;
}

.subtitle h3 {
	font-size: 30px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1em;
}
.subtitle h3 span {
	display: block;
	background-image: url(../svg/icon_hr_subtitle.svg);
	background-position: bottom center;
	background-size: 100% auto;
	width: 80px;
	height: 4px;
	margin: 0 auto;
	padding: 20px 0 0 0;
}

/*簡体字版：サブタイトル*/
.zh_hans .subtitle h3 {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版：サブタイトル*/
.zh_hant .subtitle h3 {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}



/*
サブタイトル
*/
#substrwrapper {
	position: relative;
	margin: 0;
	padding: 0;
}



/*
ページタイトル
*/
#pagetitle {
	z-index: 55;
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 0 30px;
}
/*飾り*/
#sub section > #pagetitle::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	margin: -35px 0 0 0;
	background-image: url(../svg/icon_star_title.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	width: 40px;
	height: 35px;
}

#pagetitle h2,
#pagetitle h2 span {
	z-index: 20;
	position: relative;
	color: #6642f4;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 46px;
	line-height: 1em;
	margin: 0 0 15px;
	padding: 0;
	letter-spacing: 0;
}

/*ブリンク文字*/
#pagetitle h2 span {
	z-index: -5;
	position: absolute;
	top: 7px;
	left: 7px;
	color: transparent;
	line-height: 1em;
	-webkit-text-stroke: 1px #dad8e6;
}

/*簡体字版*/
.zh_hans #pagetitle h2 {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版*/
.zh_hant #pagetitle h2 {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

#pagetitle p {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	font-size: 20px;
	line-height: 1em;
	margin: 0;
	padding: 0;
	transform: scaleX(0.6);
	transform-origin: left;
}

/*簡体字版*/
.zh_hans #pagetitle p {
	font-family: "Noto Serif SC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
}

/*繁体字版*/
.zh_hant #pagetitle p {
	font-family: "Noto Serif TC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
}



/*
ページタイトル背景
*/
#sub #pagetitle h2::before {
	z-index: -5;
	position: absolute;
	top: 7px;
	left: 7px;
	color: transparent;
	font-size: 50px;
	line-height: 1em;
	-webkit-text-stroke: 1px #dad8e6;
}
#sub.news #pagetitle h2::before {
	content: "NEWS";
}
#sub.about #pagetitle h2::before {
	content: "CONCEPT";
}
#sub.contact #pagetitle h2::before {
	content: "CONTACT";
}
#sub.fracterkit #pagetitle h2::before {
	content: "FRACTER KIT";
	font-size: 36px;
	letter-spacing: -1px;
}

/*簡体字版：ページタイトル背景*/
#sub.news.zh_hans #pagetitle h2::before {
	content: "新闻";
}
#sub.about.zh_hans #pagetitle h2::before {
	content: "概念";
}
#sub.contact.zh_hans #pagetitle h2::before {
	content: "联系我们";
}
#sub.fracterkit.zh_hans #pagetitle h2::before {
	content: "FRACTER KIT";
}

/*繁体字版：ページタイトル背景*/
#sub.news.zh_hant #pagetitle h2::before {
	content: "最新消息";
}
#sub.about.zh_hant #pagetitle h2::before {
	content: "概念";
}
#sub.contact.zh_hant #pagetitle h2::before {
	content: "聯絡我們";
}
#sub.fracterkit.zh_hant #pagetitle h2::before {
	content: "FRACTER KIT";
}



/*
基本ボックス：レイアウト
*/
.aboutdetail {
	position: relative;
	box-sizing: border-box;
	background-color: rgb(255 255 255 / 0.4);
	width: 100%;
	margin: 50px auto 0 auto;
	padding: 30px 30px 40px 30px;
	/*
	border-radius: 15px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	*/
}
.aboutdetail:first-of-type {
	margin: 90px auto 0 auto;
}



/*
基本ボックス：タイトル
*/
.aboutdetail h4 {
	z-index: 20;
	display: block;
	position: relative;
	top: -45px;
	margin: 0 0 0px 0;
	padding: 0 0 20px 0;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 30px;
	line-height: 1;
	text-align: center;
}
.aboutdetail h4::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	background-color: #73dfde;
	width: 40px;
	height: 4px;
}
.aboutdetail h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	background-color: #6642f4;
	width: 40px;
	height: 4px;

}

/*簡体字版：基本ボックス：タイトル*/
.zh_hans .aboutdetail h4 {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版：基本ボックス：タイトル*/
.zh_hant .aboutdetail h4 {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}



/*
基本ボックス：テキスト類
*/
.aboutdetail h5 {
	font-size: 20px;
	line-height: 2em;
	margin: 0 0 20px;
}

.aboutdetail p {
	font-size: 15px;
	line-height: 2em;
	margin: 0 0 30px;
}

.aboutdetail p.omitted{
	font-size: 13px;
	text-align: right;
}



/*
基本ボックス：コラボリスト
*/
.collabolist {
	width: 100%;
	margin: 0 auto 30px auto;
}

.collabolist li {
	box-sizing: border-box;
	background-color: rgb(255 255 255 / 0.4);
	font-size: 18px;
	margin: 0 0 10px;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

/*見出し*/
.collabolist li h6 {
	position: relative;
	margin: 0 0 15px 0;
	padding: 0 0 0 40px;
	font-size: 16px;
}
.collabolist li h6::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	background-image: url(../images/collabo_icon.png);
	background-size: 100% auto;
	width: 12px;
	height: 30px;
	margin: -15px 0 0;
}

/*英語版：見出し*/
.en .collabolist li h6 {
	padding: 0 0 0 25px;
}

/*詳細*/
.collabolist li p {
	margin: 0;
	font-size: 13px;
}
.collabolist li p a {
	color: #4130ca;
	text-decoration: none;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層汎用フッター_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
汎用レイアウト
*/
#officiallinks {}

/*見出し*/
#officiallinks .subtitle h3 {
	font-size: 23px;
	line-height: 1.2em;
}



/*
リンクリスト
*/
#officiallinks .officiallinks {
	width: 300px;
	margin: 0 auto;
}

#officiallinks .officiallinks li {
	margin: 0 0 10px 0;
}

#officiallinks .officiallinks a {
	display: block;
	position: relative;
	top: 0;
	width: 300px;
	height: 82.5px;
	text-indent: -9999px;
	filter: drop-shadow(0 0 6px rgba(16, 10, 38, 0.2));
	/*負荷軽減*/
	transform: translateZ(0);
}

#officiallinks .officiallinks .x a {
	background-image: url(../images/sp_account_x.png);
}
#officiallinks .officiallinks .youtube a {
	background-image: url(../images/sp_account_youtube.png);
}
#officiallinks .officiallinks .app a {
	background-image: url(../images/sp_account_app.png);
}
#officiallinks .officiallinks .zokei a {
	background-image: url(../images/sp_account_zokei.png);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層汎用フッター_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

トップページ

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
大見出し
*/
#top section > .title {
	z-index: 2;
	position: relative;
	top: 60px;
	width: 300px;
	margin: 0 auto;
}

/*飾り*/
#top section > .title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	margin: -37px 0 0 0;
	background-image: url(../svg/icon_star_title.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	width: 45px;
	height: 37px;
}

/*欧文タイトル*/
#top section > .title h2 {
	z-index: 20;
	position: relative;
	color: #6642f4;
	font-size: 50px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1em;
	margin: 0 0 15px;
}

/*簡体字版：欧文タイトル*/
#top.zh_hans section > .title h2 {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版：欧文タイトル*/
#top.zh_hant section > .title h2 {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

#top section > .title h2::before {
	z-index: -5;
	position: absolute;
	top: 7px;
	left: 7px;
	color: transparent;
	font-size: 50px;
	line-height: 1em;
	-webkit-text-stroke: 1px #dad8e6;
}
#top section#news > .title h2::before {
	content: 'NEWS';
}
#top section#about > .title h2::before {
	content: 'ABOUT';
}
#top section#profile > .title h2::before {
	content: 'PROFILE';
}
#top section#library > .title h2::before {
	content: 'LIBRARY';
}
#top section#message > .title h2::before {
	content: 'MESSAGE';
}
#top section#official > .title h2::before {
	content: 'OFFICIAL';
}
/*簡体字版*/
#top.zh_hans section#news > .title h2::before {
	content: '新闻';
}
#top.zh_hans section#about > .title h2::before {
	content: '关于';
}
#top.zh_hans section#profile > .title h2::before {
	content: '角色介绍';
}
#top.zh_hans section#library > .title h2::before {
	content: '资料库';
}
#top.zh_hans section#message > .title h2::before {
	content: '留言';
}
/*繁体字版*/
#top.zh_hant section#news > .title h2::before {
	content: '最新消息';
}
#top.zh_hant section#about > .title h2::before {
	content: '關於';
}
#top.zh_hant section#profile > .title h2::before {
	content: '角色介紹';
}
#top.zh_hant section#library > .title h2::before {
	content: '資料庫';
}
#top.zh_hant section#message > .title h2::before {
	content: '留言';
}

/*和文タイトル*/
#top section > .title p {
	display: block;
	position: relative;
	color: #180f3d;
	margin: 0;
	font-size: 20px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 1em;
	white-space: nowrap;
	transform: scaleX(0.6);
	transform-origin: left;
}

/*簡体字版：和文タイトル*/
#top.zh_hans section > .title p {
	font-family: "Noto Serif SC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
}

/*繁体字版：和文タイトル*/
#top.zh_hant section > .title p {
	font-family: "Noto Serif TC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
}



/*
サンプルボイス
*/
.samplevoice {
	width: 300px;
	margin: 0 auto;
}

.samplevoice li {
	filter: drop-shadow(0 0 1px #a3a3bb);
	/*負荷軽減*/
	transform: translateZ(0);
}

.samplevoice li > div {
	box-sizing: border-box;
	position: relative;
	background-color: #e7e7eb;
	width: 300px;
	min-height: 45px;
	margin: 15px 0;
	padding: 20px;
	clip-path: polygon(5% 0, 100% 0, 100% 0%, 100% 85%, 95% 100%, 0% 100%, 0% 100%, 0% 15%);
}
.samplevoice li:nth-of-type(3) > div,
.samplevoice li:nth-of-type(4) > div {
	clip-path: polygon(5% 0, 100% 0, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 100%, 0% 10%);
}

.samplevoice li > div > div {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: dotted 1px #c9c6e0;
}
.samplevoice li > div > div h5 {
	flex: 1;
	font-size: 15px;
	line-height: 1.65em;
}

/*アイコン*/
.samplevoice li > div .sound_set span {
	display: block;
	background-image: url(../svg/icon_sound_play.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	width: 25px;
	height: 25px;
	margin: 0 15px 0 0;
	text-indent: -9999px;
	cursor: pointer;
}
.samplevoice li > div .sound_set.active span {
	background-image: url(../svg/icon_sound_pause.svg);
}

/*秒数*/
.samplevoice li > div > span {
	display: block;
	color: #c9c6e0;
	text-align: right;
	font-size: 14px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：キービジュアルエリア_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
下層共通
*/
#vis {
	position: relative;
	width: 100%;
	overflow: hidden;
}



/*
基本設定
*/
#top #vis {
	height: 525px;
	margin: 0 0 550px 0;
}



/*
ロゴ
*/
#top #vis h1 {
	z-index: 3;
	position: absolute;
	top: 383px;
	left: 50%;
	margin: 0 0 0 -164px;
	background-image: url(../images/sp_logo_soyogifractal_1l.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	width: 328px;
	height: 143.5px;
	text-indent: -9999px;
}



/*
ビジュアル要素
*/
#top #vis .object {
	z-index: 2;
	position: relative;
}

/*キービジュアル*/
#top #vis .object figure img {
	display: block;
	position: absolute;
	top: 21px;
	left: 50%;
	margin: 0 0 0 -197px;
	width: 555px;
	height: auto;
}



/*
背景エフェクト
*/
#top #vis .visbg {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 770px;
}

/*パーティクル背景*/
#vis .visbg #particles-js {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*グラデーション背景*/
#vis .visbg .gradation {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, #d4cfea, #e9e7f3);
}

/*下層共通：星型パーティクル*/
#vis .visbg .starparticle {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#vis .visbg .starparticle span {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	background-image: url(../svg/icon_star_a.svg);
	width: 8px;
	height: 8px;
}
#vis .visbg .starparticle span:nth-of-type(1),
#vis .visbg .starparticle span:nth-of-type(2),
#vis .visbg .starparticle span:nth-of-type(3),
#vis .visbg .starparticle span:nth-of-type(4),
#vis .visbg .starparticle span:nth-of-type(5) {
	width: 16px;
	height: 16px;
}
#vis .visbg .starparticle span:nth-of-type(6),
#vis .visbg .starparticle span:nth-of-type(7),
#vis .visbg .starparticle span:nth-of-type(8) {
	width: 5px;
	height: 5px;
}
#vis .visbg .starparticle span:nth-of-type(9),
#vis .visbg .starparticle span:nth-of-type(10) {
	width: 10px;
	height: 10px;
}

#vis .visbg .starparticle span:nth-of-type(1) {
	margin: 30px 0 0 130px;
	animation-delay: 0ms;
	animation-duration: 4000ms;
}
#vis .visbg .starparticle span:nth-of-type(2) {
	margin: 10px 0 0 -94px;
	animation-delay: 600ms;
	animation-duration: 3000ms;
}
#vis .visbg .starparticle span:nth-of-type(3) {
	margin: 210px 0 0 -170px;
	animation-delay: 0ms;
	animation-duration: 2000ms;
}
#vis .visbg .starparticle span:nth-of-type(4) {
	margin: 410px 0 0 160px;
	animation-delay: 600ms;
	animation-duration: 3000ms;
}
#vis .visbg .starparticle span:nth-of-type(5) {
	margin: 300px 0 0 130px;
	animation-delay: 0ms;
	animation-duration: 4000ms;
}
#vis .visbg .starparticle span:nth-of-type(6) {
	margin: 200px 0 0 174px;
	animation-delay: 900ms;
	animation-duration: 2700ms;
}
#vis .visbg .starparticle span:nth-of-type(7) {
	margin: 490px 0 0 -140px;
	animation-delay: 1600ms;
	animation-duration: 6000ms;
}
#vis .visbg .starparticle span:nth-of-type(8) {
	margin: 370px 0 0 -164px;
	animation-delay: 3600ms;
	animation-duration: 2800ms;
}
#vis .visbg .starparticle span:nth-of-type(9) {
	margin: 100px 0 0 100px;
	animation-delay: 1600ms;
	animation-duration: 3500ms;
}
#vis .visbg .starparticle span:nth-of-type(10) {
	margin: 110px 0 0 -140px;
	animation-delay: 600ms;
	animation-duration: 3100ms;
}
#vis .visbg .starparticle span:nth-of-type(11) {
	margin: 450px 0 0 -177px;
	animation-delay: 2600ms;
	animation-duration: 2200ms;
}
#vis .visbg .starparticle span:nth-of-type(12) {
	margin: 260px 0 0 143px;
	animation-delay: 1600ms;
	animation-duration: 2700ms;
}
#vis .visbg .starparticle span {
	animation-name: anime_starparticle;
	animation-direction: normal;
	animation-duration: 4000ms;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-play-state: running;
	animation-timing-function: ease-in-out;
}
@keyframes anime_starparticle {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	30% {
		opacity: 1;
		transform: scale(1.0);
	}
	70% {
		opacity: 0.8;
		transform: scale(0.8);
	}
	100% {
		opacity: 0;
		transform: scale(0.5);
	}
}



/*
背景エフェクト
*/
#top #vis .object::after {
	display: none;
	content: 'SOYOGI FRACTAL OFFICIAL WEB SITE.';
	z-index: 20;
	position: absolute;
	top: 120px;
	right: -80px;
	color: #6642f4;
	font-size: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	transform: rotate(-90deg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：キービジュアルエリア_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：ファストビュー要素_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#fvinfo {
	z-index: 5;
	position: absolute;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

/*アニメーション*/
#fvinfo {
	opacity: 0;
	top: 480px;
	transition-duration: 600ms;
	transition-property: all;
	transition-timing-function: cubic-bezier(.42,0,0,.99);
	transition-delay: 1200ms;
	transform-origin: top;
}
#fvinfo.active {
	opacity: 1;
	top: 585px;
}



/*
ピックアップ
*/
#fvinfo .pickupinfo {
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0 0 0 -150px;
	width: 300px;
}
#fvinfo .pickupinfo ul {
	display: block;
	width: auto;
	margin: auto;
}

/*アンカー*/
#fvinfo .pickupinfo ul a {
	display: block;
	position: relative;
	color: #180f3d;
	width: 300px;
	height: auto;
	text-decoration: none;
}
#fvinfo .pickupinfo ul a::before {
	content: 'PICKUP INFO';
	position: absolute;
	top: -25px;
	left: 0;
	box-sizing: border-box;
	background-color: #150d3b;
	color: #fff;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 12px;
	line-height: 26px;
	width: 130px;
	height: 26px;
	padding: 0 0 0 15px;
	clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

/*サムネ*/
#fvinfo .pickupinfo figure {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background-image: linear-gradient(90deg, #150d3b, #211061);
	width: 300px;
	height: 188.5px;
	padding: 10px;
}
#fvinfo .pickupinfo figure img {
	width: 100%;
	height: auto;
}

/*詳細*/
#fvinfo .pickupinfo .detail {
	box-sizing: border-box;
	background-color: #ffffff;
	width: 300px;
	padding: 15px;
}
#fvinfo .pickupinfo .detail h4 {
	font-size: 13px;
	line-height: 1.65em;
}
#fvinfo .pickupinfo .detail .meta {
	display: flex;
	justify-content: space-between;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 10px;
	margin: 0 0 10px;
}
#fvinfo .pickupinfo .detail .meta time {
	box-sizing: border-box;
	line-height: 20px;
	height: 20px;
	padding: 0 10px;
	border: solid 1px #4e5253;
	border-radius: 11px;
}
#fvinfo .pickupinfo .detail .meta span {
	box-sizing: border-box;
	background-color: #7754ff;
	color: #fff;
	line-height: 20px;
	text-align: center;
	width: 80px;
	height: 20px;
	padding: 0 10px;
	border-radius: 11px;
}



/*
アプリバナー
*/
#fvinfo .appbanner {
	position: absolute;
	top: 340px;
	left: 50%;
	margin: 0 0 0 -150px;
	width: 300px;
	
}

#fvinfo .appbanner a {
	position: relative;
	top: 0;
	display: block;
	background-image: url(../images/sp_fvinfo_happyrat.png);
	width: 300px;
	height: 161px;
	text-indent: -9999px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：ファストビュー要素_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：NEWS_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #news {}



/*
リスト
*/
#top #news .newslist ul {
	width: 300px;
	margin: 0 auto;
}

/*トップページ用スタイル*/
#top #news .newslist ul li {
	width: 300px;
	margin: 0 0 25px 0;
}
#top #news .newslist ul li a {
	display: flex;
	color: #180f3d;
	width: auto;
	text-decoration: none;
}
#top #news .newslist ul li figure {
	display: block;
	box-sizing: border-box;
	background-color: #211061;
	width: 113px;
	height: 69px;
	padding: 5px;
}
#top #news .newslist ul li figure img {
	width: 100%;
	height: auto;
}

#top #news .newslist ul li .detail {
	position: relative;
	box-sizing: border-box;
	background-image: url(../svg/icon_triangle_1.svg);
	background-position: bottom right;
	background-size: 14px 14px;
	width: 207px;
	padding: 0 10px 10px 10px;
}

#top #news .newslist ul li .detail::after {
	content: '';
	z-index: -5;
	position: absolute;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
	background-color: #e9e7f3;
	width: 300px;
	height: calc(100% - 25px);
}

#top #news .newslist ul li h4 {
	font-size: 11px;
	line-height: 1.65em;
}

#top #news .newslist ul li .meta {
	display: flex;
	justify-content: flex-start;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 10px;
	margin: 0 0 18px;
}
#top #news .newslist ul li .meta time {
	box-sizing: border-box;
	line-height: 20px;
	height: 20px;
	margin: 0 5px 0 0;
	padding: 0 10px;
	border: solid 1px #4e5253;
	border-radius: 11px;
}
#top #news .newslist ul li .meta span {
	box-sizing: border-box;
	background-color: #7754ff;
	color: #fff;
	line-height: 20px;
	text-align: center;
	width: 80px;
	height: 20px;
	padding: 0 10px;
	border-radius: 11px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：NEWS_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：ABOUT_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #about {
	position: relative;
	overflow: hidden;
}
#top #about .currentbox {
	position: relative;
	padding: 150px 0 50px 0;
}



/*
飾り
*/
#top #about::before {
	content: "";
	display: block;
	z-index: 3;
	position: absolute;
	top: 17px;
	left: 50%;
	margin: 0 0 0 -5px;
	background-image: url(../svg/object_slash_a.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 385px;
	height: 325px;
}



/*
コンセプト
*/
#top #about .concept {
	width: 300px;
	margin: 0 auto 100px;
}

/*キャッチコピー*/
#top #about .concept h4 {
	color: #4130ca;
	margin: 0 0 40px 0;
	font-size: 25px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	letter-spacing: 0.25em;
	line-height: 1.9em;
	white-space: nowrap;
	transform: scaleX(0.6);
	transform-origin: left;
}

/*英語版：キャッチコピー*/
#top.en #about .concept h4 {
	font-size: 18px;
}

/*簡体字版：キャッチコピー*/
#top.zh_hans #about .concept h4 {
	font-family: "Noto Serif SC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
}

/*繁体字版：キャッチコピー*/
#top.zh_hant #about .concept h4 {
	font-family: "Noto Serif TC", serif;
	font-optical-sizing: auto;
	font-weight: 500;
}

/*キャッチコピー*/
#top #about .concept .detail {
	width: 300px;
	margin: 0 auto;
}

#top #about .concept .detail p {
	margin: 0 0 1em 0;
	font-size: 15px;
	letter-spacing: 0.065em;
	line-height: 1.7em;
}



/*
キーパーソン
*/
#top #about .keyparson {
}
#top #about .keyparson > ul {
	width: 300px;
	margin: 0 auto;
}

#top #about .keyparson > ul > li {
	position: relative;
	box-sizing: border-box;
	background-color: #e9e7f3;
	width: 300px;
	min-height: 550px;
	margin: 0 0 20px;
	padding: 20px;
}

/*簡体字版*/
#top.zh_hans #about .keyparson > ul > li {
	min-height: 490px;
}

/*繁体字版*/
#top.zh_hant #about .keyparson > ul > li {
	min-height: 490px;
}

/*サムネイル*/
#top #about .keyparson .keyparson_list figure {
	display: flex;
	align-items: center;
	width: 100px;
	height: 100px;
	margin: 0 0 25px 0;
	border-radius: 400px;
	overflow: hidden;
}
#top #about .keyparson .keyparson_list figure img {
	width: 100%;
	height: auto;
}

/*テキスト要素*/
#top #about h5 {
	margin: 0px 0 20px 0;
	font-size: 17px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 600;
	font-style: normal;
}

#top #about h4 {
	margin: 0 0 25px 0;
	font-size: 40px;
	font-weight: 400;
}

/*英語版*/
#top.en #about h4 {
	font-size: 30px;
}

/*簡体字版*/
#top.zh_hans #about h4 {
	font-size: 30px;
}

/*繁体字版*/
#top.zh_hant #about h4 {
	font-size: 30px;
}

#top #about .detail {
	position: relative;
	padding: 30px 0 0 0;
}
#top #about .detail::before {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0;
	background-color: #7754ff;
	width: 20px;
	height: 4px;
	margin: 0 0 0 0;
}

#top #about .detail p {
	font-size: 14px;
	line-height: 1.6em;
	letter-spacing: 0.065em;
	word-break: break-all;
}

/*外部アイコン*/
#top #about .keyparson .ex {
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 20px;
}
#top #about .keyparson .ex li a {
	display: block;
	background-color: #3a3848;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 26px auto;
	width: 46px;
	height: 46px;
	margin: 0 0 0 5px;
	text-indent: -9999px;
	border-radius: 6px;
}
#top #about .keyparson .ex .x a {
	background-image: url(../svg/icon_about_x_w.svg);
}
#top #about .keyparson .ex .site a {
	background-image: url(../svg/icon_about_site_w.svg);
}




/*
サブタイトル要素
*/
#top #about .subtitle {
	top: 0;
	margin: 0 auto 50px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：ABOUT_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：PROFILE_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #profile {
	position: relative;
	overflow: hidden;
}



/*
ビジュアル
*/
#top #profile .illust {
	z-index: 3;
	position: absolute;
	top: 300px;
	left: 50%;
	margin: 0 0 0 -144px;
	width: 296px;
	height: 484px;
}
#top #profile .illust img {
	width: 100%;
	height: auto;
}

/*英語版：ビジュアル*/
#top.en #profile .illust {
	top: 225px;
}

/*簡体字版：ビジュアル*/
#top.zh_hans #profile .illust {
	top: 225px;
}

/*繁体字版：ビジュアル*/
#top.zh_hant #profile .illust {
	top: 225px;
}



/*
詳細
*/
#top #profile .detail {
	z-index: 2;
	position: relative;
	box-sizing: border-box;
	width: 300px;
	margin: 0 auto;
	padding: 40px 0 0 0;
}

/*名前*/
#top #profile .detail h3 {
	margin: 0 0 25px 0;
	font-size: 42px;
	font-weight: 300;
	letter-spacing: 0.045em;
}
#top #profile .detail h3 ruby rt {
	font-size: 12px;
	font-weight: 700;
	padding: 8px;
}

/*英語版：名前*/
#top.en #profile .detail h3 {
	margin: 0 0 550px 0;
}

/*簡体字版：名前*/
#top.zh_hans #profile .detail h3 {
	margin: 0 0 550px 0;
}

/*繁体字版：名前*/
#top.zh_hant #profile .detail h3 {
	margin: 0 0 550px 0;
}

#top #profile .detail h4 {
	margin: 0 0 550px 0;
	font-size: 16px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 600;
	font-style: normal;
}

/*プロフテキスト*/
#top #profile .detail .caption {
	width: 280px;
	margin: 0 auto 50px;
}
#top #profile .detail .caption p {
	margin: 0 0 1em 0;
	font-size: 16px;
	line-height: 1.6em;
	letter-spacing: 0.065em;
}

/*サンプルボイス*/
#top #profile .samplevoice {}

#top #profile .samplevoice li {}
#top #profile .samplevoice li > div {
	width: 300px;
	min-height: 45px;
	clip-path: polygon(5% 0, 100% 0, 100% 0%, 100% 85%, 95% 100%, 0% 100%, 0% 100%, 0% 15%);
}



/*
飾り
*/
#top #profile .object span {
	display: block;
	z-index: 1;
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin: 0 0 0 -350px;
	background-image: url(../svg/object_slash_a.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 550px;
	height: 320px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：PROFILE_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：LIBRARY_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #library {
	overflow: hidden;
}
#top #library .currentbox_wrapper {
	margin: 0 0 100px 0;
}



/*
大見出し
*/
#top section#library > .title {
	top: 15px;
	margin: 0 auto 100px auto;
}



/*
大見出し
*/
#top section#library .subtitle {
	top: -65px;
}



/*
MOVIE
*/
#top section#library .library_movie {}
#top section#library .library_movie .currentbox {
	width: 300px;
	padding: 50px 0 80px 0;
}

#top section#library .library_movie .swiper-slide a {
	display: block;
	color: #180f3d;
	width: 300px;
	margin: 0 auto;
	text-decoration: none;
}

/*サムネイル*/
#top section#library .library_movie .currentbox .thumb {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/library_movie_frame.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	width: 300px;
	height: 189px;
}
#top section#library .library_movie .currentbox .thumb figure {
	width: 280px;
	height: 158px;
	overflow: hidden;
}
#top section#library .library_movie .currentbox .thumb figure img {
	width: 100%;
	height: 100%;
}

/*カテゴリ表記*/
#top section#library .library_movie .currentbox h5 {
	margin: 30px 0;
	color: #b5b1c9;
	font-size: 14px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 600;
	font-style: normal;
}
#top section#library .library_movie .currentbox h5 span {
	color: #180f3d;
}

/*簡体字版：カテゴリ表記*/
#top section#library .library_movie .currentbox h5 {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版：カテゴリ表記*/
#top section#library .library_movie .currentbox h5 {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*キャプション*/
#top section#library .library_movie .currentbox .caption {}

#top section#library .library_movie .currentbox .caption p {
	line-height: 1.65em;
}

/*ページネーション*/
#top section#library .library_movie .currentbox .ui .swiper-pagination {
	box-sizing: border-box;
	background-color: #fff;
	left: 50%;
	bottom: 0;
	width: 768px;
	margin: 0 0 0 -384px;
	padding: 20px 220px;
}
#top section#library .library_movie .currentbox .ui .swiper-pagination span {
	margin: 10px 4px;
}

/*アロー*/
#top section#library .library_movie .currentbox .ui .swiper-button-next,
#top section#library .library_movie .currentbox .ui .swiper-button-prev {
	margin: -90px 0 0 0;
}
:root {
    --swiper-navigation-size: inherit !important;
}



/*
comics
*/
#top section#library .library_comics {}
#top section#library .library_comics .currentbox {
	width: 300px;
	padding: 50px 0 50px 0;
}



/*
COMCIS：概要
*/
#top section#library .library_comics .comic_details {
	width: 300px;
	margin: 0px auto 50px auto;
	overflow: hidden;
	border-radius: 20px;
	filter: drop-shadow(0 0 10px rgba(200, 185, 245, 0.5));
}

#top section#library .library_comics .comic_details figure {
	position: relative;
}
#top section#library .library_comics .comic_details figure img {
	width: 100%;
	height: auto;
}
#top section#library .library_comics .comic_details .coverart {
}
#top section#library .library_comics .comic_details .diagram {
}
#top section#library .library_comics .comic_details .diagram a::after {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-image: url(../comics/comic_icon_zoom.svg);
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
}



/*
COMCIS：モジュール
*/
#top section#library .library_comics .comc_module {
	position: relative;
}

#top section#library .library_comics .swiper-slide .thumb {
	display: block;
	color: #180f3d;
	width: 300px;
	margin: 0 auto;
	text-decoration: none;
}

/*サムネイル*/
#top section#library .library_comics .currentbox .thumb {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/library_comics_frame.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	width: 300px;
	height: 418px;
}
#top section#library .library_comics .currentbox .thumb figure {
	width: 280px;
	height: 396px;
	overflow: hidden;
}
#top section#library .library_comics .currentbox .thumb figure img {
	width: 100%;
	height: 100%;
}

/*コミックスinfo*/
#top section#library .library_comics .currentbox .comics_info {
	width: 300px;
	margin: 0 auto;
}

/*カテゴリ表記*/
#top section#library .library_comics .currentbox h5 {
	margin: 30px 0 20px;
	color: #b5b1c9;
	font-size: 12px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 600;
	font-style: normal;
}
#top section#library .library_comics .currentbox h5 span {
	color: #180f3d;
}

/*簡体字版：カテゴリ表記*/
#top.zh_hans section#library .library_comics .currentbox h5 {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*繁体字版：カテゴリ表記*/
#top.zh_hant section#library .library_comics .currentbox h5 {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/*キャプション*/
#top section#library .library_comics .currentbox .caption {}

#top section#library .library_comics .currentbox .caption p {
	line-height: 1.65em;
}

/*ページネーション*/
#top section#library .library_comics .currentbox .ui .swiper-pagination {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin: 70px auto 0 auto;
	border-radius: 30px;
}
#top section#library .library_comics .currentbox .ui .swiper-pagination span {
	display: block;
	background-color: #cccccc !important;
	color: #ababab;
	margin: 10px 4px;
	padding: 4px 8px;
	height: auto !important;
	font-size: 15px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	opacity: 1 !important;
}
#top section#library .library_comics .currentbox .ui .swiper-pagination span.swiper-pagination-bullet-active {
	background-color: #6642f4 !important;
	color: #ffffff;;
}

/*アロー*/
#top section#library .library_comics .currentbox .ui .swiper-button-next,
#top section#library .library_comics .currentbox .ui .swiper-button-prev {
	top: 320px;
	margin: -130px 0 0 0;
	/*
	transform: rotate(180deg);
	*/
}
:root {
    --swiper-navigation-size: inherit !important;
}
/*
#top section#library .library_comics .currentbox .ui .swiper-button-next {
	left: 10px;
	right: auto;
}
#top section#library .library_comics .currentbox .ui .swiper-button-prev {
	left: auto;
	right: 10px;
}
*/



/*
SOUND
*/
#top section#library .library_sound {}
#top section#library .library_sound .currentbox {
	padding: 50px 0 50px 0;
}



/*
USER CONTENTS
*/
#top section#library .library_usercontents {}
#top section#library .library_usercontents .currentbox {
	padding: 50px 0 240px 0;
}

/*詳細テキスト*/
#top section#library .library_usercontents .currentbox .detail {
	z-index: 1;
	position: relative;
	width: 300px;
	margin: 0 auto 20px;
}
#top section#library .library_usercontents .currentbox .detail p {
	font-size: 16px;
	line-height: 1.6em;
	letter-spacing: 0.065em;
	margin: 0 0 1em 0;
}
#top section#library .library_usercontents .currentbox .detail em {
	color: #4130ca;
	font-style: normal;
}

/*リンク*/
#top section#library .library_usercontents .currentbox .exlink {
	width: 300px;
	margin: 0 auto;
}
#top section#library .library_usercontents .currentbox .exlink ul {}
#top section#library .library_usercontents .currentbox .exlink ul li {
	margin: 0 0 15px;
}
#top section#library .library_usercontents .currentbox .exlink ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1b1d24;
	color: #ffffff;
	width: 300px;
	min-height: 60px;
	font-size: 12px;
	line-height: 1.65em;
	text-decoration: none;
	clip-path: polygon(4% 0, 100% 0, 100% 0%, 100% 81%, 96% 100%, 0% 100%, 0% 100%, 0% 18%);
}
#top section#library .library_usercontents .currentbox .exlink ul li a em {
	color: #6642f4;
	font-style: normal;
	font-weight: 500;
}

/*ガイドライン*/
#top section#library .library_usercontents .currentbox .exlink > p a {
	display: block;
	box-sizing: border-box;
	color: #1b1d24;
	padding: 20px;
	line-height: 1em;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	border: 1px #828282 solid;
	border-radius: 100px;
}

/*英語版：ガイドライン*/
#top.en section#library .library_usercontents .currentbox .exlink > p a {
	line-height: 1.6em;
}



/*ビジュアル*/
#top section#library .library_usercontents .currentbox .illust {
	z-index: 2;
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin: 0 0 0 -54px;
	width: 104px;
	height: 234px;
}
#top section#library .library_usercontents .currentbox .illust img {
	width: 100%;
	height: auto;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：LIBRARY_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：MESSAGE_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #message {
	overflow: hidden;
}

#top #message .currentbox {
	padding: 100px 0 220px 0;
}



/*
説明テキスト
*/
#top #message .read {
	width: 300px;
	margin: 0 auto 60px auto;
}

#top #message .read p {
	font-size: 16px;
	line-height: 1.6em;
	letter-spacing: 0.065em;
	margin: 0 0 1em 0;
}
#top #message .read p.caption {
	font-size: 13px;
	text-align: right;
}



/*
カルーセル
*/
#top #message #swiper_message .swiper {
	background-image: url(../images/sp_message_frame.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 300px;
	height: 390px;
}

/*スクロールガイド画像*/
#top #message #swiper_message .swiper::after {
	display: block;
	content: "";
	position: absolute;
	top: 30px;
	right: 17px;
	z-index: 1;
	background-image: url(../svg/arrow_scroll.svg);
	width: 10px;
	height: 84px;
}

/*各カルーセルボックス*/
#top #message #swiper_message .swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*コンテンツボックス本体*/
#top #message #swiper_message .swiper .swiper-slide > div {
	position: relative;
	width: 270px;
	height: 320px;
}

/*お名前*/
#top #message #swiper_message .swiper .swiper-slide > div h3 {
	margin: 0 0 20px 0;
	font-size: 30px;
}

/*英語版：お名前*/
#top.en #message #swiper_message .swiper .swiper-slide > div h3 {
	font-size: 20px;
}

/*簡体字版：お名前*/
#top.zh_hans #message #swiper_message .swiper .swiper-slide > div h3 {
	font-size: 20px;
}

/*繁体字版：お名前*/
#top.zh_hant #message #swiper_message .swiper .swiper-slide > div h3 {
	font-size: 20px;
}

/*所属*/
#top #message #swiper_message .swiper .swiper-slide > div h5 {
	color: #9d99b6;
	font-size: 14px;
}

/*英語版：所属*/
#top.en #message #swiper_message .swiper .swiper-slide > div h5 {
	font-size: 12px;
	line-height: 1.4em;
}

/*簡体字版：所属*/
#top.zh_hans #message #swiper_message .swiper .swiper-slide > div h5 {
	font-size: 12px;
	line-height: 1.4em;
}

/*繁体字版：所属*/
#top.zh_hant #message #swiper_message .swiper .swiper-slide > div h5 {
	font-size: 12px;
	line-height: 1.4em;
}

/*テキスト*/
#top #message #swiper_message .swiper .swiper-slide > div .detail {
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 230px;
	padding: 0 25px 0 0px;
	overflow-y: scroll;
}
#top #message #swiper_message .swiper .swiper-slide > div .detail p {
	font-size: 14px;
	line-height: 1.6em;
	letter-spacing: 0.065em;
	margin: 0 0 1em 0;
	text-align: justify;
	word-break: break-all;
}

/*ページネーション*/
#top #message .currentbox .ui .swiper-pagination {
	box-sizing: border-box;
	left: 50%;
	bottom: 20px;
	width: 768px;
	margin: 0 0 0 -384px;
	padding: 20px 220px;
}
#top #message .currentbox .ui .swiper-pagination span {
	margin: 10px 4px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：MESSAGE_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：OFFICIAL_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#top #official {}



/*
基本レイアウト
*/
#top #official .currentbox {}



/*
SNSウィジェット：X
*/
#top #official .widget_x {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../images/sp_account_x_frame.png);
	width: 300px;
	height: 420px;
	margin: 0 auto 50px;
}

#top #official .widget_x #twitter {
	width: 260px;
	height: 380px;
	overflow-y: scroll;
	margin: 0 auto;
}



/*
アカウントリスト
*/
#top #official .officiallinks {
	width: 300px;
	margin: 0 auto;
}

#top #official .officiallinks li {
	margin: 0 0 15px 0;
}

#top #official .officiallinks a {
	position: relative;
	top: 0;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	width: 300px;
	height: 82.5px;
	text-indent: -9999px;
	filter: drop-shadow(0 0 6px rgba(16, 10, 38, 0.2));
	/*負荷軽減*/
	transform: translateZ(0);
}

#top #official .officiallinks .x a {
	background-image: url(../images/sp_account_x.png);
}
#top #official .officiallinks .youtube a {
	background-image: url(../images/sp_account_youtube.png);
}
#top #official .officiallinks .app a {
	background-image: url(../images/sp_account_app.png);
}
#top #official .officiallinks .zokei a {
	background-image: url(../images/sp_account_zokei.png);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
トップページ：OFFICIAL_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

お知らせ（NEWS）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ニュース：汎用_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
コンテンツ
*/
#sub.news .newslist ul {
	width: 300px;
	margin: 90px auto 0;
}

#sub.news .newslist ul li {
	width: 300px;
	margin: 0 0 30px;
}



/*
アンカー
*/
#sub.news .newslist ul li a {
	display: block;
	width: 300px;
	height: auto;
	text-decoration: none;
}



/*
画像サイズ
*/
#sub.news .newslist ul li figure {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background-color: #211061;
	width: 300px;
	height: 189px;
	padding: 10px;
	overflow: hidden;
}
#sub.news .newslist ul li figure img {
	width: 100%;
	height: auto;
}



/*
テキスト
*/
#sub.news .newslist ul li .detail {
	box-sizing: border-box;
	background-color: #fff;
	color: #180f3d;
	width: 300px;
	padding: 15px;
}

#sub.news .newslist ul li .detail h4 {
	font-size: 13px;
	line-height: 1.65em;
}

#sub.news .newslist ul li .meta {
	display: flex;
	justify-content: space-between;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 10px;
	margin: 0 0 10px;
}
#sub.news .newslist ul li .meta time {
	box-sizing: border-box;
	line-height: 20px;
	height: 20px;
	padding: 0 10px;
	border: solid 1px #4e5253;
	border-radius: 11px;
}
#sub.news .newslist ul li .meta span {
	box-sizing: border-box;
	background-color: #7754ff;
	color: #fff;
	line-height: 20px;
	text-align: center;
	width: 80px;
	height: 20px;
	padding: 0 10px;
	border-radius: 11px;
}



/*
ページネーション
*/
#sub.news .page_list {
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 280px;
	height: 110px;
	margin: 80px auto 0;
}

#sub.news .page_list li {
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 13px;
	line-height: 30px;
	text-align: center;
	width: 30px;
	height: 30px;
	margin: 0 5px;
}
#sub.news .page_list li.prev {
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 90px;
	height: 50px;
	margin: 0;
}
#sub.news .page_list li.next {
	position: absolute;
	right: 20px;
	bottom: 0;
	width: 90px;
	height: 50px;
	margin: 0;
}

#sub.news .page_list li span {
	display: block;
	box-sizing: border-box;
	background-color: #fff;
	color: #4130ca;
	line-height: 30px;
	width: 30px;
	height: 30px;
	border: solid 2px #4130ca;
}

#sub.news .page_list li a {
	display: block;
	box-sizing: border-box;
	background-color: #4130ca;
	color: #fff;
	line-height: 30px;
	text-decoration: none;
	width: 30px;
	height: 30px;
}
#sub.news .page_list li.prev a {
	position: relative;
	background-color: transparent;
	color: #180f3d;
	font-size: 18px;
	line-height: 50px;
	text-align: right;
	width: 90px;
	height: 50px;
	margin: 0;
}
#sub.news .page_list li.next a {
	position: relative;
	background-color: transparent;
	color: #180f3d;
	font-size: 18px;
	line-height: 50px;
	text-align: left;
	width: 90px;
	height: 50px;
	margin: 0;
}

#sub.news .page_list li.prev a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	width: 25px;
	height: 25px;
	margin: auto;
	border: 0;
	border-bottom: solid 2px #4130ca;
	border-left: solid 2px #4130ca;
	transform: rotate(45deg);
}
#sub.news .page_list li.next a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	width: 25px;
	height: 25px;
	margin: auto;
	border: 0;
	border-top: solid 2px #4130ca;
	border-right: solid 2px #4130ca;
	transform: rotate(45deg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ニュース：汎用_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ニュース：詳細タイトル_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
コンテンツ
*/
.newstitle {
	width: 300px;
	margin: 0 auto;
}


.newstitle figure {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background-color: #211061;
	width: 300px;
	height: 189px;
	margin: 20px 0 0;
	padding: 7px;
}
.newstitle figure img {
	width: 100%;
	height: auto;
}

.newstitle h4 {
	font-size: 14px;
	line-height: 1.6em;
}

.newstitle .meta {
	display: flex;
	justify-content: flex-start;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 10px;
	width: 100%;
	margin: 0 0 30px;
}
.newstitle .meta time {
	box-sizing: border-box;
	line-height: 20px;
	height: 20px;
	margin: 0 15px 0 0;
	padding: 0 10px;
	border: solid 1px #4e5253;
	border-radius: 11px;
}
.newstitle .meta span {
	box-sizing: border-box;
	background-color: #7754ff;
	color: #fff;
	line-height: 20px;
	text-align: center;
	width: 80px;
	height: 20px;
	padding: 0 10px;
	border-radius: 11px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ニュース：詳細タイトル_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ニュース：詳細_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
コンテンツ
*/
.newsdetail {
	width: 300px;
	margin: 60px auto 0;
}

.newsdetail h1 {
	color: #4130ca;
	font-size: 18px;
	line-height: 2em;
	margin: 40px 0 0;
}

.newsdetail h2 {
	color: #4130ca;
	font-size: 16px;
	line-height: 2em;
	margin: 40px 0 0;
}

.newsdetail p {
	font-size: 14px;
	line-height: 2em;
	margin: 30px 0 40px;
}



/*
画像
*/
.newsdetail img {
	display: block;
	max-width: 250px;
	height: auto;
	margin: 0 auto;
	padding: 0;
}



/*
リスト
*/
.newsdetail ol {
	margin: 30px 0 0;
}
.newsdetail ol li {
	list-style: decimal;
	list-style-position: outside;
	color: #180f3d;
	margin: 0 0 10px 45px;
	padding: 0 0 0 5px;
}



/*
リンク
*/
.newsdetail a {
	display: inline-block;
	box-sizing: border-box;
	color: #4130ca;
	font-size: 13px;
	line-height: inherit;
	text-decoration: none;
	width: auto;
	margin: 5px 0;
	padding: 5px 15px;
	border: solid 2px #4130ca;
	border-radius: 30px;
}



/*
ページネーション
*/
.page_list_detail {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 300px;
	height: 110px;
	margin: 100px auto 0;
	padding: 100px 0 0;
	border-top: solid 2px #6642f4;
}

.page_list_detail li {
	text-align: center;
	width: 175px;
	height: 150px;
	margin: 0;
}
.page_list_detail li.prev {
	position: absolute;
	bottom: 0;
	left: 40px;
	width: 90px;
	height: 50px;
	margin: 0;
}
.page_list_detail li.next {
	position: absolute;
	right: 40px;
	bottom: 0;
	width: 90px;
	height: 50px;
	margin: 0;
}

.page_list_detail li a {
	display: block;
	background-image: url(../images/page_list_detail_border.png);
	background-size: 100% auto;
	color: #180f3d;
	font-size: 12px;
	line-height: 50px;
	text-decoration: none;
	width: 175px;
	height: 50px;
}
.page_list_detail li.prev a {
	position: relative;
	background-image: none;
	color: #180f3d;
	font-size: 18px;
	line-height: 50px;
	text-align: right;
	width: 90px;
	height: 50px;
	margin: 0;
}
.page_list_detail li.next a {
	position: relative;
	background-image: none;
	color: #180f3d;
	font-size: 18px;
	line-height: 50px;
	text-align: left;
	width: 90px;
	height: 50px;
	margin: 0;
}

.page_list_detail li.prev a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	width: 25px;
	height: 25px;
	margin: auto;
	border: 0;
	border-bottom: solid 2px #4130ca;
	border-left: solid 2px #4130ca;
	transform: rotate(45deg);
}
.page_list_detail li.next a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	width: 25px;
	height: 25px;
	margin: auto;
	border: 0;
	border-top: solid 2px #4130ca;
	border-right: solid 2px #4130ca;
	transform: rotate(45deg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ニュース：詳細_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

コンセプト（CONCEPT）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
コンセプト：下層_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
コンセプト：下層_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

フラクターキット（FRACTER KIT）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
フラクターキット：下層_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
SP用タイトル調整
*/
.fracterkit #pagetitle h2 {
	font-size: 36px;
	letter-spacing: -1px;
}



/*
画像リスト
*/
.fracterkit .kitlist {}

/*タイトル要素*/
.fracterkit .kitlist h5 {
	font-size: 20px;
}

/*リストスタイル*/
.fracterkit .kitlist ul {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-image: url(../images/fracterkit_frame_tl.png), url(../images/fracterkit_frame_tr.png), url(../images/fracterkit_frame_bl.png), url(../images/fracterkit_frame_br.png);
	background-position: top left, top right, bottom left, bottom right;
	background-size: 20px auto;
	margin: 0 auto 50px auto;
	padding: 20px 20px 0 20px;
}
.fracterkit .kitlist li {
	width: 100%;
	margin: 0 0 50px 0;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

/*画像*/
.fracterkit .kitlist figure {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #dbd8eb;
	width: 100%;
	height: 160px;
	overflow: hidden;
}
.fracterkit .kitlist figure img {
	width: auto;
	height: 75%;
}
.fracterkit .kitlist figure.hz img {
	width: 75%;
	height: auto;
}

/*画像キャプション*/
.fracterkit .kitlist h6 {
	background-color: #ffffff;
	padding: 1.5em 0;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	line-height: 1em;
}

/*アイコンサイズ用差分*/
.fracterkit .kitlist.icon li {
	width: 65px;
	height: 65px;
	margin: 0 auto 15px auto;
}
.fracterkit .kitlist.icon figure {
	width: 65px;
	height: 65px;
}



/*
ご利用規約
*/
.fracterkit .rules {
	margin: 0 0 50px 0;
}

/*タイトル要素*/
.fracterkit .rules h5 {
	font-size: 20px;
}

/*リスト*/
.fracterkit .rules li {
	box-sizing: border-box;
	margin: 0 0 10px 0;
	padding: 15px 15px 15px 45px;
	border: 1px #dad8e6 solid;
}
.fracterkit .rules li:last-child {
	margin: 0;
}
.fracterkit .rules li p {
	margin: 0 0 1em 0;
	font-size: 13px;
}
.fracterkit .rules li p:last-child {
	margin: 0;
}

/*リストアイコン*/
.fracterkit .rules li {
	background-image: url(../svg/icon_star_b.svg);
	background-size: 10px auto;
	background-position: 19px center;
}
.fracterkit .rules.prohibited li {
	background-image: url(../svg/icon_star_r.svg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
フラクターキット：下層_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

お問い合わせ（CONTACT）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
お問い合わせ：トップ_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*
コンテンツ
*/
.contactdetail {
	width: 300px;
	margin: 90px auto 0;
}

.contactdetail p {
	font-size: 16px;
	line-height: 2em;
	margin: 0 auto 30px;
}



/*
フォーム
*/
.contact form {
	width: 300px;
	margin: 60px auto 0;
}

.contact table {
	border-collapse: separate;
	border-spacing: 0px;
	width: 300px;
	margin: 0 auto 60px;
}

.contact table tr th,
.contact table tr td {
	box-sizing: border-box;
	font-size: 13px;
	text-align: left;
}

.contact table tr th {
	display: flex;
	align-items: center;
	background-color: rgb(255 255 255 / 0.8);
	color: #6642f4;
	width: 300px;
	margin: 0 0 10px 0;
	padding: 15px 20px;
	border-radius: 5px;
}

.contact table tr td {
	display: block;
	flex: 1;
	margin: 0 0 20px;
	padding: 0;
}

.contact input,
.contact textarea {
	box-sizing: border-box;
	background-color: #ffffff;
	color: #3c4445;
	font-size: 16px;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	min-width: 300px;
	margin: 0;
	padding: 1em;
	border: solid 1px #cdccd1;
	border-radius: 6px;
	outline: none;
	resize: none;
}

/*英語版：表示テキスト*/
.en.contact input::placeholder,
.en.contact textarea::placeholder {
	font-size: 11px;
}

/*簡体字版*/
.zh_hans.contact input,
.zh_hans.contact textarea {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/*繁体字版版*/
.zh_hant.contact input,
.zh_hant.contact textarea {
	font-family: "Noto Sans HK", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.contact textarea {
	width: 100%;
	min-height: 14em;
	line-height: 1.65em;
}



/*
送信ボタン
*/
.contact .submit button {
	display: block;
	box-sizing: border-box;
	background-color: #fff;
	width: 250px;
	height: 60px;
	margin: 0 auto;
	padding: 0;
	border-radius: 100px;
	border: solid 2px #4130ca;
}
.contact .submit button span {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: #fff;
	color: #180f3d;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	text-align: center;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	border: none;
	cursor: pointer;
}



/*
トップページに戻るボタン
*/
.contact .backtoppage {
	box-sizing: border-box;
	width: 300px;
	margin: 90px auto 0;
	padding: 0;
}

.contact .backtoppage a {
	display: block;
	position: relative;
	box-sizing: border-box;
	background-image: url(../images/sp_contact_back_top.png);
	background-size: 100% auto;
	color: #fff;
	font-size: 12px;
	line-height: 40px;
	text-align: right;
	text-decoration: none;
	width: 185px;
	height: 40px;
	margin: 0 0 0 auto;
	padding: 0 15px;
}

.contact .backtoppage a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	width: 10px;
	height: 10px;
	margin: auto;
	border: 0;
	border-top: solid 2px #7754ff;
	border-right: solid 2px #7754ff;
	transform: rotate(45deg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
お問い合わせ：トップ_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/









/*――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

インタビュー（INTERVIEWSINTERVIEWS）

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
インタビュー：トップ_start
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#sub.interviews {}



/*
リスト
*/
#top .interviewlist > div,
#sub.interviews .interviewlist > div {
	position: relative;
	box-sizing: border-box;
	margin: 0 0 60px 0;
	padding: 20px 20px 40px 20px;
	border: 1px #dbd8eb solid;
	border-radius: 10px;
}

#top .interviewlist > div .meta,
#sub.interviews .interviewlist > div .meta {
	margin: 0 0 10px 0;
}


/*サムネイル*/
#top .interviewlist > div figure,
#sub.interviews .interviewlist > div figure {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-color: #edeaf7;
	height: 300px;
	margin: 0 0 30px 0;
	padding: 40px;
	border-radius: 10px;
}

#top .interviewlist > div figure img,
#sub.interviews .interviewlist > div figure img {
	width: auto;
	height: auto;
	max-height: 200px;
	max-width: 85%;
}


/*時間*/
#top .interviewlist > div .meta time,
#sub.interviews .interviewlist > div .meta time {
	box-sizing: border-box;
	display: inline-block;
	height: 25px;
	margin: 0 0 15px 0;
	padding: 0 10px;
	font-size: 12px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 25px;
	border: solid 1px #4e5253;
	border-radius: 100px;
}


/*媒体名*/
#top .interviewlist > div .meta p,
#sub.interviews .interviewlist > div .meta p {
	font-size: 14px;
	line-height: 1.5em;
}

#top .interviewlist > div .meta p em,
#sub.interviews .interviewlist > div .meta p em {
	display: inline-block;
	font-style: normal;
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
	border-right: 1px #4e5253 solid;
}


/*インタビュータイトル*/
#top .interviewlist > div h3,
#sub.interviews .interviewlist > div h3 {
	background-image: url(../images/collabo_icon.png);
	background-size: 13px auto;
	background-position: left center;
	background-repeat: no-repeat;
	color: #4130ca;
	padding: 13px 0 10px 30px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65em;
}


/*アンカー*/
#top .interviewlist > div a,
#sub.interviews .interviewlist > div a {
	box-sizing: border-box;
	position: absolute;
	bottom: -24px;
	left: 50%;
	background-color: #1b1d24;
	background-image: url(../svg/arrow_btn_a.svg);
	background-size: 10px auto;
	background-position: 30px center;
	background-repeat: no-repeat;
	color: #ffffff;
	width: 70%;
	margin: 0 0 0 -35%;
	padding: 15px 15px 15px 60px;
	font-size: 13px;
	font-weight: 700;
	text-align: right;
	text-decoration: none;
	border-radius: 100px;
	cursor: pointer;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
インタビュー：トップ_end
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
