@charset "utf-8";
/**
 *
 * common: 共通
 *
 */
/*
font-family: 'Fjalla One', sans-serif;
*/
/**/
/*Common help Styles*/
.pt,
.trans{
	font-family: "Abel";
}
/****************************
 Animation
****************************/
@keyframes navMove {
	0% {right:-100%;}
	100% {right:0;}
}
@keyframes navFadein {
	0% {opacity:0;}
	100% {opacity:1;}
}
/****************************
 Animation
****************************/
@keyframes inview {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeUp {
	0% {
		opacity:0;
		transform: translateY(60px);
    	-webkit-transform: translateY(60px);
	}
	100% {
		opacity:1;
		transform: translateY(0);
    	-webkit-transform: translateY(0);
	}
}
/****************************
 JS Sync
****************************/
.inview {
	opacity: 0;
	-webkit-transform-style: preserve-3d;
  	transform-style: preserve-3d;
}
.inview.move{
	-webkit-animation:fadeUp 0.8s ease-in-out 1 normal;
	animation:fadeUp 0.8s ease-in-out 1 normal;
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}

/****************************
 Body + #Page
****************************/
html{
}
html.fixed ,body.fixed{
	overflow:hidden;
	height: 100%;
}
#Page {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}
body.fixed{
	position: fixed;
	width:100%;
	height:100%;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	overflow:hidden;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

@media all and (max-width: 767px) {
	body{
		padding: 0;
		font-size: 1rem;
	}
	#Page {
		min-width: 320px;
		max-width: 100%;
		width: 100%;
		overflow: hidden;
	}
}
/*----------------------------
	Header
-----------------------------*/
.fix{
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	width: 100%;
}
.fix .fix-inner {
	min-width:  767px;
	max-width:  980px;
	margin: 0 auto;
	position: relative;
}
.fix .fix-inner .utilities {
	position: absolute;
	top: 5px;
	right: 135px;
}
#Header {
      max-width: 980px;
      height: 58px;
      min-width: auto;
      margin: 0 auto;
      border: none;
      left: 0;
      right: 0;
      position: absolute;
    }

    #HeaderInner {
      max-width: 980px;
      height: 48px;
      background: #F0EEEC;
    }

    #Title {
      width: 240px;
      height: 48px;
      position: relative;
      text-align: center;
      z-index: 1;
      left: 0;
      line-height: 58px;
      font-size: 1.8rem;
      margin: auto;
      background: #F0EEEC;
    }
	
	#Title a {
	  color:#3D3D3D;
	}

#Header #Nav {
	width: 100%;
	position: fixed;
	top: 0;
	right: 100%;
}
#Logo {
	position: absolute;
	top: 0;
	left: 20px;
	line-height: 112px;
}
#Logo img {
	width: 38px;
	height: 38px;
	vertical-align: middle;
}
/* Nav
-------------------*/
ul.utilities {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:flex-end;
	justify-content:flex-end;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	z-index: 100;
}
ul.utilities li {
	width: 135px;
	height: 112px;
	border-left: 1px solid #ddd;
}
ul.utilities li a {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.utilities li.active{
	border-bottom: 4px solid #003854;
}

@media all and (max-width: 767px) {
	ul.utilities {
		overflow: hidden;
	}
}
#GlobalNav {
	width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
#GlobalNav li{
	display: inline-block;
}
#GlobalNav li a{
	width: 100%;
    display: block;
    padding: 15px 10px;
    position: relative;
    font-size: 13px;
}

@media all and (min-width: 768px) {
	#GlobalNav li:not(.Nav_banner) a:hover::after{
		content: "";
		display: block;
		width: 100%;
		background: #ddd;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
	}
}
#GlobalNav li.Nav_banner img{
	width: 100%;
	max-width: 250px;
	vertical-align: middle;
}
#GlobalNav li.Nav_banner img:hover{
	opacity: 0.7;
}
#Nav ul.utilities{
	display: none;
}

/* Menu
-------------------*/
#Menu {
	width: 135px;
	height:112px;
	position: absolute;
	top: 0;
	right: 0;
	padding: 30px 0 0;
	cursor: pointer;
	z-index: 3000;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
#Menu:before,
#Menu:after{
	content: "";
	display: block;
	width: 28px;
	height: 4px;
	border-radius: 2px;
	background: #cc0033;
	margin: 0 auto;
}
#Menu:before {
	transform:translate(0,38px) rotate(0);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#Menu:after{
	transform:translate(0,22px) rotate(0);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#Menu.border_top{
	top: 40px;
	height: 62px;
}
/*----------------------------
		メニュー表示
	-----------------------------*/
#Header.view{
	height: 211px;
}
#Header.view #Menu:before{
	transform:translate(0,31px) rotate(45deg);
}
#Header.view #Menu:after{
	transform:translate(0,27px) rotate(-45deg);
}
#Header.view #Nav {
	width: 100%;
	height: auto !important;
	right: 0;
	top: 116px;
	background: #f8f8f8;
	z-index: 200;
	box-shadow:0px 1px 0px 0px rgba(0,0,0,0.1);
}

