@charset "utf-8";
@import "cmn_reset.css";

@font-face {
	font-family: 'GENJ';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/genjusubsetfont.eot');
	src: url('../fonts/genjusubsetfont.eot?#iefix') format('embedded-opentype'), url('../fonts/genjusubsetfont.ttf') format('truetype'), url('../fonts/genjusubsetfont.woff') format('woff');
}

/* ---------------------------------------------------------

	魔法のザラザラ下じきLP
	Date: 2021.03.01

	01. 基礎設計
	02. ページ構成
	03. ヘッダー
	04. モジュール
	05. メインビジュアル
	06. 4つの原因
	07. 解決できます！
	08. 運筆力を育てよう
	09. ここがスゴイんです
	10. 6つのポイント
	11. 動画をみる
	12. twitterでの反応
	13. 先生の推薦文
	14. 作業療法士の監修付き
	15. フッター

--------------------------------------------------------- */

/* ---------------------------------------------------------

	01. 基礎設計

--------------------------------------------------------- */
html {
	color: #2f2f2f;
	font-size: 2.667vw; /* 10/375px*100 */
	font-family: 'GENJ', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	height: 100%;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #fffac6;
	font-size: 1.6rem;
	height: 100%;
}

main a {
	color: #20928f;
}
.device_pc main a:hover {
	text-decoration: none;
}

.font_serif {
	font-family: 'Noto Serif JP', serif;
}

/*===============================================
	基礎設計：768px未満
===============================================*/
@media screen and (max-width:767px) {
	.only_pc {display: none;} /* PC時のみ表示する要素に */
}

/*===============================================
	基礎設計：768px以上
===============================================*/
@media screen and (min-width:768px) {
	html {font-size: 0.7142vw;} /* 10/768px*100 */
	body {font-size: 1.7rem;}
	.only_sp {display: none;} /* SP時のみ表示する要素に */
}

/*===============================================
	基礎設計：1400px以上
===============================================*/
@media screen and (min-width:1400px) {
	html {font-size: 10px;}
}



/* ---------------------------------------------------------

	02. ページ構成

--------------------------------------------------------- */
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100%;
}

main {
	flex: 1 0 auto;
	min-height: 0%;
}

.cmn_container {
	margin: 0 auto;
	padding: 0 2.5rem;
	position: relative;
	width: 100%;
}

/*===============================================
	ページ構成：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.wrapper {
		min-height: 100%;
		min-width: 100%;
	}

	.cmn_container {
		padding: 0 20.0rem;
	}

	.cmn_contents_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.cmn_contents_wrap .cmn_title_page {width: 100%;}
	.cmn_contents_main {width: 67%;}
	.cmn_contents_side {width: 26%;}
}

/*===============================================
	ページ構成：1400px以上
===============================================*/
@media screen and (min-width:1400px) {
	.cmn_container {
		max-width: 1400px;
	}
}



/* ---------------------------------------------------------

	03. ヘッダー

--------------------------------------------------------- */
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
header .cmn_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5em 1em;
}

.header_logo {
	background: url(../img/header_logo.svg) center/contain no-repeat;
	display: block;
	flex: 0 1 30%;
	height: 0;
	margin-right: 1em;
	overflow: hidden;
	padding-top: 6%;
	text-indent: 100%;
	white-space: nowrap;
}

.header_button {
	flex: 0 0 auto;
}
.header_button a {
	background-color: #f39800;
	border-radius: 1.5em;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 0.8em 1em;
	text-decoration: none;
}
.header_button a::before {
	content: '';
	background: url(../img/icon_shop.svg) center/contain no-repeat;
	display: block;
	height: 1.2em;
	margin-right: 0.3em;
	width: 1.4em;
}
.header_button a::after {
	content: '';
	border: 0.4em solid transparent;
	border-left: 0.6em solid #fff;
	display: block;
	height: 0;
	margin-left: 0.5em;
	width: 0;
}

/*===============================================
	ヘッダー：768px以上
===============================================*/
@media screen and (min-width:768px) {
	header .cmn_container {
		padding: 1.5em 5.0rem;
	}

	.header_logo {
		flex: 0 1 13.5%;
		padding-top: 2.6%;
	}

	.header_button {
		flex: 0 0 auto;
	}
	.header_button a {
		font-size: 1.6rem;
		padding: 1em;
	}
}



/* ---------------------------------------------------------

	04. モジュール

--------------------------------------------------------- */

