@charset "utf-8";

/* margin,padding
--------------------------------------------------------------------*/

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
pre,
address,
blockquote,
ul,
ol,
dl,
dt,
dd,
form,
fieldset,
header,
nav,
footer,
figure,
section,
article {
	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
}

/* font 
--------------------------------------------------------------------*/

html {
	overflow-y	: scroll;
	height		: 100%;
	font-size	: 62.5%;
}

body{
  word-wrap : break-all;
  overflow-wrap : break-word;
}

address,
em {
	font-style: normal;
}

/* list 
--------------------------------------------------------------------*/

ul,ol {
	list-style-type: none;
}

/* img 
--------------------------------------------------------------------*/

img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

/* form
--------------------------------------------------------------------*/

input,
select,
textarea,
button {
	font-size: inherit;
	line-height: inherit;
}

button {
	cursor: pointer;
}

/* table
--------------------------------------------------------------------*/

table,
thead,
tbody,
tfoot,
tr,
th,
td,
caption,
col,
colgroup {
	text-align: inherit;
	line-height: inherit;
	font-size: 100%;
}

table {
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
}

thead {
	display: table-header-group;
}

tbody {
	display: table-row-group;
}

tfoot {
	display: table-footer-group;
}

tr {
	display: table-row;
}

th,
td {
	display: table-cell;
}

caption {
	display: table-caption;
}

col {
	display: table-column;
}

colgroup {
	display: table-column-group;
}

/* clearfix
--------------------------------------------------------------------*/

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}/*IE7用*/

/* Hides from IE-mac \*/
* html .clearfix { height:1%;}
.clearfix { display:block;}
/* End hide from IE-mac */

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight:300;
}

/** margin-top **/
.mt0{margin-top: 0 !important;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

/** margin-left **/
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.ml40{margin-left: 40px;}
.ml50{margin-left: 50px;}
.ml60{margin-left: 60px;}
.ml70{margin-left: 70px;}
.ml80{margin-left: 80px;}
.ml90{margin-left: 90px;}
.ml100{margin-left: 100px;}

/** margin-bottom **/
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb50{margin-bottom: 50px !important;}
.mb60{margin-bottom: 60px !important;}
.mb70{margin-bottom: 70px !important;}
.mb80{margin-bottom: 80px !important;}
.mb90{margin-bottom: 90px !important;}
.mb100{margin-bottom: 100px !important;}

/** margin-right **/
.mr10{margin-right: 10px;}
.mr20{margin-right: 20px;}
.mr30{margin-right: 30px;}
.mr40{margin-right: 40px;}
.mr50{margin-right: 50px;}
.mr60{margin-right: 60px;}
.mr70{margin-right: 70px;}
.mr80{margin-right: 80px;}
.mr90{margin-right: 90px;}
.mr100{margin-right: 100px;}



/* メイン
--------------------------------------------------------------------*/

*{
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #231815;
}


@media screen and (max-width: 767px){
	
	body {
		font-size: 1.4rem;
		line-height: 1.6;
	}
	
}


/*-------------------------------------------------------------------
	wrap
-------------------------------------------------------------------*/

#wrap {
}


/*-------------------------------------------------------------------
	header
-------------------------------------------------------------------*/

#header {
	width: 100%;
	position: relative;
	background: url("../image/header_bg_pc.jpg") left top no-repeat;
	background-size: cover;
	padding: 0 0 15px;
}

.hdLogo {
	width: 1000px;
	max-width: 94%;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1rem;
}

.hdMain img {
	width: 100%;
	vertical-align: top;
}


.hdCatch {
	position: absolute;
	bottom: 18%;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 1400px){
	
	
	.hdCatch {
		width: 25%;
	}
	
}

@media screen and (max-width: 1050px){
	
	.hdCatch {
		width: 25%;
	}
	
}

@media screen and (max-width: 784px){
	.hdCatch {
		max-width: inherit;
		width: 70%;
		bottom: auto;
		top: 35%;
	}
}

