@charset "UTF-8";
/* カラー設定 */
:root {
  --main-color1: #c0c0c0;
  --main-color2: #828282;
  --main-color3: #404040;
  /* --main-color4: #404040;
  --main-color5: #2b2a2a; */

  --dark-color1: #052252;
  --dark-color2: #0c3170;
  --dark-color3: #1250b9;

  --thin-color1: #eaeff8;
  --thin-color2: #dae3f3;
  --thin-color3: #b4c7e7;


  --white1: #fff;
  --white2: #eee;
  --white3: #ccc;

  --black1: #000;
  --black2: #333;
  --black3: #666;

  --error-color: #ff6060;
}

body{
    -webkit-print-color-adjust: exact; /* 明細等をChromeで印刷時、tableのcssが反映されるように */
    height: calc(100% - 80px);
    margin-top: 80px;
}
a:hover{
    text-decoration: none;
}

.l-container--wrap{
    min-height: 85%;
    padding-top: 40px;
}

/* ログイン画面　タイトル */
.login_title{
    text-align: center;
    background: var(--main-color3);
    color: var(--white1);
    padding: 10px 0;
    font-size: 30px;
    font-size: 3.0rem;
}

/* ヘッダー */
.p-header {
   background-color: var(--white1);
   border-bottom: 1px solid var(--main-color3)!important;
}

.header__title{
    color: var(--black1);
    font-size: 30px;
    font-size: 3.0rem;
}

/* フッター */
.p-footer{
    background-color: #fff;
    color: #000;
    border-top: 1px solid var(--main-color3);
}
.p-footer__menu{
    padding: 10px;
}
.p-footer__menu__head{
    display: none;
    /* padding: 10px 0; */
}
.p-footer__menu__body li{
    margin-top: 10px;
}
.p-footer__menu__body a{
    color: #000;
}
.p-footer__copyright{
    padding: 5px 0;
}


.username{
    font-weight: bold;
}
.header_logout{
    text-align: right;
}
.header_logout input:hover{
    cursor: pointer;
}

/* .logout_btn::before, .logout_btn::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.logout_btn::before{
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #7a0;
}
.logout_btn::after{
    left: 5px;
    box-sizing: border-box;
    width: 3px;
    height: 3px;
    border: 3px solid transparent;
    border-left: 3px solid #fff;
} */


.p-header__inner {
    height: 50px;
}
/* ヘッダー下部 */
.headder_menu{
    position: relative;
    background-color: var(--main-color3);
    border: 1px solid var(--main-color2);
}
.headder_menu_inner{
    width: 1000px;
    margin: auto;
}

.menu {
    display: flex;
    justify-content: center;
}

.menu > li {
    text-align: center;
    position: relative;
    float: left;
    width: 25%;
    height: 50px;
    line-height: 50px;
    background: var(--main-color3);
    border: 1px solid var(--main-color2);
    color: var(--white1);
}
.menu > li.now{
    background: var(--dark-color1);
}


.menu__list_lv2 > li{
    background: var(--white1);
}
.menu__list_lv2 > li.no_contract{
    background: var(--white2);
}

.menu__list_lv2 > li a {
    display: block;
    color: var(--black1);
}

ul.menu__list_lv2 {
    border: 1px solid var(--black1);
    display: none;
    z-index: 1;
    width: 100%;
    background: var(--white1);
}

