@charset "UTF-8";

/* ------------------------------------------------------
■common.css
------------------------------------------------------ */
.newRadioButton input[type="radio"] {
	position: absolute;
	z-index:-1;
	display:none;
}

/* ------------------------------------------------------
■bootstrap reset
------------------------------------------------------ */
.form-inline .form-control {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}
.text-center {
	text-align: center!important;
}
/* ------------------------------------------------------
■本体CSSオーバーライド等
------------------------------------------------------ */

.wrapper.wide #mainCol {
	width: 960px;
}
.wrapper #mainCol ul.indicator li {
	padding: 10px 0 10px 10px;
}
.h1Tit.h1Tit_401k {
	font-size: 2.4em;
	padding: 7px 15px;
	background: #08287e!important;
	color: #FFF;
	border-top: none!important;
	border-radius: 5px;
}
.h1Tit.h1Tit_401k small {
	color: inherit;
}
div.wrapper div#mainCol div#contents p.submit {
	margin: 1.5em 0;
	text-align: center;
}
div.wrapper div#mainCol div#contents div.inner {
	padding: 0 14px;
	margin: 0.85em 0 1em;
}
.wrapper button.btnRound,
.wrapper button.btnRound:active,
.wrapper button.btnRound:visited {
	-webkit-appearance: none;
	color: #333 !important;
	background: #e8e8e8;
	display: inline-block;
	text-decoration: none;
	padding: 5px;
	border:none;
	margin: 0;
	line-height: 1;
	text-decoration: none !important;
	/* border-radius */
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	/* box-shadow */
	box-shadow:rgb(179, 179, 179) 0px 2px 0px 0px;
	-webkit-box-shadow:rgb(179, 179, 179) 0px 2px 0px 0px;
	-moz-box-shadow:rgb(179, 179, 179) 0px 2px 0px 0px;
}
.wrapper #mainCol button.btnRound {
	border: none;
	padding-top: 15px;
	padding-bottom: 15px;
}
.wrapper #mainCol .btnRound {
	padding-left: 65px;
	padding-right: 65px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.wrapper #mainCol .btnRound.function.confirm {
	background: #d50000;
}
.wrapper #mainCol .btnRound.function.confirm:hover {
	background: #f73c3c;
}
.wrapper #mainCol .small{
	font-size: 14px;
	padding: 10px 30px;
}
.wrapper #mainCol .btnRound.formSearch{
	padding:5px;
}

::-ms-clear {
	display: none;
}
/* ------------------------------------------------------
■汎用クラス
------------------------------------------------------ */
.fwBold {
	font-weight: bold;
}
.mt15 {
	margin-top: 15px!important;
}
.mt20 {
	margin-top: 20px!important;
}
.mt30 {
	margin-top: 30px!important;
}
.wide20p {
	width: 20%!important;
}
.wide25p {
	width: 25%!important;
}
.wide33p {
	width: 33%!important;
}

/*
■■ ラベル
========================================================= */
label {
	margin: 0 5px;
}