#GlobalNav li a .new_t_r{
	color:#c30e2e;
	font-weight:bold;
	font-size:0.9em;
	margin:0 0 0 0.5em;
}

#GlobalNav li a .new_t_l{
	color:#c30e2e;
	font-weight:bold;
	font-size:0.9em;
	margin:0 0.5em 0 0;
}


@media all and (max-width: 880px) {
	ul.utilities li a,
	ul.utilities li{
		width: 100px;
	}
	#Menu {
		width: 100px;
	}
	.fix .fix-inner .utilities {
		right: 100px;
	}
}
@media all and (max-width: 767px) {
	/*----------------------------
		Header
	-----------------------------*/
	#Header.view #Menu{
		position: fixed;
		top: 5px;
		background: #fff;
	}
	#Header {
		width: 100%;
		border:0;
		overflow: hidden;
		min-width: auto;
		position: absolute;
		background: none;
		z-index: 1000;
	}
	#HeaderInner {
		width: 100%;
		height: 56px;
		background: #F0EEEC;
		z-index: 100;
		-webkit-transition:none;
		transition:none;
	}
	#Header #NavInner{
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: -100%;
		-webkit-transition: none;
		transition: none;
	}
	#Header #NavInner .open_menu{
		width: 100%;
		margin: 40px 0 0;
	}
	#Header #Nav {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: -100%;
	}
	#Logo {
		position: absolute;
		top: 0;
		left: 0;
		line-height: 40px;
		width: 60px;
		text-align: center;
		border-right: 1px solid #ddd;
		z-index: 2;
	}
	#Logo img {
		width: 22px;
		height: 22px;
		vertical-align: middle;
	}
	/*----------------------------
		メニュー表示
		-----------------------------*/

	#Header.view #Menu:before{
		transform:translate(0,-1px) rotate(45deg);
	}
	#Header.view{
		height: 100%;
		background: none;
		z-index: 1002;
	}
	#Header.view #HeaderInner{
		height: 100%;
		position: relative;
		background: none;
	}
	#Header.view #Menu:after{
		transform:translate(0,-3px) rotate(-45deg);
	}
	#Header.view #Nav {
		width: 100%;
		height: 100% !important;
		right: 0;
		top: 0;
		background: rgba(0,0,0,0.72);
		z-index: 200;
	}
	#Header.view #NavInner {
		overflow-y: scroll;
		width: 240px;
		height: 100% !important;
		right: 0;
		top: 0;
		background: #fff;
		z-index: 201;
		box-shadow:0px 1px 0px 0px rgba(0,0,0,0.1);
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
	}
	#GlobalNav {
		margin: 0 auto;
	}
	#GlobalNav li{
		display: block;
        position:relative;
	}
	#GlobalNav li a{
		width: 100%;
		display: block;
		line-height: 39.5px;
		font-size: 1.1rem;
		padding: 0 10px;
		position: relative;
		border-bottom: 1px solid #ddd;
	}
	#GlobalNav li:first-child a{
		border-bottom: 1px solid #ddd;
	}

	#GlobalNav li a:hover::after{
		display: none;
	}

	#GlobalNav li a .new_t_r{
        color:#c30e2e;
        font-weight:bold;
        font-size:0.8em;
        margin:0 0 0 1em;
	}

	#GlobalNav li a .new_t_l{
        color:#c30e2e;
        font-weight:bold;
        font-size:0.8em;
        margin:0 1em 0 0;
	}

	#Menu.open_menu{
		height: 50px;
		padding: 20px 0 0;
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
		border-bottom: none;
	}

	#GlobalNav li.Nav_banner img{
		margin: 10px 0;
	}
	/* Nav
	-------------------*/
	.fix{
		position: absolute;
		z-index: 1001;
		top: 42px;
		left: 0;
		width: 100%;
	}
	.fix .fix-inner {
		min-width:  auto;
		margin: 0 auto;
		position: relative;
	}
	.fix .fix-inner .utilities {
		position: absolute;
		top: 0;
		right: 0;
		border-bottom: 1px solid #c4cddc;
	}
	ul.utilities {
		position: absolute;
		top: 42px;
		right: auto;
		left: 0;
		width: calc(100% - 60px);
		display: flex;
		background-color: #fff;
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfe5f0', endColorstr='#e3e7f2',GradientType=1 ); /* IE6-9 */
		z-index: 999;
	}
	ul.utilities li {
		width: 25%;
		height: 60px;
		border: none;
	}
	ul.utilities li a {
		width: 100%;
		text-align: center;
		padding:0 0 0 0;
		color: #A4AEBD;
		font-size: 1.2rem;
	}
	ul.utilities li.active {
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#26282b', endColorstr='#26282b',GradientType=1 ); /* IE6-9 */
    border-bottom: 2px solid #003854;
	}
	ul.utilities li.active a{
    color:#003854;
	}

	/* 03/21 追加修正*/
	ul.utilities li.utilities-rery a::before {width: 25px}
	/*-----------------*/

	#Nav ul.utilities{
		display: block;
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		margin: 50px 0 0 0;
	}
	#Nav ul.utilities li{
		width: 100%;

	}
	#Nav ul.utilities li a {
		background: #dfe5f0;
    background: -moz-linear-gradient(left, #dfe5f0 0%, #e3e7f2 100%);
    background: -webkit-linear-gradient(left, #dfe5f0 0%,#e3e7f2 100%);
    background: linear-gradient(to right, #dfe5f0 0%,#e3e7f2 100%);
		text-align: left;
		width: 100%;
		padding:0 20px;
		line-height: 50px;
		border-bottom: 1px solid #fff;
	}
	/* Menu
	-------------------*/
	#Menu {
		display: block;
		top: 40px;
		right: 0;
		padding: 30px 0 0;
		z-index: 1000;
		width: 60px;
		height: 51px;
		background-color: #fff;
		border-right: none;
		border-left: none;
	}
	.fix #Menu {
		top: 0;
		height: 61px;
	}
	#Menu:before,
	#Menu:after{
		content: "";
		display: block;
		width: 14px;
		height: 2px;
		border-radius: 2px;
		background: #cc0033;
		margin: 0 auto;
	}
	#Menu:before {
		transform:translate(0,-4px) rotate(0);
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
	}
	#Menu:after{
		transform:translate(0,0) rotate(0);
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
	}

	/* 固定
	-------------------*/
	.fix.active{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1001;
	}
	#Header.view #Menu{
		position: fixed;
		top: 2px;
		height: 40px;
		border-bottom: none;
	}
}


