﻿@charset "UTF-8";

/*==================================================

1.base

====================================================*/

:root {
  --black: #3E4658;
  --darkGray: #606A80;
  --white: #fff;
  --borderColorLight: #e7eaee;
  --borderColorDark: #CBD4DB;
  --textLink: #2F8AE9;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height:1;
  background-color: #F2F5F7;
  color: #3E4658;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .07em;
  min-width: 1120px;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display:block;
}

ul,ol{
	list-style-type: none;
}

a{
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  text-decoration: none;
	cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
	}

a img{
	border: none;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

input, select {
	vertical-align: middle;
	font-family: Arial;
}

input[type="date"]{
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: .04em;
}

input[type="radio"]{
  margin: 0;
  padding: 0;
}

input::placeholder {
  color: #B2B5BC;
}

button{
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

::-webkit-scrollbar{
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track{
  background: #fff;
  border: 1px solid #dbdee6; 
}
::-webkit-scrollbar-thumb{
  background: #bac1cf;
  box-shadow: none;
}


/*==================================================

2.layout

====================================================*/

.ly_header {
  height: 70px;
  background-color:#fff;
  padding: 0 32px 0 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 2px rgba(11,30,88,.08);
  position: sticky;            
  top: 0;                                  
  width: 100%; 
  z-index: 1;
}

.ly_cont {
  flex: 1;
}

.ly_footer {
  font-size: 10px;
  text-align: center;
  padding: 20px 0;
  margin-top: 44px;
  letter-spacing: .03em;
  border-top: 1px solid #E3E7EC;
  background-color: #fff;
}

/*==================================================

3.element

====================================================*/

.el_box_bg{
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(29,43,100,.06);
}

/*-- text style --*/

.el_ttl01,
.el_ttl02,
.el_ttl03{
  line-height: 1.3;
}

.el_ttl01{
  font-size: 22px;
}

.el_ttl02{
  font-size: 20px;
}

.el_ttl03{
  font-size: 18px;
}

.el_bodyText{
  font-size: 14px;
  line-height: 1.7;
}

/*-- button style --*/
.el_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background-color: transparent;
  border-radius: 4px;
  transition: opacity .3s;
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
}

.el_btn:hover{
  text-decoration: none;
}

.el_btn_consult{
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, #FF9F21, #FFC400);
  box-shadow: 0 3px 18px rgba(199, 148, 54, .4);
  border-radius: 30px;
  padding: 16px 22px;
  user-select: none;
  position: fixed;
  bottom: 30px;
  right: 54px;
  transition: opacity .3s;
  z-index: 2;
}

.el_btn_consult img{
  display: inline-block;
  vertical-align: -7px;
  margin-right: 6px;
}

.el_btn_consult:hover{
  opacity: .85;
}
.el_btn_consult:focus{
  opacity: 1;
  box-shadow: none;
}

.el_btn_primary{
  color: #fff;
  background: linear-gradient(to right, #3361E8, #2BBBEA);
}

.el_btn_primary:hover{
  opacity: .85;
}

.el_btn_primary:focus{
  box-shadow: 0 0 0 2px rgba(47,138,233,.5);
}

.el_btn_primary:disabled {
	color: #A3A6AD;
	background: #DFE0E6;
	pointer-events: none;
	box-shadow: none;
}

.el_btn_primary_regist {
	margin-top: 14px;
	background: #fff;
	color: #2F8AE9;
	box-shadow: 0 0 0 1px #2F8AE9;
}

.el_btn_primary_regist:hover{
	opacity: .85;
}

	.el_btn_primary_regist:focus {
		box-shadow: 0 0 0 2px #2F8AE9;
		background-color: #e8f2fc;
	}

.el_btn_primary_regist.disabled {
	color: #A3A6AD;
	background: #DFE0E6;
	pointer-events: none;
	box-shadow: none;
}

.el_btn_secondary{
  color: #2F8AE9;
  background: #fff;
  border: 1px solid #2F8AE9;
  transition: background .3s;
}

.el_btn_secondary:hover{
  background: #EFF7FF;
}

.el_btn_secondary:focus{
  box-shadow: 0 0 0 2px rgba(47,138,233,.2);
}

.el_btn_secondary:disabled {
	color: #BEC0C4;
	border-color: #DFE0E6;
	background: #FDFDFD;
	pointer-events: none;
	box-shadow: none;
}

#bl_questionnaire_btn_advisor_close:disabled {
	color: #BEC0C4;
	border-color: #DFE0E6;
	background: #FDFDFD;
	pointer-events: none;
	box-shadow: none;
}

.el_textLink {
	color: #2F8AE9;
	display: inline-block;
}

.el_textLink:hover{
  text-decoration: underline;
}

.el_textLink:focus{
  text-decoration: underline;
}

.el_btn_lg{
  padding: 14px 16px;
  font-size: 14px;
  font-weight: bold;
}

.el_btn_sm{
  padding: 8px;
  font-size: 14px;
}

/*-- label style --*/
.el_label{
  display: inline-block;
  color: #7E85A5;
  border: 1px solid #7E85A5;
  font-size: 11px;
  padding: 3px 4px;
  letter-spacing: .1em;
  user-select: none;
/*  transition: background .3s;*/
}

	.el_label:hover {
		cursor: default;
		/*background: #7E85A5;*/
		/*color: #fff;*/
	}

.el_link {
	text-decoration: underline;
}
.el_link:hover {
	text-decoration: none;
}

/*-- form style --*/
.el_form_group{
  margin-bottom: 16px;
}

.el_formLabel{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  display: inline-block;
}

.el_textbox,
.el_textarea{
  padding: 11px 12px;
  border: 1px solid #CBD4DB;
  font-size: 14px;
  letter-spacing: .07em;
  background-color: #fff;
  border-radius: 4px;
  color: #3E4658;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 8px;
}

.el_textbox:focus,
.el_textarea:focus{
  border: 1px solid #2F8AE9;
}

.el_textbox_error,
.el_textarea_error{
  border: 1px solid #FF8989;
  background-color: #FFF4F4;
}

.el_textbox_error:focus,
.el_textarea_error:focus{
  border: 1px solid #FF8989;
}

/*-- error style --*/
.el_errorText{
  color: #F24040;
  font-size: 12px;
  font-weight: bolder;
}

/*-- selectbox style --*/
.el_select {
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.el_select::before {
  content: '';
	position: absolute;
	top: 17px;
	right: 12px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #8E96A7;
	pointer-events: none;
}

.el_select select {
  -webkit-appearance: none;
  appearance: none;
  padding: 0 30px 0 12px;
	color: var(--black);
  width: 100%;
  height: 40px;
  font-size: 14px;
	cursor: pointer;
	text-overflow: ellipsis;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
  appearance: none;
  border: 1px solid var(--borderColorDark);
	border-radius: 4px;
	background: var(--white);
}

.el_select select:focus {
  border-color: var(--textLink);
}

.el_select select::-ms-expand {
    display: none;
}

.el_select_error select {
  border-color: #FF8989;
  background:#FFF4F4;
}

.el_select_error select:focus{
  border-color: #FF8989;
}

.el_select_error::before{
  border-top-color: #FF8989;
}

.el_name_form {
	display: grid;
	grid-template-columns: 49% 49%;
	column-gap: 2%
}

/*-- radio style --*/
.el_form_radio{
  margin-bottom: 16px;
}

.el_radioInput {
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.el_radioLabel{
  font-size: 14px;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.el_radioInput:focus + .el_radioLabel:before {
  border-color: var(--textLink);
}

.el_radioLabel:before {
	content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-11px);
  width: 20px;
  height: 20px;
  border: 1px solid var(--borderColorDark);
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
  transition: all .3s;
}

.el_radioInput:checked + .el_radioLabel:before {
  background: linear-gradient(to right, #3361E8, #2BBBEA);
  box-shadow: inset 0 0 0 4px #fff;
  border-color: var(--textLink);
}

/*-- HelperText style --*/
.el_formHelperText{
  font-size: 12px;
  color: var(--darkGray);
  margin-bottom: 8px;
}

/*-- toastNotification style --*/
.el_toastNotification_complete{
  display: none;
  font-size: 14px;
  line-height: 1.4;
  width: auto;
  padding: 12px 16px 12px 40px; 
  background: #0DBAE6;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 16px rgba(11, 57, 82, .2);
  position: fixed;
  left: 50%;
  bottom: calc(100vh - 100px);
  transform: translate(-50%,0);
  animation: popup 5s forwards;
  z-index: 3;
  pointer-events: none;
}

.el_toastNotification_complete::before{
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('../images/icon_complete.svg');
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  left: 16px;
}

@keyframes popup {
  0% {
    transform: translate(-50%,-10px);
    opacity: 0;
    animation-timing-function: ease-out;
  }
  10%, 90% {
    transform: translate(-50%,0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%,-10px);
    opacity: 0;
  }
}

.el_toastNotification_error{
  background-color: #FF8181;
  color: var(--white);
  font-size: 14px;
  padding: 12px 16px 12px 40px; 
  border-radius: 4px;
  line-height: 1.4;
  position: relative;
}

.el_toastNotification_error::before{
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('../images/icon_exclamation.svg');
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  left: 16px;
}

/*-- badge style --*/
.el_badge{
  background: #FFA010;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 3px 5px;
  letter-spacing: .02em;
  border-radius: 10px;
  z-index: 1
}

/*-- pagenation style --*/
.el_pagination{
  margin: 0 auto;
}

.el_pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

.el_pagination li + li{
  margin-left: 8px;
}

.el_pagination li a{
  font-size: 12px;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: .01em;
  display: inline-block;
  text-align: center;
  line-height: 32px;
  width: 32px;
  height: 32px;
  color: var(--textLink);
  border: 1px solid var(--textLink);
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}

.el_pagination li a:hover{
  text-decoration: none;
  background: #F4F5F8;
}

.el_pagination li.prev a::after,
.el_pagination li.next a::after{
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--textLink);
  border-left: 1px solid var(--textLink);
}

.el_pagination li.prev a::after{
  transform: rotate(-45deg);
  margin-left: 3px;
}

.el_pagination li.next a::after{
  transform: rotate(135deg);
  margin-right: 4px;
}


.el_pagination li.is_active a{
  line-height: 34px;
  width: 34px;
  height: 34px;
  background: linear-gradient(to right, #3361E8, #2BBBEA);
  color: var(--white);
  border: none;
}

.el_pagination li.is_disabled a{
  border-color: #CBD4DB;
  background-color: #FDFDFD;
  cursor: default;
}

.el_pagination li.is_disabled.prev a::after,
.el_pagination li.is_disabled.next a::after{
  border-color: #CBD4DB;
}

.el_textLink_layout {
	color: #2F8AE9;
	font-size: 14px;
	margin-right: 25px;
	margin-top: 3px;
}

.el_textLink_layout_form {
	color: rgb(255,102,102);
}

.el_layout_btn_primary_resist {
	background: linear-gradient(to right, #3361E8, #2BBBEA);
	color: white;
	padding: 12px 23px;
	letter-spacing: 1px;
}

.el_form_layout_noreg {
	margin-top: 20px;
}

.el_noAuth_login {
	padding: 14px 37px;
}

/*==================================================

4.block

====================================================*/
.bl_header_logo {
	margin-right: 28px;
}

.bl_header_logo:focus{
  outline: none;
  opacity: .7;
}

.bl_header_logo img{
  width: 137px;
}

.bl_header_menu ul {
	display: flex;
	margin-right: 10px;
	align-items: center;
}

.bl_header_menu ul li a{
  display: block;
  text-align: center;
  color: var(--black);
  padding: 12px;
  font-size: 14px;
  position: relative;
  transition: color 0.3s;
  border-radius: 4px;
  white-space: nowrap;
  outline: none;
}

.bl_header_menu ul li a:hover,
.bl_header_menu ul li a:focus{
  text-decoration: none;
  color: var(--textLink);
}

.bl_header_menu ul li.is_active{
  font-weight: bold;
}

.bl_header_menu ul li.is_active a::after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -16px;
  left: 0;
  background: var(--textLink);
}


.bl_header_func{
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
}

.bl_header_func_btnGroup{
  display: flex;
}

.bl_header_func_btnGroup li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background .3s;
  margin-left: 12px;
}

.bl_header_func_btnGroup li a:focus{
  outline: none;
}

.bl_header_func_notification{
  position: relative;
}

.bl_header_func_notification:hover,
.bl_header_func_notification:focus{
  background: #ecf5ff;
}

.bl_header_func_notification .el_badge{
  position: absolute;
  top: -1px;
  left: 17px;
}


.bl_header_func_user{
  text-align: center;
  color: #54B9A9;
  background: #C6EDE7;
  border-radius: 100%;
  position: relative;
  user-select: none;
}

.bl_header_func_user::after{
  content: '';
  border-top: 6px solid #8D99A8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: 16px;
  left: 42px;
}

.bl_header_func_user:hover,
.bl_header_func_user:focus{
  background: #ade9e0;
}

.bl_header_func_dropdown_notification,
.bl_header_func_dropdown_usermenu{
  display: none;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 3px 8px 0 rgba(10,36,67,0.1);
  position: absolute;
  top: 40px;
}

.bl_header_func_dropdown_notification{
  width: 360px;
  right: 40px;
}

.bl_header_func_dropdown_notification h2{
  font-size: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--borderColorLight);
}

.bl_header_func_dropdown_notification ul{
  max-height: 382px;
  overflow-y: scroll;
}

.bl_header_func_dropdown_notification ul li:not(:last-child),
.bl_header_func_dropdown_usermenu p{
  border-bottom: 1px solid var(--borderColorLight);
}

.bl_header_func_dropdown_notification ul li.is_unread{
  background-color: #FFFAE5;
}

.bl_header_func_dropdown_notification ul li.is_empty{
  padding: 16px;
  font-size: 14px;
}

.bl_header_func_dropdown_notification ul li a{
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  transition: background .3s;
}

.bl_header_func_dropdown_notification ul li a:hover{
  background: #f2f5f8;
}

.bl_header_func_dropdown_notification_userIcon{
  margin-right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.bl_header_func_dropdown_notification_text_ttl{
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.bl_header_func_dropdown_notification_text_comment{
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}

.bl_header_func_dropdown_notification_textGroup time{
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #7F8696;
  letter-spacing: .03em;
}

.bl_header_func_dropdown_usermenu{
  width: 170px;
  right: -15px;
  font-size: 14px;
}

.bl_header_func_dropdown_usermenu p{
  padding:  14px 16px;
}

.bl_header_func_dropdown_usermenu a{
  color: var(--black);
  padding:  14px 16px;
  display: block;
  transition: background .3s;
}

.bl_header_func_dropdown_usermenu a:hover{
  background: #f2f5f8;
  border-radius: 0 0 4px 4px;
}

.bl_header_func_dropdown_usermenu  span{
  font-size: 12px;
}

.bl_header_search{
  display: flex;
  margin-left: auto;
  margin-right: 12px;
}

.bl_header_search_input{
  width: 386px;
  height: 44px;
  border-radius: 4px 0 0 4px;
  border-right: none;
  margin-bottom: 0;
}

.bl_header_search_input:focus{
  border-right: none;
}

.bl_header_search_btn{
  width: 44px;
  height: 44px;
  border-radius: 0 4px 4px 0;
}

/* breadcrumb */
.bl_breadcrumb{
  font-size: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--borderColorLight);
  background: var(--white);

}

.bl_breadcrumb_inner{
  display: flex;
  width: 870px;
  /*margin: 0 auto;*/
  margin-left: 198px;
}

.bl_breadcrumb_inner p:not(:first-child){
  margin-left: 8px;
}

.bl_breadcrumb_inner p:not(:first-child)::before{
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #CBD4DB;
  transform: rotate(200deg);
  margin-right: 8px;
}

.bl_breadcrumb_inner a{
  color: var(--textLink);
  position: relative;
  display: inline-block;
}

.bl_breadcrumb_inner a:hover{
  text-decoration: underline;
}

/* dialog */
.bl_mask{
  display: none;
  background: rgba(0, 0,0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.bl_dialog{
  display: none;
  background :#fff;
  width: 720px;
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: 0 auto;
  z-index: 101;
}

.bl_dialog_header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px 14px 24px;
}

.bl_dialog_header_title{
  font-size: 18px;
  font-weight: bold;
}

.bl_dialog_header_close{
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background .3s;
}

.bl_dialog_header_close:hover{
  background: #ecf5ff;
}

.bl_dialog_body{
  padding: 20px 24px 0;
  overflow: auto;
  height: auto;
  max-height: 70vh;
  font-size: 14px;
  border-top: 1px solid var(--borderColorLight);
}

.bl_dialog_footer{
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px;
  border-top: 1px solid var(--borderColorLight);
}

.bl_consultForm_caution {
	line-height: 1.6;
}

.bl_consultForm_caution_detail {
	font-size: 12px;
	margin-bottom: 25px;
	line-height: 1.6;
}

.bl_consultForm_content{
  height: 215px;
}

.bl_consultForm_characterLimit{
  font-size: 10px;
  display: inline-block;
  margin-left: 4px;
  letter-spacing: .06em;
}

.bl_consultForm_submit{
  width: 168px;
}

.bl_consultForm .el_toastNotification_error {
  margin-bottom: 20px;
}

.el_header_icon{
	position: relative;
	top: 2px;
}

/*==================================================

5.helper

====================================================*/
.hp_fw_b {
	font-weight: bold;
}

.hp_t_left{
  text-align: left;
}

.hp_t_center{
  text-align: center;
}


.hp_mb_12{
  margin-bottom: 12px;
}

.hp_new_regist_guid {
	border-top: 1px solid #E8E9EA;
	margin-top: 20px;
	padding-top: 20px;
}

.hp_line_height_normal {
	line-height: normal;
}

.hp_color_red {
	color:red;
}

.hp_fw_b {
	overflow-wrap: break-word;
}

#goodImgCommon {
	position: absolute;
	top: 4px;
	left: 5px;
	width: 29px;
	height: 29px;
	object-fit: cover;
	z-index: 1;
}