@charset "utf-8";

/**********************************************************************************/
/* ■ プロジェクトストーリー ■ PC ■ */
/**********************************************************************************/

/****************************** 共通設定 ******************************/

:root {
	--contentOuterWidth: 1100px;
}
#pankuzu_wrap_outer { background: var(--backgroundColor); }
#main_body { padding: 0; }
#mymainback {
	background: var(--backgroundColor);
	color: var(--fontColorDefault);
	overflow: hidden;
}
[class*="pjstory_"] img {
	vertical-align: top;
	max-width: 100%;
	height: auto !important;
}

[class*="pjstory_"] [class$=_num] {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

/* 非表示 */
#main_header,
.content_header_wrap {
	display: none;
}

/* 見出しのスタイルリセット */
#main_body [class*="pjstory_"] :where(h2,h3,h4,h5,h6) {
	background: none;
	border: none;
	color: var(--fontColorDefault);
	margin: 20px 0;
	padding: 0;
	line-height: 2;
	letter-spacing: 0.05em;
}
#main_body [class*="pjstory_"] :where(h2,h3,h4,h5,h6)::after,
#main_body [class*="pjstory_"] :where(h2,h3,h4,h5,h6)::before { content: none; }
#main_body h2 { font-size: 3.2rem; }
#main_body h3 { font-size: 3.2rem; }
#main_body h4 { font-size: 2.4rem; }
#main_body h5 { font-size: 2.0rem; }
#main_body h6 { font-size: 1.6rem; }

/* imgのみの作成が確定している枠 */
.imgOnly,
[class*="pjstory_"] [class$=_num] p,
[class*="pjstory_"] [class$=_copy] p,
[class*="pjstory_"] .list_img p,
.image-wrapper p,
.pjstory_page [id^=chapter] .img p { margin: 0; padding: 0; }


