@charset "UTF-8";
@import "fonts.css?v=3";
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;
}
*{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    cursor: pointer;
}
body{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000000;
    font-family: 'Noto Sans JP', sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    word-break: break-word;
    font-weight: 400;
}
/*remove highlight color touch on mobile*/
input,textarea,button,select,div,a,span {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a, input, div, select, textarea, img, button {
    outline: none;
}
a:focus, a:visited, input:focus, select:focus, textarea:focus, button:focus {
    outline: none !important;
}
li{
    list-style: none;
}
img {
    max-width: 100%;
    width /***/: auto;
    height: auto;
}
.img-full{
    width: 100%;
    display: flex;
}
.container {
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
}
.container.md{
    max-width: 920px;
}
.brandonGrotesque-bold-font{
    font-family: 'brandonGrotesque-bold', sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}
.brandonGrotesque-medium-font{
    font-family: 'brandonGrotesque-medium', sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}
/*
==============================================================
============================ common ==========================
==============================================================
*/
h2.title{
    display: inline-block;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin: 65px 0 60px;
}
h2.title:before{
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: -15px;
    height: 3px;
    width: 60px;
    background: #e60039;
}
.lb-sp{
    display: none;
}
.lb-pc{
    display: block;
}
.anchor-link{
    position: relative;
    top: -77px;
    display: block;
    line-height: 0;
}
@media(max-width: 960px){
    .anchor-link{
        top: -53px;
    }
}
@media(max-width: 576px){
    h2.title{
        margin: 50px 0 48px;
    }
    .lb-sp{
        display: block;
    }
    .lb-pc{
        display: none;
    }
}
@media(max-width: 374px){
    h2.title{
        font-size: 1.7rem;
        margin: 40px 0 38px;
    }
}
/*
==============================================================
========================= End common =========================
==============================================================
*/
/*
==============================================================
=========================== pagetop ==========================
==============================================================
*/
#pagetop {
	color: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 70px;
	bottom: 35px;
	right: 40px;
	position: fixed;
	z-index: 900;
	cursor: pointer;
	display: none;
	background: rgb(184, 6, 47, 0.9);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
#pagetop:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -5px;
    width: 20px;
    height: 20px;
    border-color: #fff;
    border-width: 0 2px 2px 0px;
    border-style: solid;
    display: inline-block;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: .3s;
}
#pagetop:hover:before{
    margin-top: -8px;
}
@media(max-width: 767px){
    #pagetop {
        width: 40px;
        height: 40px;
        right: 10px;
        bottom: 50px;
    }
    #pagetop:before{
        width: 16px;
        height: 16px;
        margin-left: -8px;
    }
}
/*
==============================================================
========================= End pagetop ========================
==============================================================
*/
/*
==============================================================
======================= hamburger menu =======================
==============================================================
*/
.hamburger-menu {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 40px;
    height: 24px;
    margin-top: -12px;
    cursor: pointer;
    z-index: 1001;
    display: none;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 100%;
    height: 3px;
}
.hamburger-menu .bar {
    position: relative;
    transform: translateY(10px);
    background: rgba(0, 0, 0, 1);
    transition: all 0ms 300ms;
    display: block;
}
.hamburger-menu .bar.active {
    background: rgba(0, 0, 0, 0); 
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    background: rgba(0, 0, 0, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background: rgba(0, 0, 0, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar.active:after {
    top: 0px;
    transform: rotate(30deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hamburger-menu .bar.active:before {
    bottom: 0px;
    transform: rotate(-30deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.header li{
	text-align: left;
}
@media(max-width: 960px){
    .hamburger-menu{
        display: block;
    }
}
/*
==============================================================
====================== End hamburger menu ====================
==============================================================
*/
/*
==============================================================
============================ Header ==========================
==============================================================
*/
header{
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background: #fff;
    line-height: 1;
}
header .container{
    max-width: 100%;
}
header .inner{
    display: flex;
}
header .logo{
    padding: 12px 0;
}
header .logo img{
    width: 42px;
}
header nav {
    padding: 0 10px 0 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header ul a{
    color: initial;
    transition: .2s;
}
header nav > ul{
    display: flex;
}
header nav > ul > li{
    position: relative;
    padding: 15px 10px;
}
header nav > ul > li > a{
	display: inline-block;
	padding: 8px 5px;
	position: relative;
	color: #FFF;
}
header nav > ul > li > a:before{
    position: absolute;
    left: 5px;
    right:  5px;
    bottom: 0px;
    border-bottom: 2px solid #e60039;
    content: '';
    display: block;
    transform: translate(0%,0%) scale(0,1);
    z-index: -1;
    transition: .3s;
}
header nav > ul > li > a:hover:before,
header nav > ul > li.active>a:before{
    transform: translate(0%,0%) scale(1);
}
.shadow-nav header{
    background: #fff;
    transition: .2s;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
}

@media(max-width: 960px){
	header nav > ul > li > a{
		color: #000;
	}
    header .container{
        height: 100%;
    }
    header .inner{
        display: block;
        width: 100%;
        height: 100%;
    }
    header .logo{
        padding: 10px 0;
        position: relative;
        z-index: 90;
    }
    header .logo img{
        width: 25px;
    }
    header nav{
        position: fixed;
        right: -100%;
        top: 0;
        bottom: 0;
        background: #fff;
        width: 100%;
        transition: all 0.5s;
        z-index: 1000;
        padding: 0;
        display: inline-block;
    }
    header.active nav{
        right: 0;
        width: 400px;
        box-shadow: -5px 0 20px 0 rgba(0,0,0,.4);
    }
    header nav > ul{
        display: inline-block;
        width: 100%;
        padding: 15px;
        margin-top: 53px;
        overflow: auto;
    }
     header nav > ul:before{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 53px;
        background: #b8062f;
     }
    header nav > ul > li{
        padding: 0;
    }
    header nav ul li a {
        padding: 20px 0px;
        display: inline-block;
        width: 100%;
        border-bottom: 1px solid #e2e2e0;
    }
    header nav > ul > li > a:before{
        border-bottom: none !important;
    }
    header nav > ul > li > a:hover:before,
    header nav > ul > li.active>a:before{
        transform: unset;
    }
    header .menu-backdrop{
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0,0,0,.6);
    }
}
@media(max-width: 500px){
	header nav > ul > li > a{
		color: #000;
	}
    header.active nav{
        width: 80%;
    }
}
/*
==============================================================
========================= End header =========================
==============================================================
*/
/*
==============================================================
=========================== footer ===========================
==============================================================
*/
footer{
	background: #e60039;
	color: #fff;
	text-align: center;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
footer .logo{
    display: inline-block;
    width: 50px;
    margin-bottom: 0;
}
footer .logo img{
    max-width: 100%;
}
footer .privacy a{
	color: #fff;
}

@media(max-width: 576px){
    footer{
        padding: 28px 0 8px;
    }
    footer .logo{
        width: 55px;
    }
    footer .logo{
        margin-bottom: 14px;
    }
    footer .copy-right .privacy{
        font-size: 1.3rem;
    }
}
/*
==============================================================
========================= End footer =========================
==============================================================
*/
/*
==============================================================
========================= header title =======================
==============================================================
*/
.header-title{
	position: relative;
	background: #e60039;
	color: #fff;
	text-align: right;
	background-image: linear-gradient(to right, #ffffff 0%, #e60039 100%);
}
.header-title:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    z-index: 0;
}
.header-title h2{
    font-size: 4.8rem;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.header-title .pandi_logo{
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: right;
    align-items: center;
    cursor: default;
}
.header-title .logo img{
    width: auto;
    height: 70px;
    display: flex;
	 max-width: none;
}
.header-title .pandi_logo img{
    height: 73px;
    display: flex;
}
@media(max-width: 960px){
    .header-title{
        justify-content: left;
        padding-left: 15px;
    }
}
@media(max-width: 768px){
    .header-title h2{
        font-size: 4.2rem;
    }
}
@media(max-width: 640px){
    .header-title h2{
        font-size: 3rem;
    }
    .header-title .logo img{
        height: 47px;
    }
}
@media(max-width: 480px){
    .header-title h2{
        font-size: 1.9rem;
        padding: 16px 0;
    }
    .header-title .logo{
        top: 1px;
        bottom: 1px;
    }
    .header-title .logo img{
        height: 40px;
        padding: 0;
    }
}
@media(max-width: 374px){
    .header-title .logo img{
        height: 36px;
        padding: 0;
    }
}
/*
==============================================================
====================== End header title ======================
==============================================================
*/
/*
==============================================================
=========================== banner ===========================
==============================================================
*/
.banner {
	background-image: linear-gradient(to right, #ffffff 0%, #e60039 100%);
}

.banner ul{
    display: flex;
}
.banner li{
    overflow: hidden;
    position: relative;
}
.banner li img{
    display: flex;
}
.banner li .desc{
    position: absolute;
    left: 0;
    right: 0;
	top: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}
.banner li .desc .item{
    display: block;
}
.banner li .desc .item p{
	display: inline-block;
	text-align: center;
	padding: 0 15px;
	margin-bottom: 5px;
	background-color: rgba(241, 56, 70, 0.80);
	border-radius: 5px;
}
.banner li .desc p span{
    padding-top: 2px;
    padding-bottom: 2px;
    display: inline-block;
}
.banner li .desc .item .lb{
    display: none;
}
.banner li .desc p span.hdn-pc{
    display: none;
}
picture img{
	margin: 0 auto;
}

@media(max-width: 768px){
    .banner li .desc{
        font-size: 2.2rem;
    }
}
@media(max-width: 767px){
    .banner li .desc .item p{
        display: inline-block;
        padding: 0;
        margin-bottom: 2px;
        background: none;
    }
    .banner li .desc .item .lb{
        display: block;
        padding: 0 !important;
        line-height: 0;
        background: none !important;
        margin: 0 !important;
    }
    .banner li .desc p span{
		background-color: rgba(241, 56, 70, 0.80);
		border-radius: 5px;
        margin-bottom: 5px;
        padding: 2px 10px;
    }
    .banner li .desc p span.hdn-pc{
        padding: 0;
        background: none;
        margin: 0;
        display: inline-block;
    }
}
@media(max-width: 576px){
    .banner li .desc{
        font-size: 1.7rem;
        bottom: 10px;
        padding: 0 15px;
    }
}
/*
==============================================================
========================== End banner ========================
==============================================================
*/
/*
==============================================================
============================ connect =========================
==============================================================
*/
.connect{
    padding-bottom: 64px;
}
.connect .container{
    max-width: 788px;
}
.connect ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}
.connect ul li{
    width: 50%;
    padding: 0 13px;
    margin-bottom: 26px;
    font-weight: 700;
}
.connect ul li .inner{
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #e1e1e1;
    padding: 35px;
}
.connect ul li .icon,
.connect ul li .point,
.connect ul li h3{
    text-align: center;
}
.connect ul li .icon img{
    height: 64px;
}
.connect ul li .point{
    color: #e60039;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 20px 0 5px;
}
.connect ul li h3{
    position: relative;
    margin-bottom: 40px;
}
.connect ul li h3:before{
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -13px;
    bottom: -18px;
    height: 1px;
    width: 26px;
    background: #b8062f;
}
@media(max-width: 576px){
    .connect{
        padding-bottom: 40px;
    }
    .connect .container{
        padding-left: 30px;
        padding-right: 30px;
    }
    .connect ul{
        margin: 0;
    }
    .connect ul li{
        width: 100%;
        padding: 0;
        font-size: 1.4rem;
    }
    .connect ul li .inner{
        padding-bottom: 28px;
    }
}
@media(max-width: 374px){
    .connect{
        padding-bottom: 40px;
    }
    .connect .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .connect ul li .inner{
        padding: 25px;
    }
}
/*
==============================================================
========================== End connect =======================
==============================================================
*/
/*
==============================================================
=========================== functionList ========================
==============================================================
*/
.functionList{
    background: #d7d8d8;
    padding-bottom: 10px;
}
.functionList .container{
    max-width: 920px;
}
.functionList .desc{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}
.functionList .desc .sp{
    display: none;
}
.functionList ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}
.functionList ul li{
    width: 33.33%;
    padding: 0 8px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}
.functionList ul li .inner{
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 30px 20px;
}
.functionList ul li .icon img{
    height: 64px;
}
.functionList ul li h3{
    font-size: 1.8rem;
    padding: 20px 0 7px;
}
.functionList ul li p{
    font-size: 1.5rem;
    font-weight: 400;
}

.functionList ul li .img{
    margin-top: 20px;
}
.functionList ul li .img img{
    width: 100%;
    display: flex;
}
@media(max-width: 767px){
    .functionList .container{
        padding-left: 30px;
        padding-right: 30px;
    }
    .functionList ul li{
        width: 50%;
    }
}
@media(max-width: 576px){
    .functionList{
        padding-bottom: 66px;
    }
    .functionList .container{
        padding-left: 30px;
        padding-right: 30px;
    }
    .functionList .desc{
        text-align: left;
    }
    .functionList .desc .pc{
        display: none;
    }
    .functionList .desc .sp{
        display: block;
    }
    .functionList ul li .inner{
        padding: 30px 35px;
    }
    .functionList ul{
        margin: 0;
    }
    .functionList ul li{
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .functionList ul li:last-child{
        margin-bottom: 0;
    }
}
@media(max-width: 374px){
    .functionList .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .functionList ul li .inner{
        padding: 30px 25px;
    }
    .functionList .desc{
        font-size: 1.4rem;
    }
}
/*
==============================================================
========================= End functionList ======================
==============================================================
*/
/*
==============================================================
============================ use-plan ========================
==============================================================
*/
.use-plan{
    padding-bottom: 25px;
}
.use-plan .content-box{
    display: flex;
    flex-wrap: wrap;
}
.use-plan .content-box .left{
}
.use-plan .content-box .right{
    width: 33%;
}
.use-plan .group-title{
    display: inline-block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.use-plan .group-title h2{
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 7px;
}
.use-plan .items{
    display: inline-block;
    width: 100%;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.use-plan .items:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
/*    height: 20px;*/
    background: #e1e1e1;
}
.use-plan .items .head,
.use-plan .items ul li{
    display: flex;
}
.use-plan .items .head,
.use-plan .items ul{
    padding-left: 40px;
    padding-right: 30px;
}
.use-plan .items .head {
    background: #e1e1e1;
    padding-top: 20px;
    padding-bottom: 14px;
}

.use-plan .items ul{
	padding-bottom: 10px;
	padding-top: 10px;
	background-color: #F1EDEB;
}
.use-plan .items .col:first-child{
    flex: 1;
    padding-right: 10px;
}
.use-plan .items .col:last-child{
    width: 150px;
    min-width: 150px;
    text-align: center;
	text-align: right;
}
.use-plan .items h3{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 7px;
}
.use-plan .items .head p{
    font-size: 2rem;
    font-weight: 700;
}
.use-plan .items .head .price{
    font-size: 2.5rem;
    font-weight: 700;
}
.use-plan .items .price{
    font-size: 2.3rem;
    font-weight: 700;
}
.use-plan .items .col{
    font-size: 1.5rem;
    font-weight: 500;
}
.use-plan .items .price-list li{
	margin-left: 15px;
}
.use-plan .items .note{
    font-size: 1.2rem;
}
.use-plan .items ul li{
	align-items: center;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
.use-plan .items ul li:last-child{
    border-bottom: none;
}
.use-plan .items ul li .rd{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #000;
}
.use-plan .right ul{
    text-align: center;
    margin-bottom: 30px;
}
.use-plan .right ul li{
    padding: 30px 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}
.use-plan .right ul li:last-child{
    margin-bottom: 0;
}
.use-plan .right ul li .icon img{
    width: 64px;
}
.use-plan .right ul li h3{
    font-size: 1.7rem;
    padding: 15px 0 6px;
}
.items .cation_frame ul{
	background-color: transparent;
	background: transparent;
}
.items .cation_txt{
	font-size: 1.8rem;
	font-weight: 500;
}
.items .cation_frame ul li{
	padding-top: 0px;
	padding-bottom: 0px;
}
.items .cation_frame ul{
	background: #FDD0DC;
}
.items .cation_box{
	border: 1px solid #999;
}
.items .cation_frame li .cation_txt{
	text-align: left !important;
}
.use-plan .items .price-list li{
	text-align: left;
}
.use-plan .items .price-list li div{
	text-align: left;
}

.use-plan .items .price-list li .txt{
	text-align: left;
}


@media(max-width: 960px){
    .use-plan .content-box .left{
    }
    .use-plan .content-box .right{
        width: 35%;
    }
    .use-plan .items .head,
    .use-plan .items ul{
        padding-left: 25px;
        padding-right: 15px;
    }
}
@media(max-width: 767px){
    .use-plan .container{
        max-width: 620px;
    }
    .use-plan .content-box .left,
    .use-plan .content-box .right{
        width: 100%;
    }
    .use-plan .content-box .left{
        padding-right: 0;
        flex: auto;
    }
}
@media(max-width: 576px){
    .use-plan{
        padding-bottom: 32px;
    }
    .use-plan .container{
        padding-left: 0;
        padding-right: 0;
    }
    .use-plan .group-title{
        padding-bottom: 55px;
        margin-bottom: 20px;
    }
    .use-plan .items .head{
        padding-left: 15px;
        padding-right: 15px;
    }
    .use-plan .items .head .col:last-child{
        display: none;
    }
    .use-plan .items .head .col:first-child{
        padding-right: 0;
        flex: auto;
        text-align: center;
    }
    .use-plan .items ul{
        padding-left: 30px;
        padding-right: 30px;
    }
    .use-plan .items ul .col:last-child{
        min-width: 50px;
    }
    .use-plan .items ul li:first-child .col:last-child{
        text-align: right;
        padding-left: 0;
    }
    .use-plan .items.no-right-txt ul li .col:last-child{
        text-align: right;
        padding-left: 0px !important;
        padding-right: 12px;
    }
    .use-plan .items .col:first-child{
        padding-right: 5px;
    }
    .use-plan .right ul{
        padding: 0 30px;
    }
	.items .cation_frame li .cation_txt{

		text-align: left !important;
	}
	.use-plan .items .price-list li .txt{
		text-align: left;
	}
}

/*}*/
/*
==============================================================
========================== End use-plan ======================
==============================================================
*/
/*
==============================================================
========================== group-contact =====================
==============================================================
*/
.group-contact {
	background: #d7d8d8;
	text-align: center;
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 50px;
	padding-left: 0px;
}
.group-contact .sub_title{
	text-align: center;
	padding-bottom: 30px;
}
.group-contact .container{
/*    max-width: 944px;*/
    background: #fff;
    padding-left: 140px;
    padding-right: 140px;
}
.group-contact .usage-fee{
    display: inline-block;
    width: 100%;
    padding: 0 10px 45px 10px;
}
.group-contact .core-plan{
    background: #f4f3f2;
    padding: 25px 20px 40px 20px;
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}
.group-contact .core-plan h3{
    font-size: 2.4rem;
    padding-bottom: 35px;
}
.group-contact .core-plan .acc{
    font-size: 1.6rem;
}
.group-contact .core-plan .fee{
    font-size: 2.4rem;
}
.group-contact .core-plan .fee .lg{
    font-size: 5.7rem;
}
.group-contact .core-plan .txt{
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    line-height: 2;
    padding-top: 20px;
}
.group-contact .about{
    display: inline-block;
    width: 100%;
    border: 1px solid #b8062f;
    margin-bottom: 65px;
    padding: 0 20px 32px 20px;
}
.group-contact .about h2.title{
    color: #e60039;
    margin: 45px 0 50px;
}
.group-contact .about .txt{
    display: inline-block;
    width: 100%;
    line-height: 2;
}
.group-contact .about .txt .sp{
    display: none;
}
.group-contact .inquiry{
    font-weight: 700;
}
.group-contact .inquiry .container{
    padding-top: 30px;
    padding-bottom: 30px;
}
.group-contact .inquiry h2{
    font-size: 1.8rem;
    padding-bottom: 12px;
}
.group-contact .inquiry .desc{
    font-size: 1.6rem;
}
.group-contact .inquiry .items{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 435px;
    margin: 0 auto;
    padding-top: 50px;
}
.group-contact .inquiry .items a{
    font-size: 1.7rem;
    display: inline-block;
    color: initial;
    transition: 0.3s;
}
.group-contact .inquiry .items a:hover{
    opacity: 0.7;
}
.group-contact .inquiry .items a span{
    display: block;
}
.group-contact .inquiry a.phone img{
    max-width: 78px;
}
.group-contact .inquiry a.email img{
    max-width: 74px;
}
@media(max-width: 960px){
    .group-contact .container{
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media(max-width: 767px){
    .group-contact .about .txt{
        text-align: left;
    }
    .group-contact .about .txt .lb-pc{
        display: none;
    }
}
@media(max-width: 576px){
    .group-contact{
        padding-top: 11px;
        padding-bottom: 0;
    }
    .group-contact .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .group-contact .usage-fee{
        padding-bottom: 12px;
    }
    .group-contact .about .txt{
        font-size: 1.4rem;
    }
    .group-contact .about .txt .pc{
        display: none;
    }
    .group-contact .about .txt .sp{
        display: block;
    }
    .group-contact .usage-fee h2.title{
        margin: 15px 0 38px;
    }
    .group-contact .core-plan {
        padding: 20px 15px 30px 15px;
        margin-bottom: 70px;
    }
    .group-contact .core-plan h3{
        padding-bottom: 22px;
    }
    .group-contact .core-plan .fee{
        line-height: 1.3;
    }
    .group-contact .core-plan .txt p{
        padding-bottom: 10px;
    }
    .group-contact .core-plan .txt p:last-child{
        padding-bottom: 0;
    }
    .group-contact .about{
        padding: 8px 15px 20px 15px;
        margin-bottom: 24px;
    }
    .group-contact .about h2.title{
        margin-bottom: 30px;
    }
    .group-contact .inquiry .container{
        padding-top: 32px;
        padding-bottom: 60px;
    }
    .group-contact .inquiry .items{
        padding: 35px 00px 0 0px;
        justify-content: center;
    }
    .group-contact .inquiry .items a{
        padding: 0 25px;
    }
	.items .cation_txt{
		font-size: 1.5rem;
		font-weight: 400;
	}

}
@media(max-width: 374px){
    .group-contact .about h2.title{
        font-size: 1.4rem;
    }
    .group-contact .core-plan .txt,
    .group-contact .about .txt{
        font-size: 1.3rem;
    }
    .group-contact .inquiry .desc{
        font-size: 1.4rem;
    }
    .group-contact .inquiry .items a{
        padding: 0 25px;
        font-size: 1.4rem;
    }
}
/*
==============================================================
======================= End group-contact ====================
==============================================================
*/


a {
	text-decoration: none;
	color: #333;
}
.news-items {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.news-item {
	display: flex;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}

.news-item:not(:first-child){
	border-top: 1px solid #ddd;
}

.news-head {
	display: flex;
	width: 230px;
}

.news-date {
	width: 170px;
	padding-top: 3px;
}

.news-label {
	display: block;
	width: 35px;
	height: 25px;
	line-height: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border-radius: 3px;
	font-size: 1rem;
    margin-top: 3px;
}

.news-label .blue-label {
	padding-top: 3px;
	background: blue;
}

.new-label {
	padding-top: 3px;
	background-color: #C30;
}

.news-title {
	width: calc(100% - 150px);
	padding-left: 1px;
	padding-top: 4px;
/*  line-height: 1.5rem;*/
}

@media screen and (max-width: 480px) {
	.news-item {
		display: block;
	}
	
	.news-title {
		width: 100%;
		padding-left: 0;
		padding-top: 0;
		margin-top: 10px;
	}
	.items .cation_txt{
		font-size: 1.5rem;
		font-weight: 400;
	}
}
.connect .sub_title{
	width: 100%;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}
.connect.about_frame{
	width: 100%;
}

.connect .about_frame img{
	margin-right: auto;
	margin-left: auto;
}


.footer-icon{
	font-size: 5rem;
	margin-bottom: 15px;
}
.twitter{
	color: #000;
}
.twitter i{
/*	color: #1d9bf0;*/
	color: #000;
}
.top-text{
	display: none;
}

.banner-top{
	background-image: linear-gradient(to right, #e60039 100%, #ffffff 100%);
	height: 8px;
	width: 100%;
	display: block;
}
.banner-bottom{
	background-image: linear-gradient(to right, #e60039 0%, #ffffff 100%);
	height: 8px;
	width: 100%;
	display: block;
}
.functionList-yellow{
	font-size: 3rem;
	font-weight: 700;
	color: #ffcc00;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.3);
	padding-right: 5px;
}

.functionList-glay{
	font-size: 3rem;
	font-weight: 700;
	color: #cccccc;
	padding-right: 5px;
}
.torechan{
	float: left;
	width: 180px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0;
}
.torechan img {
	max-width: 100%;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.explanatory{
	display: block;
	background-color: #FFF;
	padding-bottom: 50px;
}
.explanatory .space {
	float: left;
}
.explanatory-list{
	padding-top: 20px;
	margin-top: 20px;
}
.explanatory-list i{
	padding-right: 5px;
}
.explanatory-list ul{
	padding-left: 35px;
}
.explanatory-list ul li{
	font-size: 1.5rem;
	font-weight: 400;
	width: 100%;
	margin: 0px;
	padding: 0px;
	float: none;
	text-align: left;
	list-style-type: square;
}
.explanatory-list {
    overflow: hidden;
}
.clear-after{
	display: block;
	clear: both;
	height: 0;
	width: 100%;
}
.clear-space{
	display: block;
	height: 0;
	width: 500px;
}
.clear{
	height: 0;
}
.group-contact .container {
	text-align: center;
}
.license-txt{
	font-size: 1.3rem;
	font-weight: 400;
}