/*
■■ ラジオボタン
========================================================= */
.radiobutton li {
	margin: 5px 0;
	padding: 0 0 0 20px;/* ラベルの位置 */
}
.radiobutton li li {
	padding: 0 0 0 20px;/* ラベルの位置 */
}
.radiobutton label {
	padding: 0 0 0 30px;/* ラベルの位置 */
	line-height: 24px;/* ボタンのサイズに合わせる */
	display: inline;
	cursor: pointer;
	position: relative;
}
.radiobutton label:before {
	content: '';
	width: 24px;/* ボタンの横幅 */
	height: 24px;/* ボタンの縦幅 */
	position: absolute;
	top: -3px;
	left: 0px;
	background-color: #3388CC;
	border-radius: 50%;
	z-index: 10;
}
.radiobutton input[type="radio"] {
	position: absolute;
	z-index:-1;
	opacity: 0;
}
.radiobutton input[type="radio"] + label:after {
	content: '';
	width: 10px;/* マークの横幅 */
	height: 10px;/* マークの縦幅 */
	position: absolute;
	top: 4px;
	left: 7px;
	background-color: #5aa5e1;
	border-radius: 50%;
	z-index: 11;
}
.radiobutton input[type="radio"]:checked + label:after {
	content: '';
	width: 10px;/* マークの横幅 */
	height: 10px;/* マークの縦幅 */
	position: absolute;
	top: 4px;
	left: 7px;
	background-color: #fff;
	border-radius: 50%;
	z-index: 11;
}
.radiobutton input[type="radio"]:disabled + label {
	cursor: not-allowed !important;
}
.radiobutton input[type="radio"]:disabled + label:before {
	background-color: #ccc;
}
.radiobutton input[type="radio"]:disabled + label:after {
	background-color: #ccc;
}
.radiobutton input[type="radio"]:checked:disabled + label:after {
	background-color: #fff;
}
/*
■■ バリデーションエラー
========================================================= */
label.text--most-important {
	color: #F00;
	font-weight: bold;
	display: inline-block;
	margin: 10px 0;
	font-size:larger;
}
input[aria-invalid="false"] {
	background-color: #AAE9C1!important;
}
input[type="text"].valid {
	background-color: #AAE9C1!important;
}
input[aria-invalid="true"] {
	background-color: #FFBDBF!important;
}
input[type="text"].error {
	background-color: #FFBDBF!important;
}
select[aria-invalid="false"] {
	background-color: #AAE9C1!important;
}
select.valid {
	background-color: #AAE9C1!important;
}
select[aria-invalid="true"] {
	background-color: #FFBDBF!important;
}
select.error {
	background-color: #FFBDBF!important;
}
div.wrapper div#mainCol div#contents div.attention, div.wrapper div#mainCol div#contents p.attention {
	line-height: 1.5;
	border: 3px solid #f3b5ab;
	padding: 7px 14px;
	color: #cd1400;
	margin: 1em 14px 0;
}



/* ------------------------------------------------------
■ 配分指定のご入力
------------------------------------------------------ */
input.join,input.trans{
	text-align:right;
}

.inline-block{
	display:inline-block;
}

.newRadioButton input[type="radio"]:checked + label {
    background-color:#0076D1;
    border:5px solid #008df9;
}

.newRadioButton label .block{
    display: block;
}

.newRadioButton label span{
    display: table-cell;
    vertical-align: middle;
	font-weight: bold;
}

.newRadioButton label {
 	display: table;
	cursor:pointer;
	background:#000066;
	color:#fff;
    font-size:18px;
	height:158px;
	line-height:1.7;
	padding:10px;
	border-radius:15px;
	box-sizing:border-box;
	float:left;
	border:5px solid #5356b5;

}

.newRadioButton label:hover{
    background-color:#0076D1;
    border:5px solid #008df9;
}

.threeLab{
	width:270px;
}
.fourLab{
	width:250px;
}
.wrapper #mainCol .newBoxFunction {
	background: none;
	border: 5px solid #afd1f4;
	margin-top: 2em;
}

.wrapper #mainCol .newBoxFunction .boxTit {
	position: relative;
	color: #000;
	font-size: 1.5em;
	font-weight: bold;
	padding: 10px 10px 10px 29px;
	text-align: left;
	width: 750px;
	margin: 0 auto;
}

.wrapper #mainCol .newBoxFunction .boxBdy{
		padding:10px 0px 40px 0px;
	}

.newRadioButton input[type="radio"]:disabled + label {
	cursor: not-allowed !important;
	border:5px solid #f1f1f1;
	background:#7a7a7a;
}

.newRadioButton input[type="radio"]:disabled + label .lightblue {
	cursor: not-allowed !important;
	background:#e6e6e6;
}

.newBoxFunction .box{
	border-radius:10px;
	width:750px;
	min-height:200px;
	margin-bottom:40px;
	margin-top: 30px;
}
body.w-wide #mainCol .newBoxFunction .boxPink{
	background:#ffe6f1 !important;
	border:5px solid #fd8dbd;
}

body.w-wide #mainCol .newBoxFunction .boxPink .annotation{
	font-size: 1.4em;
	margin: 0 25px;
}

body.w-wide #mainCol .newBoxFunction .boxPink .annotation b{
	margin-left: 20px;
}

body.w-wide #mainCol .newBoxFunction .boxBlue{
	background:#deeefe !important;
	border:5px solid #797ed9;
}