/* ---------- アニメーション ---------- */
.fade-item {
	-webkit-transform: translateY(60px);
	    -ms-transform: translateY(60px);
	        transform: translateY(60px);
	opacity: 0;
	-webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
	transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
	-o-transition: transform 0.6s ease-out, opacity 0.6s ease-out;
	transition: transform 0.6s ease-out, opacity 0.6s ease-out;
	transition: transform 0.6s ease-out, opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.fade-item.show {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
}
/* ファーストビューに入りそうなエリアの追加対応 */
#chapter0 ,
#chapter0 .txt,
.pjstory_list #main_title,
.pjstory_list .title_copy,
.pjstory_list .title_text,
.list_datail_1 .text_box,
.list_datail_1 .list_img {
	-webkit-transform: translateY(60px);
	    -ms-transform: translateY(60px);
	        transform: translateY(60px);
	opacity: 0;
}
#chapter0.fade-item.show,
#chapter0 .txt.fade-item.show,
.pjstory_list #main_title.fade-item.show,
.pjstory_list .title_copy.fade-item.show,
.pjstory_list .title_text.fade-item.show,
.list_datail_1 .text_box.fade-item.show,
.list_datail_1 .list_img.fade-item.show {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
	-webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
	transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
	-o-transition: transform 0.6s ease-out, opacity 0.6s ease-out;
	transition: transform 0.6s ease-out, opacity 0.6s ease-out;
	transition: transform 0.6s ease-out, opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

/****************************** 一覧（.pjstory_list） ******************************/

/* ---------- ページトップ文章 ---------- */
.pjstory_list #main_title {
	margin: 100px 0 75px;
	padding: 0;
	text-align: center;
	position: relative;
}
.pjstory_list #main_title::after {
	content: '';
	display: block;
	width: 120px;
	height: 10px;
	background-image: -o-linear-gradient( 353.846deg, rgb(210,245,255) 0%, rgb(198,255,189) 100%);
	background-image: linear-gradient( 96.154deg, rgb(210,245,255) 0%, rgb(198,255,189) 100%);
	position: absolute;
	bottom: -29px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.pjstory_list .intro {
	text-align: center;
}
.pjstory_list .intro .title_copy {
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.58;
}
.pjstory_list .intro .title_copy > span { display: inline-block; }
.pjstory_list .intro .title_text { line-height: 2.25; }


/* ---------- 各記事の情報 ---------- */

.pjstory_list .list_area { margin: 110px auto 160px; }

.pjstory_list .list_datail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	position: relative;
}
.pjstory_list .list_datail::after {
	content: '';
	display: block;
	width: calc(50vw + 175px);
	height: 300px;
	background-image: -o-linear-gradient(336.459deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
	background-image: linear-gradient(113.541deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
	position: absolute;
	bottom: -70px;
}
.pjstory_list .list_datail:nth-child(odd)::after {
	right: calc(50% - 175px);
}
.pjstory_list .list_datail:nth-child(even)::after {
	left: calc(50% - 175px);
}
.pjstory_list .list_datail + .list_datail { margin-top: 165px; }

/* テキストエリア */
.pjstory_list .text_box {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 30px;
	min-height: 480px;
	position: relative;
	z-index: 2;
}
.pjstory_list .list_datail .title {
	max-width: calc(100% - 210px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.pjstory_list .list_num img.tag {
	width: auto;
	height: 11px !important;
	margin-bottom: -3px;
}
.pjstory_list .list_ttl {
	margin-top: 35px;
	line-height: 1.5882
}
.pjstory_list .list_ttl p:last-child { margin-bottom: 0; }

/* ページへのリンク */
.pjstory_list .link_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 0 10px;
}
.pjstory_list .link_wrap > [class^="to_"],
.pjstory_list .link_wrap > [class^="to_"] p {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0;
	padding: 0;
}
.pjstory_list .link_wrap > [class^="to_"] p:not(:has(a)) {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: block;
	background: #d7d7d7;
	min-width: 195px;
	margin: 10px 0 0;
	padding: 10px;
	text-align: center;
	text-decoration: none;
}
.pjstory_list .link_wrap > [class^="to_"] a {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: block;
	min-width: 195px;
	margin: 10px 0 0;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background .5s ease;
	-o-transition: background .5s ease;
	transition: background .5s ease;
}
.pjstory_list .link_wrap > .to_page a { background: #afe7f5; }
.pjstory_list .link_wrap > .to_last a { background: #c7cdf7; }
.pjstory_list .link_wrap > .to_page a:hover,
.pjstory_list .link_wrap > .to_page a:focus {
	background: #afe7f580;
	text-decoration: underline;
}
.pjstory_list .link_wrap > .to_last a:hover,
.pjstory_list .link_wrap > .to_last a:focus {
	background: #c7cdf780;
	text-decoration: underline;
}

/* 写真エリア */
.pjstory_list .list_img {
	width: 659px;
	height: 480px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	position: relative;
	z-index: 1;
}

/* ---------- 左右スイッチ 奇数 ---------- */
/* 左 text_box、右 list_img */
.pjstory_list .list_datail:nth-child(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
.pjstory_list .list_datail:nth-child(odd) .title {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.pjstory_list .list_datail:nth-child(odd) .text_box {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-right: -200px;
	text-align: left;
}
.pjstory_list .list_datail:nth-child(odd) .list_num,
.pjstory_list .list_datail:nth-child(odd) .link_wrap {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
/* ---------- 左右スイッチ 偶数 ---------- */
/* 右 text_box、左 list_img */
.pjstory_list .list_datail:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.pjstory_list .list_datail:nth-child(even) .title {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.pjstory_list .list_datail:nth-child(even) .text_box {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	margin-left: -200px;
	text-align: right;
}
.pjstory_list .list_datail:nth-child(even) .list_num,
.pjstory_list .list_datail:nth-child(even) .link_wrap {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}


/*=============== 背景色変更 =============== */

.color_change .pjstory_list #main_title img,
.color_change .pjstory_list .list_num img {
	background-color: var(--colorAccentDark);
	-webkit-filter: invert(1) sepia(0) saturate(0) brightness(2);
	        filter: invert(1) sepia(0) saturate(0) brightness(2);
}
.color_change .pjstory_list .text_box,
.color_change .pjstory_list .list_datail,
.color_change .pjstory_list .list_datail .title,
.color_change .pjstory_list .list_datail .list_copy,
.color_change .pjstory_list .list_datail .list_copy p,
.color_change .pjstory_list .link_wrap,
.color_change .pjstory_list .link_wrap > div { background: var(--colorAccentDark); }

.color_change .pjstory_list .list_datail .list_copy p img { background: var(--fontColorDarkBG); }

.color_change .pjstory_list #main_title::after,
.color_change .pjstory_list .list_datail::after { content: none; }
.color_change .pjstory_list .link_wrap > [class^="to_"] p:not(:has(a)) {
	background: none;
	outline: 1px solid rgb(255 255 255 / .2);
	outline-offset: -1px;
}
.color_black .pjstory_list .link_wrap > [class^="to_"] a {
	background: #333;
	outline: 1px solid #fff;
	outline-offset: -1px;
}
.color_blue .pjstory_list .link_wrap > [class^="to_"] a {
	background: #00a;
	outline: 1px solid #fff;
	outline-offset: -1px;
}


/****************************** 記事（.pjstory_page） ******************************/

#chapter0 {
	position: relative;
	padding: 0 0 50px;
	margin: 0 auto;
}
#chapter0::after {
	content: '';
	display: block;
	width: 82%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: -o-linear-gradient( 307.698deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
	background-image: linear-gradient( 142.302deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
	position: absolute;
	bottom: 0;
	left: 12.73%;
	z-index: 0;
}
.pjstory_page .page_num {
	margin: 60px 0;
	-webkit-box-ordinal-group: 1;
	    -ms-flex-order: 0;
	        order: 0;
}
#chapter0 .txt .ttl {
	background: var(--backgroundColor);
	margin: 40px 0 70px -15px;
	padding: 15px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}
#chapter0 .txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	position: relative;
	z-index: 2;
}
#chapter0 .image-wrapper {
	display: block;
	position: relative;
	left: -10px;
	z-index: 2;
}
#chapter0 .image-wrapper img {
	display: block;
}
#chapter0 .image-wrapper.full-right {
	position: absolute;
	top: 0;
	left: calc(50% - 240px);
	width: 960px;
	height: 840px;
	z-index: 1;
}
#chapter0 .image-wrapper.right_bottom {
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
}
#chapter0 .image-wrapper.full-right img { width: 100% !important; }
.pjstory_page .page_num img.tag {
	margin-bottom: 10px;
}

#about {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 30px;
	margin: 175px auto 155px;
	position: relative;
}
#about::after {
	content: '';
	display: block;
	width: calc(50vw + 180px);
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: -o-linear-gradient(307.698deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
	background-image: linear-gradient(142.302deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
	position: absolute;
	bottom: calc(-165px - 11.4583vw);
	right: calc(50% - 180px);
	z-index: 0;
}
.pjstory_page #about h2 {
	margin: 0 0 40px;
	padding: 0;
	font-size: 1.6rem;
	font-weight: normal;
	color: var(--fontColorDefault);
	line-height: 1.5;
}
.pjstory_page #about h2::before {
	content: '';
	display: block;
	margin-bottom: 15px
}
#about > div {
	background: var(--backgroundColor);
	border: 4px solid #c0e7ff;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 45px;
	position: relative;
	z-index: 1;
	letter-spacing: 0.1rem;
}
#about .outline {
	width: 590px;
}
#about .outline h2::before {
	width: 211px;
	height: 38px;
	background: url(/img/site/saiyou-pjstory/page-ttl-outline.png) no-repeat left center / contain;
}
.outline .txt p {
	line-height: 2;
}
.outline .txt strong,
.outline .txt h2,
.outline .txt h3 {
	display: block;
	margin: 2rem 0;
	font-size: 2.6rem;
	line-height: 1.5;
}
#about .member {
	width: 480px;
}
#about .member h2::before {
	width: 216px;
	height: 37px;
	background: url(/img/site/saiyou-pjstory/page-ttl-member.png) no-repeat left center / contain;
}
.member .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 25px;
}
.member .box + .box { margin-top: 40px; }
.member .box .image-wrapper {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.member .txt {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.member .txt p {
	margin: .5rem 0;
	line-height: 1.5;
}
.member .txt > p:nth-child(1) { font-size: 1.4rem !important; }
.member .txt > p:nth-child(2) { font-size: 1.6rem !important; }
.member .txt > p:nth-child(3) { font-size: 1.5rem !important; }
.member .txt > p:nth-child(4) { font-size:   2rem !important; }
.member .txt > p:nth-child(even) { font-weight: bold; }
.member .txt > p > span { font-size: 100% !important; } /* ユーザ設定のリセット */

.outline .txt p:first-child,
.member .txt p:first-child { margin-top: 0; }
.outline .txt p:last-child,
.member .txt p:last-child { margin-bottom: 0; }

#main_body .pjstory_page [id^="chapter"] .img {
	width: 100vw;
	max-width: 1440px;
	margin: 110px 0;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#main_body .pjstory_page [id^="chapter"] .img img {
	max-width: none;
	width: 100% !important;
}
#main_body .pjstory_page [id^="chapter"] .img h2 {
	margin: 0;
	padding: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#main_body .pjstory_page #chapter1 .img h2,
#main_body .pjstory_page #chapter3 .img h2,
#main_body .pjstory_page #chapter5 .img h2 {
	right: 0;
}
#main_body .pjstory_page #chapter2 .img h2,
#main_body .pjstory_page #chapter4 .img h2{
	left: 0;
}
#main_body .pjstory_page [id^="chapter"] .info :where(h2,h3,h4,h5,h6) {
	margin: 80px 0 30px;
}
#main_body .pjstory_page [id^="chapter"] .info {
	padding: 0 130px;
	line-height: 2;
}
.imgOnly { text-align: center; }
#main_body .pjstory_page [id^="chapter"] .info p.imgOnly { margin: 110px 0 80px; }
/* 完成編へのリンクボタン */
[id^="chapter"] .info p.lnkbtn {
	background: #f3f3f3;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-height: 80px;
	margin: 120px auto 0;
	padding: 20px 100px;
	font-size: 125%;
	font-weight: bold;
	line-height: 1.6;
	-webkit-transition: background .5s ease;
	-o-transition: background .5s ease;
	transition: background .5s ease;
}
[id^="chapter"] .info p.lnkbtn.has_link {
	background: #c7cdf7;
	padding: 0;
}
[id^="chapter"] .info p.lnkbtn.has_link a {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	width: 100%;
	min-height: 80px;
	padding: 20px 112.5px;
	text-decoration: none;
}
[id^="chapter"] .info p.lnkbtn.has_link:has(a:hover),
[id^="chapter"] .info p.lnkbtn.has_link:has(a:focus) {
	background: #c7cdf780;
}
[id^="chapter"] .info p.lnkbtn.has_link a:hover,
[id^="chapter"] .info p.lnkbtn.has_link a:focus {
	text-decoration: underline;
}

