@charset "utf-8";
/************ init ************/
:root {
    --color-general: #333;
    --color-uqmobile: #e3007f;
    --color-uqwimax: #00267f;
    --color-main: var(--color-general);
}

[data-page="uqmobile"] {
    --color-main: var(--color-uqmobile);
}

[data-page="uqwimax"] {
    --color-main: var(--color-uqwimax);
}

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,menu,nav,section,summary,time,mark,audio,video{
    background: transparent;
    border: 0;
    font-family: '游ゴシック体','YuGothic','Yu Gothic', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 100%;
    font-weight: 500;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

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

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

ul,ol{
    list-style: none;
}

a{
	color: var(--color-general);
	text-decoration: none;
	transition: 0.3s ease-out;
}

img{
    vertical-align: bottom;
}

body{
    color: var(--color-general);
    min-width: 1200px;
    position: relative;
}

[data-hover="button"],
[data-hover="button"] span{
	position: relative;
}

[data-hover="button"],
[data-hover="button"] *{
	transition: 0.3s ease-out;
}

[data-hover="button"]{
	overflow: hidden;
}

[data-hover="button"]::before,
[data-hover="button"]::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	transition: inherit;
	box-sizing: border-box;
}

[data-hover="button"]::before{
	width: 0%;
}

[data-hover="button"]::after{
	width: 100%;
	border-radius: inherit;
}

[data-hover="button"] .switch_images {
    display: block;
    width: fit-content;
}

[data-hover="button"] .switch_images img {
    display: block;
}

[data-hover="button"] .switch_images img:nth-of-type(2) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

[data-hover="button"]:hover::before {
	width: 100%;
}

[data-hover="button"]:hover .switch_images img:nth-of-type(1) {
	opacity: 0;
}

[data-hover="button"]:hover .switch_images img:nth-of-type(2) {
	opacity: 1;
}

[data-hover="button"] .switch_text {
	font-weight: inherit;
}

[data-hover="button"] {
    color: #fff;
    background-color: var(--color-main);
}

[data-hover="button"]::before {
    background-color: #fff;
}

[data-hover="button"]::after {
    border: 2px solid var(--color-main);
}

[data-hover="button"]:hover {
	color: var(--color-main);
}

[data-hover="underline"] .switch_text{
    position: relative;
	font-weight: inherit;
}

[data-hover="underline"] .switch_text:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	display: block;
	width: 0%;
	height: 2px;
	background-color: var(--color-general);
	border-radius: 2px;
	opacity: 0;
	transition: .3s ease-out;
}

[data-hover="underline"].color-uqmobile .switch_text{
	color: var(--color-uqmobile);
}

[data-hover="underline"].color-uqmobile .switch_text:before{
	background-color: var(--color-uqmobile);
}

[data-hover="underline"].color-uqwimax .switch_text{
	color: var(--color-uqwimax);
}

[data-hover="underline"].color-uqwimax .switch_text:before{
	background-color: var(--color-uqwimax);
}

[data-hover="underline"]:hover .switch_text:before{
	width: 100%;
	opacity: 1;
}

.general-btn{
	display: block;
	color: #fff !important;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: calc(64/16);
	width: 386px;
	margin: 0 auto;
	background-color: var(--color-general) !important;
	border-radius: 4px;
}

.general-btn::after {
    border: 2px solid var(--color-general) !important;
}

.general-btn:hover{
	color: var(--color-general) !important;
}

.more-btn{
    position: relative;
    font-size: 16px;
    font-weight: bold;
    height: fit-content;
    padding-right: 27px;
}

.more-btn:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid var(--color-general);
    border-right: 1px solid var(--color-general);
    transform: translate(-100%, -50%) rotate(45deg);
}