/*----------------------------
	Contents
-----------------------------*/
div#Contents{
	background: #F0EEEC;
	padding: 58px 0 0;
	line-height: 2;
	max-width: 980px;
	margin: 0 auto;
}
div#Contents em {
	font-weight: bold;
	font-style: normal;
}
section {
	padding: 0 30px;
}
section .inner {
	max-width: 750px;
	margin: 0 auto;
	padding: 60px 0;
}
h2.balloon {
	display: inline-block;
	background: #32363a;
	padding: 10px 50px;
	border-radius: 40px;
	color: #fff;
	font-weight: bold;
	font-size:1.8rem;
	position: relative;
	z-index: 1;
}
h2.balloon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	bottom: -13px;
	left: 60px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 14px 0;
	border-color: transparent #32363a transparent transparent;
}
h3.balloon {
	display: inline-block;
	background: #32363a;
	padding: 10px 50px;
	border-radius: 40px;
	color: #fff;
	font-weight: bold;
	font-size:1.8rem;
	position: relative;
	z-index: 1;
}
h3.balloon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	bottom: -14px;
	right: 60px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 14px 0;
	border-color: transparent #32363a transparent transparent;
}

@media all and (max-width: 767px) {
	div#Contents {
        padding: 103px 0 0;
    }
	div#Contents.noNav{
		padding-top: 52px;
	}
	section {
		padding: 25px 0;
	}
	section .inner {
		max-width: 750px;
		margin: 0 auto;
		padding: 0;
	}
	h2.balloon {
		text-align: center;
		min-width: 100px;
		padding: 7px 40px;
		border-radius: 40px;
		margin-left: 0;
		font-size:1.2rem;
		position: relative;
		z-index: 1;
		line-height: 1.3;
		box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
	}
	h2.balloon::after {
		content: "";
		display: block;
		position: absolute;
		z-index: 1;
		bottom: -7px;
		left: 100px;

		border-width: 0 10px 7px 0;
	}
	h3.balloon {
		padding: 5px 20px;
		border-radius: 40px;
		font-size: 1rem;
		position: relative;
		z-index: 1;
		line-height: 1.3;
	}
	h3.balloon::after {
		content: "";
		display: block;
		position: absolute;
		z-index: 1;
		bottom: -7px;
		right: 40px;
		border-width: 0 10px 7px 0;
	}
}
/*----------------------------
	MyStatus
-----------------------------*/
#MyStatus {
	width: 100%;
	padding: 6px 30px;
	letter-spacing: 0 !important;
	color: #113955;
	background-color: #fff;
	/*グラデーション*/
}
#MyStatus .MyStatus_inner {
	display: flex;
	align-items: center;
}
#MyStatus .MyStatus_inner_2 {
	display: flex;
	align-items: center;
	margin-bottom: -20px;
}