.occ {
	background: var(--backgroundColor);
	border: 4px solid #c0e7ff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 35px 60px;
	margin: 110px auto 0;
	padding: 45px;
}
#main_body .occ h2 {
	margin: 0;
	padding: 10px;
	width: 100%;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
}
#main_body .occ h2::before {
	content: '';
	display: block;
	background: url(/img/site/saiyou-pjstory/page-ttl-occupation.png) no-repeat center center / contain;
	width: 321px;
	height: 38px;
	margin: 0 auto 10px;
}
.occ .box {
	width: 470px;
	max-width: 100%;
	text-align: center;
}
.occ .box:nth-of-type(n+3) { margin-top: 25px; }
#main_body .occ .box [class^=detail_] { margin: 0; }
#main_body .occ .box [class^=detail_] p { margin: .25em 0;}
#main_body .occ .box [class^=detail_] p.imgOnly { margin: 0 0 35px;}
#main_body .occ .box [class^=detail_] p strong {
	padding-right: 0.25em;
	font-size: 2.6rem;
	line-height: 1;
	vertical-align: top;
	letter-spacing: 0.1em;
}
#main_body .occ .box [class^=detail_] p:has(strong),
#main_body .occ .box [class^=detail_] p:has(a) {
	margin-top: 2rem;
	margin-bottom: 0;
}
.occ .box p:last-child:has(a) { margin: 2.5rem 0 0; }
.occ .box p:last-child:has(a) a {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: #c0e7ff;
	display: inline-block;
	min-width: 210px;
	margin: 0;
	padding: 13px 20px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	letter-spacing: .1em;
	line-height: 1;
	position: relative;
	-webkit-transition: background .5s ease;
	-o-transition: background .5s ease;
	transition: background .5s ease;
}
.occ .box p:last-child:has(a) a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: rotate(45deg) translateY(-50%);
	    -ms-transform: rotate(45deg) translateY(-50%);
	        transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: currentColor;
	opacity: 1;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.occ .box p:last-child:has(a) a:hover,