.blackout{
    background: rgba(24, 24, 24, 0.8);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

/* fixdBorder */
.fixdBorder span{
	position: fixed;
	top: 0;
	bottom: 0;
	display: block;
	width: 2px;
	height: 100%;
	background-color: var(--color-main);
	z-index: 10;
}

.fixdBorder span:nth-of-type(1){
	left: 0;
}

.fixdBorder span:nth-of-type(2){
	right: 0;
}

[data-page="general"] .fixdBorder span{
	background-color: #AAAAAA;
}

/* header */
.header{
    position: relative;
}

.emergency_wrapper,
.header_upper,
.header_lower{
    position: fixed;
	left: 0;
    width: 100%;
	min-width: 1200px;
    box-sizing: border-box;
    z-index: 12;
}

.emergency_wrapper{
    display: flex;
    top: 0;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: var(--color-general);
}

.header_upper{
    top: 0;
    height: 64px;
    background: #fff;
	border-top: 2px solid var(--color-main);
	border-left: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
    border-bottom: 2px solid #AAAAAA;
}

[data-page="general"] .header_upper{
	border-top: 2px solid #AAAAAA;
	border-left: 2px solid #AAAAAA;
	border-right: 2px solid #AAAAAA;
}

.header_lower{
    top: 62px;
    height: 63px;
    background: var(--color-main);
	border-top: 2px solid var(--color-main);
	border-left: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
    box-shadow: 0px 3px 6px #00000029;
}

.has_emergency .header_upper{
    top: 48px;
}

.has_emergency .header_lower{
    top: 110px;
}

.emergency_wrapper a{
    position: relative;
    max-width: 1200px;
    padding: 0 28px;
    background: url(https://mvno.geo-mobile.jp/v2/img/pc/cmn/header/icon_important.png) no-repeat left center / 20px auto;
    box-sizing: border-box;
}

.emergency_wrapper a::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
}

.emergency_wrapper .switch_text::before{
    background-color: #fff;
}

.emergency_wrapper .switch_text{
    display: block; /* FireFox対策 */
}

.emergency_wrapper .switch_text span{
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header_upper-flex,
.header_lower-flex{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.header_upper-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_upper-logo{
	display: flex;
	gap: 40px;
}

.header_upper-nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 34px 0 auto;
}

.header_upper-nav li + li{
	margin-left: 32px;
}

.header_upper-nav li a{
	color: var(--color-general);
	font-weight: bold;
}

.header_upper-application_link{
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	width: 166px;
	background-color: var(--color-main);
}

[data-page="general"] .header_upper-application_link{
	background-color: #0091D7;
}

[data-page="general"] .header_upper-application_link::after{
	border: 2px solid #0091D7;
}

[data-page="general"] .header_upper-application_link:hover{
	color: #0091D7;
}

.header_lower-flex,
.header_lower-flex li a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_lower-flex li{
	position: relative;
}

.header_lower-flex li + li::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	height: 44px;
	margin: auto 0;
	background: #fff;
	opacity: 0.5;
}

.header_lower-flex li a{
	width: 171px;
	height: 61px;
	border: none !important;
}

.header_lower-flex li a .switch_images{
	width: 40px;
}

.header_lower-flex li a .switch_text{
	font-size: 12px;
	line-height: calc(18/12);
	margin-left: 12px;
}

/* メインコンテンツ */
.common-title{
	color: var(--color-general);
	font-size: 40px;
	font-weight: bold;
	line-height: calc(48/40);
}

.icon-new{
    background: #E9005D;
    order: 1;
}

.icon-old{
    background: #8cbf21;
    order: 2;
}

.hideItem{
    display: none !important;
}

/* slick bnr */
#js-slyderBnr img{
    display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0px 3px 6px #00000029;
} 

/* error */
.return_error{
    background: #fde5f2;
    padding: 10px 0;
    margin-top: 80px;
}

.return_error ul{
    margin: 0 auto;
    width: 1000px;
}

.return_error li{
    color: #e4007f;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5em;
    padding-left: 20px;
    position: relative;
    text-indent: -20px;
}

.return_error li::before{
    background: #e4007f;
    border-radius: 7px;
    color: #fff;
    content: '!';
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    height: 15px;
    line-height: 15px;
    margin-right: 5px;
    padding-left: 0;
    text-align: center;
    text-indent: 0;
    width: 15px;
}

/* footer */
footer{
    position: relative;
}

[data-page="general"] footer{
	margin-top: 96px;
}

[data-page="uqwimax"] footer{
	margin-top: 106px;
}

footer .pagetopBtn_wrapper{
	position: absolute;
	top: -32px;
	left: 0;
	right: 0;
	min-width: 1200px;
	margin: 0 auto;
}