@media screen and (max-width: 767px){
	
	#header {
		background: url("../image/header_bg_sp.jpg") left top no-repeat;
		background-size: cover;
	}
	
	.hdLogo {
		top: 10px;
	}
	
	.hdLogo img {
		max-width: 35%;
		vertical-align: top;
	}
	
}



/*-------------------------------------------------------------------
	container
-------------------------------------------------------------------*/

#container {
	padding: 40px 0;
}

.contInner {
	width: 1000px;
	max-width: 94%;
	margin: 0 auto;
}

.subInner {
	width: 940px;
	max-width: 94%;
	margin: 0 auto;
}

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.alignRight {
	text-align: right;
}


.ugTitle {
	text-align: center;
}

.ugTitle dt {
	margin-bottom: 30px;
}
.ugTitle dd {
	font-size: 3.2rem;
	line-height: 1.6;
	font-weight: 600;
}

.borderTitle {
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: 1px solid #000000;
}


@media screen and (max-width: 767px){
	
	#container {
		padding: 40px 0 70px;
	}
	
	
	.ugTitle dt {
		margin-bottom: 20px;
	}
	.ugTitle dd {
		font-size: 2.0rem;
	}
	
	.borderTitle {
		margin-bottom: 20px;
	}
	
	.borderTitle img {
		max-height: 45px;
	}
	
}


/* leadBox */

#leadBox {
	text-align: center;
	margin-bottom: 100px;
}

.mainCatch {
	margin-bottom: 30px;
}

.secCatch {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 3.2rem;
	line-height: 1.4;
	letter-spacing: .02em;
}

.leadText {
	font-weight: 600;
	font-size: 2.0rem;
	line-height: 1.4;
}


@media screen and (max-width: 1024px){
	
	#leadBox {
		margin-bottom: 60px;
	}
	
	
	.mainCatch {
		margin-bottom: 20px;
	}

	.secCatch {
		font-size: 2.0rem;
	}

	.leadText {
		text-align: center;
		font-weight: 600;
		font-size: 1.6rem;
		line-height: 1.6;
	}
	
}

/* subLead */

#subLead {
	text-align: center;
	margin-bottom: 100px;
}

.subBold {
	margin-bottom: 30px;
	line-height: 1.4;
	font-size: 2.1rem;
	font-weight: 600;
}

.slTitle {
	margin-bottom: 30px;
}

.slText {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.0;
}



@media screen and (max-width: 1024px){
	
	#subLead {
		margin-bottom: 60px;
	}

	.subBold {
		margin-bottom: 20px;
		line-height: 1.4;
		font-size: 1.8rem;
		font-weight: 600;
	}

	.slTitle {
		margin-bottom: 20px;
	}

	.slText {
		font-weight: 500;
		font-size: 1.6rem;
		line-height: 1.8;
		text-align: left;
	}
	
	
}


/* upGrade01 */

#upGrade01 {
	margin-bottom: 100px;
}

.courseLead {
	font-size: 1.75rem;
	margin-bottom: 40px;
}

.courseTitle {
	position: relative;
	line-height: 1.0;
	margin-bottom: 30px;
}

.courseTitle .courseBold {
	font-weight: 600;
	font-size: 1.8rem;
	position: absolute;
	top: 50%;
	left: 170px;
	transform: translateY(-50%);
}

.courseFlex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}

.courseFlex.last {
	margin-bottom: 0;
}

.courseSame {
	width: 48%;
}

.courseBlack dt {
	line-height: 1.0;
	background: #000000;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.courseBlack dd {
	margin-bottom: 25px;
	font-size: 1.75rem;
}

.courseBlack dd:last-child {
	margin-bottom: 0;
}

.pickupBox {
	position: relative;
	background: #eeecf6;
	padding: 30px;
}


.pickupBox img {
	width: 100%;
}

.pickupBox::before {
	background: url("../image/pickup_icon.png") left top no-repeat;
	background-size: cover;
	width: 50px;
	height: 26px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
}