.occ .box p:last-child:has(a) a:focus {
	background: #c0e7ff80;
	text-decoration: underline;
}
.occ .box p:last-child:has(a) a:hover::after,
.occ .box p:last-child:has(a) a:focus::after {
	right: 0;
	opacity: 0;
}

.other {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 35px 46px;
	margin: 115px auto 0;
	padding: 70px 0 60px;
}
.other::before {
	content: '';
	display: block;
	background-image: -o-linear-gradient(310.036deg, rgb(233, 250, 255) 0%, rgb(242, 255, 229) 100%);
	background-image: linear-gradient(139.964deg, rgb(233, 250, 255) 0%, rgb(242, 255, 229) 100%);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#main_body .other h2 {
	margin: 0;
	padding: 10px 10px 13px;
	width: 100%;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
}
#main_body .other h2::before {
	content: '';
	display: block;
	background: url(/img/site/saiyou-pjstory/page-ttl-otherstory.png) no-repeat center center / contain;
	width: 466px;
	height: 38px;
	margin: 0 auto 10px;
}
.other .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: stretch;
	    -ms-flex-pack: stretch;
	        justify-content: stretch;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: 527px;
	height: auto;
	position: relative;
}

.other .box .image-wrapper {
	margin: 0 20px 0 0;
}
.other .box .txt {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: var(--backgroundColor);
	border: 4px solid var(--backgroundColor);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto 1fr auto;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	width: auto;
	height: 100%;
	margin: -20px 0 0 20px;
	padding: 30px 40px 40px;
	position: relative;
}
.other .box .txt > p:nth-child(-n+2) {
	display: block;
	width: 100%;
	background: none;
	padding: 0;
	margin: 0;
	text-align: left;
}
.other .box .txt > p:nth-child(1) {
	grid-area: 1 / 1 / 2 / 3;
	line-height: 0;
}
.other .box .txt > p:nth-child(2) {
	grid-area: 2 / 1 / 3 / 3;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.5769;
	margin: 10px 0 15px;
}
.other .box .txt > p:nth-child(3) {
	grid-area: 3 / 1 / 4 / 2;
}
.other .box .txt > p:nth-child(4) {
	grid-area: 3 / 2 / 4 / 3;
}
.other .box .txt > p:nth-last-of-type(-n+2) {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	background: #d7d7d7;
	margin: 0;
	padding: 10px;
	margin: 0;
	width: 100%;
	min-width: 200px;
	min-height: 49px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}
