@charset "UTF-8";
/*---------------
common
---------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{margin:0; padding:0; border:0; font-style:normal; font-weight:normal; font-size:100%; vertical-align:baseline}
html, body{color:#333; font-weight:200}
div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, input, textarea, button, table, tr, th, td, article, aside, footer, header, hgroup, nav, section{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block}
html{overflow-y:scroll}
ol, ul{list-style:none}
html{font-size:100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%}

/* --- 背景色の変更 --- */
html, body {
    height: 100%;
    /* ページ全体にサクラ色のグラデーションを設定 */
    background: linear-gradient(to bottom, #fff5f7 0%, #ffeef2 100%);
    background-attachment: fixed;
}

body {
	color:#333;
	font-size: 14px;
	-webkit-text-size-adjust: 100%;
	font-family: Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W6, sans-serif;
	line-height: 1.6;
	word-break:break-all;
    /* --- 【修正】ボディ全体で中央寄せを基本にする --- */
    text-align: center;
}
body >#wrapper{position:relative; min-height:100%; height:auto !important; height:100%}

/* --- wrapperの背景画像を無効化 --- */
#wrapper {
    overflow:hidden; 
    margin:0 auto; 
    /* width:320px; 【修正】幅固定を解除し、レスポンシブに対応 */
    width: 100%;
    max-width: 640px; /* PCでの最大幅を設定（お好みで調整してください） */
    background: transparent; /* 背景を透明にしてbodyのグラデーションを見せる */
    padding-bottom: 120px;
}