.puBold {
	font-weight: 500;
	line-height: 1.0;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.cautionText {
	display: flex;
	font-size: 1.4rem;
	margin-top: 20px;
	line-height: 1.6;
}

.cautionFlex {
	font-size: 1.4rem;
	margin-top: 20px;
	line-height: 1.6;
}

.cautionFlex li {
	display: flex;
}

.cautionFlex li .first {
	flex-basis: 95px;
}
.cautionFlex li .second {
	width: 100%;
}

.supTxt {
	font-size: 0.7em;
}

.smlTxt {
	font-size: 0.8em;
}

@media screen and (max-width: 1024px){
	
	#upGrade01 {
		margin-bottom: 60px;
	}

	.courseLead {
		font-size: 1.6rem;
		margin-bottom: 30px;
	}
	
	.courseBlack dt {
		font-size: 1.3rem;
	}

	.courseBlack dd {
		margin-bottom: 20px;
		font-size: 1.4rem;
	}
	.pickupBox {
		position: relative;
		background: #eeecf6;
		padding: 30px 5% 20px;
	}

	.cautionText,
	.cautionFlex {
		font-size: 1.2rem;
	}
	
}

@media screen and (max-width: 767px){


	.courseFlex {
		display: block;
		margin-bottom: 50px;
	}

	.courseSame {
		width: auto;
	}
	
	.courseFlex .courseSame:nth-child(n + 2) {
		margin-top: 30px;
	}
}

@media screen and (max-width: 640px){
	
	.courseTitle figure {
		max-width: 30%;
	}

	.courseTitle .courseBold {
		font-size: 1.6rem;
		left: 33%;
	}
	
}


/* upGrade02 */

#upGrade02 {
	padding: 60px 0;
	background: #f7f6fb;
	margin-bottom: 100px;
}

.iconFlex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.iconFlex .whiteBg,
.iconFlex .iconImg {
	width: 48%;
}

.iconFlex .whiteBg {
	box-sizing: border-box;
	background: #fff;
	padding: 60px 30px;
	border-radius: 20px;
	box-shadow: 15px 15px 10px 0px rgba(238,236,246,0.65);
}


@media screen and (max-width: 1024px){
	
	#upGrade02 {
		padding: 40px 0;
		margin-bottom: 60px;
	}

	

	.iconFlex .whiteBg {
		box-sizing: border-box;
		background: #fff;
		padding: 30px 5%;
		margin-bottom: 30px;
	}
	
	.iconFlex .iconImg {
		text-align: center;
	}
	
}

@media screen and (max-width: 767px){
	
	.iconFlex {
		display: block;
		align-items: center;
		justify-content: space-between;
	}

	.iconFlex .whiteBg,
	.iconFlex .iconImg {
		width: auto;
	}
	
	
}


/* upGrade03 */

#upGrade03 {
}

.pointFlex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.pointFlex .pointSame {
	width: 30%;
}

.pointSame dt {
	line-height: 1.0;
	background: #ffe100;
	font-size: 1.4rem;
	padding: 10px;
	margin-bottom: 15px;
}

.pointSame dd {
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 500;
}

.bookLead {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	font-size: 1.8rem;
}

.bookLead .bookIcon {
	position: absolute;
	top: 0;
	right: 0;
}

.blackTitle {
	display: flex;
	background: #000;
	color: #fff;
	justify-content: space-between;
	align-items: center;
	line-height: 1.0;
	font-weight: 600;
	padding: 10px;
	font-size: 1.6rem;
}

.blackTitle .blSmall {
	font-size: 1.4rem;
	font-weight: 300;
}

table.licenseTable {
	width: 100%;
	margin-bottom: 100px;
}


table.licenseTable th,
table.licenseTable td {
	box-sizing: border-box;
	border-bottom: 1px solid #000;
	padding: 20px 0;
	text-align: left;
}

table.licenseTable th {
	width: 35%;
	vertical-align: top;
}

table.licenseTable td {
	vertical-align: middle;
}

