@charset "UTF-8";

/* Base Font Setting
============================================*/
* {
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}
html {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ',
    'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-weight: 500;
  font-size: 62.5%;
}
body {
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
img {
  max-width: 100%;
}
p {
  margin-top: 1em;
  word-wrap: break-word;
}
p:first-child {
  margin-top: 0;
}
a {
  transition: 0.4s;
}
a:hover {
  opacity: 0.7;
}
.is-noscroll {
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

/* Layout
============================================*/
.l-main,
.l-main-lg {
  max-width: 1070px;
  width: 100%;
  margin: auto;
  padding-top: 64px;
}
.l-main-lg {
  max-width: 1170px;
}
.l-sideNav {
  display: block;
  position: relative;
}
.l-sideNav.is-active {
  display: block;
}
.l-contents {
  padding: 8% 4%;
  overflow: hidden;
}
.t-bg .l-contents {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .l-main,
  .l-main-lg {
    padding-top: 92px;
  }
  .main-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 4% 0 4%;
  }
  .l-sideNav {
    display: block;
    flex-basis: 330px;
    margin-right: calc(8% - 20px);
    height: calc(100vh - 92px);
  }
  .l-contents {
    flex-basis: calc(100% - 304px + 20px - 8%);
    padding: 80px 10px 40px;
    position: relative;
    z-index: 1000;
  }
  .t-bg .l-contents {
    padding-top: 0;
  }
}

/* side nav
============================================*/
.sideNav-inner {
  background-color: #fff;
  width: 87%;
  height: calc(100vh - 64px);
  overflow-y: auto;
  position: fixed;
  top: 64px;
  z-index: 1002;
}
.sideNav-overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}
.sideNav-overlay.is-active {
  display: block;
}
.user {
  font-size: 2rem;
  font-weight: bold;
}
.user-name {
  margin-right: 10px;
}
.logout {
  font-size: 1.3rem;
  font-weight: bold;
}
.logout::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 17px;
  background-size: 20px 17px;
  background-image: url(/mem/resources/images/icon_logout-574b9b37272ad2bea2d3147b5dbd21d2.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 9px;
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .sideNav-inner {
    right: -100%;
  }
}
@media screen and (min-width: 768px) {
  .sideNav-inner {
    height: calc(100vh - 92px);
    position: fixed;
    top: 92px;
    right: auto !important;
    width: 324px;
    padding: 80px 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .sideNav-inner::-webkit-scrollbar {
    display: none;
  }
  .t-bg .sideNav-inner {
    background: none;
    padding-top: 0;
  }
  .sideNav-inner .box-shadow:last-of-type {
    margin-bottom: 40px;
  }
}

/* banner */
.banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner {
  flex-basis: 47%;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .banner {
    flex-basis: 100%;
  }
  .banners li:first-of-type {
    margin-top: 0;
  }
}
/* grid
============================================*/
.l-grids,
.l-grids-gap {
  display: flex;
  flex-wrap: wrap;
}
.l-grids-gap {
  margin: -10px;
}
.l-grids-gap [class^='l-grid-'] {
  margin: 10px;
}
.l-grid-1 {
  width: 8.33%;
}
.l-grid-2 {
  width: 16.66%;
}
.l-grid-3 {
  width: 25%;
}
.l-grid-4 {
  width: 33.33%;
}
.l-grid-5 {
  width: 41.66%;
}
.l-grid-6 {
  width: 50%;
}
.l-grid-7 {
  width: 58.33%;
}
.l-grid-8 {
  width: 66.66%;
}
.l-grid-9 {
  width: 75%;
}
.l-grid-10 {
  width: 83.33%;
}
.l-grid-11 {
  width: 91.66%;
}
.l-grid-12 {
  width: 100%;
}
.l-grids-gap .l-grid-1 {
  width: calc(8.33% - 20px);
}
.l-grids-gap .l-grid-2 {
  width: calc(16.66% - 20px);
}
.l-grids-gap .l-grid-3 {
  width: calc(25% - 20px);
}
.l-grids-gap .l-grid-4 {
  width: calc(33.33% - 20px);
}
.l-grids-gap .l-grid-5 {
  width: calc(41.66% - 20px);
}
.l-grids-gap .l-grid-6 {
  width: calc(50% - 20px);
}
.l-grids-gap .l-grid-7 {
  width: calc(58.33% - 20px);
}
.l-grids-gap .l-grid-8 {
  width: calc(66.66% - 20px);
}
.l-grids-gap .l-grid-9 {
  width: calc(75% - 20px);
}
.l-grids-gap .l-grid-10 {
  width: calc(83.33% - 20px);
}
.l-grids-gap .l-grid-11 {
  width: calc(91.66% - 20px);
}
.l-grids-gap .l-grid-12 {
  width: calc(100% - 20px);
}

/* header/footer
============================================*/
.l-header {
  width: 100%;
  background: linear-gradient(135deg, #10b8e0, #28db91);
  position: fixed;
  z-index: 10000;
}
.bg-single .l-header {
  background: #10b8e0;
}
.l-header.is-active {
  z-index: 10002;
}
.t-bg .l-header {
  background: linear-gradient(135deg, #10b8e0, #1ac6be);
}
.t-bg-primary .l-header {
  background: #10b8e0;
}
.header-inner {
  max-width: 1070px;
  width: 100%;
  height: 64px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  padding: 2% 5%;
}
.header-logo-item {
  width: 166px;
}
.header-logo-item-ntt {
  display: block;
  width: 80px;
}
.header-logo-item-billing {
  display: block;
  width: 114px;
}
.header-menu {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 2% 4%;
}
.header-menu.is-animating,
.sideNav-overlay.is-animating {
  pointer-events: none;
}
.header-menu span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  z-index: 999;
  background-color: #fff;
}
.header-menu span:nth-of-type(1) {
  top: 0;
}
.header-menu span:nth-of-type(2) {
  top: 9px;
}
.header-menu span:nth-of-type(3) {
  bottom: 0;
}
.header-menu.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.header-menu.is-active span:nth-of-type(2) {
  display: none;
}
.header-menu.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .header-inner {
    height: 92px;
  }
  .header-logo-item {
    width: 216px;
  }
  .header-logo-item-ntt {
    width: 112px;
  }
  .header-logo-item-billing {
    width: 154px;
  }
  .header-menu {
    display: none;
  }
  .t-bg .l-header {
    background: none;
    z-index: 999;
  }
}

.l-footer {
  margin-top: 80px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links li {
  margin: 0 10px;
}
.footer-links li:first-of-type {
  margin-left: 0;
}
.footer-links li:last-of-type {
  margin-right: 0;
}
.footer-links .link,
.footer-links .link-external {
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}
.footer-copyright {
  font-size: 1rem;
  transform: scale(0.8);
  text-align: center;
  font-weight: bold;
  margin-top: 14px;
}
.t-bg .box-shadow .link-external::before {
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
}
.t-bg .box-shadow .link-external_arrow::before {
  background-image: url(/mem/resources/images/icon_link_external_arrow-d00f75da9d1bcdd5fefb3faf52946ce0.png);
}
.t-bg .box-shadow.box-nav .link-external::before,
.t-bg .box-shadow.box-nav .link-external_arrow::before {
  display: none;
}
.t-bg .box-shadow .link-external-right::after {
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
}
.t-bg .box-shadow.box-nav .link-external {
  padding: 0;
  text-indent: 0;
}
.t-bg .box-shadow.box-nav .link-external::before {
  display: none;
}
.t-bg .box-shadow.box-nav .link-external::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center;
  margin-left: 0.5em;
  transform: translateY(2px);
}
.t-bg .box-shadow.box-nav .link-external_arrow::after {
  height: 12px;
  margin-left: 0.3em;
  background-size: 5px 7px;
  background-position: center;
  background-image: url(/mem/resources/images/icon_link_external_arrow-d00f75da9d1bcdd5fefb3faf52946ce0.png);
  transform: translateY(0);
}

/* section
============================================*/
.section .section {
  margin-top: 40px;
}

/* bg
============================================*/
.t-bg {
  position: relative;
}
.t-bg::before {
  content: '';
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #10b8e0, #28db91);
  z-index: -1;
}
.t-bg-primary {
  background: #10b8e0;
}
.t-bg-primary::before {
  display: none;
}
.bg-band-wide {
  background-color: #e6edf3;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px calc(100vw * 0.04);
  margin: 50px calc(-100vw * 0.04) 24px;
}
.bg-band-wide-sm {
  width: 100%;
  margin: 50px 0 24px;
}
.bg-light {
  background-color: #fff;
}
.bg-lightDanger {
  background-color: #fcf6f4;
}
.bg-lightPrimary {
  background-color: #f4f8fc;
}
.bg-primary {
  background: linear-gradient(135deg, #10b8e0, #28db91);
}
.bg-secondary {
  background-color: #e6edf3;
}
@media screen and (min-width: 768px) {
  .bg-band-wide {
    padding: 5px 10px;
    margin: 0;
  }
}

/* headding
============================================*/
.h1title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.h1title-sub {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}
.h1title1 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.h2title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.h2title-border {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}

/* img
============================================*/
/* Norton Banner */
img[name='seal'] {
  background-color: #fff;
  padding: 5px;
}

/* box
============================================*/
.box-inner {
  padding: 24px 14px;
}
.box-shadow {
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
.box-shadow:not(:first-of-type) {
  margin-top: 20px;
}
.box-shadow-inner {
  padding: 20px;
}
.box-shadow-inner-bottom {
  padding: 20px 20px 60px 20px;
}
.box-wrap {
  margin-top: 24px;
}
.box-border,
.box-border-link {
  border: 1px solid #c2d3e2;
  padding: 30px 15px;
}
.box-border.is-active,
.box-border-link.is-active {
  border: 1px solid #000;
}
.boxes,
.boxes-link {
  margin-top: 10px;
}
.boxes .box-border,
.boxes-link .box-border,
.boxes-link .box-border-link {
  padding: 15px;
}
.boxes li:not(:first-of-type),
.boxes-link li:not(:first-of-type) {
  margin-top: 10px;
}
.boxes-link .box-border,
.boxes-link .box-border-link {
  padding-right: 40px;
  padding-left: 20px;
  position: relative;
}
.boxes-link .box-border-link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.boxes-select .box-border {
  padding: 26px 15px;
}
.boxes-select li:not(:first-of-type) {
  margin-top: 16px;
}
.box-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.l-sideNav .box-shadow {
  box-shadow: none;
}
.l-sideNav .btn-item1 {
  min-width: 232px;
}
.btn-item1 {
  border: 1px solid #00863D;
  color: #00863D;
}
.box-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 20px;
}
.l-sideNav .box-title {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .l-sideNav .box-shadow {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  }
}

/* scroll
============================================*/
.scroll-wrap {
  margin-top: 40px;
}
.scroll-content {
  overflow: auto;
  border: 1px solid #c2d3e2;
}
.scroll-content::-webkit-scrollbar {
  width: 5px;
}
.scroll-content::-webkit-scrollbar-track {
  border: none;
}
.scroll-content::-webkit-scrollbar-thumb {
  background: #c2d3e2;
  border-radius: 10px;
  box-shadow: none;
}
.scroll-content {
  max-height: 230px;
}
.scroll-content-sm {
  max-height: 100px;
}
.scroll-content-lg {
  max-height: 340px;
}
.scroll-inner {
  padding: 15px;
}

/* display
============================================*/
.display-inline-block {
  display: inline-block !important;
}
.display-inline {
  display: inline !important;
}
.display-block {
  display: block !important;
}

/* text
============================================*/
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-xxxxl {
  font-size: 3rem !important;
}
.text-xxxl {
  font-size: 2.2rem !important;
}
.text-xxl {
  font-size: 2rem !important;
}
.text-xl {
  font-size: 1.8rem !important;
}
.text-lg {
  font-size: 1.6rem !important;
}
.text-md {
  font-size: 1.5rem !important;
}
.text-sm {
  font-size: 1.3rem !important;
}
.text-xs {
  font-size: 1rem !important;
}
.text-notes {
  color: #707070;
  padding-left: 1.5em;
  font-size: 1.3rem;
}
.text-notes::before {
  content: '※';
  display: inline-block;
  margin-left: -1.5em;
  padding-right: 0.5em;
}
.text-primary {
  color: #007cb4;
}
.text-danger {
  color: #ce3030;
}
.text-danger-icon {
  color: #ce3030;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.text-danger-icon::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px;
  background-image: url(/mem/resources/images/icon_alert-518c1ebd7ab310677ec3472e9394f676.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 9px;
  transform: translateY(2px);
}
.text-checked-icon {
  color: #000;
  font-weight: bold;
}
.text-checked-icon::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  transform: rotate(40deg) translateY(-2px);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  margin-right: 10px;
}
.text-dark {
  color: #707070;
}
.text-light {
  color: #fff;
}
.text-body {
  color: #333 !important;
}
.text-bold {
  font-weight: bold !important;
}

/* link
============================================*/
.link,
.link-disabled,
.link-external,
.link-external-disabled,
.link-external-right {
  text-decoration: underline;
}
.link:hover,
.link-external:hover,
.link-external-right:hover,
.link-more:hover {
  cursor: pointer;
  opacity: 0.7;
}
.link-disabled,
.link-external-disabled {
  color: #ccc !important;
  pointer-events: none;
}
.link-external,
.link-external-disabled {
  padding-left: 1.5em;
  text-indent: -1.5em;
  display: inline-block;
}
.link-external-right {
  padding-right: 0.5em;
  display: inline-block;
}
.link-external::before,
.link-external-disabled::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center bottom;
  margin-left: 0.5em;
  margin-right: 0.5em;
  transform: translateY(2px);
}
.l-footer .link-external::before,
.l-footer .link-external-disabled::before {
  margin-left: 0;
}
.link-external-right::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
  background-repeat: no-repeat;
  background-size: 0.8em;
  background-position: center;
  margin-left: 0.5em;
  transform: translateY(2px);
}
.link-more {
  font-weight: bold;
  display: inline-block;
  transition: 0.4s;
}
.link-more::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  margin-left: 0.5em;
}
.js-more-body,
.js-more-btn-body {
  display: none;
}
.list-border .link-icon-billing,
.list-border .link-icon-payment,
.list-border .link-icon-email,
.list-border .link-icon-certification {
  display: flex;
  align-items: center;
  position: relative;
}
.link-icon-billing::before,
.link-icon-payment::before,
.link-icon-email::before,
.link-icon-certification::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
.link-icon-billing::before {
  background-image: url(/mem/resources/images/icon_billing-309425613cdcf0a470b69c0a88537c71.png);
}
.link-icon-payment::before {
  background-image: url(/mem/resources/images/icon_payment-7c0243833fb3d0c55771019c8abbfc36.png);
}
.link-icon-email::before {
  background-image: url(/mem/resources/images/icon_email-b48e3edc7e3095552bfe0d90f351f722.png);
}
.link-icon-certification::before {
  background-image: url(/mem/resources/images/icon_certification-db76d09f0b8a4b22e3562387df2a40f8.png);
}
.link-icon-billing::after,
.link-icon-payment::after,
.link-icon-email::after,
.link-icon-certification::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}