.newBoxFunction .resultTitle{
    font-size: 1rem;
    margin: 0 10px;
    font-weight: normal;
}
.newBoxFunction #resultContent p{
	margin:0px 25px 25px 25px!important;
    text-align: left;
    font-size: 1.4em;
}

.newBoxFunction #resultContent span.red{
	color:#fa0000;
}

.newRadioButton .font1{
	font-size: 1.2em;
	display:block;
}

.newRadioButton .font2{
	font-size:20px;
}

.newRadioButton .lightblue{
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 15px 8px;
    margin: 10px 0px;
    background: rgb(218, 236, 251);
    color: black;
    font-size: 15px;
    text-align: left;
    height:128px;
}
label>.lightblue{
	width:270px;
}

.mt10 {
	margin-top:10px;
}



.newBoxFunction .staticContent{
	margin: 0px 100px 10px;
    text-align: left;
}

div.newarrow:before {
	content: '';
	width:50px;
	height:25px;
	background:#31B4E8;
	display:inline-block;
	position: relative;
	top: -30px;
	margin: 0 auto;
	text-align: center;
	left: 77px;
}
span.newarrow_down {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 15px solid #31B4E8;
	border-right: 50px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 50px solid transparent;
	text-indent: -9999px;
}
div.newarrow{
	width:275px;
}

#resultContent:before{
	content:'診断結果';
	border: 4px solid #fd8dbd;
	background: #fff;
	width: 160px;
	display: block;
	line-height: 38px;
	border-radius: 8px;
	font-size: 1.4em;
	font-weight: bold;
	position: relative;
	left: -15px;
	top: -20px;

}
.newRadioButton .green {
    background: #177a43;
    border: 2px solid #55b39b;
    color: white;
    width: 260px;
    display: table-cell;
    font-size: 19px;
    height: 62px;
    vertical-align: middle;
}

 .newRadioButton .green+span{
    width: 50px;
    height: 72px;
    display: table-cell;
    }

.mt40{
	margin-top: 40px!important;
}

.newRadioButton span:not(.lightblue) a{
	color:white!important;
}

.newRadioButton span:not(.lightblue) a:hover{
	color:rgb(218, 236, 251)!important;
}

#resultContent.rblue:before{
	border-color:#797ed9!important;
}
.newRadioButton span pre#precenter{
    color:white;
    font-size:19px;
    display:inline;
}

.height126{
	height:126px!important;
}

.height153{
	height:153px!important;
}


.newRadioButton label {
	position:relative;
}
.newRadioButton label:after{
	content: '>';
	position: absolute;
	display: block;
	left: 84%;
	bottom:5%;
	font-size:20px;
	font-weight: bold;
}
/*
.newRadioButton  label[for |="Qi"]:after{
	color:black;
	bottom: 8%;
}*/


/* iDeco電子化追加 */

.wrapper #mainCol sup{
	font-size: 0.7em;
}

.wrapper #mainCol .iconShow,.wrapper #mainCol .textShow{
	cursor: pointer;
}

.wrapper #mainCol .headImgWrap .headImg,.wrapper #mainCol .newBoxFunction .headImg{
	width: 600px;
}

.toggle_wrap{
	width: 960px;
	text-align: left;
	margin: 0 auto;
}



.wrapper #mainCol .boxTit span.qindent {
    position: absolute;
    display: inline-block;
    left: 4px;
    white-space: nowrap;
}

.wrapper #mainCol .column2 .col:nth-child(2n+1){
	text-align: right;
}


@media screen and (min-width: 768px){
		body.w-wide #mainCol .btnRound{
			width: 340px;
			cursor: pointer;
	}
	body.w-wide #mainCol .col .btnRound.next.function{
		padding: 16px 0 14px 0 !important;
	}
	body.w-wide #mainCol .col.btnRight .btnRound.next.function{
		padding: 49px 0!important;
	}
}