footer .pagetopBtn{
	position: relative;
	display: block;
	width: 40px;
	height: 32px;
	margin: 0 24px 0 auto;
	background-color: var(--color-general);
	border-radius: 8px 8px 0 0;
}

footer .pagetopBtn::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7.5px;
	height: 7.5px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: translate(-50%, -25%) rotate(45deg);
}

.footer_tax-wrapper{
    background: var(--color-general);
    box-sizing: border-box;
}

.footer_tax{
    color: #fff;
    font-size: 16px;
    line-height: calc(48/16);
    text-align: center;
}

.footer_tax span{
    font-weight: bold;
}

.footer_upper{
    padding: 16px 0 48px;
    background: #E8E8E8;
    box-sizing: border-box;
}

.footer_upper-flex{
	display: flex;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
}

.footer_upper-flex + .footer_upper-flex {
	padding-top: 40px;
	margin-top: 16px;
	border-top: 1px solid #666;
}

.footer_upper-textLink li a{
	font-weight: bold;
	line-height: calc(22/16);
}

.footer_upper-textLink.-flex{
	display: flex;
	align-items: center;
}

.footer_upper-textLink.-flex li + li{
	margin-left: 16px;
}

.footer_upper-textLink.-company li + li{
	margin-top: 20px;
}

.footer_upper-textLink.-uqmobile dd,
.footer_upper-textLink.-uqwimax dd,
.footer_upper-textLink.-uqmobile li + li,
.footer_upper-textLink.-uqwimax li + li{
	margin-top: 24px;
}

.footer_upper-x{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: calc(21/14);
	width: 227px;
	height: 64px;
	background-color: var(--color-general);
	border-radius: 4px;
	box-shadow: 0px 3px 6px #00000029;
}

.footer_upper-x:hover{
	color: var(--color-general);
}

.footer_upper-x::after{
	border: 2px solid var(--color-general);
}

.footer_upper-x .switch_images{
    margin-left: 26px;
    order: 2;
}

.footer_upper-x .switch_text{
    order: 1;
}

.footer_lower{
    padding: 29px 0 32px;
    background: var(--color-general);
}

.geoOtherService {
    width: 1200px;
	margin: 0 auto;
}

.geoOtherService .geoOtherService_title {
	color: #fff;
    font-size: 16px;
}

.geoOtherService .geoOtherService_list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.geoOtherService .geoOtherService_list a {
	display: block;
    width: 190px;
}

.geoOtherService .geoOtherService_list img {
    width: 100%;
    height: auto;
}

.geoOtherService .geoOtherService_link {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
    width: fit-content;
    margin-top: 25px;
}

.footer_copyright{
	color: var(--color-general);
	font-size: 12px;
	line-height: calc(18/12);
	text-align: center;
	padding: 24px 0 26px;
	border-bottom: 2px solid var(--color-main);
}

[data-page="general"] .footer_copyright{
	border-bottom: 2px solid #AAAAAA;
}

/* floating Circle */
.floating-bars{
	position:absolute;
	width:70px;
	height:87px;
	margin:auto;
    
}

.floating-bar{
	position:absolute;
	background-color:rgba(255,255,255,0);
	width:11px;
	height:27px;
	border-radius:9px;
	transform:scale(0.4);
		-o-transform:scale(0.4);
		-ms-transform:scale(0.4);
		-webkit-transform:scale(0.4);
		-moz-transform:scale(0.4);
	animation-name:floating-bar_fade;
		-o-animation-name:floating-bar_fade;
		-ms-animation-name:floating-bar_fade;
		-webkit-animation-name:floating-bar_fade;
		-moz-animation-name:floating-bar_fade;
	animation-duration:0.782s;
		-o-animation-duration:0.782s;
		-ms-animation-duration:0.782s;
		-webkit-animation-duration:0.782s;
		-moz-animation-duration:0.782s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
    z-index: 101;
}

.rotate01{
	left:0;
	top:32px;
	animation-delay:0.2895s;
		-o-animation-delay:0.2895s;
		-ms-animation-delay:0.2895s;
		-webkit-animation-delay:0.2895s;
		-moz-animation-delay:0.2895s;
	transform:rotate(-90deg);
		-o-transform:rotate(-90deg);
		-ms-transform:rotate(-90deg);
		-webkit-transform:rotate(-90deg);
		-moz-transform:rotate(-90deg);
}

