@charset "utf-8";

/* ----------------------------------------------
   リジュセア・マイオピンページ専用CSS
   ※共通レイアウト（body / wrapper / header / gNavi）は common.css に任せる
------------------------------------------------- */



/* このページの本文エリア */
#div {
	width: 1000px;
	margin-left: 10px;
	background: #fff;
}

#div:after {
	content: "";
	display: block;
	clear: both;
}

/* 見出し・本文 */
h2 {
	margin: 0;
}

img {
	border: 0;
}

p.img_center {
	text-align: center;
}

/* 汎用 */
.center {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 10px;
}

.bold {
	font-weight: bold;
}

.red {
	color: #F00;
}

.right {
	text-align: right;
}

.bg_blue {
	background-color: #0e7bc0;
	color: #FFF;
	text-align: center;
}

.style1 {
	color: #F90;
	font-weight: bold;
	font-size: 120%;
}

/* ボタン */
a.btn_12 {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	text-decoration: none;
	width: 100px;
	margin: auto;
	padding: 0.5rem 1rem;
	font-weight: bold;
	background: #27acd9;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}

a.btn_12::before {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

a.btn_12:hover {
	background: #44c6f2;
	color: #fff;
}

/* 見出し・説明ボックス */
.title {
	border-bottom: solid 10px #b0deec;
	margin: 150px 0;
	text-align: center;
	line-height: 0;
}

.explanation {
	background-color: #b0deec;
	border-radius: 10px;
	padding: 40px 80px;
	margin-bottom: 80px;
}

.recommend {
	border: solid 10px #b0deec;
	border-radius: 10px;
	padding: 10px 15px;
	margin-bottom: 15px;
}

.recommend img {
	text-align: center;
}

.recommend2 {
	border: solid 10px #ecc0b0;
	border-radius: 10px;
	padding: 10px 15px;
	margin-bottom: 15px;
}

.recommend2 img {
	text-align: center;
}

/* 治療方法エリア */
.method {
	margin-bottom: 80px;
}

.method_title {
	background-color: #b0deec;
	padding: 7px 20px;
	margin-bottom: 60px;
	border-radius: 25px;
}

.method p {
	padding: 0 80px;
}

/* 文字色 */
.fontcl-cya {
	color: #88794f;
	font-size: 130%;
	font-weight: bold;
}

.fontcl-blue {
	color: #64b6c8;
	font-size: 120%;
	font-weight: bold;
}

.fontcl-gray {
	color: #555555;
	font-size: 120%;
	font-weight: bold;
}

/* メモ風ボックス */
.memox {
	position: relative;
	background: #fffde7;
	width: 85%;
	margin: 2em auto;
	padding: 1.5em 1em;
	transform: rotate(-1deg);
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	color: #795548;
}

.memox::before {
	content: '近視の予防について';
	position: relative;
	display: inline-block;
	border-bottom: 3px solid #795548;
	border-radius: 0 0 40% 5% / 0 0 15% 20%;
	padding: 0 1em 0.1em 0.2em;
	font-size: 110%;
	font-weight: bold;
	transform: rotate(-1deg);
}

.memox::after {
	content: '';
	position: absolute;
	left: 50%;
	top: -15px;
	margin-left: -75px;
	width: 150px;
	height: 30px;
	background: rgba(245,245,245,0.7);
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	transform: rotate(-4deg);
}

.memox ul {
	margin: 1em 0.5em 0 2em;
	padding: 0;
}

.memox ul li {
	margin-bottom: 0.5em;
}

/* 折り返し風ボックス */
.box-001 {
	padding: 1em;
	background-color: #f5f0e3;
	position: relative;
	line-height: 150%;
}

.box-001:after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	border-width: 0 30px 30px 0;
	border-style: solid;
	border-color: #ccc #fff #ccc;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

/* チェックマーク */
.checkmark004 {
	padding-left: 24px;
	position: relative;
}

.checkmark004:before,
.checkmark004:after {
	content: "";
	display: block;
	position: absolute;
}

.checkmark004:before {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background: #ffffff;
	border: 1px solid #000000;
	left: 0;
	top: 2px;
}

.checkmark004:after {
	border-left: 2px solid #ff0000;
	border-bottom: 2px solid #ff0000;
	width: 6px;
	height: 3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 5px;
	top: 7px;
}