#MyStatus ._blank {
	font-size: 1.8rem;
	letter-spacing: 0;
	display: inline-block;
	font-weight: bolder;
	color: blue;
	text-decoration: underline;
}
#MyStatus ._blank::after{
  content: '';
  position: absolute;
  background-image: url('../images/icon-outlink.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  right: -1.3em;
  top: 0;
  bottom: 0;
  margin: auto;
}
#MyStatus h2 {
	font-size: 1.8rem;
	letter-spacing: 0;
	display: inline-block;
}
#MyStatus p.pt {
	font-size: 2.4rem;
	text-align: left;
	display: inline-block;
	margin-left: 50px;
}
#MyStatus p.pt_2 {
   	font-size: 2.4rem;
   	text-align: left;
   	letter-spacing: 0px;
   	margin-left: 74px;
   	display: inline-block;
   	font-family: "Abel";
}
#MyStatus p.course{
	padding: 0 10px;
	border-radius: 3px;
	background: #fff;
	font-size: 1.5rem;
	background-color: #5da8f1;
	color: #fff;
	font-weight: bold;
	margin-left: auto;

}

#MyStatus p.course a{
	color:#fff;
    display:block;
	font-size: 1.0rem;
}

#MyStatus p.course a:hover{
	opacity:0.6;
}

#MyStatus p.course.blance {
	color: #05c0c0;
}

@media all and (max-width: 767px) {
	#MyStatus {
		width: 100%;
		padding: 4px 15px !important;
		letter-spacing: 0 !important;
	}
	#MyStatus .MyStatus_inner_2 {
	display: flex;
	align-items: center;
	margin-bottom: 0px;
	}
	#MyStatus ._blank {
	font-size: 1rem;
	letter-spacing: 1px;
	display: inline-block;
	font-weight: bolder;
	color: blue;
	text-decoration: underline;
}
	#MyStatus h2 {
		font-size: 1rem;
		letter-spacing: 1px;
	}
	#MyStatus p.pt {
		font-size: 1rem;
		text-align: left;
		width: 21%;
		font-weight: bold;
		letter-spacing: 1px;
		margin-left: 10px;
	}
	#MyStatus p.pt_2 {
    	font-size: 1rem;
    	text-align: left;
    	width: 35%;
    	font-weight: bold;
    	letter-spacing: 1px;
    	margin-left: 25px;
    	display: inline-block;
    	font-family: "Abel";
	}
	#MyStatus p.course{
		padding: 0 2px;
		font-size: 1rem;
		line-height: 1.5;
	}

}
/*----------------------------
	Pagetop
-----------------------------*/
#Pagetop {
	background:#3D3D3D;
	text-align: center;
}
#Pagetop a {
	display: block;
	padding:15px 0;
}
#Pagetop a img {
	width: 28px;
	height: auto;
	opacity: 0.5;
	vertical-align: middle;
}
@media all and (max-width: 767px) {
	#Pagetop a {
		display: block;
		padding:0;
		line-height: 45px;
	}
	#Pagetop a img {
		width: 20px;
		height: auto;
	}
}
/*----------------------------
	Footer
-----------------------------*/
#Footer {
	padding: 36px 0;
	background: #F0EEEC;
}
#FooterNav {
	text-align: center;
	max-width:980px;
	margin: 0 auto;
}
#FooterNav ul{
	display: block;
}
#FooterNav li {
	display: inline-block;
	margin: 0 0 15px 0;
}
#FooterNav li a {
	display: block;
	padding: 0 10px;
	text-decoration: none !important;
	color: #3D3D3D;
}
#FooterNav li{
	border-right: 1px solid #c7cad1;
}
#FooterNav li:last-child {
	border-right:none;
}
#Footer small {
	font-size: 1rem;
	text-align: center;
	display: block;
	padding: 40px 0 0 0;
}
@media all and (max-width: 767px) {
	#Footer {
		padding: 12px 15px 55px 15px;
	}
	#FooterNav {
		text-align: center;
	}
	#FooterNav ul{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content:space-betwee;
		justify-content:space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#FooterNav li {
		display:block;
		width: 48%;
		margin: 0;
		border-right: none;
		border-bottom: 1px solid #c4cddc;
	}
	#FooterNav li a {
		display: block;
		padding: 15px 0;
		text-align: left;
		color:#3D3D3D;
	}
	#Footer small {
		font-size: 1rem;
		text-align: center;
		display: block;
		padding: 20px 0 0 0;
	}
}


/*----------------------------
	radio button
-----------------------------*/
.input-control {
	cursor: pointer;
	display: inline-block;
	padding-left: 22px;
	position: relative;
	font-family: "Helvetica Neue Regular", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 22px;
	font-weight: 100;
	line-height: 23px;
	color: #aaccff;
}
.input-control input {
	position: absolute;
	width: auto !important;
	z-index: 1;
	opacity: 0;
}
.input-control__indicator {
	border-radius: 80%;
	display: block;
	height: 22px;
	position: absolute;
	top: -15px;
	left: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	  user-select: none;
	width: 22px;
	text-align: center;
	background-color: #d9e3ec;
	background-size: 50% 50%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-box-shadow: inset 1px 1px 1px 0px rgba(0,0,0,0.14);
	-moz-box-shadow: inset 1px 1px 1px 0px rgba(0,0,0,0.14);
	box-shadow: inset 1px 1px 1px 0px rgba(0,0,0,0.14);
}
#theme-pointout001 .input-control.radio input:checked ~ .input-control__indicator,
#theme-pointout001 .input-control.radio input:focus ~ .input-control__indicator,
#theme-pointout001 .input-control.radio input:active ~ .input-control__indicator {
	background: #f67f88;
}
.input-control.radio input:checked ~ .input-control__indicator,
.input-control.radio input:focus ~ .input-control__indicator,
.input-control.radio input:active ~ .input-control__indicator {
	background: #5da8f1;
}

