@charset "utf-8";
/* popup window unique style */

/* common style */
* {
	margin: 0;
	padding: 0;
	vertical-align: middle;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Roboto, "Droid Sans", sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
}

body {
	position: relative;
	margin: auto;
	height: 100%;
	font-size: 16px;
	line-height: 1;
	color: #333333;
	-webkit-text-size-adjust: 100%;
	background: #f3f3f3;
}

body.fixed {
	position: fixed;
	height: 100%;
	width: 100%;
}

@media (max-width: 767px) {
	body {
		-webkit-overflow-scrolling: touch;
	}
}

p,
h1,
h2,
h3,
h4,
.normal-font-style,
input,
textarea,
select,
table,
dt,
dd {
	font-size: 100%;
	line-height: 1.5;
	font-weight: normal;
}

img {
	width: 100%;
	border: none;
}

.title-logo>img {
	vertical-align: top;
}

/* header style */

.logo-area {
	padding: 10px 20px 0;
	line-height: 50px;
	height: 50px;
	text-align: left;
	overflow: hidden;
	position: relative;
	background: #fff;
}

#local-nav {
	position: relative;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	background: #f3f3f3;
	border-bottom: 1px solid #d1d1d1;
}

#local-nav.scrolled {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 20;
}

#local-nav .title {
	padding: 9px 0 9px 1.96%;
	margin: auto;
	line-height: 1.5;
	font-size: 17px;
}

#local-nav .title .title-logo {
	width: 120px;
	display: inline-block;
	margin-right: 2%;
	vertical-align: top;
}

#local-nav .title a {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 979px) {
	.logo-area {
		text-align: center;
	}
}

.logo-area a {
	display: inline-block;
	width: 80px;
	margin: 0;
	line-height: 1;
	vertical-align: top;
}

.logo-area a:hover {
	opacity: 0.8;
}

.logo-area .close-btn {
	width: 24px;
	padding: 4px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 20px;
}

.logo-area .close-btn:hover {
	opacity: 0.8;
}


/* main contents style */

main {
	display: block;
	background: #fff;
}