/* CTAボタン
--------------------------------------------------------- */
.shitajiki_btn_cta a {
	background-color: #f39800;
	border-radius: 1.6rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 10rem;
	line-height: 1.5;
	padding: 0 1em;
	position: relative;
	text-decoration: none;
}
.shitajiki_btn_cta a::before {
	content: '';
	background: url(../img/cta_arrow.svg) center/contain no-repeat;
	display: block;
	height: 2rem;
	position: absolute;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
	width: 3rem;
}
.shitajiki_btn_cta strong {font-size: 1.15em;}
.shitajiki_btn_cta span {border-bottom: 0.1rem solid #fff;}

.device_pc .shitajiki_btn_action a:hover {
	animation: rubberBand 1s both;
}
@keyframes rubberBand {
	0% {transform: scale3d(1, 1, 1)}
	30% {transform: scale3d(1.08, .96, 1)}
	40% {transform: scale3d(0.96, 1.08, 1)}
	50% {transform: scale3d(1.04, .96, 1)}
	65% {transform: scale3d(.98, 1.02, 1)}
	75% {transform: scale3d(1.02, .98, 1)}
	100% {transform: scale3d(1, 1, 1)}
}

/*===============================================
	CTAボタン：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_btn_cta a {
		border-radius: 3.2rem;
		font-size: 3.2rem;
		height: 20rem;
		line-height: 1.5;
		padding: 0 2.4em 0 3.5em;
	}
	.shitajiki_btn_cta a::before {
		height: 3rem;
		right: 0.8em;
		width: 4rem;
	}
	.shitajiki_btn_cta a::after {
		content: '';
		background: url(../img/cta_image_2026.png) center/contain no-repeat;
		display: block;
		height: 21rem;
		position: absolute;
		top: -0.8em;
		right: 4.2em;
		width: 22rem;
	}
	.shitajiki_btn_cta span {border-bottom-width: 2px;}
}

/* スクロールアニメーション
--------------------------------------------------------- */
.js-anime_scroll,
.js-anime_member {
	will-change: transform;
}

.vivify {animation-play-state: paused;}
.vivify.is-action,
.is-action .vivify {animation-play-state: running;}



/* ---------------------------------------------------------

	05. メインビジュアル

--------------------------------------------------------- */
.shitajiki_mv_wrap {
	background: url(../img/bg_dots01.png) left top/10.2rem auto;
	padding-top: 9rem;
}
.shitajiki_mv_inner {
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 5%;
}
.shitajiki_mv_lead {
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.7;
	margin-top: 1.5em;
}
.shitajiki_mv_lead span {
	font-size: 1.3em;
	line-height: 1;
}
.shitajiki_mv_lead strong {font-size: 1.2em;}
.shitajiki_mv_image {
	margin-top: 1.5em;
	position: relative;
	width: 85%;
}
.shitajiki_mv_top .shitajiki_mv_image {
	margin-top: 1.5em;
	position: relative;
	width: 85%;
}
.shitajiki_mv_top .shitajiki_mv_image_loupe {
	background: url(../img/mv_loupe.png) center/contain no-repeat;
	display: block;
	height: 62%;
	position: absolute;
	top: -8%;
	right: -18%;
	width: 72%;
}
.shitajiki_mv_cta {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 12rem;
	z-index: 10;
}
.shitajiki_mv_cta::before {
	content: '';
	background: url(../img/cta_text.png) center/contain no-repeat;
	height: 0;
	padding-top: 23%;
	position: absolute;
	top: -1.6rem;
	left: 0;
	width: 100%;
}
.shitajiki_mv_cta a {
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: bold;
	height: 12rem;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
}
.shitajiki_mv_cta_bg {
	animation: rotateBtn 80s linear infinite;
	background: url(../img/cta_bg.svg) center/contain no-repeat;
	display: block;
	height: 0;
	padding-top: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}
.shitajiki_mv_cta_image {
	display: block;
	margin: 0 auto;
	max-width: 56%;
	min-height: 0%;
}
.shitajiki_mv_cta_text {
	letter-spacing: -0.05em;
}
.shitajiki_mv_cta_text::after {
	content: '';
	border: 0.4em solid transparent;
	border-left: 0.6em solid #fff;
	display: inline-block;
	height: 0;
	margin-left: 0.4em;
	width: 0;
}
@keyframes rotateBtn {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

.shitajiki_mv_middle {
	background-image: url(../img/bg_dots02.png);
	padding: 4rem 0;
}
.shitajiki_mv_middle .shitajiki_mv_lead {
	font-size: 1.6rem;
	letter-spacing: 0;
}
.shitajiki_mv_middle .shitajiki_mv_image {width: 100%;}

/*===============================================
	メインビジュアル：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_mv_wrap {
		background-size: 20.4rem auto;
		padding-top: 10rem;
	}
	.shitajiki_mv_inner {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.shitajiki_mv_text {flex: 0 0 44%;}
	.shitajiki_mv_lead {
		font-size: 2.4rem;
		letter-spacing: 0.14em;
		line-height: 2;
		margin-top: 1.6em;
	}
	.shitajiki_mv_image {
		flex: 0 1 43%;
		margin: 0 8% 0 2%;
		width: auto;
	}
	.shitajiki_mv_top .shitajiki_mv_image {
		flex: 0 1 43%;
		margin: 0 8% 0 2%;
		width: auto;
	}
	.shitajiki_mv_top .shitajiki_mv_image_loupe {
		height: 50%;
		top: 6%;
		right: -28%;
		width: 64.7%;
	}
	.shitajiki_mv_cta {
		bottom: 2.5rem;
		right: 2.5rem;
		width: 20.5rem;
	}
	.shitajiki_mv_cta::before {
		top: -2.4rem;
	}
	.shitajiki_mv_cta a {
		font-size: 1.6rem;
		height: 20.5rem;
		line-height: 1.4;
	}
	.shitajiki_mv_cta_bg {
		animation: rotateBtn 60s linear infinite;
	}
	.shitajiki_mv_cta_image {
		max-width: 60%;
	}

	.shitajiki_mv_middle {padding: 10rem 0 12rem;}
	.shitajiki_mv_middle .shitajiki_mv_lead {
		font-size: 2.2rem;
		max-width: 28em;
	}
	.shitajiki_mv_middle .shitajiki_mv_image {
		flex-basis: 46%;
		margin-right: 0;
		width: 100%;
	}
}



/* ---------------------------------------------------------

	06. 4つの原因

--------------------------------------------------------- */
.shitajiki_cause {
	padding: 4rem 0;
}

.shitajiki_cause_heading {
	display: flex;
	align-items: center;
}
.shitajiki_cause_heading_image {
	flex: 0 1 8.5rem;
	margin-right: 0.5em;
}
.shitajiki_cause_heading_title {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.8;
}
.shitajiki_cause_heading_title span {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift 0.9s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%232f2f2f' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: 0 100%;
  background-size: auto 0.3rem;
  background-repeat: repeat-x;
	padding-bottom: 0.1em;
}

.shitajiki_cause_voice_wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 1.5em;
}
.shitajiki_cause_voice {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 0.8em 1.5em 1.5em;
	position: relative;
}
.shitajiki_cause_voice01 {background-image: url(../img/cause_bg01.png);}
.shitajiki_cause_voice02 {
	background-image: url(../img/cause_bg02.png);
	margin: 0.5em 0 0 auto;
}

.shitajiki_cause_mother {
	line-height: 2;
	margin-top: 1em;
}
.shitajiki_cause_mother::after {
	content: '';
	clear: both;
	display: block;
}
.shitajiki_cause_mother_image {
	float: right;
	margin-left: 0.5em;
	width: 9rem;
}
.shitajiki_cause_mother em {
	background: linear-gradient(to bottom, transparent 50%, #feeb51 50%, #feeb51 100%);
	font-style: normal;
}

.shitajiki_cause_box {
	background-color: #fff;
	border: 0.1rem solid #2f2f2f;
	border-radius: 2rem;
	margin-top: 1.2em;
	padding: 1.8em 1em;
	text-align: center;
}
.shitajiki_cause_box_title {
	border-bottom: 0.1rem solid #2f2f2f;
	display: inline;
	font-size: 1.9rem;
	line-height: 2;
}
.shitajiki_cause_box_title em {
	font-size: 1.5em;
	font-style: normal;
	position: relative;
}
.shitajiki_cause_box_title em::before {
	content: '';
	background: url(../img/cause_title.svg) center/contain no-repeat;
	display: block;
	height: 0.5em;
	position: absolute;
	top: -0.2em;
	right: -0.15em;
	width: 0.5em;
}
.shitajiki_cause_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 1.5em;
}
.shitajiki_cause_list li {
	width: 45%;
}
.shitajiki_cause_list li:nth-child(n+3) {
	margin-top: 10%;
}
.shitajiki_cause_list_title {
	font-size: 2rem;
	font-weight: bold;
}
.shitajiki_cause_list_image {
	margin-top: 0.5em;
}
.shitajiki_cause_list_text {
	font-size: 1.4rem;
	line-height: 1.4;
	margin-top: 1em;
	text-align: left;
}

/*===============================================
	4つの原因：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_cause {
		padding: 12rem 0;
	}

	.shitajiki_cause_heading_image {
		flex: 0 1 17.5rem;
		margin-right: 2em;
	}
	.shitajiki_cause_heading_title {
		font-size: 3.8rem;
		line-height: 2;
		padding: 1em 0;
	}
	.shitajiki_cause_heading_title span {background-size: auto 0.6rem;}

	.shitajiki_cause_voice_wrap {
		margin-top: 2em;
	}
	.shitajiki_cause_voice {
		font-size: 4rem;
		padding: 0.7em 1.5em 1.4em;
	}
	.shitajiki_cause_voice02 {
		margin-top: 0.2em;
	}

	.shitajiki_cause_mother {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		justify-content: space-between;
		font-size: 2.4rem;
		font-weight: bold;
		line-height: 2.2;
		margin-top: 1.5em;
	}
	.shitajiki_cause_mother::after {display: none;}
	.shitajiki_cause_mother_image {
		flex: 0 0 17.5rem;
		float: none;
		margin-left: 1.5em;
		max-width: 17.5rem;
	}

	.shitajiki_cause_box {
		border-width: 0.3rem;
		border-radius: 4rem;
		margin-top: 2.4em;
		padding: 2.5em 3em 3.5em;
	}
	.shitajiki_cause_box_title {
		border-bottom-width: 2px;
		font-size: 3.2rem;
	}
	.shitajiki_cause_list {
		flex-wrap: nowrap;
		margin-top: 2.5em;
	}
	.shitajiki_cause_list li {
		width: 21%;
	}
	.shitajiki_cause_list li:nth-child(n+3) {
		margin-top: 0;
	}
	.shitajiki_cause_list_title {
		font-size: 2.8rem;
	}
	.shitajiki_cause_list_image {
		margin-top: 0.5em;
	}
	.shitajiki_cause_list_text {
		font-size: 1.6rem;
		line-height: 1.7;
	}
}



/* ---------------------------------------------------------

	07. 解決できます！

--------------------------------------------------------- */
.shitajiki_solve {
	background-color: #ffe264;
	padding: 4rem 0;
}
.shitajiki_solve_heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.shitajiki_solve_heading_title {
	background: url(../img/solve_title_bg_sp.png) center/100% 100% no-repeat;
	flex: 0 0 69%;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
	padding: 1em 0.5em 1em 2.2em;
	position: relative;
}
.shitajiki_solve_heading_title::before,
.shitajiki_solve_heading_title strong::before {
	content: '';
	background: url(../img/solve_title_deco02.svg) center/contain no-repeat;
	display: block;
	height: 1em;
	position: absolute;
	width: 1em;
}
.shitajiki_solve_heading_title::before {
	top: -0.5em;
	left: 1em;
}
.shitajiki_solve_heading_title strong::before {
	bottom: 0;
	right: 0.8em;
}
.shitajiki_solve_heading_title::after,
.shitajiki_solve_heading_title strong::after {
	content: '';
	background: url(../img/solve_title_deco01.svg) center/contain no-repeat;
	display: block;
	height: 1em;
	position: absolute;
	width: 1em;
}
.shitajiki_solve_heading_title::after {
	top: 0.5em;
	left: 0;
}
.shitajiki_solve_heading_title strong::after {
	bottom: 1em;
	right: 0;
}
.shitajiki_solve_heading_title strong {
	color: #ff4a5a;
	display: block;
}
.shitajiki_solve_heading_image {
	flex: 0 1 30%;
	font-size: 2rem;
	position: relative;
}
.shitajiki_solve_heading_image::after {
	content: '';
	background: url(../img/solve_title_deco01.svg) center/contain no-repeat;
	display: block;
	height: 1em;
	position: absolute;
	top: 0.3em;
	right: -0.8em;
	width: 1em;
}

.shitajiki_solve_example {
	background: url(../img/solve_examaple_bg.png) center/21px;
	border-radius: 15px;
	margin-top: 1.5em;
	padding: 1.5em 0;
	position: relative;
}
.shitajiki_solve_example > div + div {
	margin-top: 2em;
}
.shitajiki_solve_example h3 {
	background-color: #a8a8a8;
	border-radius: 1em;
	color: #fff;
	font-weight: bold;
	margin: 0 auto;
	max-width: 37rem;
	padding: 0.5em 1em;
	text-align: center;
	width: 80%;
}
.shitajiki_solve_example_yes h3 {background-color: #ff4a5a;}
.shitajiki_solve_example h4 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 1em;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.shitajiki_solve_example_no h4 {
	background-image: url(../img/solve_example_title01.png);
	height: 1.2em;
}
.shitajiki_solve_example_yes h4 {
	background-image: url(../img/solve_example_title02.png);
	height: 2.8em;
}
.shitajiki_solve_example_no p {
	margin: 1.2em 15% 0 6%;
	width: 76%;
}
.shitajiki_solve_example_yes p {
	margin: 0.2em auto 0;
	width: 95%;
}
.shitajiki_solve_example_line {
	background: url(../img/solve_example_arrow_sp.png) center/contain no-repeat;
	display: block;
	height: 5.5em;
	position: absolute;
	bottom: -1.8em;
	left: 51%;
	transform: translateX(-50%);
	width: 1em;
}

.shitajiki_solve_smile {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2em;
}
.shitajiki_solve_smile li {width: 80%;}
.shitajiki_solve_smile li:last-child {display: none;}

/*===============================================
	解決できます！：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_solve {
		padding: 12rem 0 10rem;
	}
	.shitajiki_solve_heading {
		justify-content: center;
	}
	.shitajiki_solve_heading_title {
		background-image: url(../img/solve_title_bg_pc.png);
		flex: 0 1 70%;
		font-size: 3.8rem;
		line-height: 1.6;
		margin-right: 2%;
		padding: 1.8em 1em 1.8em 2.5em;
	}
	.shitajiki_solve_heading_image {
		flex: 0 1 22.3%;
		font-size: 3.8rem;
	}

	.shitajiki_solve_example {
		background-size: 30px;
		border-radius: 30px;
		display: flex;
		justify-content: center;
		margin-top: 4em;
		padding: 3.5em 0 2em;
	}
	.shitajiki_solve_example > div {
		width: 48%;
	}
	.shitajiki_solve_example > div + div {margin-top: 0;}
	.shitajiki_solve_example h3 {font-size: 2.4rem;}
	.shitajiki_solve_example h4 {margin-top: 1.5em;}
	.shitajiki_solve_example_no h4 {
		background-size: auto 1.6em;
		height: 3.8em;
	}
	.shitajiki_solve_example_yes h4 {height: 3.8em;}
	.shitajiki_solve_example_no p {
		margin-top: 2.1em;
	}
	.shitajiki_solve_example_line {
		background-image: url(../img/solve_example_arrow_pc.png);
		height: 0;
		padding-top: 20.8%;
		bottom: -6.8em;
		left: 53%;
		width: 44.4%;
	}

	.shitajiki_solve_smile {
		margin: 12rem auto 0;
		max-width: 88rem;
	}
	.shitajiki_solve_smile li {width: 55%;}
	.shitajiki_solve_smile li:last-child {
		display: block;
		width: 45%;
	}
}



/* ---------------------------------------------------------

	08. 運筆力を育てよう

--------------------------------------------------------- */
.shitajiki_unpitsu {
	padding-top: 4rem;
}
.shitajiki_unpitsu_heading {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-end;
}
.shitajiki_unpitsu_heading_title {
	font-size: 2.4rem;
	font-weight: bold;
}
.shitajiki_unpitsu_heading_title strong {
	color: #ff4a5a;
}
.shitajiki_unpitsu_heading_title strong {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift 0.7s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23ff4a5a' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: 0 100%;
  background-size: auto 0.3rem;
  background-repeat: repeat-x;
}
.shitajiki_unpitsu_heading_image {
	flex: 0 1 27%;
	margin-right: 0.5em;
}
.shitajiki_unpitsu_inner {
	margin-top: 1.5em;
}
.shitajiki_unpitsu_inner p {
	font-weight: bold;
	line-height: 1.7;
}
.shitajiki_unpitsu_inner strong {
	font-size: 1.35em;
}
.shitajiki_unpitsu_inner div {
	border-radius: 2rem;
	margin-top: 1.5em;
	overflow: hidden;
}

/*===============================================
	運筆力を育てよう：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_unpitsu {
		padding-top: 12rem;
	}
	.shitajiki_unpitsu_heading {justify-content: center;}
	.shitajiki_unpitsu_heading_title {font-size: 6.4rem;}
	.shitajiki_unpitsu_heading_title strong {background-size: auto 0.6rem;}

	.shitajiki_unpitsu_heading_image {
		flex: 0 1 17.5%;
		margin-right: 2em;
	}
	.shitajiki_unpitsu_inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.shitajiki_unpitsu_inner p {
		font-size: 1.8rem;
		line-height: 2.2;
		width: 53%;
	}
	.shitajiki_unpitsu_inner div {
		border-radius: 4rem;
		margin-top: 0;
		width: 42%;
	}
}



/* ---------------------------------------------------------

	09. ここがスゴイんです

--------------------------------------------------------- */
.shitajiki_sugoi {
	padding-top: 5.5em;
}
.shitajiki_sugoi_title {
	background: url(../img/bg_box_title.png) center top/100% 100% no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	height: 5em;
	line-height: 1.5;
	margin: -4em auto 0;
	padding-bottom: 0.8em;
	position: relative;
	text-align: center;
}
.shitajiki_sugoi_title strong {color: #ff4a5a;}
.shitajiki_sugoi_image {
	margin-top: 1em;
}
.shitajiki_sugoi_text {
	font-size: 1.6rem;
	line-height: 1.9;
	margin-top: 1em;
}
.shitajiki_sugoi_text strong,
.shitajiki_sugoi_text em {
	background: linear-gradient(to bottom, transparent 50%, #feeb51 50%, #feeb51 100%);
	font-style: normal;
}
.shitajiki_sugoi_text strong {font-size: 1.3em;}

.shitajiki_cmn_box {
	background-color: #fff;
	border: 0.1rem solid #2f2f2f;
	border-radius: 2rem;
	padding: 3rem 2rem;
}

/*===============================================
	ここがスゴイんです：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_sugoi {
		padding-top: 14em;
	}
	.shitajiki_sugoi_title {
		font-size: 5rem;
		line-height: 1.5;
		margin: -4em auto 0;
	}
	.shitajiki_sugoi_image {
		margin-top: 2em;
	}
	.shitajiki_sugoi_text {
		font-size: 2rem;
		line-height: 2.4;
		margin-top: 2em;
	}

	.shitajiki_cmn_box {
		border-width: 0.3rem;
		border-radius: 4rem;
		padding: 6rem;
	}
}



/* ---------------------------------------------------------

	10. 6つのポイント

--------------------------------------------------------- */
.shitajiki_point {
	padding: 5.5em 0 4rem;
}
.shitajiki_point_title {
	background: url(../img/bg_box_title.png) center top/100% 100% no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: bold;
	height: 7.14em;
	line-height: 1.4;
	margin: -5.5em auto 0;
	padding: 0.1em 0 0.8em;
	position: relative;
	text-align: center;
}
.shitajiki_point_title::before {
	content: '';
	background: url(../img/cta_image_2026.png) center/contain no-repeat;
	display: block;
	height: 9rem;
	position: absolute;
	top: 80%;
	right: 10%;
	width: 10rem;
}
.shitajiki_point_title::after {
	content: '';
	background: url(../img/point_deco.png) center/contain no-repeat;
	display: block;
	height: 3rem;
	position: absolute;
	top: 88%;
	right: -2%;
	width: 6rem;
}
.shitajiki_point_title strong {
	color: #ff4a5a;
	font-size: 1.8em;
}

.shitajiki_point_list {
	margin-top: 1.5em;
}
.shitajiki_point_list > li + li {
	margin-top: 2.5em;
}
.shitajiki_point_list_text h3 {
	background: url(../img/point_list_bg.png) center/100% 100% no-repeat;
	max-width: 10rem;
	padding: 0.4em 0.7em 1em 0.5em;
}
.shitajiki_point_list_text h4 {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 0.2em;
}
.shitajiki_point_list_text p {
	line-height: 1.9;
	margin-top: 1em;
}
.shitajiki_point_list_text em {
	background: linear-gradient(to bottom, transparent 50%, #feeb51 50%, #feeb51 100%);
	font-style: normal;
}
.shitajiki_point_list_image {
	border-radius: 2rem;
	margin: 1.2em auto 0;
	max-width: 85%;
	overflow: hidden;
	position: relative;
}
.shitajiki_point_list li:first-child .shitajiki_point_list_image::after {
	content: '';
	background: url(../img/mv_loupe.png) center/contain no-repeat;
	display: block;
	height: 22rem;
	position: absolute;
	top: 8%;
	left: 8%;
	width: 21rem;
}

.shitajiki_point_list_item05 {
	flex-wrap: wrap;
}
.shitajiki_point_list_item05 .shitajiki_point_list_image {
	border-radius: 1rem;
	max-width: 100%;
}

.shitajiki_point_example {
	margin-top: 1em;
}
.shitajiki_point_example li + li {
	margin-top: 1.5em;
}
.shitajiki_point_example h3 {
	background-color: #a8a8a8;
	border-radius: 1em;
	color: #fff;
	margin: 0 auto;
	max-width: 28rem;
	padding: 0.5em;
	text-align: center;
	width: 80%;
}
.shitajiki_point_example_yes h3 {background-color: #ff4a5a;}
.shitajiki_point_example_no p {
	margin: 1em 14% 0 4%;
}

.shitajiki_point .shitajiki_btn_cta {
	margin-top: 2em;
}

/*===============================================
	6つのポイント：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_point {
		padding: 14em 0 12rem;
	}
	.shitajiki_point_title {
		font-size: 3.2rem;
		height: 7.8em;
		line-height: 1.6;
		margin: -6em auto 0;
	}
	.shitajiki_point_title::before {
		height: 19.5rem;
		top: 56%;
		right: 5%;
		width: 20.7rem;
	}
	.shitajiki_point_title::after {
		height: 5.8rem;
		top: 42%;
		right: 5%;
		width: 10.8rem;
	}
	.shitajiki_point_title strong {
		font-size: 2em;
	}

	.shitajiki_point_list {
		margin-top: 2.5em;
	}
	.shitajiki_point_list > li:not(:nth-child(3)) {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.shitajiki_point_list > li:nth-child(3n+2) {
		flex-direction: row-reverse;
	}
	.shitajiki_point_list > li + li {
		margin-top: 3em;
	}
	.shitajiki_point_list li:not(:nth-child(3)) .shitajiki_point_list_text {width: 53%;}
	.shitajiki_point_list_text h3 {
		max-width: 22.2rem;
		padding: 1.5em 2.3em 2.3em;
	}
	.shitajiki_point_list_text h4 {
		font-size: 3.2rem;
		line-height: 1.7;
		margin-top: 0.4em;
	}
	.shitajiki_point_list_text p {
		font-size: 1.6rem;
		line-height: 2.4;
		margin-top: 1.2em;
	}
	.shitajiki_point_list_image {
		border-radius: 4rem;
		margin: 6em 0 0;
		max-width: 85%;
		overflow: hidden;
		position: relative;
		width: 41%;
	}
	.shitajiki_point_list li:first-child .shitajiki_point_list_image::after {
		height: 30rem;
		top: 10%;
		left: 12%;
		width: 30rem;
	}

	.shitajiki_point_list li.shitajiki_point_list_item05 .shitajiki_point_list_text {
		width: 100%;
	}
	.shitajiki_point_list_item05 .shitajiki_point_list_image {
		border-radius: 2rem;
		margin-top: 2em;
		width: 100%;
	}

	.shitajiki_point_example {
		display: flex;
		justify-content: center;
		margin-top: 2em;
	}
	.shitajiki_point_example li {
		width: 40%;
	}
	.shitajiki_point_example li + li {margin-top: 0;}
	.shitajiki_point_example h3 {font-size: 1.8rem;}
	.shitajiki_point_example_no p {
		margin: 1.4em 16% 0 4%;
	}

	.shitajiki_point .shitajiki_btn_cta {
		margin-top: 7em;
	}
}



/* ---------------------------------------------------------

	11. 動画をみる

--------------------------------------------------------- */
.shitajiki_movie {
	background-color: #fff7a0;
	padding: 4rem 0;
}
.shitajiki_movie_title {
	background: url(../img/movie_title.png) center/contain no-repeat;
	font-size: 2rem;
	margin: 0 auto;
	padding: 0.5em 1em 1em;
	text-align: center;
	width: 9em;
}
.shitajiki_movie_button {
	position: relative;
}
.shitajiki_movie_button::before {
	content: '';
	background: url(../img/movie_deco01.png) center/contain no-repeat;
	display: block;
	height: 6rem;
	position: absolute;
	top: -6rem;
	left: -1.5rem;
	width: 6rem;
}
.shitajiki_movie_button a {
	border: 0.1rem solid #2f2f2f;
	border-radius: 2rem;
	display: block;
	margin-top: 0.8em;
	overflow: hidden;
	position: relative;
}
.shitajiki_movie_button a::after {
	content: '';
	background: url(../img/movie_play.png) center/contain no-repeat;
	height: 7rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7rem;
}
.device_pc .shitajiki_movie_button a {transition: opacity 0.3s;}
.device_pc .shitajiki_movie_button a:hover {opacity: 0.8;}

.shitajiki_movie_panel {display: none;}
.shitajiki_movie_modal .modaal-container {background-color: transparent;}
.shitajiki_movie_modal .modaal-content-container {padding: 0;}
.shitajiki_movie_modal video {
	max-width: 100%;
}

/*===============================================
	動画をみる：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_movie {
		padding: 12rem 0 16rem;
	}
	.shitajiki_movie_title {
		font-size: 4.8rem;
		padding: 1em 2em 1.5em;
		width: 10em;
	}
	.shitajiki_movie_button::before {
		height: 13rem;
		top: -11rem;
		left: -2.5rem;
		width: 13rem;
	}
	.shitajiki_movie_button::after {
		content: '';
		background: url(../img/movie_deco02.png) center/contain no-repeat;
		display: block;
		height: 29rem;
		pointer-events: none;
		position: absolute;
		bottom: -11rem;
		right: -7.5rem;
		width: 24rem;
	}
	.shitajiki_movie_button a {
		border-width: 0.3rem;
		border-radius: 4rem;
		margin: 0 auto;
		max-width: 80rem;
	}
	.shitajiki_movie_button a::after {
		height: 12rem;
		width: 12rem;
	}
}



/* ---------------------------------------------------------

	12. twitterでの反応

--------------------------------------------------------- */
.shitajiki_twitter {
	background-color: #b2e1ff;
	padding: 4rem 0;
}

.shitajiki_twitter_title {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
.shitajiki_twitter_title::before {
	content: '';
	background: url(../img/twitter_icon.png) center/contain no-repeat;
	display: inline-block;
	height: 2em;
	margin-right: 0.4em;
	vertical-align: middle;
	width: 2em;
}

.shitajiki_twitter_list {
	margin-top: 1.5em;
	max-width: 75%;
	overflow: visible;
}
.shitajiki_twitter_item a {
	background-color: #fff;
	border: 0.1rem solid #2f2f2f;
	border-radius: 2rem;
	color: #2f2f2f;
	display: block;
	line-height: 1.7;
	padding: 1em;
	text-decoration: none;
}
.device_pc .shitajiki_twitter_item a {transition: opacity 0.3s;}
.device_pc .shitajiki_twitter_item a:hover {opacity: 0.8;}

.shitajiki_twitter_heading {
	color: #a8a8a8;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.5rem;
	font-weight: normal;
	height: 6rem;
	margin-bottom: 1em;
}
.shitajiki_twitter_heading span {
	color: #2f2f2f;
	display: block;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.1;
}
.shitajiki_twitter_heading figure {
	border-radius: 50%;
	height: 6rem;
	margin: 0 1.2em 0 0;
	overflow: hidden;
	width: 6rem;
}

/*===============================================
	twitterでの反応：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_twitter {padding: 12rem 0;}

	.shitajiki_twitter_title {font-size: 5.6rem;}

	.shitajiki_twitter_list {
		margin-top: 3.5em;
		max-width: 44rem;
	}
	.shitajiki_twitter_item > a {
		border-width: 0.3rem;
		border-radius: 4rem;
		line-height: 2;
		padding: 2em;
	}
}



/* ---------------------------------------------------------

	13. 先生の推薦文

--------------------------------------------------------- */
.shitajiki_suisen {
	background-color: #ffe264;
	padding-top: 4rem;
}

.shitajiki_suisen_heading .shitajiki_solve_heading_title {
	padding: 1em 0.2em 1em 1.5em;
}
.shitajiki_suisen_heading strong {
	display: inline;
}

.shitajiki_suisen_box {
	margin-top: 1em;
}

.shitajiki_suisen_title {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-end;
}
.shitajiki_suisen_title h3 {
	font-size: 1.28rem;
	line-height: 1.5;
}
.shitajiki_suisen_title em {
	font-size: 1.8em;
	font-style: normal;
	margin-right: 0.3em
}
.shitajiki_suisen_title div {
	flex: 0 0 25%;
	margin-right: 0.8em;
}

.shitajiki_suisen_box h4 {
	font-size: 1.9rem;
	margin: 1.5em 0 1em;
}
.shitajiki_suisen_box h4 span {
	background: linear-gradient(to bottom, transparent 50%, #feeb51 50%, #feeb51 100%);
}
.shitajiki_suisen_box p {
	letter-spacing: -0.03em;
	line-height: 1.9;
}

/*===============================================
	先生の推薦文：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_suisen {padding-top: 12rem;}
	.shitajiki_suisen_box {margin-top: 3em;}

	.shitajiki_suisen_heading .shitajiki_solve_heading_title {padding: 1.8em 1em 1.8em 3.2em;}

	.shitajiki_suisen_title h3 {
		font-size: 2.4rem;
		line-height: 2;
	}
	.shitajiki_suisen_title em {font-size: 1.33em;}
	.shitajiki_suisen_title div {
		flex: 0 0 18.5%;
		margin-right: 2em;
	}

	.shitajiki_suisen_box h4 {
		font-size: 2.2rem;
		margin: 2.5em 0 1em;
	}
	.shitajiki_suisen_box p {
		letter-spacing: 0;
		line-height: 2.2;
	}
}



/* ---------------------------------------------------------

	14. 作業療法士の監修付き

--------------------------------------------------------- */
.shitajiki_kansyu {
	background-color: #ffe264;
	padding: 5rem 0 4rem;
}

.shitajiki_kansyu_heading {
	flex-direction: row-reverse;
}
.shitajiki_kansyu_heading .shitajiki_solve_heading_title {
	font-size: 1.7rem;
	padding: 1em 1em 1em 2.5em;
}
.shitajiki_kansyu_heading strong {display: inline;}
.shitajiki_kansyu_heading .shitajiki_solve_heading_title strong::before {right: 0;}
.shitajiki_kansyu_heading .shitajiki_solve_heading_title strong::after {right: -0.5em;}
.shitajiki_kansyu_heading .shitajiki_solve_heading_image::after {display: none;}

.shitajiki_kansyu_lead {
	font-weight: bold;
	line-height: 1.7;
	margin-top: 1.2em;
}
.shitajiki_kansyu_lead em {
	color: #ff4a5a;
	font-size: 1.2em;
	font-style: normal;
	line-height: 1.1;
}

.shitajiki_kansyu_box {
	margin-top: 1em;
}

.shitajiki_kansyu_column + .shitajiki_kansyu_column {
	margin-top: 1.5em;
}
.shitajiki_kansyu_text h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 1em;
}
.shitajiki_kansyu_text h4 {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.shitajiki_kansyu_text p {
	font-size: 0.85em;
	line-height: 1.9;
}
.shitajiki_kansyu_text p + p {
	margin-top: 1.5em;
}
.shitajiki_kansyu_image {
	margin: 0 auto;
	max-width: 80%;
}

.shitajiki_kansyu_column:first-child {
	display: flex;
	flex-direction: column-reverse;
}
.shitajiki_kansyu_column:first-child .shitajiki_kansyu_image {
	border-radius: 2rem;
	margin: 0 auto 1.2em;
	max-width: 60%;
	overflow: hidden;
}

/*===============================================
	作業療法士の監修付き：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.shitajiki_kansyu {padding: 10rem 0 12rem;}
	.shitajiki_kansyu_heading .shitajiki_solve_heading_title {
		font-size: 3.8rem;
		margin-right: 0;
		margin-left: 2%;
		padding: 1.8em 1em 1.8em 3.5em;
	}

	.shitajiki_kansyu_lead {
		font-size: 2.4rem;
		line-height: 2.2;
		margin-top: 2em;
		text-align: center;
	}

	.shitajiki_kansyu_box {margin-top: 3em;}

	.shitajiki_kansyu_column {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.shitajiki_kansyu_column + .shitajiki_kansyu_column {
		margin-top: 2em;
	}
	.shitajiki_kansyu_text {
		flex: 0 1 63%;
	}
	.shitajiki_kansyu_text h3 {
		font-size: 2.4rem;
		margin-bottom: 1.2em;
	}
	.shitajiki_kansyu_text h4 {font-size: 1.6rem;}
	.shitajiki_kansyu_text p {font-size: 1.4rem;}
	.shitajiki_kansyu_image {
		flex: 0 1 33%;
		margin: 0;
		max-width: 100%;
	}

	.shitajiki_kansyu_column:first-child {
		flex-direction: row;
	}
	.shitajiki_kansyu_column:first-child .shitajiki_kansyu_image {
		border-radius: 4rem;
		margin: 0;
		max-width: 100%;
	}
}



/* ---------------------------------------------------------

	15. フッター

--------------------------------------------------------- */
footer {
	background: url(../img/bg_dots02.png) left top/10.2rem auto;
	min-height: 0%;
	padding: 3em 0 1em;
}

footer .shitajiki_mv_image img {
	animation: fuwafuwa 6s infinite ease-in-out .8s alternate;
	transition: 1.5s ease-in-out;
	width: 100%;
}
@keyframes fuwafuwa {
	0% {transform: rotate(-7deg);}
	50% {transform: rotate(0);}
	100% {transform: rotate(7deg);}
}

.shitajiki_dekirubiyori {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: 4em;
}
.shitajiki_dekirubiyori strong {
	margin-right: 0.3em;
	vertical-align: text-bottom;
}
.shitajiki_dekirubiyori strong img {
	max-width: 8em;
}
.shitajiki_dekirubiyori a {
	color: #20928f;
}
.shitajiki_dekirubiyori a::after {
	content: '';
	background: url(../img/icon_window.svg) center bottom/contain no-repeat;
	display: inline-block;
	height: 0.8em;
	margin-left: 0.2em;
	width: 0.8em;
}
.device_pc .shitajiki_dekirubiyori a:hover {
	text-decoration: none;
}

.footer_copyright {
	font-size: 1.2rem;
	font-weight: bold;
	padding: 2.0rem 0;
}

/*===============================================
	フッター：768px以上
===============================================*/
@media screen and (min-width:768px) {
	footer {
		background-size: 20.4rem;
		padding: 3em 0 1em;
	}

	.shitajiki_mv_footer {
		max-width: 1400px;
	}
	.shitajiki_mv_footer .shitajiki_mv_text {flex-basis: 44%;}
	.shitajiki_mv_footer .shitajiki_mv_image {
		flex-basis: 43%;
		margin: 0;
	}

	.shitajiki_dekirubiyori {
		font-size: 2.4rem;
		margin-top: 4em;
		text-align: center;
	}
	.shitajiki_dekirubiyori strong {
		font-size: 2.8rem;
		margin-right: 0.2em;
	}

	.footer_copyright {
		font-size: 1.8rem;
		margin-top: 6em;
		text-align: center;
	}
}