/* btn
============================================*/
button:focus,
.btn-item:focus,
.btn-item-primary:focus,
.btn-item-download:focus,
.btn-item-pdf:focus,
.btn-item-csv:focus,
.btn-item-primary-disabled:focus,
.btn-item-disabled:focus,
.btn-item-docomo:focus,
.btn-item-more:focus,
.btn-all-check:focus,
.btn-all-cancel:focus {
  border: 2px solid #333;
}
.btn-wrap {
  margin-top: 20px;
}
.btn {
  display: flex;
  justify-content: center;
}

.btn-item1 {
  display: inline-block;
  max-width: 265px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  height: 50px;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  background-color: #CCFFCC;
}

.btn-item,
.btn-item-primary,
.btn-item-download,
.btn-item-pdf,
.btn-item-csv,
.btn-item-primary-disabled,
.btn-item-disabled,
.btn-item-docomo,
.btn-item-docomo-disabled,
.btn-item-more {
  display: inline-block;
  max-width: 265px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  height: 50px;
  margin-top: 20px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.btn-alls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-all-check,
.btn-all-cancel {
  min-width: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 8px;
  padding: 4px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  border: 1px solid #03829e;
  color: #03829e;
}
.btn-external {
  display: inline-block;
  padding: 20px 30px;
  position: relative;
  border: 1px solid #333;
}
.btn-external .btn-item-adobe {
  border: 1px solid #333;
}
.btn-external::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center;
  margin-left: 0.5em;
  transform: translateY(2px);
  right: 5px;
  bottom: 10px;
}
.btn-item:hover,
.btn-item-primary:hover,
.btn-item-download:hover,
.btn-item-pdf:hover,
.btn-item-csv:hover,
.btn-item-docomo:hover,
.btn-item-more:hover,
.btn-all-check:hover,
.btn-all-cancel:hover {
  opacity: 0.8;
  cursor: pointer;
}
.btn-item,
.btn-item-more {
  border: 1px solid #03829e;
  color: #03829e;
}
.btn-item-primary,
.btn-item-download,
.btn-item-pdf,
.btn-item-csv {
  border: 1px solid #03829e;
  color: #03829e;
  background: #fff;
  position: relative;
  padding-left: 55px;
  padding-right: 55px;
}
.bg-single .btn-item-primary,
.bg-single .btn-item-download,
.bg-single .btn-item-pdf,
.bg-single .btn-item-csv {
  background: #03829e;
}
.btn-item-download,
.btn-item-pdf,
.btn-item-csv {
  font-size: 1.3rem;
}
.btn-item-primary::before,
.btn-item-primary::after,
.btn-item-pdf::before,
.btn-item-pdf::after,
.btn-item-csv::before,
.btn-item-csv::after,
.btn-item-download::before,
.btn-item-download::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 40px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background: linear-gradient(90deg, #10b8e0, #28db91);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn-item-pdf::before,
.btn-item-pdf::after,
.btn-item-csv::before,
.btn-item-csv::after,
.btn-item-download::after {
  width: 16px;
  height: 40px;
  background-size: 20px;
}
.btn-item-primary::before {
  left: 5px;
}
.btn-item-primary::after {
  right: 5px;
}
.btn-item-pdf::before,
.btn-item-download::before,
.btn-item-csv::before {
  width: 20px;
  height: 50px;
  left: 3px;
  padding-top: 5px;
  padding-left: 18px;
  transform: translateY(-50%) scale(0.8);
}
.btn-item-pdf::before {
  content: url(/mem/resources/images/icon_pdf_b-c38c070176fb31ccaef044474404e019.png);
}
.btn-item-csv::before {
  content: url(/mem/resources/images/icon_csv_b-6e0d75acdc6271a16496f70472bf305d.png);
}
.btn-item-pdf::after,
.btn-item-csv::after,
.btn-item-download::after {
  direction: rtl;
  content: url(/mem/resources/images/icon_download_b-c641e755751cf3f0c8d862980aa9eb55.png);
  background: linear-gradient(90deg, #10b8e0, #28db91);
  width: 30px;
  height: 80px;
  right: -2px;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 10px;
  transform: translateY(-50%) scale(0.5);
}
.btn-item-primary-disabled {
  color: #fff;
  background: #ccc;
  pointer-events: none;
  border: 1px solid #ccc;
}
.btn-item-pdf.btn-item-primary-disabled,
.btn-item-csv.btn-item-primary-disabled {
  color: #333;
  background: #ccc;
  color: #fff;
}
.btn-item-primary-disabled.btn-item-pdf::before,
.btn-item-primary-disabled.btn-item-csv::before {
  background: #ccc;
  padding-left: 23px;
}
.btn-item-primary-disabled.btn-item-pdf::before {
  content: url(/mem/resources/images/icon_pdf_w-cc763c140c21875c62d1ff685ddbbabe.png);
}
.btn-item-primary-disabled.btn-item-csv::before {
  content: url(/mem/resources/images/icon_csv_w-d8092fa08b8f437d3b015c29d23df1d6.png);
}
.btn-item-disabled {
  color: #aaa;
  border: 1px solid #ccc;
  pointer-events: none;
}
.btn-item-primary-disabled:hover,
.btn-item-disabled:hover,
.btn-item-docomo-disabled:hover {
  opacity: 1;
  cursor: not-allowed;
}
.btn-item-primary-disabled::after {
  display: none !important;
}
.btn-item-docomo {
  background-color: #cc0033;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  justify-content: space-between;
  height: 40px;
}
.btn-item-docomo-login::before {
  content: '';
  display: inline-block;
  width: 48px;
  height: 40px;
  background-size: 100%;
  background-image: url(/mem/resources/images/icon_docomo-cad258d1848a778af148c2fe1311e324.png);
  background-repeat: no-repeat;
}
.btn-item-docomo-login::after {
  content: 'dアカウントでログイン';
  display: inline-block;
  width: 80%;
}
.btn-item-docomo-apply::before {
  content: '';
  display: inline-block;
  width: 48px;
  height: 40px;
  background-size: 100%;
  background-image: url(/mem/resources/images/icon_docomo-cad258d1848a778af148c2fe1311e324.png);
  background-repeat: no-repeat;
}
.btn-item-docomo-apply::after {
  content: 'dアカウントでお申し込み';
  display: inline-block;
  width: 80%;
}
.btn-item-docomo-disabled {
  background-color: #ccc;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 0;
  padding-right: 30px;
  padding-left: 0;
  justify-content: space-between;
  height: 40px;
  pointer-events: none;
}
.btn-item-docomo-disabled::before {
  content: '';
  display: inline-block;
  width: 48px;
  height: 40px;
  background-size: 100%;
  background-image: url(/mem/resources/images/icon_docomo_disabled-9bf15ce51520456021d19b52a44b0520.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media all and (-ms-high-contrast: none) {
  .btn-item-primary,
  .btn-item-primary-disabled {
    padding-bottom: 4px;
  }
  .btn-item-docomo,
  .btn-item-docomo-disabled {
    padding-top: 11px;
    padding-bottom: 5px;
  }
  .btn-item-docomo::before,
  .btn-item-docomo-disabled::before {
    transform: translateY(-3px);
  }
  .box-shadow-inner {
    padding-bottom: 15px;
  }
    .btn-item {
        padding-top: 16px;
    }
}
.btn-item-more {
  min-width: 0;
  max-width: 265px;
  width: 100%;
  position: relative;
  padding-right: 30px;
}
.btn-item-more::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #03829e transparent transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.btn-item-more.is-active {
  color: #7b7575;
  border: 1px solid #7b7575;
}
.btn-item-more.is-active::after {
  border-color: #7b7575 transparent transparent;
}
.btn-item-adobe {
  width: 158px;
}
.l-grids-btn {
  display: flex;
}
.l-grids-btn-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-grids-btn .btn {
  width: 50%;
}
.l-grids-btn .btn:first-child {
  margin-right: 15px;
}
.cancellation .btn-item {
  font-size: 1.2rem;
  min-height: 35px;
  height: auto;
}
.l-sideNav .btn-item,
.l-sideNav .btn-item-primary,
.l-sideNav .btn-item-download,
.l-sideNav .btn-item-pdf,
.l-sideNav .btn-item-csv,
.l-sideNav .btn-item-primary-disabled,
.l-sideNav .btn-item-disabled,
.l-sideNav .btn-item-docomo,
.l-sideNav .btn-item-docomo-disabled,
.l-sideNav .btn-item-more {
  min-width: 232px;
}
.l-sideNav .btn-item-docomo,
.l-sideNav .btn-item-docomo-disabled {
  font-size: 1.4rem;
}
.l-sideNav .link-external {
  padding: 0;
  text-indent: 0;
  position: relative;
  display: block;
}
.l-sideNav .link-external::before {
  display: none;
}
.l-sideNav .link-external::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/mem/resources/images/icon_link_external-dfa6946a5cc4db61f5761b7be4e6a3da.png);
  background-repeat: no-repeat;
  background-size: 0.8em;
  background-position: center bottom;
  margin-left: 0.6em;
}
.l-sideNav .link-external_arrow::after {
  height: 12px;
  margin-left: 0.3em;
  background-size: 5px 7px;
  background-position: center;
  background-image: url(/mem/resources/images/icon_link_external_arrow-d00f75da9d1bcdd5fefb3faf52946ce0.png);
  transform: translateY(0);
}
.banner .link-external::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-size: 1em;
}
@media screen and (min-width: 768px) {
  .cancellation .btn-item {
    min-width: 175px;
  }
  .btn-alls .btn {
    margin: 0 2.5px;
  }
  .btn-alls .btn-all-check,
  .btn-alls .btn-all-cancel {
    min-width: 54px;
    padding: 4px 8px;
  }
}