@media screen and (max-width: 767px){
	#header{
		min-width: 100%;
	}
	body.w-wide #mainCol .pc-none{
		display: block;
	}
	body.w-wide #mainCol #A1 .box{
		width: 90% !important;
	}
	
	.wrapper #mainCol .newBoxFunction{
		border: 3px solid #afd1f4;
	}
	
	.wrapper #mainCol .newBoxFunction .boxTit{
		width: 100%;
		padding: 10px 20px 10px 45px;
		text-align: left;
	}
	
	.wrapper #mainCol .boxTit span.qindent{
		left: 21px;
	}
	
	.wrapper #mainCol .newBoxFunction .boxBdy{
		padding-bottom: 40px;
	}
	
	.wrapper #mainCol .headImgWrap .headImg,.wrapper #mainCol .newBoxFunction .headImg{
		width: 90%;
	}
	
	.wrapper #mainCol .inline-block{
		width: 100%;
	}
	
	.wrapper #mainCol .inline-block.mt10{
		margin-top: 0;
	}
	
	.wrapper #mainCol .newRadioButton label{
		float: none;
		height: 100%;
		width: 90%;
		margin: 0 auto;
		padding: 20px 10px;
		font-size: 16px;
	}
	
	.wrapper #mainCol .newRadioButton label:nth-child(n+2){
		margin-top: 10px;
	}
	
	.wrapper #mainCol .newRadioButton label:after{
		left: 91%;
		bottom: 5%;
	}
	
	.wrapper #mainCol .newRadioButton .selectNote{
		margin-top: 0.5em;
	}
	
	.wrapper #mainCol .toggle_wrap{
		width: 90%;
		margin: 0 auto;
	}
	
	.wrapper #mainCol .newBoxFunction .boxTit{
		font-size: 1.3em;
		box-sizing: border-box;
	}

	.wrapper #mainCol #resultContent:before{
		font-size: 1.2em;
	}
	
	.wrapper #mainCol .newBoxFunction #resultContent p{
		font-size: 1.2em;
	}

	body.w-wide #mainCol .btnRound.grayBtn{
			width: 100%;
	}
	
	.height153{
		height:initial!important;
	}

}
/* end_iDeco電子化追加 */


/* ------------------------------------------------------
 証明書ダウンロード
------------------------------------------------------ */
.btn-w-704 {
	width: 704px !important;
}
.btn-w-704.alnCenter {
	margin-right: auto;
	margin-left: auto;
}
.btn-w-704 .btnRound {
	width: 644px !important;
}

@media screen and (max-width: 767px) {
	.btn-w-704 {
		width: 100% !important;
	}
	.btn-w-704.alnCenter {
		margin-right: 0;
		margin-left: 0;
	}
	.btn-w-704 .btnRound {
		box-sizing: border-box;
		width: 100% !important;
	}
}

/* ------------------------------------------------------
/common2024/css/common_fix.css 5行目打ち消し
------------------------------------------------------ */
article .borderBox button {
	box-sizing: border-box!important;
}

/* ------------------------------------------------------
PayPay証券プラン：ボタン下文言
------------------------------------------------------ */
@media screen and (max-width: 767px) {
	.wrapper #mainCol .column2 .col:nth-child(2n+1) .paypay_word {
		text-align: center;
	}
}

/* ------------------------------------------------------
 エラー画面のタイトル
------------------------------------------------------ */
section.section > * {
    word-break: break-all;
}
@media screen and (max-width: 767px) {
	.wrapper #mainCol section.section {
		margin-top: 48px!important;
		width: 97.2%;
    margin: 0 auto;
	}
}

@media screen and (min-width: 768px){
	.section__search {
    padding: 32px;
		margin-top: 64px!important;
		margin-left: auto;
    margin-right: auto;
    max-width: 966px;
    width: 100%;
		box-sizing: border-box;
	}
}
.section__search {
	padding: 32px 15px 8px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background: #fff;
}
.section__search-detail {
  padding-bottom: 40px;
}
.section__search-block:nth-child(n+2) {
  margin-top: 32px;
}
.section__search .section__input {
  width: 100%;
}

