@charset "UTF-8";
/* CSS INDEX for TOP page */

.pc-view {
	display: block;
}

.sp-view {
	display: none;
}

h1.terms-title {
color: #333333;
font-size: 24px;
font-weight: 500;
padding: 40px 0;
width: 920px;
margin: auto;
border-bottom: 1px solid #eaeaea;
}

#content h2.title-l {
	font-size: 18px;
	font-weight: 600;
}

#content h2.title-l.mt80 {
	margin-top: 80px;
}

#content h3.title-m {
	font-size: 16px;
	font-weight: 500;
	background: #E6F7FF;
	padding: 8px 10px 8px 20px;
	margin-bottom: 0;
}
#content h3.title-m.mt60 {
	margin-top: 60px;
}


hr.blue {
	border-top: 1px solid var(--primary);
	margin: 0 auto 5px auto;
}
.spacer_top-xs{
	margin-top: 16px !important;
}
.spacer_top-sm{
	margin-top: 29px !important;
}
.spacer_top-lg{
	margin-top: 74px !important;
}
#content .terms_index h3{
	background: #eee;
	padding: 10px 12px;
	font-size: 20px !important;
}
#content .terms_index h4{
	border-left: 6px solid #ccc;
	padding: 5px 0 5px 10px;
}
.detail_menu {
	font-size:1.3em;
	list-style:none;
	margin:0;
	font-weight:bold;
	padding:15px 25px 35px;
	border:#ccc 1px dotted;
	margin-bottom:50px;
}
.terms_index li{
	line-height: 3em;
	font-size: 1.2em;
	display: block;
	list-style: none;
	margin-bottom: 2em;
	border: 1px solid var(--background-blue);
}
.terms_index li a{
	display: block;
	height: 100%;
	width: 100%;
	padding-left: 2em;
}
.terms_index li span.terms_caution{
	font-size:80%;
	color:#ff0000;
}
.terms_index li:hover{
	background-color: var(--background-blue);
}
.terms_box p, .terms_box ul{
	line-height: 1.5em;
	margin-bottom: 2em;
	margin-left: 1em;
}

.terms_box ul li{
	line-height: 1.5em;
	padding-left: 1em;
	text-indent: -1em;
}

.terms_box p > span, .terms_box ul > li > span{
	padding-left: 1em;
	text-indent: -1em;
	display: block;
}

.terms_box #terms_speed{
	border:#999 1px solid;
	padding:10px;
}

.terms_box #terms_speed ul{
	list-style:none;
}

.terms_box #terms_speed li{
	margin-bottom:1em;
}

.underline {
	text-decoration: underline;
}
p.inner {
	padding-left: 10px;
}

ul.anchor-link {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 30px 0 0;
}

ul.anchor-link li {
	border-left: 1px solid #333;
	font-size: 16px;
	width: 33%;
	line-height: 170%;
}

ul.anchor-link li:last-child {
	border-right: 1px solid #333;
}

ul.anchor-link li a {
	color: #333;
	text-decoration: none;
	display: block;
	padding-top: 20px;
}

ul.anchor-link li p {
	width: 100%;
	text-align: center;
}

ul.anchor-link li p:first-child {
	padding-bottom: 20px;
}
/* 下矢印 */
.dli-arrow-down {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	line-height: 1;
	position: relative;
	width: 0.1em;
	height: 1em;
	background: currentColor;
}
.dli-arrow-down::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 0.1em solid currentColor;
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg);
	transform-origin: bottom left;
	position: absolute;
	left: 50%;
	bottom: -0.05em;
	box-sizing: border-box;
}
ul.terms-list li a {
	display: block;
	width: 100%;
	padding: 20px 30px 20px 5px;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	line-height: 160%;
}
ul.terms-list li a:hover {
	color: var(--primary);
}
ul.terms-list li a span{
	display: block;
	color: #ff0000;
	font-size: 14px;
	margin-top: 5px;
}
/* 右矢印 */
.arrow-right {
	width: 10em;
	position: relative;
	display: inline-block;
	color: #333;
	vertical-align: middle;
	text-decoration: none;
	font-size: 16px;
  }

  .arrow-right::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 0.5em;   /* arrow size */
	height: 0.5em;  /* arrow size */
	border-top: 1px solid #808080;  /* thickness, color */
	border-right: 1px solid #808080;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  }

/* accordion */
.accordion_wrapper{
	padding: 20px;
	background: var(--gray03, #F4F4F4);
}
.accordion_contents{
	height: 0;
	padding: 0;
	overflow: hidden;
	transition: .5s;
	margin:0;
}
.accordion_contents.active{
	overflow-y: auto;
}
.accordionBtn{
	position: relative;
	border: none;
	width: 100%;
	background-color: inherit;
	cursor: pointer;
	text-align: left;
}
.accordionBtn:hover{
	opacity: 0.6;
}
.accordionBtn::before{
    position: absolute;
    top: 50%;
	right: 35px;
    font-family: "FontAwesome";
    content: "\f105";
    color: #333;
    font-size: 1.7em;
    font-weight: normal;
    line-height: 0;
    -moz-transform: translate(0, -50%) rotate(90deg);
    -webkit-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
    transition: .2s;
}
.accordionBtn.active::before{
	transform: translateY(-50%) rotate(-90deg);
	transition:.5s;
}
#content .accordion_wrapper h2.title-l{
	margin: 0;
}
#content .accordion_wrapper h3.title-m{
    background: var(--white);
}
.announce_red{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px;
	color: #F00;
	border: 1px solid #F00;
}
#content .accordion_wrapper h3.title-m{
	margin-top: 30px;
}
.accordion_wrapper  ul.terms-list li a:hover{
	color: var(--black);
	opacity: 0.4;
}

@media (max-width: 767px){
.pc-view {
	display: none;
}
.sp-view {
	display: block;
}
h1.terms-title {
	font-size: 20px;
	padding: 40px 0 40px 20px;
	width: 100%;
	box-sizing: border-box;
}
#content h2.title-l {
	font-size: 16px;
}
.terms_index{
	width: 100%;
	margin:0 auto;
}
.terms_index ul {
	margin:0;
}
.terms_index li a{
	margin-left: 0.5em;
	padding-left: 0;
}
}