.menu > li:hover {
    background: var(--dark-color1);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu_list > a{
    color: var(--white1);
    display: block;
}

.menu__list_lv2 li {
    border-top: 1px solid var(--white1);
    text-align: left;
    padding: 5px;
}
.menu__list_lv2 li a:hover {
    background: var(--white2);
    text-decoration: none;
}

/* ハンバーガーメニュ */
.hamburger-menu{
    height: 0px;
}

.menu-btn {
    position: fixed;
    cursor: pointer;
    top: 5px;
    right: 10px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 200;
    background-color: var(--white1);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    transition: all 300ms 0s ease;
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: var(--black1);
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニュー　SP用 */
.sp_menu_container{
    position: fixed;
    left: 0;
    top: 50px;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.sp_menu_back{
    height: 100%;
    background: #000;
    opacity: 0.8;
    transition: all .3s;
}
.sp_menu_wrap{
    z-index: 2100;
    position: absolute;
    right: -70px;
    background: var(--dark-color2);
    width: 80%;
    height: 100%;
    opacity: 0;
    margin: 0 0 0 auto;
    transition: all .3s;
}
.sp_menu{
    margin-left: 30px;
}

.sp_menu_list{
    color: var(--white1);
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: 1px solid var(--black3);
}
.sp_menu li a{
    display: block;
    text-decoration: none;
    color: var(--white1);
    position: relative;
    padding: 10px 0 10px 10px;
}

.sp_menu__list_lv2 li a:hover{
    background: var(--dark-color1);
}

.sp_menu li{
    border-bottom: 1px solid var(--black3);
}
.sp_menu__list_lv2 li{
    margin-left: 30px;
}

.sp_menu__list_lv2 > li:last-of-type{
    border: 0;
}

.sp_menu_header{
    background: var(--dark-color1);
}

.sp_menu_header .username{
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 0 0px 20px;
}
.sp_menu_header .header_logout{
    padding: 10px;
}

span.sp_menu_symbol {
    display: block;
    position: relative;
}
/* SPメニュの折りたたみ開閉( + ⇔ - ) */
span.sp_menu_symbol::before,
span.sp_menu_symbol::after {
    content: '';
    display: block;
    width: 15px;
    height: 3px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    opacity: 1;
    right: 10px;
    top: -10px;
    transform: translateY(-50%);
    transition: 0.5s;
}
span.sp_menu_symbol::after {
    transform: translateY(-50%) rotate(90deg);
}
.open span.sp_menu_symbol::before {
    transform: rotate(90deg);
    opacity: 0;
}
.open span.sp_menu_symbol::after {
    transform: rotate(0);
}


/* .init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
} */

/* floatクリア */
.menu:before, .menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

/* 
.headder_menu_inner  ul{
    display: flex;
    justify-content: center;
}
.headder_menu_inner  ul > li{
    width: 150px;
    text-align: center;
}
.headder_menu_inner  ul > li > a{
    color: #111;
    font-size: 20px;
    font-size: 2.0rem;
} */

/* ログイン画面 */
.login__container {
  width: 400px;
  padding: 60px 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto 100px;
  padding: 45px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form .login_form {
  background: var(--white2);
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
}

.form .login_button{
  background: #747070;
  margin: 10px 0 15px;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
.login_button:hover,.login_button:active,.login_button:focus {
  background: #828282;
}
.login_msg{
  color:#ff6060;
  font-weight:bold;
}


/* マイページトップ用 */
    /* ログイン後　TOP */
.mypage-top-container{
	width: 100%;
    margin: 10vh 0 0 0;
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}
.mypage-top-container > div{
    box-shadow: 3px 3px 6px 3px rgb(0 0 0 / 20%);
	width: 300px;
	margin: 20px auto;
    height: 270px;
    text-align: center;
    transition: all .3s;
}
.mypage-top-container > div:hover{
    /* background: var(--black3); */
    background: var(--thin-color2);
}

.mypage-top-container > div > a{
    padding: 25px; 
    display: block;
    width: 100%;
    height: 100%;
    color: var(--black2);
    transition: all .3s;
}
.mypage-top-container > div > a:hover{
    text-decoration: none;
    /* color: var(--white2); */
}

.mypage-top-container .panel_header{
    margin: 20px 0 0 0;
    line-height: 18px;
    font-weight: bold;
    font-size: 24px;
    font-size: 2.4rem;
}
.mypage-top-container .panel_detail{
    margin: 20px 0 0 0;
    line-height: 18px;
    font-size: 15px;
    font-size: 1.5rem;

}

/* 顧客情報 */
.mypage_title{
    background: var(--dark-color2);
    color: var(--white2);
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin: 15px 0 30px 0;
}

.customer_container{
    /* padding: 10px; */
    font-size: 18px;
    font-size: 1.8rem;
    /* font-weight: bold; */
    margin-bottom: 40px;
}
.customer_container h2{
    margin: 5px 0 5px 20px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
}

.customer_table__dl{
    display: flex;
}
.customer_container button{
    width: 90px;
    height: 26px;
    margin: 0 40px 0 20px;
    border: 1px solid #17a2b8;
    border-radius: 7px;
    color: #17a2b8;
    background: #fff;
}

.login_pw_change_btn{
    float: right;
}
.customer_container button:hover{
    color: #fff;
    background: #17a2b8;;

}

.customer_table__dl dt{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    width: 30%;
    /* border-left: 1px solid var(--black2); */
    /* border-right: 1px solid var(--black2); */
    border-top: 1px dotted var(--black2);
    /* background: var(--thin-color3); */
    padding: 10px 0 10px 10px;
}

.customer_table__dl dd{
    width: 70%;
    /* background: var(--thin-color2); */
    /* border-right: 1px solid var(--black2); */
    border-top: 1px dotted var(--black2);
    padding: 10px 0 10px 10px;
}
.customer_container dl:last-of-type dd, .customer_container dl:last-of-type dt {
    border-bottom: 1px solid var(--black2);
}

/* 契約情報 */
.product_panel_container{
    width: 100%;
    margin: 50px 0 0 0;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.product_list{
    box-shadow: 3px 3px 6px 3px rgb(0 0 0 / 20%);
    overflow: hidden;
    background: var(--white1);
    width: 220px;
    margin: 20px auto;
    text-align: center;
    transition: all .3s;
}
.product_list.no_contract{
    background: var(--white2);
    /* background: var(--white3); */
}

/* .product_list.no_contract > a {
    pointer-events: none;
} */

.product_list > a{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    overflow-wrap: anywhere;
    height: 100%;
    margin: 0 30px;
    padding-top: 10px;
    font-weight: bold;
    font-size: 24px;
    font-size: 2.4rem;
    color: var(--black2);
    text-decoration: none;
}
.product_list > span{
    position: relative;
    display: inline-block;
    top: 7px;
    right: -87px;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 5px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    background: #6081ee;
}

.productImgAre{
    height: 170px;
}
.productImgAre > img{
    width: auto;
    height: 100%;
    object-fit: cover;
}

.product_list:hover{
    background: var(--thin-color2);
}

.orderInfo_row_col2{
    text-align: center;
}

.orderContainer{
    width: 100%;
    /* padding: 30px; */
    margin-top: 50px;
    box-shadow: 3px 3px 6px 3px rgb(0 0 0 / 20%);
}
.orderInfo_headder{
    position: relative;
    background: linear-gradient(var(--thin-color2), var(--thin-color3));
    box-shadow: 0px 5px 2px 0px rgb(0 0 0 / 20%);
}

.orderInfo_headder .plan_name{
    margin: 0px 20px;
    padding: 5px 28px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
}

.orderInfo_headder > span{
    position: absolute;
    top: 4px;
    left: 2px;
    background: #17a2b8;
    color: #fff;
    padding: 0px 8px;
    border-radius: 8px;
    font-size: 12px;
}

.orderInfo_body{
    padding: 20px;
    display: flex;
    justify-content: center; /*左右中央揃え*/
    align-items: center;     /*上下中央揃え*/
}
.orderAddress{
    vertical-align: top;
    display: inline-block;
    width: -webkit-calc(100% - 120px);
    /* background: var(--thin-color1); */
    border: 1px dashed var(--thin-color3);
    width: calc(100% - 120px);
    padding: 10px;
}
.orderAddress > div{
    padding-left: 10px;
}

.orderLinkAre{
    width: 110px;
    padding: 10px 0 0 10px;
}
.orderLink_col{
    text-align: center;
    margin: 0px 0 10px 0;
    border: 1px solid #17a2b8;
    border-radius: 6px;
    width: 110%;
}

.plan_detail_msg::after{
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 3px #17a2b8;
    border-right: solid 3px #17a2b8;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 27px;
    margin-top: 5px;
}

.orderLink_col > a{
    display: block;
    width: 100%;
    padding: 10px 5px 10px 5px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #17a2b8;
}
.orderLink_col > a:hover{
    background: #17a2b8;
    color: #fff;
}
.orderLink_col > a:hover .plan_detail_msg::after{
    border-color: #fff;
}

.btnArea{
    padding: 10px;
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.btnArea_col{
    border-radius: 10px;
    box-shadow: 3px 3px 6px 3px rgb(0 0 0 / 20%);
    overflow: hidden;
    width: 200px;
    height: 160px;
    line-height: 160px;
    margin: 15px auto 0;
    text-align: center;
    font-size: 26px;
    font-size: 2.6rem;
}
.btnArea_col a{
    display: block;
    color: #17a2b8;
}
.btnArea_col:hover{
    background: #17a2b8;
}
.btnArea_col:hover a{
    color: #fff;
}

.orderCommonInfo_headder{
    position: relative;
    background: #fefcd4;
    box-shadow: 0px 5px 2px 0px rgb(0 0 0 / 20%);
    padding: 3px 0 3px 20px;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
}
.orderCommonInfo_body{
    padding: 20px;
}
.payment_address{
    padding: 5px 0 0 20px;
}


.productCommon .link_area__col2, .productCommon .link_area__col1{
    background: rgb(216, 233, 215);
}

.link_area__col1{
    text-align: center;
    margin: 10px 0 10px 0;
    border: 1px solid var(--black2);
    border-radius: 6px;
    background: var(--thin-color1);
    position: relative;
    display: inline-block;
    padding-left: 20px;
    width: 100%;
}
.link_area__col2{
    text-align: center;
    margin: 10px 0 10px 0;
    border: 1px solid var(--black2);
    border-radius: 6px;
    background: var(--thin-color2);
    position: relative;
    display: inline-block;
    padding-left: 20px;
    width: 49%;
}

.link_area__col1 a, .link_area__col2 a{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: bold;
    color: var(--black2);
    text-decoration: none;
}

.link_area__col1::after, .link_area__col2::after{
  content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 5px var(--dark-color3);
  border-right: solid 5px var(--dark-color3);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -10px;
}



/* プラン　附帯オプション */
.op_table_container table,.op_table_container td,.op_table_container th {
    border-collapse: collapse;
    border:0.5px solid var(--black2);
    padding: 0;
}
.op_table_container table{
    font-size: 18px;
    font-size: 1.8rem;
}
.op_table_container th{
    background: var(--thin-color3);
    padding: 10px 0px 10px 10px;
    font-weight: bold;
}
.op_table_container td{
    background: var(--thin-color2);
    padding: 10px 0px 10px 10px;
}


.op_table_container .table_mini{
    width: 120px;
}
.op_table_container .table_long{
    min-width: 180px;
}

/* 請求・明細 */
.bill_container{
    padding-bottom: 30px;
}
.bill_table_container{
    overflow: auto;
    white-space: nowrap;
}
.bill_table_container table,.bill_table_container td,.bill_table_container th {
    border-collapse: collapse;
    border:0.5px solid var(--black2);
    padding: 0;
}
.bill_table_container table{
    text-align: center;
}
.bill_table_container th{
    font-size: 16px;
    font-size: 1.6rem;
    background: var(--thin-color3);
    padding: 10px;
    font-weight: bold;
}
.bill_table_container td{
    font-size: 14px;
    font-size: 1.4rem;
    background: var(--thin-color2);
    padding: 10px;
}
.bill_table_container td:first-of-type{
    text-align: initial;
}

.bill_name{
    min-width: 180px;
    white-space: nowrap;
}
.bill_payment, .bill_fee{
    width: 140px;
    white-space: nowrap;
}
.bill_detail{
    width: 90px;
    white-space: nowrap;
}
.detailBtn{
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px #17a2b8 solid;
    background: #fff;
    color: #17a2b8;
}
.detailBtn:hover{
    background: #17a2b8;
    color: #fff;
}

.modal_back{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    transition: all 150ms ease-in 0s;
    opacity: 0;
}

.modal-open{
    /* モーダルオープン時、bodyのスクロールを不可に設定 */
    overflow: hidden;
}

.modal-open .modal_back{
    opacity: 0.5;
    /* height: 100vh; */
}

.modal_container{
    transition: all 150ms ease-in 0s;

    overflow: hidden;
    opacity: 0;
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    outline: 0;
}

.modal-open .modal_container{
    overflow-x: auto;
    overflow-y: auto;
    top: 0px;
    opacity: 1;
}

.modal_area{
    max-width: 800px;
    margin: 3.75rem auto;
}

.modal{
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal_header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid var(--white3);
}
.modal_header h2{
    font-size: 20px;
    font-size: 2.0rem;
}
.modal_header .close{
    margin: -1rem -1rem -1rem auto;
    padding: 1rem;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    background: #fff;
}

.modal_table_area{
    overflow: auto;
    white-space: nowrap;
    padding: 20px 10px;
    border-bottom: 1px solid var(--white3);
}

.m-table--dl{
    display: flex;
    border-bottom: 1px solid var(--white3);
}

.m-table--dl:last-of-type{
    border-bottom: none;
}

.m-table--dl dt{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    border-right: 1px solid var(--white3);
    padding: 5px 15px;
    width: 170px;
    min-width: 170px;
}
.m-table--dl dd{
    font-size: 14px;
    font-size: 1.4rem;
    width: auto;
    padding: 5px 15px;
    overflow-wrap: anywhere;
}

.bill_items_container{
    overflow: auto;
    white-space: nowrap;
    margin: 20px;
}
.bill_items_table{
    text-align: left;
    table-layout: auto;
    border-collapse: collapse;
}

.bill_items_table tr th{
    padding: 10px;
    border-top:  1px solid var(--white3);
    font-weight: bold;
    background: var(--black3);
    color: var(--white2);
}

.bill_items_table tr{
    background: var(--white1);
}
.bill_items_table tr:nth-of-type(odd) td{
    background: var(--white2);
}

.bill_items_table tr td{
    padding: 10px;
    border-bottom:  1px solid var(--white3);
    font-weight: normal;
}

.bill_download_btn{
    margin: 20px;
    float: right;
    padding: 10px 25px;
    border-radius: 6px;
    border: 2px solid #17a2b8;
    color: #17a2b8;
    background: #fff;
}

.bill_download_btn:hover{
    background: #17a2b8;
}
.bill_download_btn:hover a{
    color: #fff;
}
/* .mypage_info{
    margin: auto;
    width: 90%;
}

.info_area_container{
    overflow: hidden;
    border: 1px #c0c0c0 solid;
    box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 20%);
}
.info_area{
    margin-left: 16px;
    width: 100%;
    padding: 20px;
    height: 150px;
    overflow-y: scroll;
}
.list-group-item{
    margin: 5px 0;
}
.list-group-item a{
    color: #828282;

}
.label-info{
    background: #828282;
    color: #fff;
    padding: 0 20px;
    margin: 0px 10px;
}
*/
/* マイページ　上部メニュー */
/* .mypage_area{
    width: 100%;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.top_menu{
    transition: all 300ms 0s ease;
    padding: 10px 0 10px 10px;
    width: 170px;
    border: 8px #000 double;
    height: 100%;
    border-radius: 10px;
    font-size: 20px;
    font-size: 2.0rem;
}

.top_menu > ul > li{
    transition: all 300ms 0s ease;
    padding: 10px 0 0 10px;
    height: 45px;
    margin: 10px 0 0px 25px;
    background: #ddd;
    animation: 1.0;
}
.top_menu > ul > li > a{
    color: #000;
}
.top_menu > ul > .now , .top_menu > ul > li:hover{
    background: #828282;
    margin: 10px 0 0px 5px;
    cursor: pointer;
}
.top_menu > ul > .now > a ,.top_menu > ul > li:hover > a{
    color: #fff;
    text-decoration: none;
} */

/* マイページ　メインエリア */

/* .mypage_container{
    width: calc(100% - 170px);
    margin-left: -3px;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;

    border: 8px #000 double;
    border-radius: 10px;
} */

/* サイドメニュー */
/* .side_menu{
    padding: 30px 10px;
    width: 170px;
}
.side_menu > h3{
    font-size: 20pt;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 10px; 
}
.side_menu > ul > li{
    padding: 3px 0 3px 10px;
    border-bottom: 1px #ddd solid;
    font-weight: initial;

}
.side_menu > ul > li:hover, .side_menu > ul > .now{
    background: #ddd;
    font-weight: bold;
}
.side_menu > ul > li:hover > a, .side_menu > ul > .now > a {
    text-decoration: none;
}

.side_menu > ul > li > a{
    color: #000;
    display: block;
}

.side_menu > ul > li > .no_order{
    color: rgb(211, 211, 211);
} */

/* .main_area{
    width: calc(100% - 170px);
    padding: 30px 10px;
    border-left: 1px #ddd solid;
}
.contract_container{
    overflow: hidden;
}

.contract_area{
    border: 1px #828282 solid;
    margin: 20px 0;
}

.contract_hedder{
    background: #c0c0c0;
    height: 35px;
    padding: 8px 0 0 15px;
    font-weight: bold;
}

.contract_hedder > .product{
    background: #404040;
    color: #fff;
    padding: 3px 10px 0px;
    margin-right: 10px;
    border-radius: 5px;
}
.contract_info{
    padding: 5px 10px;
} */

/* 
.contract_add{
    text-align: right;
    margin: 0 25px 0 0;
    display: block;
}
.contract_add > a{
    background: #404040;
    color: #fff;
    padding: 0 10px;
    border-radius: 10%;
    cursor: pointer;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: bold;
}

.contract_add > a:hover{
    text-decoration: none;
}

.order_info table{
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.order_info th{
    border-bottom: 3px #c0c0c0 double;
    padding: 3px 0px 0px 10px;
    word-break : break-all;
    min-width: 45px;
}
.order_info td{
    border-bottom: 1px #c0c0c0 solid;
    padding: 3px 0px 0px 10px;
    word-break : break-all;
    min-width: 45px;
}

.address_area{
    margin: 20px 10px 10px;
}
.address_area > h3{
    font-weight: bold;
    margin: 5px 5px 5px 0;
}
.address_info, .address_name{
    margin: 0 0 0 5px;
}
.address_info > span, .address_name > span{
    margin: 0 5px;
} */

@media (min-width: 769px) {
    /* .top_menu{
        position: initial;
        top: 0;
        left: 0;
    } */
}

@media (max-width: 768px){
    .mypage-top-container{
        margin-top: 0;
    }
    .p-header__inner {
        height: 50px;
    }
    .p-header__logo{
        margin: 10px 5px 0 15px;
    }
    /* .mypage_container{
        width: 100%;
    }
    .top_menu{
        position: fixed;
        background: #c0c0c0;
        height: 100%;
        top: 66px;
        left: -170px;
        border: none;
        border-radius: 0;
    }
    .top_menu > ul > li{
        background: #fff;
    }

    .side_menu{
        padding: 10px 5px;
        width: 130px;
    }
    .main_area{
        width: calc(100% - 130px);
        padding: 10px 5px;
    } */
}

/* 契約追加 */
/* .add_oder_select{
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    justify-content: center;
}
.add_oder_select > li{
    width: 180px;
    height: 160px;
    margin: 10px;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;

    border: 1px #c0c0c0 solid;
    box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 20%);
}
.add_oder_select > li > a{
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
}

.add_oder_select > li:hover, .add_oder_select > .now{
    background: #404040;
}
.add_oder_select > li > a:hover, .add_oder_select > .now > a{
    color: #fff;
    text-decoration: none;
} */



/* ウォーターサーバー用CSS */
/* オプション詳細 */
p[class*="option_detail_"] {
  color: #747070;
  margin: 10px 0 0 10px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif, Meiryo, "MS PGothic", "MS UI Gothic", Helvetica, Arial;
  font-size: 1.4rem;
}
/* ↓↓ページ内のデザイン */
.server_id_box, .set_item_list, div[class*="set_item_wrap"] {
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: hidden;
}
.disp_none {
    position: absolute;
    left: -300vw;
}
.server_id_box label, .set_item_list label {
    width: 30%;
    border: solid 4px #E3E4E7;
    overflow: hidden;
    transition: all 0.2s;
    border-radius: 1px;
}
label {
    cursor: pointer;
}
div.server_id_box label:hover, div.set_item_list label:hover {
    opacity: 0.95;    
}
.plan_server_img_box {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan_server_name, .plan_server_rental, .server_name {
    width: 100%;
    height: 80px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan_server_name p, .server_name p, .plan_server_rental p {
    font-size: 1.3rem;
}
.server_name {
    /* background-color: #4B89DC; */
    background-color: #52A3E2;
    color: white;
}
.plan_server_name {
    background-color: #EEE;
    color: black;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
}
.plan_server_rental {
    background-color: #EEE;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
}
.plan_server_img_box img {
    width: 80px;
}
.server_id_box input[type='radio'], .set_item_list input[type='radio']{
    display: block;
    margin: 15px auto 15px;
}
.ws_select_title {
    padding: 15px 0;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    background-color: #eee;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 20%);
}
div[class*="ws_select_color_title_"] {
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    font-weight: bold;
    padding: 15px 0;
    margin-top: 20px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}
div[class*="ws_select_color_title_"]::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-right: 30px solid transparent;
    border-top: 30px solid #ECECEC;
    border-left: 30px solid transparent; 
    width: max-content;
    height: max-content;
    margin: auto;
}
div[class*="set_item_wrap"] label {
    margin-top: 20px;
}
input[type="checkbox"][name*="set_options_"] {
    margin-right: 8px;
}
.set_options label {
    margin-top: 20px;
    display: block;
}
.set_options label:first-of-type {
    margin-top: 0;
}
/* ↑↑ページ内のデザイン */