@charset "UTF-8";
/** ===========================================================
 * $
 * 共通定義
 * ========================================================= */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.35rem;
  line-height: 1.5;
  color: #555;
  font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS P Gothic','Osaka';
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
img{
  vertical-align: bottom;
}
input, textarea, select{
  font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS P Gothic','Osaka';
}
/** ===========================================================
 * $
 * 共通
 * ========================================================= */
.contents{
  max-width: 860px;
  margin: 0 auto;
}
/*--------------------
ボタン
--------------------*/
.btn,
button.btn {
  font-weight: normal;
  line-height: 1;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}
.primary_btn-wh{
  border:2px solid #5e6bb2;
  border-radius: 100vh;
  padding:15px 60px;
  color :#5e6bb2;
  font-weight: bold;
  background: #fff;
}
.primary_btn-wh:hover{
  opacity: .7;
}
.primary_btn-wh:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-left: 6px solid #5e6bb2;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.back.primary_btn-wh::after{
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 10px;
  transform: translateY(-50%);
  border-right: 6px solid #5e6bb2;
  border-left: 6px solid transparent;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.primary_btn-bl{
  border:2px solid #5e6bb2;
  background: #5e6bb2;
  color: #fff;
  border-radius: 100vh;
  padding:15px 60px;
}
.primary_btn-bl:hover{
  background:#fff;
  color: #5e6bb2;
}
.primary_btn-bl:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-left: 6px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.primary_btn-bl:hover:after{
  border-left: 6px solid #5e6bb2;
}
.back.primary_btn-bl::after{
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 10px;
  transform: translateY(-50%);
  border-right: 6px solid #fff;
  border-left: 6px solid transparent;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.back.primary_btn-bl:hover:after{
  border-right: 6px solid #5e6bb2;
  border-left: 6px solid transparent;
}
.pdf_btn{
  border:2px solid #d57478;
  border-radius: 100vh;
  padding: 15px 20px;
  color :#d57478;
  font-weight: bold;
  padding-left: 40px;
  background: #fff;
}
.pdf_btn:hover{
  color :#fff;
  background: #d57478;
}
.pdf_btn:before{
  position: absolute;
  content: "";
  top: 6px;
  left:6px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(/assets/images/icon_pdf.png);
  background-size: contain;
  background-repeat: no-repeat;
}


.back_btn,.disable_btn{
  border:2px solid #aaa;
  border-radius: 100vh;
  padding: 15px 20px;
  color :#fff;
  padding-left: 40px;
  background: #aaa;
}
.disable_btn{
  padding-left: 20px;
}
.back_btn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 10px;
  transform: translateY(-50%);
  border-right: 6px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.back_btn:hover{
  opacity: .7;
}
.primary_heading{
  font-weight: bold;
  font-size: 2.5rem;
  color: #409ede;
  padding: 0 10px;
  border-bottom: 3px solid #409ede;
  margin-bottom: 20px;
}
.secondary_heading{
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
}
.progressbar {
  margin: 0 0 30px;
  padding: 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
  display: flex;
}
.progressbar li {
  list-style-type: none;
  width: 25%;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #aaa;
}
.progressbar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #eee;
}
.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #eee;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: #e05283;
}
.progressbar li.done {
  color: #f1afc7;
}
.progressbar li.active:before {
  background-color: #e05283;
  color:#fff;
}
.progressbar li.done:before {
  background-color: #f1afc7;
  color:#fff;
}
.progressbar li.active + li:after,
.progressbar li.done + li:after {
  background-color: #e05283;
}
@media screen and (max-width: 480px) {
  .primary_heading{
    font-size: 2rem;
  }
  .secondary_heading{
    font-size: 1.5rem;
  }
  .progressbar{
    margin: 20px 0;
  }
  .progressbar li{
    font-size: 1.1rem;
  }
}
.check_block input[type="checkbox"]{
  display: none;
}
/* チェックボックスの代わりを成すラベル */
.check_block input[type="checkbox"]+label{
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}
/* ラベルの左に表示させる正方形のボックス□ */
.check_block input[type="checkbox"]+label::before{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color:  #585753; /* 枠の色変更 お好きな色を */
  background-color: #FFF; /* 背景の色変更 お好きな色を */
}
/* チェックが入った時のレ点 */
.check_block input[type="checkbox"]:checked+label::after{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -9px;
  top: 50%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color:  #585753; /* チェックの色変更 お好きな色を */
}
.def_tbl {
  width: 100%;
}
.def_tbl th, .def_tbl td {
  padding: 15px;
  border: 1px solid #DDDDDD;
  vertical-align: middle;
}
.def_tbl th {
  background: #F7F8F8;
  width: 240px;
  text-align: left;
}
.def_tbl td input[type="text"]{
  padding: 5px;
  border: 1px solid #aaa;
}
.def_tbl td p{
  margin-top: 5px;
}
th .require {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}
th .require::after {
  content: "必須";
  min-width: 26px;
  margin: 3px 0 0 5px;
  color: #fff;
  font-weight: 400;
  font-size: 1.25rem;
  background: #f84361;
  padding: 3px;
  line-height: 1;
  display: inline-block;
}
.require_icon{
  color: #fff;
  font-weight: 400;
  font-size: 1.25rem;
  padding: 3px;
  background: #f84361;
}
.select_area {
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #ffffff;
}
.select_area::before {
  position: absolute;
  top: 16px;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.select_area select {
  width: 100%;
  height: 40px;
  padding-right: 1em;
  padding-left: 0.5em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  color: #666666;
}
.select_area select::-ms-expand {
  display: none;
}
@media screen and (max-width: 480px) {

  .def_tbl th, .def_tbl td{
    display: block;
  }
  .def_tbl th{
    width: 100%;
  }
  .def_tbl td input[type="text"]{
    width: 100%;
    padding: 5px;
  }
}

/** ===========================================================
 * $Error
 * エラーメッセージ
 * ========================================================= */
.error_area,
.error-list {
  background: #fff;
  border: 2px solid #e60012;
  border-radius: 5px;
  margin: 10px 0 0;
  padding: 7px 30px;
  color: #e60012;
  font-size: 14px;
  line-height: 1.25;
}
.error-list li {
  margin-bottom: 3px;
  list-style-type: disc;
  text-align: left;
}
.error-list li:last-child {
  margin-bottom: 0;
}
/* 一文だけの場合 */
.error.alert-danger{
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  position: absolute;
  top: -4px;
  right: 0;
}
.alert-error{
  padding: 0 0 0 100px;
  color: #a94442;
}
.alert-error + label + input{
  background: #f2dede;
}
.alert {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 90%;
  margin: 0 auto 20px;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.error-list {
  padding-left: 30px;
  font-size: 14px;
}

/** ===========================================================
 * パネル
 * ========================================================= */
.panel {
  margin: 0 auto 20px auto;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
  background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
  background-repeat: repeat-x;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-body {
  padding: 15px;
}

/** ===========================================================
 * $HEADER
 * ヘッダー
 * ========================================================= */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid #e60000;
  padding: 10px;
}
.logoWrap img{
  max-width: 200px;
}
.loginWrap{
  text-align: center;
}
.loginWrap p{
  margin-bottom:10px;
}
.user span{
  position: relative;
  padding-left: 15px;
  font-size: 1.3rem;
}
.user span:before{
  position: absolute;
  content: "";
  top: 2px;
  left:0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 12px;
  height: 17px;
  background-image: url(/assets/images/icon_man.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.loginWrap .logoutBtn{
  border-radius:100vh;
  text-decoration: none;
  font-size: 1.25rem;
  background: #6b6b6b;
  color :#fff;
  padding: 5px 30px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .loginWrap .logoutBtn{
    padding: 5px 20px;
  }
}

/** ===========================================================
 * $nav
 * ナビ
 * ========================================================= */
nav{
  margin: 0 0 30px;
}
nav ul {
  display: flex;
}
nav ul li {
  width: 33.333%;
  text-align: center;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav ul .info {
  border-left: none;
}
nav ul li a{
  text-decoration: none;
  padding: 20px 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #4d5baa;
}
nav ul .active a{
  text-decoration: none;
  padding: 20px 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #d1d6eb;
}
nav ul .info a,nav ul .info.active a{
  border-left: none;
  border-radius: 0 0 0 10px;
}
nav ul .conf a,nav ul .conf.active a{
  border-radius: 0 0 10px 0;
}
nav ul li a:hover{
  opacity: .7;
}
nav ul li img{
  width: 50px;
  margin: 0 auto;
}
nav ul li a p,
nav ul .active a p{
  font-size: 1.75rem;
  font-weight:bold;
  color: #fff;
  margin-top: 10px;
}
nav ul .active a p{
  color: #555;
}
@media screen and (max-width: 640px) {
  nav ul .info a,nav ul .info.active a{
    border-left: none;
    border-radius: 0 0 0 0;
  }
  nav ul .conf a,nav ul .conf.active a{
    border-radius: 0 0 0 0;
  }
  nav ul li a p,
  nav ul .active a p{
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 420px) {
  nav{
    margin: 0;
  }
  nav ul {
    display: block;
  }
  nav ul li {
    width: 100%;
    text-align: center;
    border-left: none;
    border-bottom: 1px solid #fff;
    display: block;
  }
  nav ul li a{
    padding: 10px 5px;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  nav ul .active a{
    padding: 10px 5px;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  nav ul li img{
    margin: 0 10px;
    width: 20px;
  }
  nav ul li a p,
  nav ul .active a p{
    margin-top: 0;
  }
}
/** ===========================================================
 * $footer
 * フッター
 * ========================================================= */
footer{
  margin-top:60px;
}
.index footer{
  margin-top: 0;/*TOPページのみフッター上の余白無し*/
}
footer .copyright{
  background:#4d5baa;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}
.contact_block{
  background: #64a9dc;
  padding: 20px 10px;
  color: #fff;
}
.contact_block h3{
  font-weight:bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact_block .tel{
  background:#fff;
  padding: 5px 20px;
  border-radius: 20px;
  margin: 10px auto;
  text-align: center;
}
.contact_block a{
  text-decoration: none;
  font-size: 5rem;
  color :#e05383;
  font-weight:bold;
}
.contact_block .tel p{
  color :#000;
}
.company_block{
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.company_block div{
  width: 50%;
}
.company_block div img{
  max-width: 100%;
}
.company_block div.fp{
  padding-left: 20px;
  border-left: 1px dotted #4d5baa;
}

@media screen and (max-width: 480px) {
  footer{
    margin-top:30px;
  }
  .index footer{
    margin-top: 0;/*TOPページのみフッター上の余白無し*/
  }
  .contact_block a{
    font-size:4rem;
  }
  .company_block{
    display: block;
  }
  .company_block div{
    width: 100%;
  }
  .company_block div.fp{
    margin-top: 10px;
    padding-top: 10px;
    padding-left: 0;
    border-left: none;
    border-top: 1px dotted #4d5baa;
  }
}
/** ===========================================================
 * $login
 * ログインページ
 * ========================================================= */
.login_txt{
	text-align: center;
	padding: 30px 10px;
}
.login_txt p{
	font-size: 14px;
}
.login_txt .ttl{
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 18px;
}
.login_block table{
  width: 400px;
  margin: 40px auto 20px;
}
.login_block table th{
  text-align: left;
  font-weight: bold;
  display:block;
  color: #333;
}
.login_block table td{
  padding: 5px 0 20px;
  display:block;
}
.login_block table td input{
  padding: 5px;
  width: 100%;
  border: 2px solid #dadadb;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .login_block table{
    width: 90%;
  }
}
/** ===========================================================
 * $change_pw
 * パスワードの変更
 * ========================================================= */
.pw_block .primary_heading{
  margin-top: 60px;
}
.pw_block table{
  width: 400px;
  margin: 40px auto 20px;
}
.pw_block table th{
  text-align: left;
  font-weight: bold;
  display:block;
  color: #333;
}
.pw_block table td{
  padding: 5px 0 20px;
  display:block;
}
.pw_block table td input{
  padding: 5px;
  width: 100%;
  border: 2px solid #dadadb;
  border-radius: 4px;
}
.pw_block .mail_img{
  margin-top: 40px;
  text-align: center;
}
.pw_block .birthday_area{
	display: flex;
	align-items: center;
}
.pw_block .birthday_area input{
	text-align: center;
}
.pw_block .birthday_area span{
	margin: 0 20px 0 3px;
}
@media screen and (max-width: 480px) {
  .pw_block p{
    padding: 0 10px;
  }
  .pw_block table{
    width: 90%;
  }
  .pw_block .mail_img img{
    width: 100px;
  }
}
/** ===========================================================
 * $index
 * TOPページ
 * ========================================================= */
.welcame_txt{
  margin-bottom: 10px;
}
.service_detail h2{
  background: #409ede;
  padding: 20px 30px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}
.intro_block{
  border-top: 5px solid #1f5cae;
  margin-top: 5px;
  position: relative;
}
.intro_block div{
  padding:10px 100px 10px 10px;
}
.intro_block .illust{
  position: absolute;
  top: -50px;
  right:0;
}
.intro_block .illust img{
  width: 90px;
}
.intro_block div p{
  margin-bottom: 10px;
}
.intro_block div p span{
  color:#e05283;
  font-weight:bold;
}
.intro_block .indent-1{
  text-indent: -3em;
  padding-left: 3em;
}
.intro_block .indent-2{
  text-indent: -4em;
  padding-left: 4em;
}
.intro_block::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -15px;
  border: 14px solid transparent;
  border-top: 14px solid #e05283;
  z-index: 2;
}
.disc_block{
  background:#fefcda;
  padding: 20px;
}
.disc_item{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.disc_item div{
  width:calc(100% - 200px);
}
.disc_item h3{
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}
.disc_item .illust{
  width: 180px;
}
.disc_item .illust img{
  width: 100%;
}
@media screen and (max-width: 480px) {
  .welcame_txt{
    padding:10px;
    margin-bottom: 0;
  }
  .intro_block div{
    padding-right: 10px;
  }
  .intro_block div .intro_top{
    padding-right: 100px;
  }
  .intro_block .illust img{
    width: 80px;
  }
  .disc_block{
    padding: 19px;
  }
  .disc_item{
    display: block;
  }
  .disc_item div{
    width:100%;
    margin-bottom: 10px;
  }
  .disc_item .illust{
    text-align: center;
  width: 100%;
  }
  .disc_item .illust img{
    margin: 0 auto;
    width: 180px;
  }
}
.notOptionblock{
  margin-top: 40px;
}
.notOptionblock .heading{
  background: #409ede;
  padding: 10px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
.notOptionblock .heading h3{
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.notOptionblock .body{
  border: 3px solid #409ede;
  text-align: center;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}
.notOptionblock .body img{
  width: 80%;
}
.notOptionblock .body .note{
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .notOptionblock{
    margin: 10px;
  }
  .notOptionblock .heading{
    padding: 20px 10px;
  }
  .notOptionblock .heading h3{
    font-size: 1.5rem;
  }
  .notOptionblock .heading p{
    font-size: 1rem;
    margin-top: 5px;
  }
  .notOptionblock .body{
    padding: 10px;
  }
  .notOptionblock .body img{
    width: 100%;
  }
  .notOptionblock .body .note{
    text-align: left;
  }
}
.plan_select_block{
  margin-top: 40px;
}
.plan_select_block h2{
  font-weight:bold;
  font-size: 2rem;
  color: #409ede;
  padding: 0 10px;
  border-bottom: 3px solid #409ede;
}
.plan_select_block .note{
  margin: 10px 0;
  text-align: right;
}
.plan_select_block ul{
  display: flex;
  justify-content: space-between;
}
.plan_select_block ul li{
  width: 31%;
}
.plan_select_block ul li a{
  text-decoration: none;
  font-size: 4rem;
  color :#fff;
  background: #9e9e9e;
  width: 100%;
  display: block;
  padding: 5px 20px;
  border-radius: 20px 20px 0 0;
  font-weight: bold;
}
.plan_select_block ul li a span{
  font-size: 2rem;
}
.plan_select_block ul li.active a{
  background: #409ede;
}
.plan_select_block .select_box{
  border: 3px solid #409ede;
  text-align: center;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  display: none;
}
.plan_select_block .select_box.active{
  display: block;
}
.plan_select_block .select_box img{
  width: 80%;
}
.plan_select_block .select_box .txt{
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .plan_select_block {
    margin: 20px 10px;
  }
  .plan_select_block h2{
    font-size: 1.75rem;
    text-align: center;
  }
  .plan_select_block .note{
    font-size: 1rem;
    text-align: left;
    margin-bottom: 10px;
  }
  .plan_select_block ul li{
    width: 32%;
  }
  .plan_select_block ul li a{
    font-size: 2rem;
    padding: 5px 10px;
    text-align: center;
  }
  .plan_select_block ul li a span{
    font-size: 1.25rem;
  }
  .plan_select_block .select_box{
    padding: 10px;
  }
  .plan_select_block .select_box img{
    width: 100%;
  }
}
.features_block{
  background: #fefcda;
  margin-top:40px;
  padding: 30px 0;
}
.features_block h2{
  color: #e05383;
  font-size: 2.5rem;
  font-weight:bold;
  text-align: center;
  border-bottom: 5px dotted #e05383;
  margin-bottom: 30px;
}
.features_block h2 br{
  display: none;
}
.features_block dl{
  padding: 0 10px;
}
.features_block dt{
  color: #e05383;
  font-size: 1.5rem;
  font-weight:bold;
  margin-bottom: 5px;
}
.features_block dd{
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.features_block dd p{
  text-indent: -4em;
  padding-left: 4em;
  font-size: 1.1rem;
}
.features_block .note{
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.1rem;
}
sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}
@media screen and (max-width: 480px) {
  .features_block{
    padding: 20px 10px;
  }
  .features_block h2{
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .features_block h2 br{
    display:block;
  }
}


/** ===========================================================
 * $info
 * お知らせ
 * ========================================================= */

.info_block{
  padding: 10px;
}
.info_block .kikan{
  background: #d90000;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom:10px;
}
.info_block .red_txt{
  font-size: 1.5rem;
  color: #d90000;
}
.info_block p{
  margin-bottom:10px;
}
.info_block .kikan p{
  margin-bottom: 0;
}
.topback_btn{
  text-align: center;
  margin: 50px auto 0;
}
.info_block strong{
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .info_block{
    padding: 10px 0 0;
  }
  .info_block .contents{
    padding: 0 10px;
  }
}

/* =========================================================
 * CKEditor
 * ====================================================== */
.text-tiny{font-size: 0.7em;}
.text-small{font-size: 0.85em;}
.text-big{font-size: 1.4em;}
.text-huge{font-size: 1.8em;}

.info_block hr{
   margin-top: 20px;
   margin-bottom: 20px;
   border: 0;
   border-top: 2px solid #ddd;
}


/** ===========================================================
 * $apply
 * 新規・変更のお申込み
 * ========================================================= */
.pdf_block{
  text-align: center;
  margin:0 10px 20px;
  border: 1px solid #ddd;
  padding: 20px 10px;
  border-radius: 10px;
}
.pdf_block p{
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.apply_conts_block{
  background:#eee;
  padding: 20px 10px;
  border-radius: 10px;
  text-align: center;
  margin:0 10px;
}
.apply_conts_block .title{
  font-size:1.8rem;
}
.apply_conts_block p{
  font-weight: bold;
  margin-bottom: 20px;
}
.apply_conts_block .heading span{
  color: #409ede;
  display: inline-block;
  border-bottom: 2px solid #409ede;
  padding-bottom: 0;
  margin: 20px 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
.apply_conts_block a{
  font-size: 2rem;
}
@media screen and (max-width: 480px) {
  .apply_conts_block a{
    font-size: 1.5rem;
  }
}
.atten_block{
  background:#ddd;
  font-size: 1.25rem;
  padding: 10px;
  margin-bottom: 10px;
}
.important_txt{
  padding: 0 10px;
}
.important_disc{
  border: 1px solid #ddd;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px auto;
}
.important_disc dt{
  width: 20%;
  background: #cd5c5c;
  padding: 5px;
  color :#fff;
  text-align: center;
}
.important_disc dd{
  width: 80%;
  padding-left: 10px;
}
.important_disc dt:first-of-type,
.important_disc dd:first-of-type{
  margin-bottom: 10px;
}
.important_check{
  text-align: center;
  margin: 50px auto;
}
.important_check p{
  color :#d90000;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.important_check .pdf_btn{
  font-size: 1.75rem;
  padding: 15px 80px;
}
.important_check .pdf_btn:before{
  width: 36px;
  height: 36px;
}
.important_check .check_block{
  border: 2px solid #ddd;
  padding: 10px;
  margin: 30px auto 0;
  font-size: 2rem;
}
.apply_btn_wrap{
  display: flex;
  justify-content: center;
}
.apply_btn_wrap a{
  margin: 0 20px;
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  .atten_block{
    margin: 0 10px 10px;
  }
  .important_disc{
    display: block;
    margin: 20px 10px;
  }
  .important_disc dt{
    width: 100%;
    margin-bottom: 10px;
  }
  .important_disc dd{
    width: 100%;
    padding: 0 10px;
  }
  .important_check {
    margin: 30px auto;
    padding: 0 10px;
  }
  .important_check p {
    font-size: 1.5rem;
    text-align: left;
  }
  .important_check .check_block{
    font-size: 1.5rem;
  }
  .apply_btn_wrap{
    padding: 0 10px;
  }
}
/** ===========================================================
 * $plan
 * プラン選択
 * ========================================================= */
.plan_wrap .note{
  margin-top: 10px;
}
.plan_wrap .note li{
  text-indent: -1em;
  padding-left: 1em;
}
.plan_wrap .select_area {
  width: 70%;
}
@media screen and (max-width: 480px) {
  .plan_wrap{
    padding: 0 10px;
  }
  .plan_wrap .select_area {
    width: 100%;
  }
}
/** ===========================================================
 * $kokuchi
 * 告知
 * ========================================================= */
.kokuchi_block .atten_txt{
  color: #d90000;
  font-size: 2rem;
  font-weight: bold;
}
.kokuchi_list{
  margin: 10px auto;
}
.kokuchi_list li{
  margin-bottom: 5px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.2;
}
.kokuchi_list_wrap .question{
  font-size: 1.6rem;
}
.kokuchi_list li:before{
  content:"・";
}
.kokuchi_list_wrap{
  margin: 20px auto 40px;
}
.kokuchi_list_wrap h2{
  background :#409ede;
  padding: 10px;
  font-size: 2rem;
  color :#fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.kokuchi_list_wrap .check_block{
  border: 2px solid #ddd;
  padding: 10px;
  margin: 10px auto 0;
  font-weight: bold;
  font-size: 1.8rem;
}
.kokuchi_list_wrap .check_block label{
  margin-right: 20px;
}
.kokuchi_list_wrap .check_block label input{
  margin-right: 5px;
  vertical-align:middle;
}

.kokuchi_list_wrap .atten{
  font-weight: bold;
  color:#d90000;
  text-decoration: underline;
}
.kokuchi_list li ol{
  margin-top: 10px;
}
.kokuchi_list li ol li:before{
  content:"";
}
.kokuchi_list_wrap .indent{
  text-indent: -2em;
  padding-left: 2em;
}
.kokuchi_list_wrap .note{
  font-size: 1.2rem;
  color: #555;
}
.kokuchi_list_wrap .cancer-table th, .kokuchi_list_wrap .cancer-table td{
  border: 1px solid #529fe0;
  padding: 5px;
}
.kokuchi_list_wrap .cancer-table th{
  background: #d4f0fc;
  text-align: center;
}
.kokuchi_list_wrap .cancer-table caption{
  margin-top: 15px;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
}

#deny_popup{
  padding: 20px;
  color: #d85183;
  font-weight:normal;
  font-size: 2rem;
}

@media screen and (max-width: 480px) {
  .kokuchi_block .atten_txt{
    padding: 0 10px;
    font-size: 1.5rem;
  }
  .kokuchi_list,
  .kokuchi_block .note{
    padding: 0 10px;
  }
  .kokuchi_list_wrap h2{
    border-radius: 0;
  }
  .kokuchi_list_wrap .check_block{
    margin: 10px 10px 0;
  }
  .kokuchi_list_wrap .indent{
    margin: 0 10px;
  }
  .kokuchi_list_wrap .question{
    padding: 0 10px;
  }
  #deny_popup{
    max-width: 80vw;
  }
}
.kokuchi_wrap .kokuchi_yn_block{
  border: 2px solid #ddd;
  padding: 10px;
  margin: 10px auto 0;
  font-weight: bold;
}
ol.kokuchi_list li{
  margin-bottom: 5px;
  text-indent: -2em;
  padding-left: 2em;
}

ol.kokuchi_list li:before{
  content:"";
}
@media screen and (max-width: 480px) {
  .kokuchi_wrap{
    padding: 0 10px;
  }
}

/** ===========================================================
 * $conf
 * 申込み内容確認
 * ========================================================= */
.caution_block{
  border:3px solid #e05283;
  padding: 10px;
}
.caution_block .ttl{
  font-weight:bold;
  font-size: 1.5rem;
}
.conf_wrap{
  margin: 0 auto 40px;
}
@media screen and (max-width: 480px) {
  .conf_wrap{
    padding: 0 10px;
  }
  .conf_block .apply_btn_wrap{
    flex-direction: column-reverse;
  }
  .conf_block .apply_btn_wrap .back_btn{
    margin: 20px auto 0;
    width: 100%;
  }
}
/** ===========================================================
 * $apply_completion
 * 申込み手続完了
 * ========================================================= */
.completion_block .mail_img{
  margin-top: 40px;
  text-align: center;
}
.completion_block .mail_img img{
  width: 120px;
}
@media screen and (max-width: 480px) {
  .completion_block p{
    padding: 0 10px;
  }
  .completion_block .mail_img img{
    width: 100px;
  }
}

/** ===========================================================
 * $apply_check_detail
 * 申込み内容詳細
 * ========================================================= */
.detail_wrap .atten_txt{
  color: #d90000;
  font-size: 2rem;
  font-weight: bold;
}
.detail_wrap .no_apply{
  font-size: 20px;
  font-weight: bold;
  margin:50px 0 50px 10px;
}
@media screen and (max-width: 480px) {
  .detail_wrap{
    padding: 0 10px;
  }
  .detail_block{
    padding-top: 10px;
  }
  .detail_block .apply_btn_wrap{
    flex-direction: column-reverse;
  }
  .detail_block .apply_btn_wrap .back_btn{
    margin: 20px auto 0;
    width: 150px;
  }
  .detail_block .apply_btn_wrap button{
    margin-bottom: 10px;
  }
}