/*入力エリア*/
.section__input {
  background: #f0f4ff;
  border: 2px solid #c0d2ff;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  outline: none;
  padding: 8px;
  position: relative;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	box-sizing: border-box;
}
.section__input::placeholder {
  color: #888;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.section__input:focus {
  border-color: #285ae1;
}
@media screen and (min-width: 768px) {
  .section__input {
    width: 100%;
  }
}
.section__input--entered {
  background: #fff;
}
.section__input--error {
  background: #fff6e8;
  border-color: #e6002d;
}
.section__input--error:focus {
  border-color: #285ae1;
}
.section__input-select {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .section__input-select {
    cursor: pointer;
  }
}
.section__input-select-wrap {
  position: relative;
}
.section__input-select-wrap::before {
  background: url(/common2024/images/icon/icon_triangle_bottom.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 1;
  pointer-events: none;
}
.section__input-select--selected {
  background: #fff;
}
.section__input-checkbox {
  cursor: pointer;
  background: #f0f4ff;
  border: 2px solid #c0d2ff;
  border-radius: 4px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  width: 20px;
}
.section__input-checkbox:checked {
  background: #285ae1;
  border-color: #285ae1;
}
.section__input-checkbox:checked::before {
  background: url(/common2024/images/icon/icon_checked.png) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
}
.section__input-checkbox-label {
  line-height: 1.6;
  align-items: flex-start;
  cursor: pointer;
  width: calc(100% - 28px);
}
.section__input-checkbox-icon {
  display: inline-block;
  width: 40px;
  margin-right: 8px;
  border-radius: 10px;
  vertical-align: middle;
  overflow: hidden;
}
.section__input-radio {
  cursor: pointer;
  background: #f0f4ff;
  border: 2px solid #c0d2ff;
  border-radius: 100%;
  height: 20px;
  margin-right: 8px;
  position: relative;
  width: 20px;
  transform: translateY(2px);
}
.section__input-radio:checked {
  background: #285ae1;
  border-color: #285ae1;
}
.section__input-radio:checked::before {
  border: 2px solid #fff;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
}
.section__input-radio-label {
  line-height: 1.6;
  align-items: flex-start;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: calc(100% - 28px);
}
.section__input-list-item {
  display: flex;
  align-items: flex-start;
}
.section__input-list-item:nth-of-type(n + 2) {
  margin-top: 16px;
}
.section__input-error-text {
  line-height: 1.6;
  color: #e6002d;
  font-size: 1.4rem;
  margin-top: 12px;
}
.section__input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .section__input-wrap {
    justify-content: flex-start;
  }
}
.section__input-wrap .section__input {
  width: 88%;
}
@media screen and (min-width: 768px) {
  .section__input-wrap .section__input {
    width: 95%;
  }
}
.section__input-sub {
  display: inline-block;
  width: 10%;
  margin-left: 8px;
  line-height: 1.6;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .section__input-sub {
    text-align: left;
  }
}
.section__input-char-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section__input-char-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc((100% - 32px) / 5);
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .section__input-char-item {
    max-width: 90px;
    width: calc((100% - 72px) / 10);
  }
}
.section__input-char-item:nth-of-type(5n) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .section__input-char-item:nth-of-type(5n) {
    margin-right: 8px;
  }
}
@media screen and (min-width: 768px) {
  .section__input-char-item:nth-of-type(10n) {
    margin-right: 0;
  }
}
.section__input-char-item:nth-of-type(n + 6) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .section__input-char-item:nth-of-type(n + 6) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .section__input-char-item:nth-of-type(n + 11) {
    margin-top: 8px;
  }
}
.section__input-char-button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #285ae1;
  display: block;
  font-weight: 700;
  padding: 10px;
  width: 100%;
  line-height: 1.6;
}
.section__input-char-button.is-active {
  background: #285ae1;
  border: none;
  color: #fff;
}
.section__input-char-button--disable {
  border: none;
  pointer-events: none;
}
.section__input-char-button--disable .section__input-char-button {
  padding: 0;
}