.other .box .txt > p:nth-last-child(-n+2):has(a) {
	padding: 0;
	background: none;
}
.other .box .txt > p:nth-last-of-type(-n+2) a {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 100%;
	min-height: 49px;
	background: #afe7f5;
	padding: 10px;
	text-decoration: none;
	-webkit-transition: background .5s ease;
	-o-transition: background .5s ease;
	transition: background .5s ease;
}
.other .box .txt > p:nth-last-of-type(-n+2) a:hover,
.other .box .txt > p:nth-last-of-type(-n+2) a:focus {
	background: #afe7f580;
	text-decoration: underline;
}
.other .box .txt > p:last-child a { background: #c7cdf7; } /* 完成編の色追加 */
.other .box .txt > p:last-child a:hover,
.other .box .txt > p:last-child a:focus { background: #c7cdf780; }
/* 一覧リンク */
.link_to_list {
	position: relative;
}
.other .link_to_list a {
	background: var(--backgroundColor);
	border: 1px solid #c0e7ff;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	display: inline-block;
	width: auto;
	min-width: 260px;
	margin: 25px auto 0;
	padding: 21px 18px 21px  calc(18px + .5em);
	text-align: center;
	text-decoration: none;
	letter-spacing: .1em;
	line-height: 1;
	position: relative;
	-webkit-transition: background .5s ease;
	-o-transition: background .5s ease;
	transition: background .5s ease;
}
.other .link_to_list a .txt {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center; 
}
.other .link_to_list a .txt::after {
	content: '';
	display: inline-block;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	width: 9px;
	height: 9px;
	margin-left: .5em;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #c0e7ff;
	opacity: 1;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	position: relative;
}
.other .link_to_list a:hover,
.other .link_to_list a:focus {
	background: #ffffff80;
	text-decoration: underline;
}
.other .link_to_list a:hover .txt::after,
.other .link_to_list a:focus .txt::after {
	-webkit-animation: slideRight .5s ease 1 forwards;
	        animation: slideRight .5s ease 1 forwards;
}
 
@-webkit-keyframes slideRight {
	from {
		opacity: 1;
		right: 0;
	}
	to {
		opacity: 0;
		right: -25px;
	}
}
@keyframes slideRight {
	from {
		opacity: 1;
		right: 0;
	}
	to {
		opacity: 0;
		right: -25px;
	}
}

/*=============== 背景色変更 =============== */

.color_change .pjstory_page .page_num img.tag,
.color_change .pjstory_page .page_num .pjs_page_num img,
.color_change #about .outline h2::before,
.color_change #about .member h2::before,
.color_change #main_body .occ h2::before,
.color_change #main_body .other h2::before,
.color_change #about .member h2::before,
.color_change .other .box .txt > p:nth-child(1) img {
	background-color: var(--colorAccentDark);
	-webkit-filter: invert(1) sepia(0) saturate(0) brightness(2);
	        filter: invert(1) sepia(0) saturate(0) brightness(2);
}
.color_change #chapter0 .txt { background-color: var(--colorAccentDark); }
.color_change #about > div,
.color_change .occ,
.color_change .other .box .txt,
.color_change .other .link_to_list a {
	background-color: var(--backgroundColor);
	border-color: var(--colorAccentLight);
}
.color_change .other .box .txt > p:nth-last-of-type(-n+2) {
	background-color: var(--backgroundColor);
	outline: 1px solid var(--colorAccentLight);
}
.color_change .pjstory_page .page_copy img { background: var(--fontColorDarkBG); }
.color_change #chapter0 .txt .ttl { background: var(--backgroundColor); }

/* 疑似要素削除 */
.color_change #chapter0::after,
.color_change #about::after,
.color_change .other::before { content: none; }

/* 黒 */
.color_black .occ .box p:last-child:has(a) a,
.color_black .other .box .txt > p:nth-last-child(-n+2) a { background-color: #333; }
/* 青 */
.color_blue .occ .box p:last-child:has(a) a,
.color_blue .other .box .txt > p:nth-last-child(-n+2) a  { background-color: #00a; }



/**********************************************************************************/
/*  タブレット・スマートフォン  */
/**********************************************************************************/
@media screen and (max-width : 1099px) {
	
	/****************************** 共通 ******************************/

	/* ---------- ナンバー ---------- */
	[class*="pjstory_"] [class$=_num] {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 5px;
	}
	[class*="pjstory_"] [class$=_num] img.tag {
		height: 10px !important;
		margin: 0;
	}
	[class*="pjstory_"] [class$=_num] [class^="pjs_"][class$="_num"] img {
		width: auto !important;
		height: 20px !important;
	}

	/* ---------- 見出し ---------- */
	#main_body h2 { font-size: 1.8rem; }
	#main_body h3 { font-size: 1.8rem; }
	#main_body h4 { font-size: 1.6rem; }
	#main_body h5 { font-size: 1.6rem; }
	#main_body h6 { font-size: 1.4rem; }


	/****************************** 一覧（.pjstory_list） ******************************/

	/* ---------- ページトップ文章 ---------- */

	.pjstory_list .intro {
		margin: 0 22px;
	}
	.pjstory_list #main_title {
		margin: 40px 20px 30px;
	}
	.pjstory_list #main_title::after {
		width: 60px;
		height: 5px;
		bottom: -15px;
	}
	.pjstory_list #main_title img {
		width: 272px;
		height: auto;
	}
	.pjstory_list .intro .title_copy {
		font-size: 1.8rem;
	}

	/* ---------- 各記事の情報 ---------- */

	.pjstory_list .list_area { margin: 50px auto 40px; }
	.pjstory_list .list_datail::after {
		background-image: -o-linear-gradient( 161.161deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient( -71.161deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 59vw;
		height: calc(100% + 40px - 40vw);
		bottom: -40px;
	}
	.pjstory_list .list_datail:nth-child(odd)::after {
		right: auto;
		left: -10px;
	}
	.pjstory_list .list_datail:nth-child(even)::after {
		left: auto;
		right: -10px;
	}
	.pjstory_list .list_datail:nth-child(odd),
	.pjstory_list .list_datail:nth-child(even) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.pjstory_list .list_datail + .list_datail { margin-top: 80px; }
	.pjstory_list .list_datail:nth-child(odd)  .text_box,
	.pjstory_list .list_datail:nth-child(even) .text_box {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		gap: 0;
		width: auto;
		max-width: none;
		min-height: auto;
		margin: 35px -10px 0;
		padding: 0 10%;
		text-align: left;
	}
	.pjstory_list .list_datail:nth-child(odd) .title,
	.pjstory_list .list_datail:nth-child(even) .title {
		width: 100%;
		max-width: none;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.pjstory_list .list_ttl {
		margin: 0;
		font-weight: bold;
		font-size: 1.3rem;
		line-height: 1.7692;
	}
	.list_copy {
		margin: 20px 0 30px;
	}

	/* ページへのリンク */
	.pjstory_list .list_datail:nth-child(odd)  .link_wrap,
	.pjstory_list .list_datail:nth-child(even) .link_wrap {
		justify-content: center;
		width: 100%;
	}
	.pjstory_list .link_wrap > [class^="to_"],
	.pjstory_list .link_wrap > [class^="to_"] p,
	.pjstory_list .link_wrap > [class^="to_"] a {
		width: 100%;
		max-width: 400px;
	}

	/* 写真エリア */
	.pjstory_list .list_img {
		width: auto !important;
		height: auto !important;
		margin: 0 -10px !important;
	}

	/* ---------- 左右スイッチ 奇数 ---------- */
	/* 画像右寄せ */
	.pjstory_list .list_datail:nth-child(odd) .list_img p {
		padding-left: 10%;
	}
	/* ---------- 左右スイッチ 偶数 ---------- */
	/* 画像左寄せ */
	.pjstory_list .list_datail:nth-child(even) .list_img p {
		padding-right: 10%;
	}


	/****************************** 記事（.pjstory_page） ******************************/

	#mymainback:has(.pjstory_page) {
		margin-bottom: 0;
	}
	#chapter0 {
		padding: 0 15px;
	}
	#chapter0::after {
		aspect-ratio: 2 / 3;
		left: 0;
	}
	#chapter0 .txt .ttl {
		font-size: 1.3rem;
		margin: 10px 0 20px 0;
		padding: .5em .75em;
	}
	.pjstory_page .page_num { margin: 0; }
	.page_copy {
		width: 73.5vw;
		margin-top: 72vw;
	}
	#chapter0 .image-wrapper {
		width: 50vw;
		height: 60vw;
		margin: 0 0 0 -5px;
	}
	#chapter0 .image-wrapper p {
		width: 100%;
		height: 100%;
	}
	/* 画像はトリミングされる */
	#chapter0 .image-wrapper img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover;
	}
	#chapter0 .image-wrapper.full-right {
		top: 45px;
		left: auto;
		right: 0;
		width: 83.46vw;
		height: auto;
		aspect-ratio: 313 / 451;
	}
	#chapter0 .image-wrapper.right_bottom {
		width: 40vw;
		height: 38.1333vw;
	}
	#chapter0 .image-wrapper.full-right img,
	#chapter0 .image-wrapper.right_bottom img {
		max-width: none;
	}

	#about {
		gap: 20px;
		margin: 75px auto 50px;
	}
	#about::after {
		aspect-ratio: auto;
		width: 57vw;
		height: 60%;
		top: 12.5%;
		bottom: auto;
		left: 0;
		right: auto;
	}
	.pjstory_page #about h2 {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	.pjstory_page #about h2::before {
		background-position: left center;
		max-width: 100%;
		height: 22px;
		margin-bottom: 10px;
	}
	#about .outline, #about .member {
		margin: 0 20px;
		padding: 30px 16px 26px;
		width: 100%;
	}
	.outline .txt strong,
	.outline .txt h2,
	.outline .txt h3 {
		margin: 2rem 0 1rem;
		font-size: 1.8rem;
		letter-spacing: 0.05em;
	}
	.member .box {
		gap: 20px;
	}
	.member .box .image-wrapper {
		max-width: 38vw;
	}
	.member .txt {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.member .txt > p { margin: .6rem 0; }
	.member .txt > p:nth-child(1) {
		font-size: 1.2rem !important;
		line-height: 1.5;
	}
	.member .txt > p:nth-child(2) {
		font-size: 1.4rem !important;
		line-height: 1.5;
	}
	.member .txt > p:nth-child(3) {
		font-size: 1.4rem !important;
		line-height: 1.5;
	}
	.member .txt > p:nth-child(4) {
		font-size: 1.9rem !important;
		line-height: 1.2;
	}

	/* ----- Chapter ----- */
	#main_body .pjstory_page [id^="chapter"] .img h2 {
		max-width: 24vw;
	}
	/* 数字の位置は左右チェンジ */
	#main_body .pjstory_page #chapter1 .img h2,
	#main_body .pjstory_page #chapter3 .img h2,
	#main_body .pjstory_page #chapter5 .img h2 {
		left: 0;
		right: auto;
	}
	#main_body .pjstory_page #chapter2 .img h2,
	#main_body .pjstory_page #chapter4 .img h2 {
		left: auto;
		right: 0;
	}
	#main_body .pjstory_page [id^="chapter"] .img { margin: 50px 0 40px; }
	#main_body .pjstory_page [id^="chapter"] .info { padding: 0 20px; }
	#main_body .pjstory_page [id^="chapter"] .info :where(h2,h3,h4,h5,h6) {
		margin: 40px 0 20px;
		line-height: 1.5;
	}
	#main_body .pjstory_page [id^="chapter"] .info p.imgOnly + :where(h2,h3,h4,h5,h6) {
		margin-top: 20px;
	}
	#main_body .pjstory_page [id^="chapter"] .info p.imgOnly {
		margin: 30px 0 15px;
	}

	.occ {
		gap: 30px;
		margin: 50px 20px 0;
		padding: 27px 20px 30px;
		position: relative;
		z-index: 1;
	}
	#main_body .occ h2 {
		padding: 0;
		font-size: 1.4rem;
		text-align: left;
	}
	#main_body .occ h2::before {
		width: 191px;
		height: 24px;
		max-width: 100%;
		margin: 0 auto 13px 0;
	}
	.occ .box:nth-of-type(n+3) { margin: 0; }
	#main_body .occ .box [class^=detail_] p.imgOnly { margin: 0 0 20px; }
	#main_body .occ .box [class^=detail_] p strong {
		font-size: 2.05rem !important;
	}
	#main_body .occ .box [class^=detail_] p:has(a) {
		margin-top: 1.25rem;
	}
	
	.other {
		margin-top: 55px;
		padding: 40px 20px 50px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		row-gap: 15px;
	}
	#main_body .other h2 {
		padding: 10px 20px;
		font-size: 1.4rem;
		text-align: left;
	}
	#main_body .other h2::before {
		width: 207px;
		height: 24px;
		max-width: 100%;
		margin: 0 auto 10px 0;
	}
	.other .box {
		margin: 0 20px;
		width: 100%;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.other .box + .box {
		margin-top: 15px;
	}
	.other .box .image-wrapper {
		margin-right: 15px;
	}
	.other .box .txt {
		margin: -25px 0 0 10px;
		padding: 20px;
		max-width: 507px;
	}
	.other .box .txt > p.imgOnly:first-child img {
		width: 33px !important;
		height: auto !important;
	}
	.other .box .txt > p:nth-child(2) {
		font-size: 1.8rem;
		line-height: 1.8;
		margin: 5px 0 10px;
	}
	.other .box .txt > p:nth-last-of-type(-n+2),
	.other .box .txt > p:nth-last-of-type(-n+2) a {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		min-width: 210px;
		min-height: 45px;
	}
	.link_to_list { width: 100%; }
	.other .link_to_list a {
		margin: 10px auto 0;
		display: block;
		width: calc((100% + 40px) * 0.5777787);
		min-width: auto;
		padding-top: 17px;
		padding-bottom: 17px;
	}

	/* ChapterXの中の装飾 */
	[id^="chapter"] .img,
	[id^="chapter"] .info,
	[id^="chapter"] .info > h3,
	[id^="chapter"] .info > p {
		position: relative;
		z-index: 1;
	}
	[id^="chapter"] .img::before,
	[id^="chapter"] .info::before,
	[id^="chapter"] .info::after,
	[id^="chapter"] .info > h3::before,
	[id^="chapter"] .info > p::before,
	[id^="chapter"] .info > p::after {
		display: block;
		max-width: 300px;
		height: auto;
		aspect-ratio: 6 / 7;
		opacity: .7;
		position: absolute;
		z-index: -1;
	}
	#chapter1 .img::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 60vw;
		bottom: -60vw;
		left: 0;
	}
	#chapter2 .img::before {
		content: '';
		background-image: -o-linear-gradient(326.503deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		background-image: linear-gradient(123.497deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		width: 40vw;
		max-width: 240px;
		right: 0;
		bottom: calc(40px - 50vw);
	}
	#chapter2 .info p:nth-of-type(1)::before {
		content: '';
		background-image: -o-linear-gradient(322.302deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(127.698deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 70vw;
		max-width: 320px;
		aspect-ratio: 1 / 1;
		top: 60%;
		left: -20px;
	}
	#chapter2 .info p.imgOnly::before {
		content: '';
		background-image: -o-linear-gradient(326.458deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.542deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 50vw;
		max-width: 275px;
		bottom: -45vw;
		right: -20px;
	}
	#chapter2 .info p:nth-of-type(3)::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		width: 60vw;
		top: 45%;
		left: -20px;
	}
	#chapter2 .info p:last-child::after {
		content: '';
		background-image: -o-linear-gradient(326.448deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.552deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 50vw;
		max-width: 275px;
		bottom: -60vw;
		right: -20px;
	}
	#chapter3 .info h3:first-of-type::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		width: 60vw;
		max-height: 300px;
		top: -10px;
		left: -20px;
	}
	#chapter3 .info::before {
		content: '';
		background-image: -o-linear-gradient(320.694deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(129.306deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 50vw;
		max-width: 275px;
		top: 30%;
		right: 0;
	}
	#chapter3 .info::after {
		content: '';
		background-image: -o-linear-gradient(318.421deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		background-image: linear-gradient(131.579deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		width: 60vw;
		aspect-ratio: 16 / 15;
		max-height: 50%;
		top: 60%;
		left: 0;
	}
	#chapter4 .info h3:first-of-type::before {
		content: '';
		background-image: -o-linear-gradient(326.459deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.541deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 50vw;
		max-width: 275px;
		top: 50%;
		left: -20px;
	}
	#chapter4 .info p:first-of-type::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		width: 40vw;
		top: 50%;
		right: -20px;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	#chapter4 .info p.imgOnly:first-of-type::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 60vw;
		top: -25px;
		left: -20px;
	}
	#chapter4 .info p:nth-of-type(3)::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 60vw;
		top: 50%;
		right: -20px;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	#chapter4 .info::before {
		content: '';
		background-image: -o-linear-gradient(326.454deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		background-image: linear-gradient(123.546deg, rgb(233,237,255) 0%, rgb(229,236,255) 100%);
		width: 40vw;
		max-width: 240px;
		bottom: 0;
		left: 0;
		-webkit-transform: translateY(50%);
		    -ms-transform: translateY(50%);
		        transform: translateY(50%);
	}
	#chapter5 .img::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 60vw;
		bottom: -30%;
		left: 0;
	}
	#chapter5 .info::before {
		content: '';
		background-image: -o-linear-gradient(326.479deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		background-image: linear-gradient(123.521deg, rgb(233,250,255) 0%, rgb(242,255,229) 100%);
		width: 60vw;
		bottom: 20%;
		max-height: 80%;
		right: 0;
	}

	[id^="chapter"] .info p.lnkbtn {
		width: 100%;
		max-width: 500px;
		min-height: 50px;
		margin: 50px auto;
		padding: 10px;
	}
	[id^="chapter"] .info p.lnkbtn.has_link a {
		display: block;
		width: 100%;
		min-height: 50px;
		padding: 10px;
	}
	
	/*=============== 背景色変更 =============== */

	/* 疑似要素削除 */
	.color_change [id^="chapter"] .img::before,
	.color_change [id^="chapter"] .info::before,
	.color_change [id^="chapter"] .info::after,
	.color_change [id^="chapter"] .info > h3::before,
	.color_change [id^="chapter"] .info > p::before,
	.color_change [id^="chapter"] .info > p::after { content: none !important; }

}

@media screen and (min-width : 732px) and (max-width : 1099px) {

	.list_datail:nth-child(odd)  .list_img p,
	.list_datail:nth-child(even) .list_img p {
		padding: 0;
		text-align: center;
	}
	.list_datail:nth-child(odd)  .text_box,
	.list_datail:nth-child(even) .text_box {
		max-width: 659px;
		padding: 0;
		margin: 40px auto 0;
	}

}

@media screen and (max-width : 520px) {

	.other .box .txt {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}

}