@media screen and (max-width: 767px) {
  .banner .link-external::after {
    right: 1px;
    bottom: 5px;
    background-size: 0.8em;
  }
  .btn-item-primary,
  .btn-item-primary-disabled,
  .btn-item-download,
  .btn-item-pdf,
  .btn-item-csv {
    padding: 15px 40px;
  }
}

/* image
============================================*/
.image-wrap {
  margin-top: 24px;
}
.image-half {
  width: 50%;
}

/* required-count
============================================*/
.required-count {
  width: 100%;
  padding: 0 4%;
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 10;
}
.required-count-inner {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .required-count {
    width: 277px;
    padding: 0;
    right: 10px;
  }
}

/* accordion
============================================*/
.accordions li:not(:first-of-type) .accordion {
  border-top: 1px solid #c2d3e2;
}
.accordion-title {
  position: relative;
  padding: 15px 50px 15px 20px;
  font-size: 1.5rem;
  transition: 0.4s;
}
.accordion-title:hover {
  cursor: pointer;
  opacity: 0.7;
}
.accordion-title::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.accordion-title.is-active::after {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #000 transparent;
}
.accordion-body {
  display: none;
  padding: 0 20px;
  border-top: 1px solid #c2d3e2;
  background-color: #f4f8fc;
}
.accordion-body.is-active {
  display: block;
}
.accordion-body.accordion-white {
  background-color: #fff;
}
.accordion-inner {
  display: block;
  padding: 20px 0;
}
.accordion-full .accordion-title {
  padding-right: 0;
  padding-left: 0;
}
.accordion-full .accordion-title::after {
  right: 0;
}
.accordion-full .accordion-body {
  padding: 0;
  border-top: none;
  background-color: #fff;
}
.accordion-dot {
  display: flex;
}
.accordion-dot::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  background-color: #ce3030;
  border-radius: 50%;
  margin-left: 20px;
}
.accordion-head {
  cursor: pointer;
}
.accordion-head-arrow {
  position: relative;
  padding-right: 50px;
}
.accordion-head-arrow::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.is-active > .accordion-head-arrow::after {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #000 transparent;
}
.accordion-content {
  display: none;
}
.accordion-content.is-active {
  display: block;
}
.accordion-table-inner {
  border-top: 1px solid #c2d3e2;
}
.accordion-table-inner:first-of-type {
  border: none;
}
.accordion-table-head {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0;
}
.accordion-table-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.accordion-table-price {
  margin: 0;
}
.accordion-table-arrow {
  position: relative;
  padding-right: 35px;
}
.accordion-table-arrow::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.is-active .accordion-table-arrow::after {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #000 transparent;
}
.accordion-table-content {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .btn-item,
  .btn-item1,
  .btn-item-primary,
  .btn-item-download,
  .btn-item-pdf,
  .btn-item-csv,
  .btn-item-primary-disabled,
  .btn-item-disabled,
  .btn-item-more {
    height: auto;
  }
  .btn-item-pdf-lg,
  .btn-item-csv-lg {
    padding: 15px 40px;
  }
}
@media screen and (min-width: 768px) {
  .accordion-title {
    font-size: 1.8rem;
  }
  .accordions .link-box {
    font-size: 1.8rem;
  }
  .accordion-title-sm {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 50px 10px 20px;
  }
}