/*検索ボタン*/
.section__button {
  background: #08287f;
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 32px;
  position: relative;
  width: 100%;
  height: 48px;
  outline: none;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section__button {
    border-radius: 32px;
    font-size: 2rem;
    max-width: 336px;
    padding: 0 36px;
    height: 64px;
  }
}
.section__button:focus {
  outline: #333 solid 1px;
}
.section__button:hover {
  opacity: 1;
  background: #1d2e59;
}
.section__button[target=_blank]::after {
  background: url(/common2024/images/icon/icon_blank_white.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
@media screen and (min-width: 768px) {
  .section__button[target=_blank]::after {
    right: 16px;
  }
}
.section__button.is-disabled {
  background: #f3f3f3;
  cursor: default;
  pointer-events: none;
  color: #888;
  border: 1px solid #ccc;
  box-shadow: none;
}
.section__button--center {
  margin: 0 auto;
}
.section__button--high-priority {
  background: #e6002d;
}
.section__button--high-priority:focus {
  outline: #285ae1 solid 1px;
}
.section__button--high-priority:hover {
  background: #8d1930;
}
.section__button--secondary {
  background: #285ae1;
}
.section__button--secondary:hover {
  background: #2c4a9b;
}
.section__button--tertiary {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  border: 1px solid #ccc;
  color: #555;
}
.section__button--tertiary:focus {
  outline: #285ae1 solid 1px;
}
.section__button--tertiary[target=_blank]::after {
  background: url(/common2024/images/icon/icon_blank_black.svg) no-repeat;
  background-size: contain;
}
.section__button--tertiary:hover {
  background: #e0e0e0;
}
.section__button--back {
  background: #fff;
  border: 1px solid #888;
  color: #555;
}
.section__button--back:focus {
  outline: #285ae1 solid 1px;
}
.section__button--back:hover {
  background: #e0e0e0;
}
.section__button--back::before {
  background: url(/common2024/images/icon/icon_arrow_back.svg) no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  left: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
@media screen and (min-width: 768px) {
  .section__button--back::before {
    left: 16px;
  }
}
.section__button--reset {
  background: #fff;
  border: 1px solid #888;
  color: #555;
}
.section__button--reset:focus {
  outline: #285ae1 solid 1px;
}
.section__button--reset:hover {
  background: #e0e0e0;
}
.section__button-sub-text {
  font-size: 1.2rem;
  line-height: 1.4;
}
.section__button-notes {
  font-size: 1.4rem;
  line-height: 1.6;
}
.section__button-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #e0e0e0;
  border-radius: 25px;
  height: 48px;
  position: relative;
  width: 48px;
}
.section__button-close:focus {
  outline: #285ae1 solid 1px;
}
.section__button-close::before {
  background: url(/common2024/images/icon/icon_close.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}
.section__button-close-text {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #285ae1;
}
.section__button-current-icon {
  display: inline-block;
  margin-right: 8px;
}
.section__button-print {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #285ae1;
  border-radius: 25px;
  height: 48px;
  position: relative;
  width: 48px;
}
.section__button-print:focus {
  outline: #285ae1 solid 1px;
}
.section__button-print::before {
  background: url(/common2024/images/icon/icon_print_white.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}
.section__button-print-text {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
.section__button-wrap-function {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 15px;
}
.section__button-wrap > * + * {
  margin-top: 12px;
}
.section__button-sns {
  display: flex;
  gap: 15px;
}
.section__button-sns-twitter {
  width: 90px;
  height: 21px;
}
.section__button-sns-facebook {
  width: 90px;
  height: 21px;
}

/*文字*/
p.content__title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4!important;
	margin-top: 64px!important;
	margin-left: auto;
	margin-right: auto;
	max-width: 966px;
	width: 100%;
}
@media screen and (max-width: 767px) {
	p.content__title {
		font-size: 26px;
		width: 97.2%;
		margin-top: 48px!important;
	}
}
p.section__text {
font-size: 1.6rem;
border-style: solid;
border-width: 0;
box-sizing: border-box;
margin: 0;
word-break: break-all;
margin-top: 24px!important;
margin-left: auto;
margin-right: auto;
max-width: 966px;
width: 100%;
line-height: 1.6!important;
}
@media screen and (max-width: 767px) {
	p.section__text {
		margin-top: 16px!important;
	}
}

body.w-wide #mainCol a.section__link {
  color: #0000b3!important;
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}
body.w-wide #mainCol a.section__link-default {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  text-decoration: none;
}
body.w-wide #mainCol a.section__link-default:hover {
  text-decoration: underline;
  opacity: 1;
}
body.w-wide #mainCol a.section__link-default::before {
  background: url(/common2024/images/icon/icon_triangle02.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 12px;
}
body.w-wide #mainCol a.section__link:visited {
	color: #0000b3!important;
}