#Mailset .input-control.radio input:checked ~ .input-control__indicator{
	background: #0c3752;
}

#Mailset .input-control.radio input:checked ~ .input-control__indicator,
#Mailset .input-control.radio input:focus ~ .input-control__indicator,
#Mailset .input-control.radio input:active ~ .input-control__indicator {
	background: #0c3752;
}

.input-control.radio input:checked ~ .input-control__indicator:after {
	border-radius: 90%;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scale(0.7);
	  transform: scale(0.7);
	-webkit-transform-origin: center center;
	  transform-origin: center center;
	width: 100%;
	background: #fff;
}
@media all and (max-width: 767px) {
}
/*----------------------------
	checkbox
-----------------------------*/
.checkbox {
	display:inline-block;
  width:1.5em;
  height: 1.5em;
  margin: 0 5px 0 0;
	vertical-align: middle;
}
.checkbox input {
  display: none;
}
.checkbox input:checked + .box {
  	/*グラデーション*/
	background: rgb(20,212,203) !important;
	background: -moz-linear-gradient(left, rgba(20,212,203,1) 0%, rgba(95,168,242,1) 100%) !important;
	background: -webkit-linear-gradient(left, rgba(20,212,203,1) 0%,rgba(95,168,242,1) 100%) !important;
	background: linear-gradient(to right, rgba(20,212,203,1) 0%,rgba(95,168,242,1) 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14d4cb', endColorstr='#5fa8f2',GradientType=1 ) !important;
}

#Policy .checkbox input:checked + .box,
#Contact .checkbox input:checked + .box{
	background: #0c3752 !important;
}

.checkbox input:checked + .box:after {
  top: 0;
}
.checkbox .box {
  width: 100%;
  height: 100%;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
 background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
	border: 1px solid #d2d9e9;
}
.checkbox .box:after {
  width: 50%;
  height: 20%;
  content: '';
  position: absolute;
  border-left: 4px solid;
  border-bottom: 4px solid;
  border-color: #f1f4f9;
  transform: rotate(-45deg) translate3d(0, 0, 0);
  transform-origin: center center;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0;
  right: 0;
  top: 200%;
  bottom: 5%;
  margin: auto;
}
@media all and (max-width: 767px) {
	.checkbox {
		display:inline-block;
	  width:2.4em;
	  height: 2.4em;
	  margin: 0 5px 0 0;
		vertical-align: middle;
	}
	.checkbox .box:after {
	  border-left: 3px solid #fff;
	  border-bottom: 3px solid #fff;
	  top: 200%;
	  bottom: 7%;
	  margin: auto;
	}
}
/*----------------------------
	checkbox
-----------------------------*/
select {
 	-webkit-appearance:button;
	-moz-appearance:button;
	appearance:button;
	cursor: pointer;
	position: relative;
	appearance: none;
	width: auto;
	padding: 0.6em 3em 0.6em 0.6em;
	border: 1px solid #d2d9e9;
	border-radius: 0;
	background: #f1f4f9 url(../images/lower/ico-pulldown.png) no-repeat;
 	background-size: 10px;
	font-size: 1.6rem;
 	background-position: right 6px center;
 	margin: 5px 5px 5px 0;
 	text-transform: uppercase;
 	display: inline-block;
	color: #32363a;
	outline: none;
}::-ms-expand {
     display: none;
}
select:focus,select:hover {
	border: 1px solid #5fa8f2;
}

#Contact select:focus,select:hover {
	border: 1px solid #0c3752;
}

.banner_s{
	position:fixed;
    bottom:0;
    width: 100%;
    text-align: center;
    z-index:999;
}

.banner_s img{
	display: inline-block;
    width:80%;
    margin:0 auto;
}

@media all and (max-width: 767px) {
    .banner_s img{
        width:100%;
    }
}

.step_wrap{
	width:95%;
    margin:1.5em auto 2.5em auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    align-content:stretch;
}

.step_wrap .step_box{
	border-radius: 3px;
    border:solid 2px #d00e31;
    width:48%;
    align-self: stretch;
}

.step_wrap .step_box ul{
	width:80%;
    margin:1em auto;
}

.step_wrap .step_box ul li{
	text-indent:-1em;
    line-height:1.4em;
    text-align:center;
}

.step_wrap .step_box ul li:last-child{
	font-size:0.8em;
}

.step_wrap .step_box ul li p{
    text-align:left;
    width:100%;
    padding:0!important;
    margin:0 0 1.4em 0;
    line-height:1.4em;
    font-size:1em !important;
}