.main-inner {
	padding: 1.96%;
	/*padding-right: 1.96%;*/
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

div.pc-layout {
	display: flex;
}

div.sp-layout.left {
	width: 15%;
	position: absolute;
}

div.device-cont {
	width: 100%;
}

div.device-cont>img {
	display: block;
	max-width: 150px;
	min-width: 60px;
}

div.sp-layout.right {
	display: flex;
	width: 85%;
	margin-left: 20%;
}

div.sp-layout.right>div:first-child {
	margin-right: 1.96%;
}

div.info-cont {
	position: relative;
	margin: 1.96% 0 1.96% 20%;
	padding: 0 1.96%;
	border-top: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
}

div.info-title {
	font-size: 16px;
	margin: 30px 0 15px 0;
}

div.info-title:before {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	height: 32px;
	width: 32px;
	margin-right: 5px;
	padding-bottom: 4px;
	background-size: 32px 32px;
	background-repeat: no-repeat;
	background-image: url(../images/common/icon/icon_info.png);
}

div.info-link {
	display: table;
	width: 100%;
	font-size: 14px;
	margin-bottom: 20px;
}

div.info-link>a {
	position: relative;
	display: table-cell;
	color: #06a;
	text-decoration: none;
	word-break: break-all;
}

div.info-link>a:hover {
	text-decoration: underline;
}

div.info-link>a:after {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	display: inline-block;
	height: 9px;
	width: 9px;
	margin: auto;
	background-size: 9px 9px;
	background-repeat: no-repeat;
	background-image: url(../images/common/icon/icon_tab.png);
}

div.info-link>span.info-date {
	display: table-cell;
	width: 10em;
}

.info-btn {
	width: 110px;
	border: 1px solid #d1d1d1;
	margin: 0 auto 30px auto;
}

div.orange-area {
	display: table;
	width: 70%;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid #ffd6c1;
	border-radius: 5px;
	background: #fdeee6;
	margin: 0 auto 10px auto;
}

div.orange-area>a.update-btn {
	height: 60px;
	width: 50%;
	padding: 0 10px;
	display: table-cell;
	border: 1px solid #d1d1d1;
	box-shadow: 0 2px 0 #d1d1d1;
	background: #fff;
	text-align: center;
	color: #333333;
	font-size: 14px;
	text-decoration: none;
}

div.orange-area>a.update-btn:hover {
	border: 1px solid #eb5505;
}

div.orange-area>div.update-txt {
	width: 50%;
	display: table-cell;
	font-size: 14px;
	padding-left: 1.96%;
	color: #333333;
}

div.attention-txt {
	width: 70%;
	font-size: 14px;
	color: #333333;
	margin: 0 auto 30px auto;
}

.help-btn,
.glossary-btn {
	width: 49%;
	border: 1px solid #d1d1d1;
	box-shadow: 0 2px 0 #d1d1d1;
}

.om-btn {
	margin: 2% 0 2% 20%;
	border: 1px solid #d1d1d1;
	box-shadow: 0 2px 0 #d1d1d1;
}

.help-btn:hover,
.glossary-btn:hover,
.om-btn:hover,
.info-btn:hover {
	border: 1px solid #eb5505;
}

.help-btn>a,
.glossary-btn>a,
.om-btn>a,
.info-btn>a {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	color: #333333;
	text-decoration: none;
	font-size: 14px;
}

.info-btn>a {
	font-size: 12px;
	padding: 15px;
}

.help-btn>a:before,
.glossary-btn>a:before,
.om-btn>a:before {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	height: 58px;
	width: 58px;
	margin: 3%;
	background-size: 58px 58px;
	background-repeat: no-repeat;
}

.help-btn>a:before {
	background-image: url(../images/common/icon/icon_tutorial.png);
}

.glossary-btn>a:before {
	background-image: url(../images/common/icon/icon_glossary.png);
}

.om-btn>a:before {
	background-image: url(../images/common/icon/icon_contents.png);
}

.help-btn>a:after,
.glossary-btn>a:after,
.om-btn>a:after,
.info-btn>a:after {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	display: inline-block;
	vertical-align: middle;
	height: 16px;
	width: 10px;
	margin: auto;
	background-size: 10px 16px;
	background-repeat: no-repeat;
	background-image: url(../images/common/icon/icon_next.png);
}

.info-btn>a:after {
	right: 10px;
	height: 10px;
	width: 6px;
	background-size: 6px 10px;
}

.help-btn>a>span,
.glossary-btn>a>span,
.om-btn>a>span {
	display: inline-block;
}

.help-btn>a>span {
	height: 2em;
	width: 11em;
}

.glossary-btn>a>span {
	height: 1em;
	width: 11em;
}

.om-btn>a>span {
	height: 2em;
	width: 15em;
}


/* footer style*/

.auFooter a:hover {
	opacity: 0.6;
}

.footerSiteMap {
	margin-top: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	background: #f3f3f3;
}

.footerLogo {
	padding: 0 0 1em;
}

.footerLogo .footerLogo-logo {
	display: block;
	margin: 0 auto;
	width: 100px;
}

.footerCopyright {
	margin: 0 auto;
	text-align: center;
	font-size: 62.50%;
	line-height: 1.4;
}


div.info-cont-list {
	position: relative;
	padding: 0 1.96%;
}

.breadList {
	width: 100%;
	max-width: 980px;
	max-height: 100%;
	font-size: 75%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin: auto;
}

.breadList ul {
	display: block;
}

@media screen and (max-width: 768px) {
	.breadList {
		padding: 0;
		margin: 0;
	}

	.breadList ul li {
		margin-bottom: 2%;
	}
}

.breadList ul li {
	display: inline-block;
	vertical-align: top;
	padding-left: 22px;
	text-indent: -22px;
	color: #333333;
}

.breadList ul li.category {
	padding-right: 10px;
}

.breadList ul li:first-child:before {
	content: "";
	padding: 0;
	margin: 0;
}

.breadList ul li:before {
	content: "＞";
	padding-right: 10px;
	color: #333333;
	vertical-align: middle;
}

.breadList ul li a,
.breadList ul li a:link {
	color: #0066aa;
	text-decoration: underline;
}

.info-back-btn {
	width: 110px;
	border: 1px solid #d1d1d1;
	margin: 0 auto 20px auto;
	text-align: center;
}

.info-back-btn:hover {
	border: 1px solid #eb5505;
}

.info-back-btn>a {
	position: relative;
	display: block;
	height: 100%;
	width: 100%;
	color: #333333;
	text-decoration: none;
	font-size: 14px;
}

.info-back-btn>a {
	font-size: 12px;
	padding: 15px;
}

header {
	background: #FFF;
}

div.table_cell-left {
	display: table-cell;
	text-align: left;
}

div.hint {
	max-width: 980px;
	margin: 0 auto;
	padding-bottom: 50px;
	overflow: auto;
}

div.hint_title {
	display: table;
	width: 100%;
	margin-bottom: 10px;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	border: 3px #eb5505 solid;
	position: relative;
	z-index: 10;
	background-color: #fff5ef;
	height: 60px;
}

div.hint_title:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px #eb5505 solid;
	margin: 2px;
	display: block;
	z-index: -1;
	background: #fff5ef;
}

div.hint_title:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 2px #eb5505 solid;
	margin: 2px;
	display: block;
	z-index: -5;
	background: #fff5ef;
}