/* step
============================================*/
.step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.step-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.step-list li {
  width: 100%;
  position: relative;
  padding-bottom: 45px;
  z-index: 5;
}
.step-list li::before,
.step-list li::after {
  content: '';
  display: block;
  position: absolute;
  top: 15px;
  width: calc((100% - 30px) / 2);
  height: 2px;
  background-color: #c2d3e2;
}
.step-list li::before {
  left: 0;
}
.step-list li::after {
  right: 0;
}
.step-list li:first-child:before,
.step-list li:last-child:after {
  display: none;
}
.step-number {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  padding: 6px 0;
  border-radius: 25px;
  background-color: #c2d3e2;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.is-active .step-number {
  background-color: #03829e;
}
.step-text {
  display: block;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  margin-top: 8px;
  font-size: 1.2rem;
  text-align: center;
}
.step-pattern {
  margin-top: 40px;
}
.step-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.step-branch-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.step-branch-inner::before {
  content: '';
  display: block;
  width: 2px;
  height: calc(100% - 75px);
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #c2d3e2;
}
.step-branch-top,
.step-branch-bottom {
  position: relative;
}
.step-branch-bottom {
  margin-top: 45px;
}
.step-branch-title {
  position: absolute;
  top: -24px;
  left: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}
.step-branch .step-list li:first-child:before,
.step-single .step-list li:last-child:after {
  display: block;
}
.step-2-3 .step-single {
  width: 40%;
}
.step-2-3 .step-branch {
  width: 60%;
}
.step-2-3 .step-branch .step-list {
  justify-content: flex-start;
}
.step-2-3 .step-single .step-list li {
  width: 50%;
}
.step-2-3 .step-branch .step-list li {
  width: 33%;
}
.step-1-3 .step-single {
  width: 25%;
}
.step-1-3 .step-branch {
  width: 75%;
}
.step-1-3 .step-branch .step-list {
  justify-content: flex-start;
}
.step-1-3 .step-single .step-list li {
  width: 100%;
}
.step-1-3 .step-branch .step-list li {
  width: 33%;
}
.step-1-1 .step-single {
  width: 40%;
}
.step-1-1 .step-branch {
  width: 60%;
}
.step-1-1 .step-branch .step-list {
  justify-content: flex-start;
}
.step-1-1 .step-single .step-list li {
  width: 100%;
}
.step-1-1 .step-branch .step-list li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .step-text {
    font-size: 1rem;
    transform: scale(0.8);
  }
}