a{color:#369; text-decoration: underline;}
a:focus{outline:none}
a:hover {
	color: #369;
	text-decoration: none;
	border: none;
}
a:active, a:link, a:visited {
	color: #369;
	text-decoration: none;
	border: none;
}
div:after{display:block; clear:both; content:""}
img {
	max-width: 100%;
	height: auto;
	border: none;
	display:block;
    /* --- 【修正】画像自体を中央に配置する --- */
    margin: 0 auto;
}
/*---------------
clearfix
---------------*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}
.clearfix {
	min-height: 1px
}
* html .clearfix {
	height: 1px
}
/*---------------
link
---------------*/
a:hover {
	color: #369;
	text-decoration: none;
	border: none;
}
a:active, a:link, a:visited {
	color: #369;
	text-decoration: none;
	border: none;
}

/*---------------
header
---------------*/
header {
	padding: 3px 5px;
	background:#fff;
    /* --- 【修正】ヘッダー内の中身を中央寄せにする --- */
    text-align: center;
}
header .logo {
	height:30px;
	width:auto;
    /* --- 【修正】ロゴ自体を中央に配置する --- */
    display: inline-block;
    vertical-align: middle;
}

/*---------------
footer
---------------*/
footer {
	text-align: center;
	padding:40px 10px; /* 上下のパディングを広げて見やすく */
	font-size:12px;
}
footer .copy{
	text-align: center;
	padding:0;
}
/* --- 【修正】フッター内のpタグは中央寄せにする --- */
footer p {
    text-align: center;
}

/*---------------
mainvisual
---------------*/
#mainvisual{text-align: center;}
#mainvisual img{width:100%;display:block; margin: 0 auto;} /* ロゴ等と同様、中央配置 */
#mainvisual .read{ padding:5px 10px 10px;}

/*---------------
section
---------------*/
section {
	background: #fff;
	border-radius: 5px;
	padding: 8px;
	text-align: center;
	margin: 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* コンテンツを少し浮かせる影を追加 */
}
.section-inner {
	padding: 2px;
}


/*---------------
content
---------------*/
h2 {
	color: #fff;
	font-size: 15px;
	line-height: 1.2;
	font-weight: bold;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 10px;
    /* --- 【修正】見出しは中央寄せにする --- */
    text-align: center;
}
/* --- 【修正】コンテンツ内のpタグは左寄せ（基本）としつつ、必要に応じて上書きできるように --- */
.container p, section p, article p {
    text-align: left;
    padding: 10px 0;
}
/* body直下のpタグや、意図しないpタグの左寄せを解除 */
p {
    text-align: inherit; /* 親要素の設定を引き継ぐ */
    padding: 10px 0;
}

/*---------------
article parts
---------------*/

/* article01 講座概要 */
.article01 table {
	border-collapse: separate;
	border-spacing: 0 8px;
	font-weight: bold;
	margin: -10px auto 5px; /* テーブル自体を中央配置 */
}
.article01 th {
	border-radius: 5px;
	padding: 2px 10px;
	font-size:12px;
}
.article01 td {
	padding-left: 10px;
	text-align: left;
}
.article01 img {
	width:100%;
}

/* article02 講座ポイント紹介 */
.article02 dl {
	background: #fcf0ca;
}
.article02 dt {
	cursor: pointer;
	background: url(../images/common/swichArrow.png) right 8px bottom 17px no-repeat;
	background-size: 12px auto;
	text-align: left;
	border-top: 2px solid #fff;
	padding-right: 20px;
	display:table;
	width:100%;
}
.article02 dt p {
	font-weight: bold;
	font-size: 13px;
	line-height: 1.3;
	vertical-align:middle;
	display:table-cell;
	padding:8px 0 8px 5px;
	text-align:left; /* ここは意図通り左寄せ */
}
.article02 dt span {
	color: #fff;
	background: #F28922;
	width: 65px;
	text-align: center;
	display:table-cell;
	vertical-align:middle;
	padding:8px 0;
}
.article02 dt.active {
	background: #FBE194 url(../images/common/swichArrow.png) right 8px top 18px no-repeat;
	background-size: 12px auto;
}
.article02 dd {
	display: none;
	padding: 0;
	width:100%;
	background:#fff;
}
.article02 dd .photo {
	text-align: center;
	width:100%;
	display:block;
}
.article02 dd p {
	padding: 10px;
    text-align: left; /* ここも意図通り左寄せ */
}

/* article03 受講スケジュール */
.article03 h3 {
	color: #f28921;
	padding: 10px 0 0;
	text-align: left;
	font-weight:bold;
}
.article03 .swiper-container {
	width: 100%;
	height: 100%;
}
.article03 .swiper-slide {
	padding-bottom: 20px;
}
.article03 .swiper-slide img {
	width: 100%;
	display:block;
}
.article03 .swiper-slide p {
	padding:10px 0;
    text-align: left; /* 左寄せ */
}
.article03 .swiper-inner {
	margin: 0 25px 5px;
	padding: 10px 10px 5px;
	border-radius:5px;
	background:#FEEDE0;
}

/* article04 活躍の場 */
.article04 h3 {
	color: #f28921;
	padding: 5px 0 5px 40px;
	text-align: left;
	font-weight:bold;
	position:relative;
	border-bottom:2px solid;
	background:#F6E5A3;
	line-height:1.3;
}
.article04 h3:after {
	content:"1";
	line-height:1.5;
	position:absolute;
	top:50%;
	margin-top:-15px;
	left:5px;
	color: #fff;
	font-weight:bold;
	background-image: linear-gradient(
		-45deg,
		#f39538 25%,
		#f28921 25%, #f28921 50%,
		#f39538 50%, #f39538 75%,
		#f28921 75%, #f28921
	);
	background-size: 28px 28px;
	border-radius:50%;
	padding:4px 10px;
	font-size:16px;
	font-weight:bold;
}
.article04 h3.no2:after { content:"2"; }
.article04 h3.no3:after { content:"3"; }
.article04 ul li p {
	padding:5px 5px 10px;
	text-align:left;
}

/* article05 修了生インタビュー */
.article05 .clearfix {
    display: flex; /* floatの代わりにFlexboxを使用して中央寄せに対応 */
    justify-content: space-between;
    align-items: flex-start;
}
.article05 .left-box {
	/* float: left; */
	text-align: center;
	width: 35%;
}
.article05 .right-box {
	/* float: right; */
	width: 60%;
}
.article05 dl {
	margin-top: 10px;
	padding : 10px;
}
.article05 dt {
	padding : 0 5px 8px;
	font-weight: bold;
	text-align: left
}
.article05 dd {
	padding : 10px;
	background: url(../images/common/txtBg.png);
	text-align: left;
}
.article05 .title {
	padding: 0 0 10px;
	font-size: 15px;
}
.article05 .title span {
	border-bottom: 2px solid #ffff66;
	font-weight:bold;
}

/* article06 Q＆A */
.article06 dl { background: #fcf0ca; }
.article06 dt {
	cursor: pointer;
	background: url(../images/common/swichArrow.png) right 8px bottom 17px no-repeat;
	background-size: 12px auto;
	text-align: left;
	border-top: 2px solid #fff;
	padding-right: 20px;
	display:table;
	width:100%;
}
.article06 dt p {
	font-weight: bold;
	font-size: 13px;
	line-height: 1.3;
	vertical-align:middle;
	display:table-cell;
	padding:8px 0 8px 5px;
	text-align:left;
}
.article06 dt span {
	color: #fff;
	background: #F28922;
	width: 65px;
	text-align: center;
	display:table-cell;
	vertical-align:middle;
	padding:8px 0;
}
.article06 dd {
	display: none;
	padding: 0;
	width:100%;
	background:#fff;
}
.article06 dd p {
    text-align: left; /* 左寄せ */
    padding: 10px;
}

/* article11 学校紹介 */
.article11 .pointWrap { background:#f5eee4; }
.article11 dt {
	background-image: linear-gradient(
		-45deg,
		#9789c7 25%,
		#8f82bc 25%, #8f82bc 50%,
		#9789c7 50%, #9789c7 75%,
		#8f82bc 75%, #8f82bc
	);
	background-size: 28px 28px;
	color:#fff;
}

/* article12 アクセス */
.article12 h3 {
	background:#f5eee4;
	color:#683700;
}
.article12 iframe {
	width:100%;
	height:200px;
	margin-top:10px;
}
.article12 p {
    text-align: left; /* 左寄せ */
}

/* banner バナーエリア */
.bannerArea{
	padding:5px 10px 0;
	text-align:center;
}
.bannerArea img{
	width:100%;
	display:block;
	margin:0 auto 5px; /* 中央配置 */
}

/* pageTop ページ上部へ */
#pageTop{
	width:40px;
	position: fixed;
	bottom: 80px;
	right:10px;
	z-index:99999;
}
#pageTop a{
	display:block;
	border-radius:10px;
	background:#9789c7; /* 色を補完 */
    color: #fff; /* 文字色を白に */
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
}
	