.rotate02{
	left:9px;
	top:11px;
	animation-delay:0.386s;
		-o-animation-delay:0.386s;
		-ms-animation-delay:0.386s;
		-webkit-animation-delay:0.386s;
		-moz-animation-delay:0.386s;
	transform:rotate(-45deg);
		-o-transform:rotate(-45deg);
		-ms-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		-moz-transform:rotate(-45deg);
}

.rotate03{
	left:29px;
	top:3px;
	animation-delay:0.4825s;
		-o-animation-delay:0.4825s;
		-ms-animation-delay:0.4825s;
		-webkit-animation-delay:0.4825s;
		-moz-animation-delay:0.4825s;
	transform:rotate(0deg);
		-o-transform:rotate(0deg);
		-ms-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-moz-transform:rotate(0deg);
}

.rotate04{
	right:9px;
	top:11px;
	animation-delay:0.589s;
		-o-animation-delay:0.589s;
		-ms-animation-delay:0.589s;
		-webkit-animation-delay:0.589s;
		-moz-animation-delay:0.589s;
	transform:rotate(45deg);
		-o-transform:rotate(45deg);
		-ms-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		-moz-transform:rotate(45deg);
}

.rotate05{
	right:0;
	top:32px;
	animation-delay:0.6855s;
		-o-animation-delay:0.6855s;
		-ms-animation-delay:0.6855s;
		-webkit-animation-delay:0.6855s;
		-moz-animation-delay:0.6855s;
	transform:rotate(90deg);
		-o-transform:rotate(90deg);
		-ms-transform:rotate(90deg);
		-webkit-transform:rotate(90deg);
		-moz-transform:rotate(90deg);
}

.rotate06{
	right:9px;
	bottom:8px;
	animation-delay:0.782s;
		-o-animation-delay:0.782s;
		-ms-animation-delay:0.782s;
		-webkit-animation-delay:0.782s;
		-moz-animation-delay:0.782s;
	transform:rotate(135deg);
		-o-transform:rotate(135deg);
		-ms-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		-moz-transform:rotate(135deg);
}

.rotate07{
	bottom:0;
	left:29px;
	animation-delay:0.8785s;
		-o-animation-delay:0.8785s;
		-ms-animation-delay:0.8785s;
		-webkit-animation-delay:0.8785s;
		-moz-animation-delay:0.8785s;
	transform:rotate(180deg);
		-o-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		-moz-transform:rotate(180deg);
}

.rotate08{
	left:9px;
	bottom:8px;
	animation-delay:0.975s;
		-o-animation-delay:0.975s;
		-ms-animation-delay:0.975s;
		-webkit-animation-delay:0.975s;
		-moz-animation-delay:0.975s;
	transform:rotate(-135deg);
		-o-transform:rotate(-135deg);
		-ms-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		-moz-transform:rotate(-135deg);
}

@keyframes floating-bar_fade{
	0%{
		background-color:rgba(0,130,208,0.98);
	}

	100%{
		background-color:rgba(255,255,255,0);
	}
}

@-o-keyframes floating-bar_fade{
	0%{
		background-color:rgba(0,130,208,0.98);
	}

	100%{
		background-color:rgba(255,255,255,0);
	}
}

@-ms-keyframes floating-bar_fade{
	0%{
		background-color:rgba(0,130,208,0.98);
	}

	100%{
		background-color:rgba(255,255,255,0);
	}
}

@-webkit-keyframes floating-bar_fade{
	0%{
		background-color:rgba(0,130,208,0.98);
	}

	100%{
		background-color:rgba(255,255,255,0);
	}
}

@-moz-keyframes floating-bar_fade{
	0%{
		background-color:rgba(0,130,208,0.98);
	}

	100%{
		background-color:rgba(255,255,255,0);
	}
}

/* 売り切れ表示 */
.soldout{
    color: var(--color-general);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #DBDBDB;
}

.soldout_title{
    font-size: 16px;
    font-weight: bold;
	line-height: 1;
}

.soldout_text{
    font-size: 12px;
    line-height: calc(18/12);
	margin-top: 8px;
}