.step_wrap .step_box h3{
	text-align:center;
    background: linear-gradient(transparent 60%, #ccc 0%);
    margin:0.5em auto 0;
    font-size:1.2em;
    display:block;
    width:43%;
}


.step_wrap .step_box ul li img{
	width:100%;
    margin:0 auto 1em;
}


.point_text{
	position:relative;
    width:180px;
    margin:-1em auto 1.4em;
    height:6em;
    font-weight:900;
    color:#d00e31;
}

.two_hundred{
	font-family: 'Bebas Neue', cursive;
    font-size:6em;
    line-height:1.2em;
    letter-spacing: -1px;
}

.point_t{
	position:absolute;
    right:0;
    bottom:1em;
    letter-spacing: -1px;
    font-weight:900!important;

}

.get_t{
	position:absolute;
    right:0;
    bottom:0;
    font-weight:900!important;
}

@media all and (max-width: 767px) {
    .step_wrap .step_box h3{
        font-size:2.2vw;
        display:block;
        width:40%;
    }
    .point_text{
        position:relative;
        width:120px;
        margin:-1em auto 1.4em;
        height:6em;
        font-weight:900;
        color:#d00e31;
    }

    .step_wrap .step_box ul li img{
        width:100%;
        margin:0.5em auto 1.8em;
    }


}

@media all and (max-width: 540px) {
    .step_wrap .step_box h3{
        font-size:2.6vw;
        display:block;
        width:50%;
    }

    .space_n{
        display:none;
    }

}

.intro_wrap{
    margin:20px auto 40px;
}

#intro_wrap ul{
    width:60%;
    margin:0 auto;
    padding-bottom:20px;
}

@media all and (max-width: 540px) {
    #intro_wrap ul{
        width:80%;
    }
}

#intro_wrap ul li{
    text-indent:-1em;
    font-size:0.9em;
    line-height:1.4em;
    margin:0.5em 0;
}

.url_box{
	width:100%;
    background:#fff;
}

.camp_url input[type=text] {
	color: #32363a;
	background: #f1f4f9;
	border: 1px solid #d2d9e9;
	font-size: 1.6rem;
	padding: 0.6em;
	text-align: center;
	outline: 0;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
	-webkit-appearance: none;
	-webkit-user-select: auto;
	width: 60%;
    margin:40px 20% 10px;
    pointer-events : auto;
}

.exp_date{
    text-align:center;
    font-size:1.4em !important;
    padding:0 !important;
    margin:0 !important;

}

@media all and (max-width: 767px) {
    .camp_url input[type=text] {
        width: 80%;
        margin:30px 10% 10px;
        pointer-events : auto;
    }


}

.qr_area{
    text-align:center;
    border-top:solid 1px #ccc;
    padding:20px 0;
}

.qr_area p{
    text-align:center;
    font-size:1.4em !important;
    padding:0 !important;
    margin:0 !important;
}

.qr_area p:nth-of-type(2){
    font-size:1.2em !important;
}

.qr_area img{
    width:300px;
}

@media all and (max-width: 767px) {
        .qr_area img{
            width:200px;
        }
}


.sns_area{
    text-align:center;
    border-bottom:solid 1px #ccc;
    padding:0px 0 30px;
	width:100%;
    background:#fff;
}



.intro_wrap .btn a{
	overflow: visible;
}
.sns_area .btn a{
	position: relative;
	z-index: 2;
	color: #fff;
	letter-spacing:1px;
	font-weight: bold;
	background:#d00e31;
    border:solid 2px #d00e31;
    box-sizing: border-box;
    padding-bottom:60px;
	width: 65%;
	max-width: 288px !important;
    text-transform: none;
    margin-bottom:10px !important;
    text-align:left;
    padding-left:0.6em;
}

.sns_area .btn a::before {
	color: #d00e31;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.sns_area .btn a:hover{
	color: #d00e31;
	background:#fff;
}


.sns_area .btn a:hover::before {
	background:#fff;
	-webkit-transform: scale(1);
	transform: scale(1);
}



@media all and (max-width: 767px) {
        .sns_area .btn a{
            width:180px !important;
            min-width:190px !important;
        }
        .intro_wrap .btn a{
            min-width:200px;
            width:auto;
        }
}

.mail_btn a{
	background:#0c3752 !important;
    border:solid 2px #0c3752 !important;
}

.mail_btn a span{
	font-size:1.4em;
    padding:0 0.8em 0;
}

.mail_btn a::before {
	color: #0c3752 !important;
}

.mail_btn a:hover{
	color: #0c3752 !important;
}

.line_btn a{
	background:#00c300 !important;
    border:solid 2px #00c300 !important;
}

.line_btn a span{
	font-size:1.4em;
    padding:0 0.8em 0;
}

.line_btn a::before {
	color: #00c300 !important;
}

.line_btn a:hover{
	color: #00c300 !important;
}

.twitter_btn a{
	background:#55acee !important;
    border:solid 2px #55acee !important;
}