/* input
============================================*/
.input {
  position: relative;
}
.input:not(:first-of-type) {
  margin-top: 30px;
}
.input-notes {
  font-size: 1rem;
  font-weight: bold;
  color: #007cb4;
  text-align: right;
  margin-bottom: 5px;
}
.input-title {
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
}
.input-title:hover {
  cursor: auto;
}
.input-required::after {
  content: '※';
  display: inline-block;
  margin-left: 0.5em;
  color: #007cb4;
  font-size: 1.3rem;
  font-weight: bold;
}
.input-field,
.input-field-select,
.input-field-postal {
  width: 100%;
  border: 1px solid #c2d3e2;
  padding: 8px 12px;
  margin-top: 20px;
}
textarea.input-field {
  border: 1px solid #c2d3e2;
  padding: 8px;
  resize: vertical;
}
.input-field-postal {
  width: 100%;
  border: 1px solid #c2d3e2;
  margin-top: 8px;
}
.input-field::placeholder,
.input-field-postal::placeholder,
.input-field-select::placeholder {
  font-size: 1.2rem;
  color: #bbb;
}
.input-postal {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.input-field-postal {
  flex-basis: 50%;
}
.input-field-select {
  position: relative;
  padding-right: 25px;
  background-image: url(/mem/resources/images/icon_arror_down-aaeb64b4420930fa1f1111526ac91647.png);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: right 10px center;
}
.input-field-select:focus {
  border: 2px solid #333;
}
.input-field-select:hover {
  cursor: pointer;
}
.input-postal-link-wrap {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.input-info {
  position: relative;
}
.input-info-icon,
.input-info-icon-inline {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
}
.input-info-icon-inline {
  position: static;
  margin-left: 10px;
}
.input-info-icon:hover,
.input-info-icon-inline:hover {
  cursor: pointer;
}
.input-info-icon-block {
  position: relative;
}
.input-info-icon-title {
  text-align: right;
}
.input-info-icon-title img {
  width: 25px;
  height: 20px;
  padding-left: 5px;
}
.input-info-icon-block .title-info {
  margin-top: 0;
  right: 0;
}
.input-info-body,
.input-info-focus-body {
  display: none;
  background-color: #fff;
  margin-top: 13px;
  border: 1px solid #000;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  z-index: 2;
}
.input-info-focus-body {
  position: relative;
}
.input-info-body.is-active,
.input-info-focus-body.is-active {
  display: block;
  width: 100%;
}
.input-info-body-sm.is-active {
  width: calc(100% - 40px);
}
.input-info-body-inner,
.input-info-focus-body-inner {
  position: relative;
  padding: 15px;
}
.input-info-body-inner::after,
.input-info-focus-body-inner::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #000 transparent;
  position: absolute;
  top: -10px;
}
.hide-triangle {
  margin-top: 8px;
}
.hide-triangle .input-info-body-inner::after,
.hide-triangle .input-info-focus-body-inner::after {
  display: none;
}
.input-info-body-inner::after {
  right: -1px;
}
.input-info-focus-body-inner::after {
  left: -1px;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
}
.input-info-body.input-info-body-sample {
  position: static;
}
.title-info {
  margin-top: -12px;
}

/* is-disabled */
.is-disabled-input p,
.is-disabled-input .input-title,
.is-disabled-input .checkbox-parts,
.is-disabled-input .definition-title,
.is-disabled-input .link {
  color: #aaa;
}
.is-disabled-input input {
  pointer-events: none;
}
.is-disabled-input .link {
  pointer-events: none;
  opacity: 1;
}
.is-disabled-input .link:hover {
  cursor: default;
}
.is-disabled-input .input-field,
.is-disabled-input .input-field-postal {
  border: 1px solid #ccc;
}
.is-disabled-input .input-field::placeholder,
.is-disabled-input .input-field-postal::placeholder {
  color: #aaa;
}
.is-disabled-input .input-field:hover,
.is-disabled-input .input-field-postal:hover,
.is-disabled-input .checkbox-parts:hover {
  cursor: not-allowed;
}
.is-disabled-input[data-change-disabled-target] .input-required::after {
  content: none;
}
.input-title-blk {
  color: #333 !important;
}

/* is-error */
.is-error-input .input-title {
    color: #ce3030 !important;
}
.is-error-input .input-field,
.is-error-input .input-field-postal,
.is-error-input .input-field-select {
    border: 2px solid #ce3030;
}
.input-error-text {
    color: #ce3030 !important;
    font-size: 1.3rem;
    margin-top: 5px;
}
.is-error-input-title {
    color: #ce3030;
}
.is-error-input-field {
    border: 2px solid #ce3030;
}

/* is-checked */
.is-checked-input .input-field,
.is-checked-input .input-field-select,
.is-checked-input .input-field-postal {
    border: 2px solid #333333;
}
.is-checked-input textarea.input-field {
    border: 2px solid #333333;
}

/* is-hide-input */
.is-hide-input {
  display: none;
}

/* radio */
.input-field-radios {
  margin-top: 20px;
}
.input-field-radios li {
  margin-top: 10px;
}
.input-radio {
  display: none;
}
.input-radio + label {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}
.input-radio + label::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #d9e2ea;
  border-radius: 50%;
}
.input-radio:checked + label::before {
  border: 2px solid #333;
}
.input-radio:checked + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}