div.hint div.tutorial_1,
div.hint div.tutorial_2 {
	display: flex;
	margin: 1em 0;
}

div.hint div.tutorial_1>div,
div.hint div.tutorial_2>div {
	width: 50%;
}

div.hint div.tutorial_1>div.left,
div.hint div.tutorial_2>div.left {
	order: 0;
}

div.hint div.tutorial_1>div.right,
div.hint div.tutorial_2>div.right {
	order: 1;
}

div.hint .item-title {
	color: #eb5505;
	font-weight: bold;
}

div.hint .item-title+p {
	margin-bottom: 1em;
}

div.hint .switch_icon {
	width: 20px;
	height: 20px;
}

div.hint .switch_icon .point0 {
	fill: #DF5411;
	stroke: #FFFFFF;
	stroke-width: 2;
	stroke-miterlimit: 10;
}

div.hint .switch_icon .point1 {
	fill: #FFFFFF;
	stroke: #DF5411;
	stroke-width: 2;
	stroke-miterlimit: 10;
}

div.hint img {
	display: block;
	width: 95%;
	max-width: 600px;
	margin: auto;
}

table.KDDI_01_H3 {
	margin-top: 1em;
	margin-bottom: 1em;
	border-collapse: collapse;
	border-left: solid 10px #eb5505;
	border-top: solid 1px #e5e5e5;
	border-right: solid 1px #e5e5e5;
	border-bottom: solid 1px #e5e5e5;
	width: 100%;
}

table.KDDI_01_H3 td {
	border-spacing: 0;
	background-color: #f3f3f3;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

table.KDDI_01_H3 p {
	padding-left: 1em;
	font-weight: bold;
}

div.enq_case {
	border: solid 1px #BCF;
	background-color: #BCF;
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-top: 50px;
}

ul.enq_txt_case {
	display: table-row;
	width: 100%;
	background-color: #BCF;
}

div.enq_txt_case {
	display: table-row;
	width: 100%;
	background-color: #BCF;
}

div.enq_txt {
	display: table-cell;
	text-align: center;
	padding: 10px;
	font-size: 1em;
}

div.enq_txt span {
	font-size: 1em;
	font-weight: bold;
}

li.enq_txt1 {
	display: table-cell;
	float: left;
	width: 105px;
	padding: 4px;
}

li.enq_txt2 {
	display: table-cell;
	float: left;
	width: auto;
	padding: 4px;
}

ul.enq_item_case {
	width: 100%;
	background-color: #FFF;
	display: inline-table;
}

li.enq_button {
	display: table-cell;
	float: left;
	border: solid 1px #BCF;
	width: 25%;
	margin: 3% 0 3% 17%;
	padding-bottom: 2%;
	cursor: pointer;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-top-left-radius: 20px;
	/* 左上 */
	border-top-right-radius: 20px;
	/* 右上 */
	border-bottom-right-radius: 20px;
	/* 右下 */
	border-bottom-left-radius: 20px;
	/* 左下 */

	box-shadow: 0px 2px 2px;
	text-align: center;
}

li.enq_button span {
	color: #BCF;
	text-align: center;
	font-size: xx-large;
	font-weight: bold;
}

.enq_svg {
	width: 40px;
}

.enq_svg circle,
line {
	stroke: #BCF;
}

@media screen and (min-width: 769px) {
	li.enq_button {
		font-size: medium;
		width: 20%;
		margin: 3% 0 3% 20%;
	}
}

@media screen and (min-width: 500px) and (max-width: 768px) {
	li.enq_button {
		font-size: medium;
		width: 29%;
		margin: 3% 0 3% 14%;
	}
}

@media screen and (max-width: 499px) {
	li.enq_button {
		font-size: small;
		width: 35%;
		margin: 3% 0 3% 10%;
	}
}

@media screen and (max-width: 350px) {
	li.enq_button {
		font-size: small;
		width: 40%;
		margin: 3% 0 3% 7%;
	}
}

.select-search-type ul li.radioitem1 {
	margin-left: -35px;
}

.select-search-type ul li.radioitem2 {
	margin-left: -65px;
}

p.txtSize-small {
	display: none;
}

.cardBox-ctr {
	height: 300px !important;
}


.accessibility {
	padding-right: 13px;
	color: #06a;
}

.accessibility:after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	display: inline-block;
	height: 9px;
	width: 9px;
	margin: auto;
	background-size: 9px 9px;
	background-repeat: no-repeat;
	background-image: url(../images/common/icon/icon_tab.png);
}

.inquiry:after {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	display: inline-block;
	height: 9px;
	width: 9px;
	margin: auto;
	background-size: 9px 9px;
	background-repeat: no-repeat;
	background-image: url(../images/common/icon/icon_tab.png);
}