.twitter_btn a span{
	font-size:1.4em;
    padding:0 0.8em 0;
}

.twitter_btn a::before {
	color: #55acee !important;
}

.twitter_btn a:hover{
	color: #55acee !important;
}

/*twitterボタン追加*/
#MyData .twitter_btn {
  max-width: 400px;
  margin: 0 auto 15px;
  padding: 0 15px;
}
#MyData .twitter_btn a {
  border-radius: 4px;
  display: block;
  color: #FFFFFF;
  font-size: 12px;
  width: 30%;
  font-weight: bold;
  margin-left: auto;
  margin-bottom: 15px;
  padding-right: 6px;
  position: relative;
  text-align: right;
}
#MyData .twitter_btn a::before{
  content: '';
  background-image: url(../images/ico-twitter.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  left: 6px;
}
#MyData .twitter_btn a:hover {
  color: #FFFFFF!important;
}

@media all and (max-width: 767px) {
  #MyData .twitter_btn a {
    font-size: 100%;
    width: 27%;
    min-width: 100px;
  }
  #MyData .twitter_btn a::before{
    top: 3px;
  }
}

.intro_box{
    padding-top:40px;
	width:100%;
    background:#fff;
}


@media all and (max-width: 767px) {
    .intro_box{
        padding-top:20px;
        width:100%;
        background:#fff;
    }
}

.intro_back a{
    color:#32363a !important;

}

.intro_back a:hover{
    color:#fff !important;

}

.red_box{
    border:solid 2px #d00e31;
}

.intro_camp_wrap{
	width:100%;
    margin:1.5em auto 2.5em auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    align-content:stretch;
    font-weight:900;
}

.intro_camp_wrap .step_box{
	border-radius: 3px;
    width:100%;
    align-self: stretch;
}

.intro_camp_wrap .step_box ul{
	width:70%;
    margin:2em auto 1em;
}

.intro_camp_wrap .step_box ul li{
	text-indent:-1em;
    line-height:1.6em;
    text-align:center;
    font-size:1.8em;
}

.intro_camp_wrap .step_box ul li:last-child{
	font-size:1.2em !important;
    margin-top:2em;
    font-weight:100;
}

.intro_camp_wrap .step_box ul li p{
    text-align:left;
    width:100%;
    padding:0!important;
    margin:0 0 1.4em 0;
    line-height:1.4em;
    font-size:1em !important;
}

.intro_camp_wrap .step_box h3{
	text-align:center;
    background: linear-gradient(transparent 60%, #fff000 0%);
    margin:0.5em auto 0;
    font-size:1.9em !important;
    display:block;
    width:38%;
    color:#d00e31;
}


.intro_camp_wrap .ope_point{
	text-align:center;
    width:100%;
    font-size:1.8em !important;
    line-height:1.4em;
    padding:2vw 0!important;
}

.intro_camp_wrap .point_text{
	position:relative;
    width:420px;
    margin:-2vw auto 1.4em;
    height:15em;
    font-weight:900;
    color:#d00e31;
    background: linear-gradient(transparent 85%, #fff000 0%);
}

.intro_camp_wrap .two_hundred{
	font-family: 'Bebas Neue', cursive;
    font-size:15em;
    line-height:1.2em;
    letter-spacing: -1px;
    color:#d00e31;
}

.intro_camp_wrap .point_t{
	position:absolute;
    right:0;
    bottom:1.2em;
    letter-spacing: -2px;
    font-weight:900!important;
    font-size:2.4em;

}

.intro_camp_wrap .get_t{
	position:absolute;
    right:0;
    bottom:0;
    font-weight:900!important;
    font-size:2.4em;
}



@media all and (max-width: 767px) {
    .intro_camp_wrap .step_box h3{
        font-size:3.7vw !important;
        display:block;
        width:40%;
    }

    .intro_camp_wrap .step_box ul li{
        font-size:3.6vw;
    }

.intro_camp_wrap .step_box ul li:last-child{
	font-size:2.2vw !important;
    margin-top:5vw;
}

    .intro_camp_wrap .point_text{
        position:relative;
        width:50vw;
        margin:--1em auto 1.4em;
        height:25vw;
        font-weight:900;
        color:#d00e31;

    }

    .intro_camp_wrap .two_hundred{
        font-size:27vw;
        line-height:33vw;
        letter-spacing: -4px;
        color:#d00e31;
    }

    .intro_camp_wrap .point_t{
        bottom:1.2em;
        font-size:4.2vw;
        bottom:3.6vw;
    }

    .intro_camp_wrap .get_t{
        font-size:4.2vw;
        bottom:-1.5vw;
    }

    .intro_camp_wrap .ope_point{
        font-size:3.2vw !important;

    }


}

@media all and (max-width: 540px) {
    .intro_camp_wrap .step_box h3{
        font-size:4.6vw !important;
        display:block;
        width:50%;
    }

    .intro_camp_wrap .step_box ul li{
        font-size:4.6vw;
    }

    .intro_camp_wrap .ope_point{

    }

}

.camp_b h2{
	background:#32363a;
}

.m_up{
	margin:-60px auto 40px;
}

.m_down{
	margin:40px auto 30px;
}

.camp_b_down{
	margin:40px auto 30px;
}


@media all and (max-width: 767px) {
    .m_up{
        margin:-40px auto 40px;
    }

    .m_down{
        margin:20px auto 30px;
    }

    .camp_b_down{
        margin:40px auto 30px;
    }
}

.entry_comp{
	margin-top:0px;
    text-align:center
}


.entry_comp p{
    padding:0 !important;
    font-size:1.2em !important;
    margin:30px auto 40px;
}

@media all and (max-width: 767px) {

    .entry_comp p{
        padding:0 !important;
        font-size:1.4em !important;
        margin:20px auto 20px;
    }

}

.intro_message{
	margin-top:90px;
    text-align:center
}

.intro_m{
	margin-bottom:40px;
    margin-top:-30px;
}

#Error #Keyvisual img{
	width: 100%;
}

@media all and (max-width: 767px) {
	#Error #Keyvisual{
		margin-top:10px;
	}
}


