@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,700&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  min-width: 100%;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #313131;
  background-color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

ol > li,
ul > li {
  list-style: none;
}

table {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
table tr,
table th,
table td {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important;
  }
}

img {
  border: 0;
  vertical-align: bottom;
}

iframe {
  border: 0;
}

form input[type=checkbox] {
  display: none !important;
}
form input[type=checkbox] + label {
  background-image: url(../images/common/icon_checkbox-off.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  form input[type=checkbox] + label {
    padding: 0 0 0 3.2rem !important;
    background-position: left bottom 0.1rem;
    background-size: 2rem auto;
  }
}
@media screen and (max-width: 767px) {
  form input[type=checkbox] + label {
    padding: 0 0 0 32px !important;
    background-position: left bottom 1px;
    background-size: 20px auto;
  }
}
form input[type=checkbox]:checked + label {
  background-image: url(../images/common/icon_checkbox-on.svg);
}

@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
p a {
  color: #002855;
  text-decoration: underline;
}
p a:hover {
  text-decoration: unset;
  opacity: unset;
}

.header {
  position: fixed;
  z-index: 90;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 1228px) {
  .header {
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 1227px) {
  .header-inner {
    width: 100%;
    padding: 2rem 1.5rem 1.4rem;
  }
}
@media screen and (min-width: 1228px) {
  .header-inner {
    align-items: center;
    width: 1228px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.header-inner #sp-switch {
  display: none;
}
.header-inner #sp-switch:checked + .humberger:before {
  transform: rotate(45deg) translateY(-0.2rem) translateX(0.4rem);
}
.header-inner #sp-switch:checked + .humberger:after {
  transform: rotate(-45deg) translateY(0.2rem) translateX(0.4rem);
}
.header-inner #sp-switch:checked + .humberger > i {
  opacity: 0;
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav.header-item-menu {
    position: absolute;
    top: 6.8rem;
    right: 0;
    width: 375px;
    height: calc(100vh - 68px);
    transition: 0.3s all;
    overflow-y: auto;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact, .header-inner #sp-switch:checked ~ nav .menu-content {
    position: relative;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact {
    order: 3;
    background-color: rgba(232, 243, 255, 0.95);
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact > li {
    display: block;
    border-bottom: solid 1px #D9D9D6;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact > li > a {
    display: block;
    font-size: 18px;
    line-height: 1;
    padding: 26px 15px;
    color: #002855;
    background-size: auto 14px;
    background-position: center left;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact > li > a:hover {
    opacity: unset;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact > li.download > a {
    padding-left: 40px;
    background-image: url(../images/common/icon_download-navy.svg);
    background-position: center left 18px;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-contact > li.inquirya {
    padding-left: 40px;
    background-image: url(../images/common/icon_mail-navy.svg);
    background-position: center left 15px;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-content {
    order: 2;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-content > li {
    display: block;
    border-bottom: solid 1px #D9D9D6;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner #sp-switch:checked ~ nav .menu-content-title > a {
    display: block;
    box-sizing: border-box;
    padding: 28px 15px;
    font-size: 18px;
    line-height: 1;
    background-color: rgba(0, 40, 85, 0.95);
  }
}
@media screen and (max-width: 1227px) {
  .header-inner .humberger {
    position: relative;
    top: 0.2rem;
    right: 0;
    display: block;
    width: 2.5rem;
    height: 2.2rem;
    cursor: pointer;
  }
  .header-inner .humberger:after, .header-inner .humberger:before {
    content: "";
    position: absolute;
    display: block;
    width: 2.5rem;
    height: 0.2rem;
    background-color: #313131;
    opacity: 1;
    transition: 0.3s all;
  }
  .header-inner .humberger:before {
    top: 0;
    left: 0;
    transform-origin: left top;
  }
  .header-inner .humberger:after {
    bottom: 0;
    left: 0;
    transform-origin: left bottom;
  }
}
@media screen and (max-width: 1227px) {
  .header-inner .humberger > i {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 2.5rem;
    height: 0.2rem;
    background-color: #313131;
    opacity: 1;
    transition: 0.3s all;
  }
}
@media screen and (max-width: 1227px) {
  .header-item-logo {
    width: auto;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-logo {
    width: 460px;
  }
}
.header-item-logo > a {
  display: inline-block;
}
@media screen and (max-width: 1227px) {
  .header-item-logo > a {
    width: auto;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-logo > a {
    width: 100%;
  }
}
.header-item-logo > a:hover {
  opacity: unset;
  text-decoration: none;
}
@media screen and (max-width: 1227px) {
  .header-item-logo > a > img {
    width: auto;
    height: 3.4rem;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-logo > a > img {
    width: 100%;
    height: auto;
  }
}
.header-item-menu {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1227px) {
  .header-item-menu {
    position: absolute;
    right: -100%;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu {
    position: relative;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-contact, .header-item-menu .menu-content {
    text-align: right;
  }
}
.header-item-menu .menu-contact > li a, .header-item-menu .menu-content > li a {
  font-weight: 400;
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-contact > li a, .header-item-menu .menu-content > li a {
    color: #ffffff;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-contact > li a, .header-item-menu .menu-content > li a {
    color: #313131;
  }
}
.header-item-menu .menu-contact > li a:hover, .header-item-menu .menu-content > li a:hover {
  text-decoration: none;
}
.header-item-menu .menu-contact > li {
  box-sizing: border-box;
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-contact > li {
    display: inline-block;
    margin-left: 3rem;
  }
}
.header-item-menu .menu-contact > li > a {
  box-sizing: border-box;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-contact > li > a {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6;
    padding-left: 2em;
    background-size: auto 1.6rem;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-contact > li.download > a {
    padding-right: 0.4rem;
    border-width: 0.4rem;
    border-style: solid;
    border-color: #97999B;
    border-radius: 1rem;
    background-image: url(../images/common/icon_download.svg);
    background-position: center left 0.8rem;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-contact > li.inquiry > a {
    background-position: center left;
    background-image: url(../images/common/icon_mail.svg);
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content {
    margin-top: 1rem;
  }
}
.header-item-menu .menu-content > li {
  position: relative;
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li {
    display: inline-block;
    margin-left: 3rem;
    text-align: left;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li:first-of-type {
    margin-left: unset;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li:hover > label {
    display: block;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li:hover > ul {
    margin-top: 0;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li:hover > ul > li {
    border-bottom: solid 1px #97999B;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li:hover > ul > li > a {
    height: auto;
    padding: 2rem;
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content > li > label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 375px;
    height: 74px;
    background-color: transparent;
    cursor: pointer;
  }
  .header-item-menu .menu-content > li > label:after {
    content: "";
    position: absolute;
    top: 38%;
    right: 3rem;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom: solid 0.2rem #ffffff;
    border-right: solid 0.2rem #ffffff;
    transform-origin: center;
    transform: rotate(45deg);
    transition: 0.3s all;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li > label {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    display: none;
    width: 2.8rem;
    height: 1rem;
    transform-origin: center top;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .header-item-menu .menu-content > li > label:before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 50%;
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #002855;
    transform-origin: center center;
    transform: rotate(45deg) translateX(-75%);
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content > li > ul {
    transition: 0.3s all;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 30rem;
    margin-top: 2rem;
    padding-top: 0;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li > ul > li {
    font-size: 0;
    border-bottom: solid 0 #97999B;
  }
  .header-item-menu .menu-content > li > ul > li:last-of-type {
    border-bottom: unset;
  }
}
.header-item-menu .menu-content > li > ul > li > a {
  display: block;
  box-sizing: border-box;
  transition: 0.3s all;
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content > li > ul > li > a {
    height: 0;
    padding: 0 2rem;
    font-size: 1.6rem;
    line-height: 0;
    color: transparent;
    background-color: rgba(232, 243, 255, 0.95);
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li > ul > li > a {
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 2rem;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #ffffff;
    background-color: #002855;
    overflow: hidden;
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content > li > ul > li > a:hover {
    opacity: unset;
  }
}
.header-item-menu .menu-content > li > ul > li > a.external:after {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1.6em;
  background-repeat: no-repeat;
  background-size: auto 0;
  background-position: right center;
  transform: translateX(0) translateY(0.1em);
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content > li > ul > li > a.external:after {
    height: 0;
    background-image: url("../images/common/icon_external-navy.svg");
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content > li > ul > li > a.external:after {
    height: 1em;
    background-size: contain;
    background-image: url("../images/common/icon_external-white.svg");
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content-title {
    cursor: pointer;
  }
}
.header-item-menu .menu-content-title > a {
  text-decoration: none;
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content-title > a {
    background-color: transparent;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content-title > a {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content-title > a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0.4rem;
    background-color: #002855;
    transform: translateX(-50%);
    transition: 0.3s;
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content-title > a:hover {
    opacity: unset;
  }
}
@media screen and (min-width: 1228px) {
  .header-item-menu .menu-content-title > a:hover {
    color: #002855;
    opacity: unset;
  }
  .header-item-menu .menu-content-title > a:hover:after {
    width: 100%;
  }
}
.header-item-menu .menu-content #sp-switch-company,
.header-item-menu .menu-content #sp-switch-product,
.header-item-menu .menu-content #sp-switch-service {
  display: none;
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content #sp-switch-company ~ p > a,
  .header-item-menu .menu-content #sp-switch-product ~ p > a,
  .header-item-menu .menu-content #sp-switch-service ~ p > a {
    pointer-events: none;
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content #sp-switch-company:checked + label:after,
  .header-item-menu .menu-content #sp-switch-product:checked + label:after,
  .header-item-menu .menu-content #sp-switch-service:checked + label:after {
    top: 45%;
    transform: rotate(-135deg);
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content #sp-switch-company:checked ~ ul > li > a,
  .header-item-menu .menu-content #sp-switch-product:checked ~ ul > li > a,
  .header-item-menu .menu-content #sp-switch-service:checked ~ ul > li > a {
    height: 54px;
    padding: 2rem;
    line-height: 2rem;
    color: #002855;
    border-top: solid 1px #D9D9D6;
  }
}
@media screen and (max-width: 1227px) {
  .header-item-menu .menu-content #sp-switch-company:checked ~ ul > li > a.external:after,
  .header-item-menu .menu-content #sp-switch-product:checked ~ ul > li > a.external:after,
  .header-item-menu .menu-content #sp-switch-service:checked ~ ul > li > a.external:after {
    height: 1em;
    background-size: contain;
  }
}

.footer {
  background-color: #ECECEA;
}
.footer.top {
  position: relative;
  background-color: unset;
}
.footer.top:before {
  content: "";
  position: absolute;
  top: 25rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 25rem);
  background-color: #ECECEA;
}
.footer.top .footer-item-menu-pickup > p {
  background-color: unset;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .footer.top .footer-item-menu-pickup > p:hover {
    background-color: rgba(0, 40, 85, 0.8);
  }
}
.footer.top .footer-item-menu-pickup > p > a:hover {
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .footer-item-menu {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu {
    padding-bottom: 2rem;
  }
}
.footer-item-menu-pickup {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-item-menu-pickup {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-pickup {
    flex-direction: row;
  }
}
.footer-item-menu-pickup > p {
  box-sizing: border-box;
  background-color: #002855;
}
@media screen and (min-width: 768px) {
  .footer-item-menu-pickup > p {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .footer-item-menu-pickup > p:first-of-type {
    border-bottom: solid 1px #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-pickup > p:first-of-type {
    width: calc(50% - 0.1rem);
    border-right: solid 0.1rem #ffffff;
  }
}
.footer-item-menu-pickup > p.company > a {
  background-image: url(../images/top/icon_company.png);
}
.footer-item-menu-pickup > p.recruit > a {
  background-image: url(../images/top/icon_recruit.png);
}
.footer-item-menu-pickup > p > a {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background-repeat: no-repeat;
  text-decoration: none;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .footer-item-menu-pickup > p > a {
    padding: 30px 25px;
    font-size: 18px;
    line-height: 60px;
    background-position: left 25px top 30px;
    background-size: auto 60px;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-pickup > p > a {
    padding: 16.3rem 0 6.5rem;
    font-size: 2.2rem;
    line-height: 1;
    background-position: center top 6.4rem;
    background-size: auto 8.7rem;
  }
}
.footer-item-menu-pickup > p > a:after {
  content: "";
  position: absolute;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: solid 0.3rem #ffffff;
  border-right: solid 0.3rem #ffffff;
  transform-origin: center;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .footer-item-menu-pickup > p > a:after {
    top: calc(50% - 6px);
    right: 28px;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-pickup > p > a:after {
    top: 50%;
    right: 4rem;
  }
}
.footer-item-menu-pickup > p > a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.footer-item-menu-main {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer-item-menu-main {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-main {
    max-width: 998px;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-main {
    width: 998px;
    padding-left: unset;
    padding-right: unset;
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-main .main-column {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-main .main-column-item {
    margin-top: -2rem;
  }
}
.footer-item-menu-main .main-column-item li.pdf > a:after {
  content: "PDF";
  position: relative;
  bottom: 0.1rem;
  left: 0.4rem;
  display: inline-block;
  padding: 0.1rem 0.8rem;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #002855;
  border-radius: 0.4rem;
}
.footer-item-menu-main .main-column-item li.external > a:after {
  content: "";
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 1.6em;
  height: 1em;
  background-image: url(../images/common/icon_external.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.footer-item-menu-main .main-column-item li a {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.footer-item-menu-main .main-column-item li a:hover {
  text-decoration: none;
}
.footer-item-menu-main .main-column-item > li > a {
  font-weight: 700;
  color: #002855;
}
@media screen and (min-width: 768px) {
  .footer-item-menu-main .main-column-item > li > a {
    margin-top: 2rem;
  }
}
.footer-item-menu-main .main-column-item > li > ul > li {
  margin-top: 1rem;
}
.footer-item-menu-main .main-column-item > li > ul > li > a {
  padding-left: 2rem;
  color: #313131;
}
.footer-item-menu-main .main-column-item > li > ul > li > a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: #002855;
  transform: translateY(-50%);
}
.footer-item-menu-bottom {
  position: relative;
  display: flex;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .footer-item-menu-bottom {
    margin-top: 30px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-bottom {
    margin-top: 3rem;
    text-align: right;
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-bottom {
    width: 100%;
    max-width: 998px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-bottom {
    width: 998px;
    justify-content: right;
  }
}
.footer-item-menu-bottom.hide .footer-item-menu-nav {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-bottom.stop .footer-item-menu-nav {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-bottom.stop .footer-item-menu-nav .to-top {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
.footer-item-menu-nav {
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  line-height: 0;
  text-align: right;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav {
    width: 7.2rem;
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-nav {
    position: fixed;
    bottom: 20px;
    right: calc(50% - 484px);
    width: 165px;
  }
}
@media screen and (max-width: 997px) {
  .footer-item-menu-nav {
    right: 15px;
  }
}
.footer-item-menu-nav > p {
  display: inline-block;
  line-height: 0;
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-nav > p {
    margin-left: 15px;
  }
}
.footer-item-menu-nav > p > a {
  display: inline-block;
  box-sizing: border-box;
  border-style: solid;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p > a {
    border-width: 0.1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-nav > p > a {
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p.to-contact {
    position: fixed;
    top: 50%;
    right: -0.2rem;
    transform: translateY(-50%);
  }
}
.footer-item-menu-nav > p.to-contact > a {
  color: #ffffff;
  background-color: #002855;
  background-image: url(../images/common/icon_mail-white.svg);
  text-decoration: unset;
  opacity: unset;
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p.to-contact > a {
    width: 7rem;
    height: 20rem;
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 5.6rem 2.6rem 0;
    font-weight: 700;
    text-align: center;
    background-position: center top 2.6rem;
    background-size: 2.6rem auto;
    border-radius: 0.8rem 0 0 0.8rem;
    transition: 0.3s all;
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-nav > p.to-contact > a {
    background-position: center center;
    background-size: 26px auto;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p.to-contact > a:hover {
    transform: scale(0.9) translateX(5%);
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-nav > p.to-contact > a > span {
    display: none;
  }
}
.footer-item-menu-nav > p.to-top {
  line-height: 0;
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p.to-top {
    position: fixed;
    bottom: 2rem;
    right: calc(50% - 49.9rem);
  }
}
.footer-item-menu-nav > p.to-top > a {
  color: #97999B;
  background-color: #ffffff;
  background-position: center center;
  background-image: url(../images/common/icon_arrow_bottom-gray.svg);
  transform: rotate(180deg);
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p.to-top > a {
    width: 4rem;
    height: 4rem;
    background-size: 1.6rem auto;
    border-radius: 50%;
  }
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-nav > p.to-top > a {
    background-size: 22px auto;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-nav > p.to-top > a:hover {
    opacity: 0.7;
  }
}
.footer-item-menu-sns {
  box-sizing: border-box;
}
@media screen and (max-width: 1227px) {
  .footer-item-menu-sns {
    width: calc(100% - 165px);
    max-width: 998px;
    padding: 15px 0;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-menu-sns {
    text-align: right;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-menu-sns {
    width: 92.6rem;
    padding: 0.5rem 0;
  }
}
.footer-item-menu-sns > li {
  display: inline-block;
  margin-left: 1.6rem;
}
.footer-item-menu-sns > li:first-of-type {
  margin-left: unset;
}
.footer-item-menu-sns > li > a {
  display: inline-block;
  height: 3rem;
}
.footer-item-menu-sns > li > a > img {
  width: auto;
  height: inherit;
}
.footer-item-bottom {
  background-color: #97999B;
}
.footer-item-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .footer-item-bottom-inner {
    width: 100%;
    padding: 25px 15px;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-bottom-inner {
    width: 100%;
    padding: 25px 15px;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-bottom-inner {
    width: 1198px;
    padding: 30px 0;
  }
}
.footer-item-bottom-inner > p.logo > a {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .footer-item-bottom-inner > p.logo > a {
    width: 108px;
    height: 22px;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-bottom-inner > p.logo > a {
    height: 3.912vw;
    min-height: 22px;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-bottom-inner > p.logo > a {
    height: 48px;
  }
}
.footer-item-bottom-inner > p.logo > a:hover {
  opacity: unset;
}
.footer-item-bottom-inner > p.vision {
  width: auto;
}
@media screen and (max-width: 767px) {
  .footer-item-bottom-inner > p.vision {
    width: 135px;
    height: 17px;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-bottom-inner > p.vision {
    height: 3.098vw;
    min-height: 17px;
  }
}
@media screen and (min-width: 1228px) {
  .footer-item-bottom-inner > p.vision {
    height: 38px;
  }
}
.footer-item-bottom-inner > p img {
  height: inherit;
  vertical-align: unset;
}
@media screen and (max-width: 767px) {
  .footer-item-bottom-inner > p img {
    width: inherit;
  }
}
@media screen and (min-width: 768px) {
  .footer-item-bottom-inner > p img {
    width: auto;
  }
}

#main {
  position: relative;
}
@media screen and (min-width: 1228px) {
  #main {
    padding-top: 11rem;
  }
}
@media screen and (max-width: 1227px) {
  #main {
    padding-top: 6.8rem;
  }
}

.mv {
  text-align: center;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 32px 0;
    background-image: url(../images/common/sp_main_img.jpg);
  }
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 4.5rem 0;
    background-image: url(../images/common/main_img.jpg);
  }
}
.mv > span {
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: oblique;
  line-height: 1;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .mv > span {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .mv > span {
    font-size: 6rem;
  }
}
.mv > h2, .mv > h1 {
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .mv > h2, .mv > h1 {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .mv > h2, .mv > h1 {
    margin-top: 1.4rem;
    font-size: 1.6rem;
  }
}

.mn > ul {
  display: flex;
  flex-wrap: wrap;
  background-color: #F2EFEF;
}
@media screen and (max-width: 767px) {
  .mn > ul {
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .mn > ul {
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }
}
.mn > ul > li {
  border-left: solid 1px #e2e2e2;
}
@media screen and (max-width: 767px) {
  .mn > ul > li {
    margin-top: 15px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .mn > ul > li {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
}
.mn > ul > li:first-of-type {
  padding-left: unset;
  border-left: unset;
}
@media screen and (max-width: 767px) {
  .mn > ul > li:first-of-type {
    padding-left: 11px;
  }
}
.mn > ul > li:last-of-type {
  padding-right: unset;
}
.mn > ul > li.active > a {
  font-weight: 700;
  color: #313131;
  text-decoration: none;
}
.mn > ul > li > a {
  color: #002855;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .mn > ul > li > a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (min-width: 768px) {
  .mn > ul > li > a {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .mn > ul > li > a:hover {
    color: #313131;
    text-decoration: none;
    opacity: unset;
  }
}

.mc {
  position: relative;
  padding-bottom: 14rem;
}
@media screen and (max-width: 1227px) {
  .mc {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mc:after, .mc:before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  z-index: -1;
  display: block;
  height: 100vh;
  border-left: solid 1px #EAEAEA;
  border-right: solid 1px #EAEAEA;
  transform: translateX(-50%);
}
.mc:before {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mc:before {
    width: calc(100% - 28px);
  }
}
@media screen and (min-width: 768px) {
  .mc:before {
    width: calc(100% - 2.8rem);
    max-width: 120rem;
  }
}
@media screen and (min-width: 1228px) {
  .mc:before {
    width: 120rem;
  }
}
@media screen and (max-width: 1227px) {
  .mc:after {
    width: 32.6vw;
  }
}
@media screen and (min-width: 1228px) {
  .mc:after {
    width: 39.8rem;
  }
}
.mc .breadcrumbs {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mc .breadcrumbs {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .mc .breadcrumbs {
    width: 100%;
    max-width: 119.8rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 1228px) {
  .mc .breadcrumbs {
    width: 119.8rem;
  }
}
@media screen and (min-width: 768px) {
  .mc .breadcrumbs-list {
    padding-left: 15px;
    padding-right: 1.5px;
  }
}
@media screen and (min-width: 768px) {
  .mc .breadcrumbs-list {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.mc .breadcrumbs-list > li {
  display: inline;
  font-size: 1.2rem;
  line-height: 2rem;
}
.mc .breadcrumbs-list > li:before {
  content: ">";
  display: inline;
  box-sizing: border-box;
  padding: 0 0.5em;
}
.mc .breadcrumbs-list > li:first-of-type:before {
  content: unset;
}
.mc .breadcrumbs-list > li > a {
  font-size: inherit;
  line-height: inherit;
  color: #313131;
}
@media screen and (min-width: 768px) {
  .mc .breadcrumbs-list > li > a:hover {
    opacity: unset;
  }
}
.mc-wrap {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .mc-wrap {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 768px) {
  .mc-wrap {
    width: 100%;
    max-width: 119.8rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 1228px) {
  .mc-wrap {
    width: 119.8rem;
  }
}
.mc-title {
  box-sizing: border-box;
  background-color: #002855;
}
@media screen and (max-width: 767px) {
  .mc-title {
    margin-bottom: 25px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .mc-title {
    margin-bottom: 4.89vw;
    padding: 0 4rem;
  }
}
@media screen and (min-width: 1228px) {
  .mc-title {
    margin-bottom: 6rem;
    padding: 0 10rem;
  }
}
.mc-title > span {
  display: block;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .mc-title > span {
    padding: 22px 0;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 768px) {
  .mc-title > span {
    padding: 5rem 0;
    font-size: 3rem;
    line-height: 4.4rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 1227px) {
  .mc-title > span {
    box-sizing: border-box;
    width: 100%;
    max-width: 99.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.mc-inner {
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mc-inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .mc-inner {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1227px) {
  .mc-inner {
    width: 100%;
  }
}
@media screen and (min-width: 1228px) {
  .mc-inner {
    padding: unset;
  }
}
.mc-section {
  box-sizing: border-box;
  padding-bottom: 1px;
}
@media screen and (min-width: 768px) {
  .mc-section {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1227px) {
  .mc-section {
    width: 100%;
    max-width: 99.8rem;
  }
}
@media screen and (min-width: 1228px) {
  .mc-section {
    width: 99.8rem;
  }
}
.mc .form-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mc .form-wrap {
    max-width: 79rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .mc .form-wrap {
    padding-bottom: 25px;
  }
}
.mc .form-wrap input[type=checkbox],
.mc .form-wrap input[type=radio] {
  display: none;
}
.mc .form-wrap input[type=checkbox] + label,
.mc .form-wrap input[type=radio] + label {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left top;
}
@media screen and (min-width: 768px) {
  .mc .form-wrap input[type=checkbox] + label,
  .mc .form-wrap input[type=radio] + label {
    padding: 0 0 0 3rem;
    line-height: 2rem;
    background-size: auto 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mc .form-wrap input[type=checkbox] + label,
  .mc .form-wrap input[type=radio] + label {
    padding: 0 0 0 30px;
    line-height: 20px;
    background-size: auto 20px;
  }
}
.mc .form-wrap input[type=radio] + label {
  background-image: url(../images/common/icon_radio-off.svg);
}
.mc .form-wrap input[type=radio]:checked + label {
  background-image: url(../images/common/icon_radio-on.svg);
}
.mc .form-wrap input[type=checkbox] + label {
  background-image: url(../images/common/icon_checkbox-off.svg);
}
.mc .form-wrap input[type=checkbox]:checked + label {
  background-image: url(../images/common/icon_checkbox-on.svg);
}
.mc-ais--color-att {
  color: #E61211;
}
.mc-ais--mrg-top {
  display: inline-block;
  margin-top: 1rem;
}
.mc-ais--mrg-bottom {
  display: inline-block;
  margin-bottom: 1rem;
}
.mc-ais--note {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .mc-ais--note {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--note {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 20px;
  }
}
.mc-ais--note:before {
  content: "※";
}
@media screen and (max-width: 767px) {
  .mc-ais--section {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--section {
    margin-bottom: 6.51vw;
  }
}
@media screen and (min-width: 1228px) {
  .mc-ais--section {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--section > p {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--section > p {
    margin-bottom: 20px;
  }
}
.mc-ais--title {
  position: relative;
}
@media screen and (max-width: 767px) {
  .mc-ais--title {
    margin-bottom: 30px;
    padding-left: 16px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--title {
    margin-bottom: 4rem;
    padding-left: 2.2rem;
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
}
.mc-ais--title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #002855;
}
@media screen and (max-width: 767px) {
  .mc-ais--title:before {
    width: 4px;
    height: 22px;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--title:before {
    width: 0.6rem;
    height: 2.6rem;
  }
}
.mc-ais--title-lv1 {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mc-ais--title-lv1 {
    margin-bottom: 30px;
    padding-left: 16px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--title-lv1 {
    margin-bottom: 4rem;
    padding-left: 2.2rem;
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
}
.mc-ais--title-lv1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #002855;
}
@media screen and (max-width: 767px) {
  .mc-ais--title-lv1:before {
    width: 4px;
    height: calc(100% - 4px);
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--title-lv1:before {
    width: 0.6rem;
    height: calc(100% - 0.6rem);
  }
}
.mc-ais--title-lv2 {
  color: #002855;
}
@media screen and (max-width: 767px) {
  .mc-ais--title-lv2 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--title-lv2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--title-lv3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--title-lv3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.mc-ais--button {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mc-ais--button {
    max-width: 38rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--button {
    width: 100%;
    max-width: 305px;
  }
}
.mc-ais--button > a {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 1em 2em 1em 1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: unset;
  color: #002855;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .mc-ais--button > a {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-top: 2rem;
    padding: 2.4rem 2.8rem 2.4rem 2rem;
    border: solid 0.1rem;
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--button > a {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    padding: 10px 28px 10px 10px;
    border: solid 1px;
    border-radius: 8px;
  }
}
.mc-ais--button > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75em;
  display: block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-image: url(../images/common/icon_arrow_bottom-navy.svg);
  background-size: cover;
  background-position: center center;
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .mc-ais--button > a:hover {
    opacity: unset;
    text-decoration: unset;
    color: #ffffff;
    background-color: #002855;
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--button > a:hover:after {
    background-image: url(../images/common/icon_arrow_bottom-white.svg);
  }
}
@media screen and (min-width: 768px) {
  .mc-ais--button.to-top > a {
    padding: 2.4rem 2rem 2.4rem 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--button.to-top > a {
    padding: 19px 10px 19px 28px;
  }
}
.mc-ais--button.to-top > a:after {
  right: unset;
  left: 0.75em;
}
@media screen and (min-width: 768px) {
  .mc-ais--button > a {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--button > a {
    margin-top: 20px;
  }
}
.mc-ais--table {
  box-sizing: border-box;
  width: 100%;
}
.mc-ais--table td,
.mc-ais--table th {
  border-right: solid 1px;
  border-bottom: solid 1px;
  border-color: #E2E2E2;
}
@media screen and (min-width: 768px) {
  .mc-ais--table td,
  .mc-ais--table th {
    font-size: 1.6rem;
    padding: 0.8rem 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--table td,
  .mc-ais--table th {
    font-size: 12px;
    padding: 8px 4px;
  }
}
.mc-ais--table td:last-child,
.mc-ais--table th:last-child {
  border-right: unset;
}
.mc-ais--table th {
  font-weight: 700;
  background-color: #E8F3FF;
}
.mc-ais--table-wrap {
  width: 100%;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .mc-ais--table-note {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--table-note {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 8px;
  }
}
.mc-ais--table-note a {
  position: relative;
}
.mc-ais--table-note a.external:after {
  content: "";
  position: relative;
  top: 0;
  right: 0;
  display: inline-block;
  width: 1.6em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: auto 1em;
  background-position: right center;
  background-image: url("../images/common/icon_external-navy.svg");
  transform: translateX(0) translateY(0.1em);
}
@media screen and (min-width: 768px) {
  .mc-ais--table + .mc-ais--table-note {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--table + .mc-ais--table-note {
    margin-top: 10px;
  }
}
.mc-ais--list > li {
  position: relative;
  list-style: none;
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .mc-ais--list > li {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--list > li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.mc-ais--list-note > li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .mc-ais--list-note > li {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mc-ais--list-note > li {
    font-size: 12px;
    line-height: 20px;
  }
}

@media screen and (min-width: 768px) {
  p + .mc-ais--list-note {
    margin-top: -2rem;
  }
}
@media screen and (max-width: 767px) {
  p + .mc-ais--list-note {
    margin-top: -10px;
  }
}

.mc-ais--list-note .disc:before,
.mc-ais--list .disc:before {
  content: "・";
}
.mc-ais--list-note .att:before,
.mc-ais--list .att:before {
  content: "※";
}

@media screen and (min-width: 768px) {
  .disp-none-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .disp-none-sp {
    display: none;
  }
}