.endBorder {
	line-height: 1.0;
	padding: 0 0 15px;
	margin: 0 0 20px;
	font-size: 1.8rem;
	border-bottom: 1px solid #000;
	font-weight: 500;
}

.telFlex {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	line-height: 1.0;
}


.telFlex li:nth-child(n + 2) {
	margin-left: 80px;
}



@media screen and (max-width: 1024px){
	
	.pointSame dd {
		font-size: 1.6rem;
	}

	.bookLead {
		position: relative;
		text-align: left;
		margin-bottom: 50px;
		font-size: 1.6rem;
	}

	.bookLead .bookIcon {
		position: static;
		text-align: right;
		margin-top: 20px;
	}

	table.licenseTable {
		margin-bottom: 60px;
	}
	
}


@media screen and (max-width: 767px){
	
	.pointFlex {
		display: block;
	}

	.pointFlex .pointSame {
		width: auto;
	}
	
	.pointFlex .pointSame:nth-child(n + 2) {
		margin-top: 30px;
	}

	table.licenseTable th,
	table.licenseTable td {
		display: block;
		padding: 10px 0;
	}

	table.licenseTable th {
		width: auto;
		border-bottom: 1px dotted #000;
	}

	.telFlex {
		display: block;
		text-align: center;
		max-width: 80%;
	}

	.telFlex li:nth-child(n + 2) {
		margin-left: 0;
		margin-top: 30px;
	}
	
	
	.blackTitle {
		display: block;
		margin-bottom: 10px;
		font-size: 1.5rem;
	}
	
	.blackTitle span {
		display: block;
	}
	
	.blackTitle .blSmall {
		text-align: right;
		margin-top: 10px;
		font-size: 1.2rem;
	}
	
	
}

/* footer
--------------------------------------------------------------------*/

#footer {
	background: url("../image/foote_bg.jpg") left top no-repeat;
	background-size: cover;
	line-height: 1.0;
	padding: 20px 3%;
}

#footer address {
	color: #fff;
	text-align: center;
	font-size: 1.4rem;
}

#pageTop {
	position: fixed;
	bottom: 90px;
	right: 5%;
	z-index: 9;
}

#pageTop a {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	font-size: 0;
	border-radius: 50%;
	background: #a59aca;
	pointer-events: auto;
}


#pageTop a::after {
	width: 15px;
  height: 15px;
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
	content: '';
	position: absolute;
	top: 37%;
	left: 30%;
}



@media screen and (max-width: 1024px){
	
	#footer {
		padding: 10px 3%;
	}
	
	
	#footer address {
		font-size: 1.2rem;
		line-height: 1.4;
	}
	
	#pageTop {
		bottom: 60px;
	}
	
	.indentFlex {
		display: flex;
		line-height: 1.6;
		align-items: flex-start;
		text-align: left;
	}
	
	
}


/* format */


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"] {
	border-radius: 0;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="reset"]::-focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

*:focus {
	outline: none;
}

html {
 -webkit-text-size-adjust: 100%;
}

a:hover img {
	opacity: 0.7;
}


@media screen and (max-width: 767px){
	
	
}


/* 改行管理 */

.spIn,
.spBl {
	display: none;
}

.pcIn {
	display: inline;
}

.pcBl {
	display: block;
}

.tabIn,
.tabBl {
	display: none;
}

@media screen and (max-width: 1024px){
	
	.spIn,
	.spBl {
		display: none;
	}
	
	.pcIn,
	.pcBl {
		display: none;
	}
	
	.tabIn {
		display: inline;
	}
	
	.tabBl {
		display: block;
	}
	
}

@media screen and (max-width: 640px){
	
	.spIn {
		display: inline;
	}
	
	.spBl {
		display: block;
	}

	.pcIn,
	.pcBl {
		display: none;
	}
	
	.tabIn,
	.tabBl {
		display: none;
	}
}

@media(min-width: 767px){
  
	a[href^="tel:"]{
    pointer-events: none;
  }
	
}