/* 導線ボタン追加 */
section#Lead {
  padding: 10px 0;
}

#Lead .sp{
  display: block;
}

#Lead .pc{
  display: none;
}

#Lead .leadbtn-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 93.91vw;
  margin: auto;
}

#Lead .leadbtn-box .leadbtn-box--in{
  width: auto;
  display: flex;
}

#Lead .leadbtn-box .leadbtn-box--in a{
  display: block;
}

#Lead .leadbtn-box .leadbtn-box--in img{
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px){
  #Lead .sp{
    display: none;
  }

  #Lead .pc{
    display: block;
  }

  section#Lead {
    margin-top: 27px;
  }

  #Lead .leadbtn-box{
	max-width: 768px;
  }
}

/* メニュー内 導線ボタン追加 */
#GlobalNav.nav_stepup li {
	padding: 2.666vw;
}

#GlobalNav.nav_stepup li a {
    border: none;
	padding: 0;
}

#GlobalNav.nav_stepup li img {
	vertical-align: middle;
	width: 100%;
}

@media screen and (min-width: 768px) {
	#GlobalNav {
		padding: 15px 0;
	}

	#GlobalNav.nav_stepup {
		border-top: solid 2px #C4CDDC;
	}

	#GlobalNav.nav_stepup li {
		padding: 15px 0;
	}

	#GlobalNav.nav_stepup li a {
		max-width: 235px;
	}

	#GlobalNav.nav_stepup li a:hover::after {
		bottom: -10px;
	}
	
}

/* ためたポイントの画像追加 */
.example_point {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 61.33vw;
	margin-top: 4vw;
}

@media screen and (min-width: 768px){
	.example_point {
		max-width: 380px;
		margin-top: 30px;
	}
}

/* 1pt可能 */
section#Start{
	padding: 0;
}
#Start img{
	width: 100%;
	max-width: 100%;
	margin: auto;
}
@media (max-width: 767px){
	section#Start{
		padding: 10px 0;
	}
}

/* ステップアップに挑戦削除対応 */
#Lead .leadbtn-box{
	justify-content: flex-start;
}
#Lead .leadbtn-box .leadbtn-box--in a{
	width: 362px;
}
@media (max-width: 767px){
	#Lead .leadbtn-box .leadbtn-box--in a{
		width: 149px;
	}
}


/* UIUX変更第一弾 */
.fix li.asset_management a {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #FFF4CD;
  box-sizing: inherit;
  padding: 24px 0 0;
}

.fix li.asset_management a::before {
  display: none;
}

.fix li.asset_management a p {
  color: #32363A;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.5;
}

.fix li.asset_management .bubble_new {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 51.7px;
  height: 21.45px;
  padding-bottom: 3px;
  top: 3px;
  left: 3px;
}

.fix li.asset_management .bubble_new .bubble_text {
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  font-size: 8px;
  text-align: center;
}

.fix li.asset_management img {
  box-sizing: content-box;
  width: 35px;
  padding-left: 10.46px;
  margin: 0 auto;
}

/* bubble */
.bubble_new {
  background-image: url(../images/bubble_new.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

/* header */
ul.utilities {
  overflow: visible !important;
}

@media (min-width: 768px) {
  /* header */
  .fix li.asset_management a {
    font-size: 13px;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 12px 0 6px;
  }

  .fix li.asset_management a p {
    font-size: 13px;
    line-height: 1.5;
  }

  .fix li.asset_management .bubble_new {
    position: absolute;
	width: 65.8px;
	height: 27.188px;
	padding-bottom: 2px;
	top: 10px;
    left: 8px;
  }

  .fix li.asset_management .bubble_new .bubble_text {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
  }

  .fix li.asset_management img {
    width: 40px;
    padding-left: 10.46px;
    margin: 0 auto 5px;
  }

}