/* checkbox */
.input-field-checkboxes-wrap {
  margin-top: 20px;
}
.input-field-checkboxes li {
  margin-top: 10px;
}
.input-checkbox {
  display: none;
}
.checkbox-parts {
  display: block;
  padding-left: 2em;
  position: relative;
}
.checkbox-parts-reverse {
  padding-left: 0;
  padding-right: 2em;
}
.checkbox-parts:hover {
  cursor: pointer;
}
.checkbox-parts::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  margin-top: -0.75em;
  border: 2px solid #d9e2ea;
}
.checkbox-parts-reverse::before {
  left: auto;
  right: 0;
}
.input-checkbox:checked + .checkbox-parts::before {
  background-color: #000;
  border: 2px solid #000;
}
.input-checkbox:checked + .checkbox-parts::after {
  content: '';
  display: block;
  position: absolute;
  top: 46%;
  left: 0.5em;
  width: 0.46em;
  height: 0.8em;
  transform: translateY(-50%) rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.input-checkbox:checked + .checkbox-parts-reverse::after {
  left: auto;
  right: 0.5em;
}
.input-checkbox-terms {
  margin-top: 15px;
}
.input-add {
  font-weight: bold;
  transition: 0.4s;
}
.input-add:hover {
  cursor: pointer;
  opacity: 0.7;
}
.input-add::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-image: url(/mem/resources/images/icon_add-76e0c570a5c0d8fadee3afa9860afbfa.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.5em;
  transform: translateY(5px);
}
.input-add.is-disabled {
  color: #aaa;
  pointer-events: none;
  text-decoration: none;
}
.input-add.is-disabled::after {
  background-image: url(/mem/resources/images/icon_add-disabled-095d780f46522625169366c7eaaa60ca.png);
}

/* ime */
.ime-disabled {
  ime-mode: disabled;
}

/* modal
============================================*/
.remodal-close {
  top: -35px;
  left: auto;
  right: 0;
  color: #fff;
}
.remodal-close:before {
  font-size: 30px;
}
.remodal-close:hover,
.remodal-close:focus {
  color: #fff;
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 10002;
}
.remodal-overlay:hover,
.remodal-wrapper:hover {
  cursor: pointer;
}
.remodal-wrapper {
  padding: 40px 4% 0;
  z-index: 10002;
}
.remodal {
  margin-bottom: 40px;
}
.remodal:hover {
  cursor: default;
}
.small-modal {
  max-width: 550px;
  padding: 35px 0;
}
.small-modal-inner {
  padding: 0 15px 0 35px;
  max-height: 550px;
  overflow-y: scroll;
}
.modal-section {
  display: none;
}
.modal-section.is-active {
  display: block;
}
.loadingModal {
  display: none;
  max-width: 600px;
  box-sizing: border-box;
  width: 100%;
  color: #2b2e38;
  padding: 30px 20px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10010;
  text-align: center;
}

#loadingModal-bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
  z-index: 10005;
}

/* list
============================================*/
.list-wrap {
  margin-top: 16px;
}
.list li:not(:first-of-type) {
  margin-top: 1em;
}
.list .list {
  margin-top: 1em;
  padding-left: 2rem;
}
.list-privacy,
.list-disc,
.list-decimal,
.list-notes {
  padding-left: 2rem;
  list-style: none;
}
.list-mark {
  padding-left: 2.8rem;
  list-style: none;
}
.list-privacy:not(:first-child),
.list-disc:not(:first-child),
.list-decimal:not(:first-child),
.list-notes:not(:first-child),
.list-decimalnotes:not(:first-child),
.list-mark:not(:first-child),
li > .list-privacy,
li > .list-disc,
li > .list-decimal,
li > .list-notes,
li > .list-decimalnotes,
li > .list-mark {
  margin-top: 1em;
}
.list-privacy > li,
.list-disc li,
.list-decimal > li,
.list-notes li,
.list-decimalnotes li,
.list-mark li {
  margin-top: 1em;
  position: relative;
}
.list-privacy > li:first-of-type,
.list-disc li:first-of-type,
.list-decimal > li:first-of-type,
.list-notes li:first-of-type,
.list-decimalnotes li:first-of-type,
.list-mark li:first-of-type {
  margin-top: 0;
}
.list-disc > li::before {
  content: '・';
  display: inline-block;
  position: absolute;
  left: -2rem;
}
.list-border-item {
  display: block;
  border-top: 1px solid #c2d3e2;
  padding: 15px 0;
}
.list-border li:first-of-type .list-border-item,
.list-border li:first-of-type.list-border-item {
  border: none;
}
.list-border-link li {
  padding: 0;
}
.list-border-link .list-border-item {
  padding-right: 50px;
  padding-left: 20px;
  position: relative;
}
.list-border-link .list-border-item::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.list-border-link .list-link-external .link-external {
  display: inline;
}
.list-border-link .list-link-external::after {
  border: none;
}
.list-privacy > li {
  list-style-type: decimal;
}
.list-privacy > li:first-line {
  font-weight:bolder;
}
.list-decimal > li {
  list-style-type: decimal;
}
.list-notes,
.list-decimalnotes {
  color: #707070;
  position: relative;
}
.list-link-external {
  position: relative;
}
.list-notes > li::before {
  content: '※';
  display: inline-block;
  position: absolute;
  left: -2rem;
}
.list-decimalnotes {
  counter-reset: item;
  list-style-type: none;
  padding-left: 2.8rem;
}
.list-decimalnotes > li::before {
  counter-increment: item 1;
  content: '※' counter(item);
  display: inline-block;
  position: absolute;
  left: -2.8rem;
}
.list-mark > li > .mark {
  display: inline-block;
  position: absolute;
  left: -2.8rem;
}

/* hr
============================================*/
.hr {
  margin: 56px 0 32px;
  border-color: #c2d3e2;
}

/* news
============================================*/
.news li {
  margin-top: 20px;
}
.news li:first-of-type {
  margin-top: 0;
}
.news-date {
  font-size: 1.3rem;
  display: flex;
}
.news-new {
  font-size: 1rem;
  font-weight: bold;
  color: #ce3030;
  transform: scale(0.8);
  margin-left: 10px;
}
.news-text {
  margin-top: 2px;
}

/* table
============================================*/
.table {
  width: 100%;
}
.table th,
.table td {
  padding: 10px 10px 10px 0;
}
.shorten-table.table th,
.shorten-table.table td {
  padding-top: 0;
}
.table-sm th,
.table-sm td {
  padding: 5px 5px 5px 0;
}
.table-sm th {
  font-size: 1rem;
  padding-top: 7px;
}
.table-sm td {
  font-size: 1.3rem;
}
.table-certification {
  width: 100%;
}
.table-certification tr {
  border-bottom: 1px solid #c2d3e2;
}
.table-certification thead,
.table-billing-lg thead,
.table-billing-sm thead {
  border-bottom: 2px solid #c2d3e2;
}
.table-certification th {
  text-align: center;
  vertical-align: bottom;
  font-size: 1.2rem;
  padding: 10px;
}
.table-certification td {
  font-size: 1.3rem;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
.table-certification td:nth-of-type(1) {
  padding: 15px 0;
  vertical-align: middle;
}
.table-certification .input-checkbox + .checkbox-parts {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #d9e2ea;
  vertical-align: middle;
}
.table-certification .input-checkbox:checked + .checkbox-parts {
  background-color: #000;
  border: 2px solid #000;
}
.table-certification .checkbox-parts {
  padding-left: 1.5em;
  padding-left: 0;
}
.table-certification .input-checkbox:checked + .checkbox-parts::after {
  left: 0.4em;
}
.table-certification .checkbox-parts::before,
.table-certification .checkbox-parts::after {
  display: none;
}
.table-billing-lg,
.table-billing-sm {
  width: 100%;
}
.table-billing-lg tr,
.table-billing-sm tr {
  border-top: 1px solid #c2d3e2;
}
.table-billing-lg tr:first-of-type,
.table-billing-sm tr:first-of-type,
.table-billing-sm tr.remarks-cell {
  border: none;
}
.table-billing-lg th,
.table-billing-lg td,
.table-billing-sm th,
.table-billing-sm td {
  padding: 10px 0;
}
.table-billing-lg th {
  font-size: 1.3rem;
}
.table-billing-sm thead {
  font-size: 1rem;
  color: #666666;
}
.table-billing-sm tbody {
  font-size: 1.2rem;
}
.table-billing-lg td,
.table-billing-sm td {
  padding: 10px;
}
.table-billing-sm .remarks-cell td {
  padding-top: 0;
}
.billing-title-lg {
  font-size: 2rem;
  font-weight: bold;
  margin: 32px 0 20px 0;
  padding-bottom: 2px;
  border-bottom: 2px solid #333333;
}
.billing-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 32px;
  padding-bottom: 4px;
  border-bottom: 2px solid #333333;
}
.billing-title-lg p,
.billing-title p {
  margin-top: 0;
}
.billing-sum {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 30px;
}
.billing-sum-sm {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .table-certification th:nth-of-type(1),
  .table-certification td:nth-of-type(1) {
    max-width: 105px;
  }
}

/* pagination
============================================*/
.pagination-wrap {
  margin-top: 24px;
}
.pagination,
.pagination-light {
  display: flex;
  justify-content: space-between;
  max-width: 344px;
  margin: auto;
}
.pagination-prev,
.pagination-next {
  position: relative;
  display: block;
  width: 50px;
}
.pagination-prev::before,
.pagination-next::before {
  border-right: 1.5px solid #333;
  border-top: 1.5px solid #333;
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
}
.pagination-light .pagination-prev::before,
.pagination-light .pagination-next::before {
  border-right: 1.5px solid #fff;
  border-top: 1.5px solid #fff;
}
.pagination-prev::before {
  left: 7px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.pagination-next::before {
  right: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pagination-page {
  color: #666666;
  padding: 0 15px;
}
.pagination-light .pagination-page {
  color: rgba(255, 255, 255, 0.6);
}
.pagination-page.is-active {
  color: #333333;
  font-weight: bold;
}
.pagination-light .pagination-page.is-active {
  color: #fff;
}
.pagination-select {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pagination-select .pagination-pages {
  display: flex;
  align-items: center;
}
.pagination-select .input-field-select {
  margin: 0;
  font-weight: bold;
}
.pagination-select .pagination-fullpage {
  display: inline-block;
  color: #666;
  margin-left: 5px;
  min-width: 24px;
}
.pagination-select .pagination-fullpage::before {
  content: '/';
  display: inline-block;
  margin-right: 5px;
}
.pagination-select .pagination-prev,
.pagination-select .pagination-next {
  color: #666;
  font-weight: bold;
  text-decoration: underline;
}
.pagination-select .pagination-prev.is-disabled,
.pagination-select .pagination-next.is-disabled {
  color: #777771;
  pointer-events: none;
  text-decoration: none;
}
.pagination-select .pagination-prev {
  margin-right: 20px;
  padding-left: 14px;
}
.pagination-select .pagination-next {
  margin-left: 20px;
  padding-right: 14px;
}
.pagination-select .pagination-prev::before,
.pagination-select .pagination-next::before {
  border-right: 1.5px solid #666;
  border-top: 1.5px solid #666;
}
.pagination-select .pagination-prev.is-disabled::before,
.pagination-select .pagination-next.is-disabled::before {
  border-right: 1.5px solid #777771;
  border-top: 1.5px solid #777771;
}

/* call
============================================*/
.call-content {
  text-align: center;
  margin-top: 20px;
}
.call-content:first-of-type {
  margin-top: 0;
}
.call-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.call-freedial-icon {
  width: 30px;
  margin-right: 5px;
}
.call-content-lg .call-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.call-content-sm .call-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.call-number {
  font-weight: bold;
  margin-right: 5px;
}
.call-content-lg .call-number {
  font-size: 2.8rem;
}
.call-content-sm .call-number {
  font-size: 2rem;
}
.call-fee {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0;
}
.call-notes {
  font-size: 1.3rem;
  color: #707070;
  text-align: center;
  margin-top: 20px;
}

/* definition
============================================*/
.definition-box-wrap {
  margin-top: 40px;
}
.definition-table-scroll {
  overflow-x: auto;
}
.definition-table-scroll .definition-table {
  white-space: nowrap;
}
.definition-table {
  width: 100%;
  border-right: 2px solid #4884ba;
  border-bottom: 2px solid #4884ba;
}
.definition-table th,
.definition-table td {
  text-align: center;
  vertical-align: middle;
  padding: 4px;
  border-top: 2px solid #4884ba;
  border-left: 2px solid #4884ba;
}
.definition-table-scroll .definition-table th,
.definition-table-scroll .definition-table td {
  padding: 4px;
}
.definition-table .bg-lightDanger {
  background-color: #fde0d6;
}
.definition-table .text-danger,
.definition-table-text-danger {
  color: #be0070;
}
.definition-table-onebillSubLineNo {
  display: block;
  background-color: #d3dbef;
  color: #be0070;
}
.border-billing {
  border: #95ca65 5px solid;
  padding: 5px;
}
.definition-box {
  margin-top: 10px;
  border: 1px solid #e6edf3;
  border-top: none;
}
.definition-box .definition-box {
  margin-top: 0;
  border: none;
}
.definition-box-title {
  background-color: #e6edf3;
  padding: 10px;
  text-align: center;
}
.definition-box .definition-box .definition-box-title {
  background-color: #f4f8fc;
  padding: 5px;
}
.definition-box-inner {
  border-top: 1px solid #e6edf3;
}
.definition-box-body:first-of-type .definition-box-inner {
  border-top: none;
}
.definition-box-inner {
  padding: 10px;
}
.definition-box .definition-box .definition-box-inner {
  padding: 5px;
}
.definition {
  margin-top: 30px;
}
.definition:first-of-type {
  margin-top: 0;
}
.definition-title {
  font-size: 1.3rem;
}
.definition-title-lg {
  font-size: 1.6rem;
}
.definition-body {
  margin-top: 10px;
}
.definition-box-noBorder,
.definition-box-noBorder-wide {
  margin-top: 20px;
}
.definition-box-noBorder .definition-box-title,
.definition-box-noBorder-wide .definition-box-title {
  background-color: #e6edf3;
  padding: 10px;
  text-align: left;
}
.definition-box-noBorder .definition-box-inner,
.definition-box-noBorder-wide .definition-box-inner {
  padding: 10px 0;
}
.definition-box-noBorder-wide .definition-box-title {
  width: 100vw;
  transform: translateX(-4%);
  padding-right: 4%;
  padding-left: 4%;
}
@media screen and (min-width: 768px) {
  .definition-box-noBorder-wide .definition-box-title {
    width: 100%;
    transform: translateX(0);
    padding: 10px;
  }
  .definition-box-noBorder .definition-box-inner,
  .definition-box-noBorder-wide .definition-box-inner {
    padding: 10px;
  }
}

/* slider
============================================*/
.slider-wrap {
  margin-top: 32px;
}
.slider {
  margin: auto;
  margin: 50px calc(-100vw * 0.04) 24px;
}
.slider-item {
  margin: 0 7.5px;
}
.slider-item img {
  margin: 0 auto;
}
.slick-dots {
  bottom: -32px;
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button {
  position: relative;
}
.slick-dots li button:before {
  display: block;
  opacity: 0.4;
  color: #000;
  transform: scale(0.6);
  background-color: #000;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.slick-prev {
  left: -28px;
  z-index: 10;
}
.slick-next {
  right: -28px;
  z-index: 10;
}
.slick-prev:before,
.slick-next:before {
  content: '';
  border-right: 1.5px solid #333;
  border-top: 1.5px solid #333;
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  opacity: 1;
}
.slick-prev:before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  top: 4px;
  right: 0;
}
.slick-next:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 4px;
  left: 0;
}
.slick-dotted.slick-slider {
  margin-bottom: 10px;
}
.slider-controller-btn {
  display: flex;
  width: 54px;
  height: 26px;
  border: 1px solid #333;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-left: calc(2% + 7.5px);
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.slider-controller-btn span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 4px solid #333;
  border-right: 4px solid #333;
}
.slider-controller-btn.is-stop span {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10.4px;
  border-color: transparent transparent transparent #333;
}
@media screen and (min-width: 768px) {
  .slider {
    width: 84%;
    padding: 0;
    margin: 0 auto;
  }
  .slider-controller-btn {
    margin-left: calc(8% + 7.5px);
  }
}

/* margin
============================================*/
.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}

.mr-0 {
  margin-right: 0 !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mr-50 {
  margin-right: 50px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}

.ml-0 {
  margin-left: 0 !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.ml-50 {
  margin-left: 50px !important;
}

.m-0 {
  margin: 0 !important;
}
.m-5 {
  margin: 5px !important;
}
.m-10 {
  margin: 10px !important;
}
.m-15 {
  margin: 15px !important;
}
.m-20 {
  margin: 20px !important;
}
.m-25 {
  margin: 25px !important;
}
.m-30 {
  margin: 30px !important;
}
.m-35 {
  margin: 35px !important;
}
.m-40 {
  margin: 40px !important;
}
.m-45 {
  margin: 45px !important;
}
.m-50 {
  margin: 50px !important;
}

/* padding
============================================*/
.pt-0 {
  padding-top: 0 !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pt-50 {
  padding-top: 50px !important;
}

.pr-0 {
  padding-right: 0 !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.pr-50 {
  padding-right: 50px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}

.pl-0 {
  padding-left: 0 !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.pl-50 {
  padding-left: 50px !important;
}

.p-0 {
  padding: 0 !important;
}
.p-5 {
  padding: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.p-35 {
  padding: 35px !important;
}
.p-40 {
  padding: 40px !important;
}
.p-45 {
  padding: 45px !important;
}
.p-50 {
  padding: 50px !important;
}

/* border
============================================*/
.border-none {
  border: none !important;
}
.border-top {
  border-top: 1px solid #c2d3e2 !important;
}
.border-right {
  border-right: 1px solid #c2d3e2 !important;
}
.border-bottom {
  border-bottom: 1px solid #c2d3e2 !important;
}
.border-left {
  border-left: 1px solid #c2d3e2 !important;
}

/* flex
============================================*/
.row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}

/* height
============================================*/
.height-auto {
  height: auto;
}

/* messagesPanel
============================================*/
.msg-panel-info {
  color: #333333;
}
.msg-panel-warning {
  color: #ce3030;
}
.msg-panel-error {
  color: #ce3030;
}
.cancellation-close {
  margin-bottom: 40px;
}

/* proxy
============================================*/
.l-main-proxy {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding-top: 64px;
}
.l-contents-proxy {
  padding: 8% 4%;
  overflow: hidden;
}

@media screen and (min-width: 1070px) {
  .l-main-proxy {
    padding-top: 76px;
  }
  .main-inner-proxy {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
    padding-right: 4%; 
    padding-bottom: 0;
    padding-left: calc((100% - 1070px) / 2 + 43px);
  }
  .main-inner-proxy-ipad {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
    padding-right: 4%; 
    padding-bottom: 0;
    padding-left: calc((100% - 1070px) / 2 + 43px);
  }
  .l-contents-proxy {
    flex-basis: calc(100% - 304px + 20px - 8%);
    padding: 80px 10px 40px;
    position: relative;
    z-index: 1000;
  }
}

@media screen and (max-width: 1070px) {
  .l-main-proxy {
    padding-top: 76px;
  }
  .main-inner-proxy {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 4% 0 4%;
  }
  .main-inner-proxy-ipad {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 4% 0 4%;
  }
  .l-contents-proxy {
    flex-basis: calc(100% - 304px + 20px - 8%);
    padding: 80px 10px 40px;
    position: relative;
    z-index: 1000;
  }
}

/* modalHeader
============================================*/
.remodal-header {
  position: fixed;
  background-color: #387022;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 5% 5%;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .remodal-header {
    padding: 2% 5%;
  }
}

.link-disp {
  text-align: left; 
  font-size: 14px;
}

.list-box {
  margin-top: 20px;
  border: 1px solid #c2d3e2;
  background-color: #F4F9F1;
  padding: 2%;
  font-weight: bold;
}

.list-box a {
  text-decoration: underline;
  color: blue;
}

.banner-link {
  border: 1px solid #c2d3e2;
  padding: 4%;
}

.banner-link a {
  text-decoration: underline;
  color: red;
}

.modal-top {
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  .modal-top {
    padding-top: 20px;
  }
}

.banner.dis {
  display: show;
}

@media screen and (min-width: 768px) {
  .banner.dis {
    display: none;
  }
}

/* invoice-side-menu
============================================*/
.invoice-list .link-box {
  border-top: 1px solid #c2d3e2;
  padding: 15px 50px 15px 20px;
  border-bottom: 1px solid #c2d3e2;
}

.invoice-list .guide {
  border-top: 1px solid #c2d3e2;
  padding: 15px 50px 15px 20px;
}

.invoice-list-sub .item div {
  padding: 10px 50px 10px 20px;
  margin-left: 20px;
  border-left: 1px solid #c2d3e2;
}

.invoice-list-sub .item:not(:first-child) div{
  border-top: 1px solid #c2d3e2;
}

.invoice-list-sub .item a{
  border-top: 1px solid #c2d3e2;
  padding: 10px 50px 10px 20px;
  margin-left: 20px;
  border-left: 1px solid #c2d3e2;
  position: relative;
  display: block;
}

.invoice-list-sub .item a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.invoice-list-sub .accordion-title{
  font-size: 1.5rem;
  padding: 0px;
  margin-left: 20px;
  border-left: 1px solid #c2d3e2;
}

.invoice-list-sub li:not(:first-of-type) .accordion-title {
  border-top: 1px solid #c2d3e2;
}


.invoice-list-sub .accordion-title p{
  padding: 10px 50px 10px 20px;
}

.accordions li:not(:first-of-type) .invoice-list-sub .accordion{
  border:none;
}

.invoice-list-sub .accordion-body{
  padding: 0px;
  border:none;
  margin-left: 20px;
}

.invoice-list-sub .accordion-body ul li{
  padding: 8px 50px 8px 30px;
  position: relative;
  border-top: 1px solid #c2d3e2;
  border-left: 1px solid #c2d3e2;
}

.invoice-list-sub .accordion-body ul li::after{
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.box-notice {
  margin: 5px;
  display: flex;
}
.box-notice a {
  display: inline-block;
  width: 70%;
}
.box-notice-text {
  margin: auto;
  width: 140px;
  height: auto;
  background: #C8151D;
  color: #fff;
  border-radius: 2px;
  padding: 15px 10px;
}

.box-notice p {
  margin-top: 1px;
}
.box-notice-p {
  margin-left: 10px;
}
.text-blue {
  color: #3A569F;
}