@charset "UTF-8";
/*================================================================
reset
=================================================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 150%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

img {
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

input,
textarea {
  box-sizing: border-box;
  border: none;
}
input:focus,
textarea:focus {
  border: none;
}

i, em {
  font-style: normal;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/*================================================================
layout
=================================================================*/
/* 全体
--------------------------------------------------------*/
html {
  font-size: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  position: relative;
  line-height: 1.5;
  color: #1a1a1c;
  display: flex;
  flex-direction: column;
}

main {
  padding: 64px 40px 80px 40px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
main.denpan::after {
  background: none;
}
main::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  content: "";
  z-index: -1;
  background: linear-gradient(to bottom, #eff7fb 0%, #fff 100%);
}
@media screen and (max-width: 768px) {
  main::after {
    height: 120px;
  }
}
main > .inner {
  max-width: 1200px;
  margin: 0 auto 80px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main > .inner {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding: 0 16px 40px 16px;
  }
  main.main-form {
    padding: 32px 16px 40px 16px;
  }
}

/* 構造 2カラム
--------------------------------------------------------*/
.wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
.wrapper > article.article {
  width: 0;
  flex: 1 1 auto;
}
@media screen and (min-width: 991px) {
  .wrapper > article.article > section:first-child > *:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 990px) {
  .wrapper > article.article {
    width: 100%;
  }
}
.wrapper > aside.side {
  width: 250px;
  flex: 0 0 auto;
}
@media screen and (max-width: 990px) {
  .wrapper {
    display: block;
  }
  .wrapper > aside.side {
    width: 100%;
    margin-top: 80px;
  }
}

/* is-media-tablet
--------------------------------------------------------*/
@media screen and (min-width: 991px) {
  html.is-media-tablet .wrapper > article.article {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .wrapper {
    display: block;
  }
  html.is-media-tablet .wrapper > aside.side {
    width: 100%;
    margin-top: 80px;
  }
}

a {
  text-decoration: none;
  color: #0d44a0;
}
a:hover {
  color: #003c79;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

sup {
  font-size: 0.75rem;
  vertical-align: top;
}

/*================================================================
ヘッダー
=================================================================*/
@media screen and (max-width: 990px) {
  html.is-overflow, body.is-overflow {
    overflow: hidden;
  }
}

.header {
  width: 100%;
  background-color: #fff;
  color: #1a1a1c;
  font-size: 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.header .header-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .header-br {
    display: block;
  }
}
.header-nav {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 990px) {
  .header-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 80%;
    background: #fff;
    z-index: 100001;
    height: 100vh;
    height: 100dvh;
    padding: 10px 16px 30px;
    display: block;
    overflow: auto;
    transition: 0.3s;
  }
}
.header-nav__control {
  display: none;
}
@media screen and (max-width: 990px) {
  .header-nav__control {
    display: flex;
    gap: 4px;
  }
}
@media screen and (max-width: 990px) and (max-width: 768px) {
  .header-nav__control {
    gap: 0;
  }
}
@media screen and (max-width: 990px) {
  .header-nav__control-menu, .header-nav__control-login {
    display: flex;
    height: 32px;
    width: 48px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100000;
    cursor: pointer;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 990px) and (max-width: 768px) {
  .header-nav__control-menu, .header-nav__control-login {
    height: 24px;
    width: 40px;
  }
}
@media screen and (max-width: 990px) {
  .header-nav__control-container {
    width: 80px;
    height: 72px;
    color: inherit;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .header-nav__control-container:hover {
    color: inherit;
    text-decoration: none;
  }
}
@media screen and (max-width: 990px) and (max-width: 768px) {
  .header-nav__control-container {
    width: 56px;
    height: 54px;
  }
}
@media screen and (max-width: 990px) {
  .header-nav__control-container .header-nav__control-menu span::before {
    content: "";
    display: block;
    -webkit-mask-image: url("/assets/img/icon_nav.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_nav.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 990px) and (max-width: 768px) {
  .header-nav__control-container .header-nav__control-menu span::before {
    -webkit-mask-image: url("/assets/img/icon_nav.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_nav.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 990px) {
  .header-nav__control-container .header-nav__control-login span::before {
    content: "";
    display: block;
    -webkit-mask-image: url("/assets/img/icon_login-door.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_login-door.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 990px) and (max-width: 768px) {
  .header-nav__control-container .header-nav__control-login span::before {
    -webkit-mask-image: url("/assets/img/icon_login-door.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_login-door.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
}
.header-nav__overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 990px) {
  .header-nav__overlay.is-active {
    opacity: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    background: rgba(0, 0, 0, 0.7490196078);
    z-index: 100000;
  }
}
.header-nav__inner {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 990px) {
  .header-nav__inner {
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
  }
}
.header-nav__container {
  display: none;
}
@media screen and (max-width: 990px) {
  .header-nav__container {
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 54px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
}
.header-nav__text {
  display: none;
}
@media screen and (max-width: 990px) {
  .header-nav__text {
    display: block;
    font-size: 12px;
    font-weight: bold;
  }
  .header-nav__text span:nth-of-type(2) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header-nav__text {
    font-size: 10px;
  }
}
@media screen and (max-width: 990px) {
  .header-nav__button {
    display: flex;
    height: 32px;
    width: 36px;
    width: 56px;
    height: 54px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100000;
    cursor: pointer;
  }
  .header-nav__button::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 16px;
    -webkit-mask-image: url("/assets/img/icon_cross.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_cross.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
  .header-nav__button > span {
    display: block;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 32px;
    left: 0;
    width: 56px;
    text-align: center;
  }
}
.header__container {
  max-width: 1280px;
  padding: 4px 8px;
  width: 100%;
  height: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container.is-simple {
  height: 92px;
}
@media screen and (max-width: 768px) {
  .header__container.is-simple {
    height: 54px;
  }
}
@media screen and (max-width: 768px) {
  .header__container {
    height: 54px;
  }
}
.header-logo__img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .header-logo__img {
    max-width: 210px;
  }
}
.header-navmenu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 990px) {
  .header-navmenu {
    order: 2;
    position: relative;
    gap: 0;
  }
}
.header-navmenu__contents .side-help {
  display: none;
}
.header-navmenu__contents nav {
  display: none;
}
@media screen and (max-width: 990px) {
  .header-navmenu__contents {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #d8d8db;
    display: flex;
    flex-direction: column;
  }
  .header-navmenu__contents nav h2 {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    position: relative;
  }
  .header-navmenu__contents nav h2::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_plus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_plus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-navmenu__contents nav h2.is-open::before {
    -webkit-mask-image: url("/assets/img/icon_minus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_minus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
  }
  .header-navmenu__contents nav ul {
    display: none;
  }
  .header-navmenu__contents nav ul.is-active {
    display: block;
  }
  .header-navmenu__contents nav ul a {
    color: inherit;
    padding: 13px 24px;
    display: block;
    position: relative;
  }
  .header-navmenu__contents nav ul a::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_arrow_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header-navmenu-list {
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 990px) {
  .header-navmenu-list {
    display: block;
    font-size: 16px;
  }
}
.header-navmenu-list__item {
  position: relative;
}
.header-navmenu-list__item.is-active .header-navmenu__link {
  border: 0;
  text-decoration: inherit;
}
.header-navmenu-list__item.is-active .header-navmenu__link.is-dropdown::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_up.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_up.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.header-navmenu-list__item.is-active .header-navmenu-linklist {
  display: block;
  z-index: 100002;
}
@media screen and (max-width: 990px) {
  .header-navmenu-list__item.is-active .header-navmenu-linklist {
    display: block;
  }
}
@media screen and (max-width: 990px) {
  .header-navmenu-list__item.is-active .header-navmenu__link.is-dropdown::before {
    -webkit-mask-image: url("/assets/img/icon_minus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_minus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
  }
}
.header-navmenu__link {
  color: inherit;
  padding: 2.5px 4px;
}
@media screen and (max-width: 990px) {
  .header-navmenu__link {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
  }
  .header-navmenu__link::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_arrow_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header-navmenu__link.is-dropdown {
  position: relative;
  padding-right: 24px;
}
.header-navmenu__link.is-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  -webkit-mask-image: url("/assets/img/icon_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 990px) {
  .header-navmenu__link.is-dropdown::before {
    -webkit-mask-image: url("/assets/img/icon_plus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_plus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
  }
}
.header-navmenu__link:hover {
  background: #f1f1f4;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 990px) {
  .header-navmenu__link:hover {
    background: unset;
    text-decoration: inherit;
  }
}
.header-navmenu-linklist {
  position: absolute;
  top: 31px;
  width: 200px;
  background: #fff;
  padding: 8px;
  border: 1px solid #b4b4b7;
  font-size: 16px;
  display: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 990px) {
  .header-navmenu-linklist {
    position: relative;
    width: 100%;
    top: 0;
    border: 0;
    padding: 0;
    display: none;
  }
}
.header-navmenu-linklist__item:first-child .header-navmenu-linklist__link {
  font-weight: bold;
}
.header-navmenu-linklist__link {
  color: inherit;
  padding: 8px 16px;
  display: block;
  font-weight: normal;
  position: relative;
}
@media screen and (max-width: 990px) {
  .header-navmenu-linklist__link {
    padding: 13px 24px;
  }
  .header-navmenu-linklist__link::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_arrow_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header-navmenu-linklist__link:hover {
  background: #f1f1f4;
  color: inherit;
  text-decoration: none;
}
.header-navmenu__switch {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.header-language {
  display: none;
  align-items: center;
  margin-top: 4px;
}
.header-language > a {
  font-size: 14px;
  line-height: 26px;
  color: #1a1a1c;
  display: block;
  height: 26px;
  padding: 0 4px 0 24px;
  position: relative;
}
.header-language > a::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-mask-image: url("/assets/img/icon_earth.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_earth.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}
.header-language > a:hover {
  text-decoration: none;
  background: #f1f1f4;
  color: #1a1a1c;
}
@media screen and (max-width: 990px) {
  .header-language {
    display: none;
  }
}
.header-navmenu__contents .header-language {
  display: none;
}
@media screen and (max-width: 990px) {
  .header-navmenu__contents .header-language {
    display: none;
    margin-top: 24px;
    padding: 12px 0;
    border-top: 1px solid #d8d8db;
  }
  .header-navmenu__contents .header-language > a {
    font-size: 16px;
    line-height: 1.5;
    height: auto;
    padding: 12px 0 12px 24px;
    font-weight: bold;
  }
  .header-navmenu__contents .header-language > a:hover {
    background: unset;
  }
}
.header-fontsize {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}
@media screen and (max-width: 990px) {
  .header-fontsize {
    display: none;
  }
}
.header-fontsize__title {
  font-size: 14px;
}
.header-fontsize__button {
  width: 64px;
  height: 26px;
  padding: 3px 4px 4px 4px;
  border: 1px solid #949497;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}
.header-fontsize__button:hover {
  background: #f1f1f4;
  color: #1a1a1c;
}
.header-control {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 990px) {
  .header-control {
    width: 100%;
  }
}
.header-search {
  position: relative;
}
@media screen and (max-width: 990px) {
  .header-search {
    width: 100%;
  }
}
.header-search.is-active {
  background: #f1f1f4;
}
.header-search.is-active .header-search__button::before {
  content: "";
  display: block;
  -webkit-mask-image: url("/assets/img/icon_cross.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_cross.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 32px;
  height: 32px;
}
.header-search.is-active .header-search__box {
  display: block;
  z-index: 100000;
}
.header-search__box {
  display: none;
  transition: 0.3s;
  width: 744px;
  position: absolute;
  background: #f1f1f4;
  padding: 48px;
  right: -76px;
}
@media screen and (max-width: 990px) {
  .header-search__box {
    position: relative;
    display: block;
    padding: 0;
    width: 100%;
    left: 0;
  }
}
.header-search__button {
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 0 5px;
  cursor: pointer;
}
.header-search__button .is-disabled {
  display: none;
}
@media screen and (max-width: 990px) {
  .header-search__button {
    display: none;
    padding: 0;
  }
}
.header-search__button::before {
  content: "";
  display: block;
  -webkit-mask-image: url("/assets/img/icon_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 32px;
  height: 32px;
}
.header-search__button:hover {
  text-decoration: none;
  color: inherit;
  background: #f1f1f4;
}
.header-search__inner {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  .header-search__inner {
    width: 100%;
  }
}
.header-search__inner form {
  border: 1px solid #1a1a1c;
  border-radius: 4px;
  background: #fff;
  height: 52px;
  display: flex;
  flex: 1;
}
@media screen and (max-width: 990px) {
  .header-search__inner form {
    height: 42px;
    width: 100%;
  }
}
.header-search__inner form input {
  padding: 12px 16px;
  border-radius: 4px 0 0 4px;
  flex: 1;
}
@media screen and (max-width: 990px) {
  .header-search__inner form input {
    width: 100%;
  }
}
.header-search__inner form button {
  background: #0d44a0;
  color: #fff;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}
@media screen and (max-width: 990px) {
  .header-search__inner form button {
    padding: 5px 14px;
  }
  .header-search__inner form button span {
    display: none;
  }
}
.header-search__inner form button::before {
  content: "";
  display: block;
  -webkit-mask-image: url("/assets/img/icon_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.header-search__inner form button:hover {
  background: #003c79;
}
@media screen and (max-width: 990px) {
  .header-login {
    display: none;
  }
}
.header-login .is-disabled {
  display: none;
}
.header-login__button {
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #0d44a0;
  padding: 10px 0 5px;
  cursor: pointer;
}
@media screen and (max-width: 990px) {
  .header-login__button {
    padding: 0;
  }
}
.header-login__button::before {
  content: "";
  display: block;
  -webkit-mask-image: url("/assets/img/icon_login-door.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_login-door.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 32px;
  height: 32px;
}
.header-login__button:hover {
  text-decoration: none;
  color: #fff;
  background: #003c79;
}
.header .header-left {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .header .header-left {
    max-width: 210px;
  }
}

html.fontsize-m .header-fontsize__button-m {
  background: #f1f1f4;
  color: inherit;
  border: solid 1px #949497;
  font-size: 12px;
}
html.fontsize-m .header-fontsize__button-m:hover {
  text-decoration: none;
  color: inherit;
  background: #f1f1f4 !important;
}
html.fontsize-l .header-fontsize__button-l {
  background: #f1f1f4;
  color: inherit;
  border: solid 1px #949497;
  font-size: 12px;
}
html.fontsize-l .header-fontsize__button-l:hover {
  text-decoration: none;
  color: #1a1a1c;
  background: #f1f1f4 !important;
}
html.fontsize-ll .header-fontsize__button-ll {
  background: #f1f1f4;
  color: inherit;
  border: solid 1px #949497;
  font-size: 12px;
}
html.fontsize-ll .header-fontsize__button-ll:hover {
  text-decoration: none;
  color: inherit;
  background: #f1f1f4 !important;
}

.header-login-status {
  display: none;
}
.header.is-login .header-login-status {
  color: #fff;
  background: #003c79;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.is-gis .header.is-login .header-login-status {
  background-color: #002347;
}
.header.is-login .header-login-status__inner {
  max-width: 1280px;
  width: 100%;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .header.is-login .header-login-status__inner {
    padding: 2px 8px;
  }
}
.header.is-login .header-login-status__info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header.is-login .header-login-status__info-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 990px) {
  .header.is-login .header-login-status__info-name {
    font-size: 16px;
  }
}
.header.is-login .header-login-status__info-name > span {
  font-size: 16px;
}
@media screen and (max-width: 990px) {
  .header.is-login .header-login-status__info-name > span {
    font-size: 14px;
  }
}
.header.is-login .header-login-status__info-date {
  font-size: 14px;
}
@media screen and (max-width: 990px) {
  .header.is-login .header-login-status__info-date {
    display: none;
  }
}
.header.is-login .header-login-status__link {
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
}
@media screen and (max-width: 990px) {
  .header.is-login .header-login-status__link {
    display: none;
  }
}
.header.is-login .header-login-status__link:hover {
  color: #cae5f2;
}

.header.is-map .header__container {
  max-width: none;
  padding: 4px 40px;
}
@media screen and (max-width: 768px) {
  .header.is-map .header__container {
    padding: 4px 8px;
  }
}
.header.is-map .header-login-status__inner {
  max-width: none;
  padding: 4px 40px;
}
@media screen and (max-width: 768px) {
  .header.is-map .header-login-status__inner {
    padding: 4px 8px;
  }
}

.header.is-login .header-login__button {
  background: #0078b0;
}
.header.is-login .header-login__button::before {
  -webkit-mask-image: url("/assets/img/icon_account.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_account.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 32px;
  height: 32px;
}
.header.is-login .header-login__button:hover {
  background: #005881;
}
@media screen and (max-width: 990px) {
  .header.is-login .header__container nav {
    display: block;
  }
}
.header.is-login .header__container .header-login-status {
  display: none !important;
}
@media screen and (max-width: 990px) {
  .header.is-login .header__container .header-login-status {
    display: block !important;
  }
}
@media screen and (max-width: 990px) and (max-width: 990px) {
  .header.is-login .header__container .header-login-status {
    order: 2;
    background: unset;
    color: inherit;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
    padding-top: 24px;
    border-top: 1px solid #d8d8db;
  }
}
@media screen and (max-width: 990px) and (max-width: 990px) {
  .header.is-login .header__container .header-login-status__inner {
    padding: 0;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 990px) and (max-width: 990px) {
  .header.is-login .header__container .header-login-status__info-name {
    display: none;
  }
}
@media screen and (max-width: 990px) and (max-width: 990px) {
  .header.is-login .header__container .header-login-status__info-date {
    display: block;
  }
}
@media screen and (max-width: 990px) and (max-width: 990px) {
  .header.is-login .header__container .header-login-status__link {
    display: block;
    color: #0d44a0;
  }
}
.header.is-login .header-nav__control-container .header-nav__control-login span::before {
  -webkit-mask-image: url("/assets/img/icon_account.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_account.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .header.is-login .header-nav__control-container .header-nav__control-login span::before {
    -webkit-mask-image: url("/assets/img/icon_account.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_account.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
}
.header.is-login .header-nav__text span:first-child {
  display: none;
}
.header.is-login .header-nav__text span:nth-of-type(2) {
  display: block;
}
.header.is-login .header-nav__control-login {
  width: 59px;
}
@media screen and (max-width: 768px) {
  .header.is-login .header-nav__control-login {
    width: 50px;
  }
}

/* is-media-tablet
--------------------------------------------------------*/
@media screen and (min-width: 991px) {
  html.is-media-tablet.is-overflow {
    overflow: hidden;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet body.is-overflow {
    overflow: hidden;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 80%;
    background: #fff;
    z-index: 100001;
    height: 100vh;
    height: 100dvh;
    padding: 10px 16px 30px;
    display: block;
    overflow: auto;
    transition: 0.3s;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__control {
    display: flex;
    gap: 4px;
  }
}
@media screen and (min-width: 991px) and (max-width: 768px) {
  html.is-media-tablet .header-nav__control {
    gap: 0;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__control-menu, html.is-media-tablet .header-nav__control-login {
    display: flex;
    height: 32px;
    width: 48px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100000;
    cursor: pointer;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 991px) and (max-width: 768px) {
  html.is-media-tablet .header-nav__control-menu, html.is-media-tablet .header-nav__control-login {
    height: 24px;
    width: 40px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__control-container {
    width: 80px;
    height: 72px;
    color: inherit;
  }
}
@media screen and (min-width: 991px) and (max-width: 768px) {
  html.is-media-tablet .header-nav__control-container {
    width: 56px;
    height: 54px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__control-container .header-nav__control-menu span::before {
    content: "";
    display: block;
    -webkit-mask-image: url("/assets/img/icon_nav.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_nav.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 991px) and (max-width: 768px) {
  html.is-media-tablet .header-nav__control-container .header-nav__control-menu span::before {
    -webkit-mask-image: url("/assets/img/icon_nav.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_nav.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__control-container .header-nav__control-login span::before {
    content: "";
    display: block;
    -webkit-mask-image: url("/assets/img/icon_login-door.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_login-door.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 991px) and (max-width: 768px) {
  html.is-media-tablet .header-nav__control-container .header-nav__control-login span::before {
    -webkit-mask-image: url("/assets/img/icon_login-door.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_login-door.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__overlay.is-active {
    opacity: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    background: rgba(0, 0, 0, 0.7490196078);
    z-index: 100000;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__inner {
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__container {
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 54px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__text {
    display: block;
    font-size: 12px;
    font-weight: bold;
  }
  html.is-media-tablet .header-nav__text span:nth-of-type(2) {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-nav__button {
    display: flex;
    height: 32px;
    width: 36px;
    width: 56px;
    height: 54px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100000;
    cursor: pointer;
  }
  html.is-media-tablet .header-nav__button::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 16px;
    -webkit-mask-image: url("/assets/img/icon_cross.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_cross.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 24px;
    height: 24px;
  }
  html.is-media-tablet .header-nav__button > span {
    display: block;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 32px;
    left: 0;
    width: 56px;
    text-align: center;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu {
    order: 2;
    position: relative;
    gap: 0;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu__contents {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #d8d8db;
    display: flex;
    flex-direction: column;
  }
  html.is-media-tablet .header-navmenu__contents nav h2 {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    position: relative;
  }
  html.is-media-tablet .header-navmenu__contents nav h2::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_plus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_plus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  html.is-media-tablet .header-navmenu__contents nav h2.is-open::before {
    -webkit-mask-image: url("/assets/img/icon_minus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_minus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
  }
  html.is-media-tablet .header-navmenu__contents nav ul {
    display: none;
  }
  html.is-media-tablet .header-navmenu__contents nav ul.is-active {
    display: block;
  }
  html.is-media-tablet .header-navmenu__contents nav ul a {
    color: inherit;
    padding: 13px 24px;
    display: block;
    position: relative;
  }
  html.is-media-tablet .header-navmenu__contents nav ul a::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_arrow_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu-list {
    display: block;
    font-size: 16px;
  }
}
html.is-media-tablet .header-navmenu-list__item {
  position: relative;
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu-list__item.is-active .header-navmenu-linklist {
    display: block;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu-list__item.is-active .header-navmenu__link.is-dropdown::before {
    -webkit-mask-image: url("/assets/img/icon_minus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_minus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu__link {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
  }
  html.is-media-tablet .header-navmenu__link::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_arrow_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu__link.is-dropdown::before {
    -webkit-mask-image: url("/assets/img/icon_plus.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_plus.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu__link:hover {
    background: unset;
    text-decoration: inherit;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu-linklist {
    position: relative;
    width: 100%;
    top: 0;
    border: 0;
    padding: 0;
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-navmenu-linklist__link {
    padding: 13px 24px;
  }
  html.is-media-tablet .header-navmenu-linklist__link::before {
    content: "";
    position: absolute;
    right: 0;
    -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_arrow_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #1a1a1c;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-language {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-fontsize {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-control {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search__box {
    position: relative;
    display: block;
    padding: 0;
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search__button {
    display: none;
    padding: 0;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search__inner {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search__inner form {
    height: 42px;
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search__inner form input {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-search__inner form button {
    padding: 5px 14px;
  }
  html.is-media-tablet .header-search__inner form button span {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-login {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header-login__button {
    padding: 0;
  }
}
@media screen and (min-width: 991px) {
  .header.is-login html.is-media-tablet .header-login-status__inner {
    padding: 2px 8px;
  }
}
@media screen and (min-width: 991px) {
  .header.is-login html.is-media-tablet .header-login-status__info-name {
    font-size: 16px;
  }
}
.header.is-login html.is-media-tablet .header-login-status__info-name > span {
  font-size: 16px;
}
@media screen and (min-width: 991px) {
  .header.is-login html.is-media-tablet .header-login-status__info-name > span {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px) {
  .header.is-login html.is-media-tablet .header-login-status__info-date {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  .header.is-login html.is-media-tablet .header-login-status__link {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header-login-status__inner {
    padding: 2px 8px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header-login-status__info-name {
    font-size: 16px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header-login-status__info-name > span {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header-login-status__info-date {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header-login-status__link {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container nav {
    display: block;
  }
}
@media screen and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container .header-login-status {
    display: block !important;
  }
}
@media screen and (min-width: 991px) and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container .header-login-status {
    order: 2;
    background: unset;
    color: inherit;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
    padding-top: 24px;
    border-top: 1px solid #d8d8db;
  }
}
@media screen and (min-width: 991px) and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container .header-login-status__inner {
    padding: 0;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 991px) and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container .header-login-status__info-name {
    display: none;
  }
}
@media screen and (min-width: 991px) and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container .header-login-status__info-date {
    display: block;
  }
}
@media screen and (min-width: 991px) and (min-width: 991px) {
  html.is-media-tablet .header.is-login .header__container .header-login-status__link {
    display: block;
    color: #0d44a0;
  }
}

[data-language] .header-language {
  display: flex;
}
@media screen and (max-width: 990px) {
  [data-language] .header-language {
    display: none;
  }
}
[data-language] .header-navmenu__contents .header-language {
  display: none;
}
@media screen and (max-width: 990px) {
  [data-language] .header-navmenu__contents .header-language {
    display: block;
  }
}

/*================================================================
フッター
=================================================================*/
.footer {
  padding: 40px;
  box-sizing: border-box;
  background: #003c79;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.is-gis .footer {
  background-color: #002347;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 32px 16px;
  }
}
.footer__inner {
  max-width: 1280px;
  width: 100%;
}
.footer__banner {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media screen and (max-width: 768px) {
  .footer__banner {
    margin-bottom: 24px;
  }
}
.footer__banner-item {
  width: 234px;
  height: 60px;
}
.footer__banner-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__banner-img {
  display: block;
}
.footer__link {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media screen and (max-width: 768px) {
  .footer__link {
    margin-bottom: 16px;
  }
}
.footer__link-link {
  text-decoration: underline;
  color: #fff;
  font-size: 16px;
}
.footer__link-link:hover {
  color: #cae5f2;
}
.footer__copyright {
  color: #fff;
  font-size: 14px;
}
.footer__logo, .footer__pagetop {
  display: none;
}
.footer-simple {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .footer-simple {
    padding: 32px 16px;
  }
}

footer.is-map .footer__inner {
  max-width: none;
}

/*================================================================
サイドメニュー
=================================================================*/
@media screen and (max-width: 990px) {
  aside.side {
    display: none;
  }
}
aside.side > nav {
  border-bottom: 1px solid #b4b4b7;
}
aside.side > nav > h2 {
  padding: 16px 16px 16px 48px;
  border-top: 3px solid #003c79;
  background-color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  color: #003c79;
}
aside.side > nav > h2[class*=side-hdg2__] {
  position: relative;
}
aside.side > nav > h2[class*=side-hdg2__]::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
}
aside.side > nav > h2.side-hdg2__application::before {
  -webkit-mask-image: url("/assets/img/icon_write.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_write.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 24px;
  height: 24px;
}
aside.side > nav > h2.side-hdg2__inquiry::before {
  -webkit-mask-image: url("/assets/img/icon_preview.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_preview.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 24px;
  height: 24px;
}
aside.side > nav > h2.side-hdg2__account::before {
  -webkit-mask-image: url("/assets/img/icon_account_gear.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_account_gear.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 24px;
  height: 24px;
}
aside.side > nav > ul > li {
  border-top: 1px solid #b4b4b7;
}
aside.side > nav > ul > li > a {
  color: #1a1a1c !important;
  background-color: #fff;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 16px 34px 16px 12px;
}
aside.side > nav > ul > li > a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 12px;
  height: 12px;
}
aside.side > nav > ul > li > a:hover {
  text-decoration: none;
  background-color: #f8f8fb;
}
aside.side > nav > ul > li.is-current > a {
  background-color: #eff7fb;
}
aside.side > nav > ul > li.is-current > a:hover {
  background-color: #eff7fb;
}
aside.side > nav > ul > li.is-limit {
  position: relative;
}
aside.side > nav > ul > li.is-limit > a {
  padding-right: 60px;
}
aside.side > nav > ul > li.is-limit > a [class*=m-filter__] {
  position: absolute;
  right: 32px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
aside.side .side-help {
  margin-top: 40px;
  background-color: #d8d8db;
  border-radius: 4px;
  padding: 10px;
}
aside.side .side-help > h2 {
  font-size: 1.25rem;
  margin: 12px 8px 0 8px;
}
aside.side .side-help > ul {
  margin-top: 22px;
}
aside.side .side-help > ul > li + li {
  border-top: 1px solid #f1f1f4;
}
aside.side .side-help > ul > li > a {
  color: #1a1a1c !important;
  background-color: #fff;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 16px 34px 16px 12px;
}
aside.side .side-help > ul > li > a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 12px;
  height: 12px;
}
aside.side .side-help > ul > li > a:hover {
  text-decoration: none;
  background-color: #f8f8fb;
}
aside.side .side-help > ul > li.is-current > a {
  background-color: #eff7fb;
}
aside.side .side-help > ul > li.is-current > a:hover {
  background-color: #eff7fb;
}

/* is-media-tablet
--------------------------------------------------------*/
@media screen and (min-width: 991px) {
  body.is-media-tablet aside.side {
    display: none;
  }
}

/*================================================================
contents
=================================================================*/
/* パンくず
--------------------------------------------------------*/
.breadcrumb {
  margin-top: -48px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 0;
    padding-top: 16px;
  }
}
.breadcrumb > ul > li {
  display: inline;
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: #626264;
}
.breadcrumb > ul > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: url("/assets/img/icon_arrow_right.svg") left top no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(139%) hue-rotate(202deg) brightness(90%) contrast(91%);
}
.breadcrumb > ul > li:first-child {
  padding-left: 0;
}
.breadcrumb > ul > li:first-child::before {
  display: none;
}
.breadcrumb > ul > li > a {
  text-decoration: underline;
  color: #003c79;
}
.breadcrumb + .m-hdg1 {
  margin-top: 32px;
}
.breadcrumb + .m-hdg1-icon {
  margin-top: 40px;
}

/*================================================================
フォントサイズ制御
=================================================================*/
html.fontsize-m {
  font-size: 100%;
}
html.fontsize-l {
  font-size: 136%;
}
html.fontsize-ll {
  font-size: 200%;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff"), url("../fonts/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff"), url("../fonts/NotoSansJP-Bold.otf") format("opentype");
}
/*================================================================
アコーディオン
=================================================================*/
.m-accordion-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m-accordion-list--q-and-a {
  gap: 0;
  border-top: 1px solid #b4b4b7;
}
.m-accordion-list__item {
  margin: 0;
  padding: 0;
}
.m-accordion__add-button {
  width: 100%;
  padding: 22px 32px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #0d44a0;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #0d44a0;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .m-accordion__add-button {
    padding: 16px;
  }
}
.m-accordion__add-button:hover {
  background: #f1f1f4;
}
.m-accordion__add-button::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  -webkit-mask-image: url("/assets/img/icon_plus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_plus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 24px;
  height: 24px;
}
.m-accordion-info {
  border: 2px solid #b4b4b7;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.m-accordion-info__toggle {
  width: 100%;
  min-height: 80px;
  margin: 0;
  border-radius: 10px;
  padding: 16px 72px 16px 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  position: relative;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__toggle {
    padding: 16px 52px 16px 16px;
    flex-wrap: wrap;
    align-items: center;
    min-height: auto;
  }
}
.m-accordion-info__toggle-text {
  display: flex;
  gap: 16px;
  flex-grow: 1;
  flex-shrink: 1;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__toggle-text {
    display: block;
    font-size: 1.125rem;
  }
}
.m-accordion-info__toggle-text > span:first-child {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__toggle-text > span:first-child {
    display: block;
  }
}
.m-accordion-info__toggle-text > span:last-child {
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__toggle-text > span:last-child {
    display: block;
  }
}
.m-accordion-info__toggle::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  transform: translateY(-50%) rotateX(0deg);
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-mask-image: url("/assets/img/icon_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__toggle::after {
    right: 18px;
    top: 30px;
    width: 21.5px;
  }
}
.m-accordion-info__delete-button {
  border: 2px solid #0d44a0;
  border: 2px solid #0d44a0;
  border-radius: 8px;
  min-height: 48px;
  padding: 9px 20px;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);
  color: #0d44a0;
  font-weight: bold;
  font-size: 1rem;
  border-color: #0d44a0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.m-accordion-info__delete-button:hover {
  background: #f1f1f4;
}
.m-accordion-info__delete-button::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  -webkit-mask-image: url("/assets/img/icon_minus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_minus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
}
.m-accordion-info .m-accordion-info__delete {
  gap: 0;
}
.m-accordion-info .m-accordion-info__add {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info .m-accordion-info__add {
    gap: 16px;
    flex-direction: column;
  }
  .m-accordion-info .m-accordion-info__add > li {
    width: 100%;
  }
  .m-accordion-info .m-accordion-info__add > li, .m-accordion-info .m-accordion-info__add > li button, .m-accordion-info .m-accordion-info__add > li a {
    height: 100%;
  }
  .m-accordion-info .m-accordion-info__add > li button, .m-accordion-info .m-accordion-info__add > li a {
    width: 100%;
  }
  .m-accordion-info .m-accordion-info__add > li [class*=m-button__] {
    word-break: break-all;
  }
}
.m-accordion-info__content {
  width: 100%;
  margin: 0;
  padding: 30px 16px 32px;
  box-sizing: border-box;
  border-top: 2px solid #b4b4b7;
  display: none;
}
.m-accordion-info.is-open > .m-accordion-info__content {
  display: block;
}
.m-accordion-info.is-open > .m-accordion-info__toggle::after {
  transform: translateY(-50%) rotateX(180deg);
}
.m-accordion-info + .m-accordion-info {
  margin-top: 20px;
}
.m-accordion-info .m-form-hdg4 {
  margin: 32px 0;
}
.m-accordion-info .m-form-hdg4:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .m-accordion-info .m-form-hdg4 {
    margin: 24px 0;
  }
}
.m-accordion-info .m-form-hdg5 {
  margin: 32px 0;
}
.m-accordion-info .m-form-hdg5:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .m-accordion-info .m-form-hdg5 {
    margin: 24px 0;
  }
}
.m-accordion-info.is-open:not(.is-in-action) {
  overflow: visible;
}
.m-accordion-info__sort {
  margin-top: 32px;
}
.m-accordion-info__sort .m-accordion-info {
  position: relative;
}
.m-accordion-info__sort-text {
  font-size: 1rem;
}
.m-accordion-info__sort-input-text {
  margin-top: 8px;
}
.m-accordion-info__sort-input-text input[type=text].m-form-input__text {
  max-width: 100% !important;
}
.m-accordion-info__sort .m-accordion-info__content {
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort .m-accordion-info__content {
    padding: 16px;
  }
}
.m-accordion-info__sort .m-accordion-info__content-inner > .m-accordion-info__sort-label:first-child {
  margin-top: 0;
}
.m-accordion-info__sort .m-accordion-info__content-inner .m-form-select {
  max-width: 100%;
}
.m-accordion-info__sort fieldset {
  margin: 20px 0 8px;
  min-inline-size: auto;
}
.m-accordion-info__sort-type {
  position: absolute;
  right: 72px;
  top: 25px;
  display: flex;
}
.m-accordion-info__sort-type > li {
  margin: 0 0 0 20px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-type {
    top: 58px;
    right: 26px;
  }
}
.m-accordion-info__sort-hdg {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  margin: 20px 0;
}
.m-accordion-info__sort fieldset + .m-accordion-info__sort-hdg {
  margin-top: -8px;
}
.m-accordion-info__sort-label {
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
  margin: 20px 0 8px;
}
.m-accordion-info__sort-num {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-num {
    flex-direction: column;
  }
}
.m-accordion-info__sort-calendar {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-calendar {
    flex-direction: column;
  }
}
.m-accordion-info__sort-calendar > div {
  flex: 1;
}
.m-accordion-info__sort-calendar > span {
  width: 16px;
}
.m-accordion-info__sort-calendar .m-accordion-info__sort-row:first-of-type {
  display: flex;
  padding-right: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-calendar .m-accordion-info__sort-row:first-of-type {
    padding-right: 32px;
  }
}
.m-accordion-info__sort-calendar .m-accordion-info__sort-row:first-of-type:after {
  content: "〜";
  position: absolute;
  top: 12px;
  right: 7px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-calendar .m-accordion-info__sort-row:first-of-type:after {
    right: 0;
  }
}
.m-accordion-info__sort-col2, .m-accordion-info__sort-col2-row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-col2, .m-accordion-info__sort-col2-row {
    flex-direction: column;
  }
}
.m-accordion-info__sort-col2 > div, .m-accordion-info__sort-col2-row > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-col2 > div, .m-accordion-info__sort-col2-row > div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-col2 > div:nth-child(n+2) > :first-child, .m-accordion-info__sort-col2-row > div:nth-child(n+2) > :first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-col2-row {
    flex-direction: row;
  }
}
.m-accordion-info__sort-buttonblock {
  border-top: 1px solid #b4b4b7;
  margin-top: 32px;
}
.m-accordion-info__sort-button {
  width: 220px;
  margin: 32px auto 0;
}
.m-accordion-info__sort-button [class*=m-button] {
  width: 100%;
  word-break: break-all;
}
.m-accordion-info__sort-reset-button {
  width: -webkit-max-content;
  width: max-content;
  margin: 16px auto 0;
  display: block;
  text-align: center;
}
.m-accordion-info__sort-reset-button .m-link {
  font-weight: bold;
}
.m-accordion-info__sort-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-row {
    width: 100%;
  }
}
.m-accordion-info__sort-row + .m-form-note {
  margin-top: 0;
}
.m-accordion-info__sort-expand {
  flex-grow: 1;
}
.m-accordion-info__sort-border {
  width: 100%;
  margin: 0 0 32px;
  padding: 0 0 32px;
  border: none;
  border-bottom: 1px solid #b4b4b7;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort .m-form-electronic-number__layout {
    flex-wrap: wrap;
  }
}
.m-accordion-info__sort-license-number {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort-license-number {
    flex-wrap: wrap;
  }
}
.m-accordion-info__sort-license-number .m-accordion-info__sort-label {
  margin-top: 0;
}
.m-accordion-info__sort-license-number-inner {
  margin-top: 20px;
  width: 100%;
}
.m-accordion-info__wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .m-accordion-info__wrap + .m-accordion-info__wrap {
    margin-top: 16px;
  }
}
.m-accordion-info__wrap:first-child {
  position: relative;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap:first-child {
    padding-right: 0;
  }
}
.m-accordion-info__wrap:first-child::after {
  content: "〜";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap:first-child::after {
    content: unset !important;
  }
}
.m-accordion-info__wrap:first-child.is-number::after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: 24px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap:first-child.is-number .m-accordion-info__sort-row:last-of-type::after {
    content: "";
    position: absolute;
    border: 1px solid #1a1a1c;
    width: 18px;
    top: 24px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap:first-child .m-accordion-info__sort-row:last-of-type {
    padding-right: 32px;
    position: relative;
  }
  .m-accordion-info__wrap:first-child .m-accordion-info__sort-row:last-of-type::after {
    content: "〜";
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .m-accordion-info__wrap:first-child .m-accordion-info__sort-row:last-of-type::after {
    right: 0;
  }
}
.m-accordion-info__wrap .m-accordion-info__sort-row:first-child {
  position: relative;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap .m-accordion-info__sort-row:first-child {
    padding-right: 32px;
  }
}
.m-accordion-info__wrap .m-accordion-info__sort-row:first-child::after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: 24px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .m-accordion-info__wrap .m-accordion-info__sort-row:first-child::after {
    right: 0;
  }
}
.m-accordion-circle {
  width: 0.9em;
  height: 0.9em;
  margin: 0.3em 0.05em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: top;
}
.m-accordion-circle-text {
  font-size: 0.75em;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.1em;
  margin-left: -0.05em;
  margin-bottom: -0.1em;
}
.m-accordion-circle-text-digit-2 {
  transform: scaleX(0.7);
}
.m-accordion-circle-text-digit-3 {
  transform: scaleX(0.5);
}
.m-accordion-circle-text-digit-4 {
  transform: scaleX(0.2);
}
.m-accordion + .m-accordion__add-button {
  margin-top: 20px;
}

.m-info {
  border: 2px solid #b4b4b7;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.m-info__sort {
  margin-top: 32px;
}
.m-info__sort .m-info {
  position: relative;
}
.m-info__sort-text {
  font-size: 1rem;
}
.m-info__sort-input-text {
  margin-top: 8px;
}
.m-info__sort-input-text input[type=text].m-form-input__text {
  max-width: 100% !important;
}
.m-info__sort .m-info__content {
  width: 100%;
  margin: 0;
  padding: 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .m-info__sort .m-info__content {
    padding: 16px;
  }
}
.m-info__sort fieldset {
  margin: 20px 0 8px;
  min-inline-size: auto;
}
.m-info__sort-hdg {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  margin: 0 0 20px;
}

.m-accordion-box .m-accordion-list {
  gap: 0;
  border-top: 1px solid #b4b4b7;
}
.m-accordion-box__inner {
  overflow: hidden;
  border-bottom: 1px solid #b4b4b7;
}
.m-accordion-box__inner.is-open .m-accordion-box__cts {
  display: flex;
}
.m-accordion-box__inner.is-open .m-accordion-box__toggle::after {
  background-image: url(/assets/img/icon_arrow_up.svg);
}
.m-accordion-box__toggle {
  width: 100%;
  background: #f1f1f4;
  display: flex;
  cursor: pointer;
  color: #1a1a1c;
  position: relative;
}
.m-accordion-box__toggle:hover {
  background: #e8e8eb;
}
.m-accordion-box__toggle-hdg {
  min-width: 50px;
  padding: 12px 15px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: stretch;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.m-accordion-box__toggle-txt {
  padding: 16px 56px 16px 16px;
  box-sizing: border-box;
  flex-shrink: 1;
  flex-grow: 1;
  align-self: stretch;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-accordion-box__toggle-txt {
    padding: 16px 48px 16px 0;
  }
}
.m-accordion-box__toggle::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background-image: url(/assets/img/icon_arrow_down.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s;
}
.m-accordion-box__cts {
  width: 100%;
  background: #fff;
  display: none;
}
.m-accordion-box__cts-hdg {
  padding: 12px 15px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: stretch;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.m-accordion-box__cts-inner {
  padding: 16px;
  box-sizing: border-box;
  flex-shrink: 1;
  flex-grow: 1;
  align-self: stretch;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .m-accordion-box__cts-inner {
    padding: 16px 16px 16px 0;
  }
}

.m-accordion-ex {
  border-bottom: 1px solid #b4b4b7;
}
.m-accordion-ex__inner {
  overflow: hidden;
}
.m-accordion-ex__inner.is-open .m-accordion-ex__cts {
  display: flex;
}
.m-accordion-ex__inner.is-open .m-accordion-ex__toggle::after {
  background-image: url(/assets/img/icon_minus.svg);
}
.m-accordion-ex__toggle {
  width: 100%;
  display: flex;
  cursor: pointer;
  color: #1a1a1c;
  background-color: #fff;
  position: relative;
  padding: 16px 56px 16px 16px;
  font-size: 1.125rem;
  font-weight: bold;
  border-top: 1px solid #b4b4b7;
  transition: background-color 0.2s;
}
@media screen and (max-width: 768px) {
  .m-accordion-ex__toggle {
    padding: 16px 40px 16px 0;
  }
}
.m-accordion-ex__toggle:hover {
  background-color: #f1f1f4;
}
@media screen and (max-width: 768px) {
  .m-accordion-ex__toggle:hover {
    background-color: #fff;
  }
}
.m-accordion-ex__toggle::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: url(/assets/img/icon_plus.svg) center center no-repeat;
  background-size: contain;
  transition: background-image 0.3s;
}
@media screen and (max-width: 768px) {
  .m-accordion-ex__toggle::after {
    right: 0;
  }
}
.m-accordion-ex__cts {
  width: 100%;
  background: #fff;
  display: none;
  border-top: 1px solid #b4b4b7;
}
.m-accordion-ex__cts-inner {
  padding: 16px;
}

.m-accordion-hdg > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m-accordion-hdg > ul > li {
  margin: 0;
  padding: 0;
}
.m-accordion-hdg__inner {
  border-bottom: none;
  overflow: hidden;
}
.m-accordion-hdg__inner.is-open .m-accordion-hdg__cts {
  display: flex;
}
.m-accordion-hdg__inner.is-open .m-accordion-hdg__toggle::after {
  background-image: url(/assets/img/icon_arrow_up.svg);
}
.m-accordion-hdg .m-accordion-hdg__toggle-icon {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: stretch;
  text-align: center;
  grid-row: auto/span 2;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg .m-accordion-hdg__toggle-icon {
    display: block;
    grid-row: auto/span 1;
    padding-top: 0;
    padding-bottom: 0;
    width: 56px;
    height: 56px;
  }
}
.m-accordion-hdg .m-accordion-hdg__toggle-icon:before {
  content: "";
  background-color: #003c79;
  display: inline-block;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg .m-accordion-hdg__toggle-icon:before {
    width: 56px;
    height: 56px;
  }
}
.m-accordion-hdg__toggle {
  background: #eff7fb;
  color: #1a1a1c;
  width: 100%;
  display: grid;
  grid-template-columns: 80px auto;
  grid-template-rows: auto;
  cursor: pointer;
  position: relative;
  min-height: 80px;
  margin: 0;
  padding: 26px 65px 26px 40px;
  box-sizing: border-box;
  gap: 8px 32px;
  -webkit-appearance: none;
          appearance: none;
}
.m-accordion-hdg__toggle:hover {
  background: #DAEDF6;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg__toggle {
    padding: 16px 48px 16px 16px;
    gap: 8px;
    grid-template-columns: 56px auto;
    min-height: auto;
    row-gap: 0px;
  }
}
.m-accordion-hdg__toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background-image: url(/assets/img/icon_arrow_down.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg__toggle::after {
    right: 16px;
    width: 21.5px;
  }
}
.m-accordion-hdg__toggle-txt {
  box-sizing: border-box;
  display: block;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg__toggle-txt {
    grid-column: auto/span 2;
  }
}
.m-accordion-hdg__toggle-title {
  font-size: 2rem;
  display: block;
  font-weight: bold;
  color: #003c79;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg__toggle-title {
    align-self: center;
    font-size: 1.5rem;
  }
}
.m-accordion-hdg__cts {
  width: 100%;
  background: #fff;
  display: none;
}
.m-accordion-hdg__cts-inner {
  box-sizing: border-box;
  flex-shrink: 1;
  flex-grow: 1;
  align-self: stretch;
  font-size: 1rem;
  padding: 32px 40px;
}
@media screen and (max-width: 768px) {
  .m-accordion-hdg__cts-inner {
    padding: 20px 16px 0;
  }
}

/*================================================================
ブロック
=================================================================*/
/*================================================================
見出し
=================================================================*/
.m-hdg1 {
  margin: 64px auto 24px;
  padding: 7px 0 7px 48px;
  box-sizing: border-box;
  font-size: 2.625rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #003c79;
}
.m-hdg1:first-child {
  margin-top: 0;
}
.m-hdg1::before {
  content: "";
  display: block;
  width: 24px;
  height: 72px;
  position: absolute;
  top: 0.125rem;
  left: 0;
  background: linear-gradient(to top, transparent 12px, #0078b0 12px) 0 0/50% 100% no-repeat, linear-gradient(to bottom, transparent 12px, #0d44a0 12px) 100% 0/50% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .m-hdg1 {
    font-size: 1.625rem;
    margin: 32px auto 24px;
    padding: 15.5px 0 0 32px;
    min-height: 64px;
  }
  .m-hdg1::before {
    width: 16px;
    height: 64px;
    background: linear-gradient(to top, transparent 12px, #0078b0 12px) 0 0/50% 100% no-repeat, linear-gradient(to bottom, transparent 12px, #0d44a0 12px) 100% 0/50% 100% no-repeat;
  }
}
.m-hdg1-icon {
  margin: 64px auto 24px;
  padding: 0 0 0 67px;
  min-height: 56px;
  box-sizing: border-box;
  font-size: 2.625rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #003c79;
}
.m-hdg1-icon:first-child {
  margin-top: 0;
}
.m-hdg1-icon[class*=m-icon] {
  width: auto;
  height: auto;
}
.m-hdg1-icon[class*=m-icon]:before {
  filter: brightness(0) saturate(100%) invert(16%) sepia(36%) saturate(4474%) hue-rotate(195deg) brightness(96%) contrast(104%);
  width: 56px;
  height: 56px;
  display: block;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .m-hdg1-icon {
    font-size: 1.625rem;
    margin: 32px auto 24px;
    padding-top: 7px;
  }
  .m-hdg1-icon[class*=m-icon]:before {
    top: 0;
  }
}

.m-hdg2 {
  margin: 64px auto 24px;
  padding: 0 0 0 34px;
  box-sizing: border-box;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #003c79;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-hdg2 {
    margin-top: 40px;
    font-size: 1.5rem;
    padding: 0 0 0 24px;
  }
}
.m-hdg2::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #0078b0;
}
@media screen and (max-width: 768px) {
  .m-hdg2::before {
    width: 8px;
  }
}

.m-hdg3 {
  margin: 40px auto 16px;
  font-size: 1.625rem;
  font-weight: bold;
  color: #003c79;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-hdg3 {
    font-size: 1.375rem;
  }
}

.m-hdg4 {
  margin: 40px auto 16px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #003c79;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-hdg4 {
    font-size: 1.25rem;
  }
}

.m-hdg5 {
  margin: 40px auto 16px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #003c79;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-hdg5 {
    font-size: 1.125rem;
  }
}

/* 連番タイトル
--------------------------------------------------------*/
.m-hdg2-order,
.m-hdg3-order,
.m-hdg4-order {
  display: flex;
  gap: 8px;
  font-weight: bold;
  color: #003c79;
}
.m-hdg2-order__num,
.m-hdg3-order__num,
.m-hdg4-order__num {
  background-color: #0d44a0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-hdg2-order__text,
.m-hdg3-order__text,
.m-hdg4-order__text {
  flex: 1;
}

.m-hdg2-order {
  margin: 64px auto 24px;
  font-size: 2rem;
}
.m-hdg2-order__num {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
}
.m-hdg2-order__text {
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .m-hdg2-order {
    margin-top: 40px;
    font-size: 1.5rem;
  }
  .m-hdg2-order__num {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
  }
}

.m-hdg3-order {
  margin: 40px auto 16px;
  font-size: 1.625rem;
}
.m-hdg3-order__num {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.m-hdg3-order__text {
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .m-hdg3-order {
    font-size: 1.375rem;
  }
  .m-hdg3-order__num {
    font-size: 1.125rem;
    width: 32px;
    height: 32px;
  }
}

.m-hdg4-order {
  margin: 40px auto 16px;
  font-size: 1.375rem;
}
.m-hdg4-order__num {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.m-hdg4-order__text {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .m-hdg4-order {
    font-size: 1.25rem;
  }
  .m-hdg4-order__num {
    font-size: 1.125rem;
    width: 32px;
    height: 32px;
  }
  .m-hdg4-order__text {
    margin-top: 0px;
  }
}

/*================================================================
label
=================================================================*/
.m-label-required {
  display: inline-block;
  color: #fff;
  background: #b65200;
  min-width: 56px;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  border-radius: 4px;
  padding: 5px 2px;
}
@media screen and (max-width: 768px) {
  .m-label-required {
    font-size: 0.875rem;
    min-width: 46px;
  }
}

.m-form-label {
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .m-form-label {
    flex-direction: column;
    row-gap: 4px;
    display: inline-flex;
  }
}
.m-form-label .m-link-blank {
  font-weight: normal;
  font-size: 1rem;
}
.m-form-label__bold {
  font-weight: bold;
}
.m-form-label-change {
  background: #626264;
  color: #fff;
  border-radius: 4px;
  line-height: 1;
  font-size: 1rem;
  font-weight: bold;
  min-height: 26px;
  padding: 1px 12px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.m-form-label--yearlydivision {
  margin-left: calc(1em + 8px);
}

[class*=m-label-info] {
  display: inline-block;
  width: 120px;
  height: -webkit-max-content;
  height: max-content;
  padding: 2px 8px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  text-align: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.m-label-info__alert {
  background: #f6d7d7;
  color: #ec0000;
}
.m-label-info__note {
  background: #f8f1e0;
  color: #9c4600;
}
.m-label-info__em {
  background: #cae5f2;
  color: #003c79;
}
.m-label-info__def {
  background: #e8e8eb;
  color: #1a1a1c;
}

/*================================================================
リンク
=================================================================*/
.m-link {
  text-decoration: underline;
  color: #0d44a0;
  cursor: pointer;
  word-break: break-all;
}
.m-link:hover {
  color: #003c79;
}
.m-link-blank {
  font-size: 1rem;
  display: inline-block;
  transition: opacity 0.2s;
  position: relative;
  text-decoration: underline;
}
.m-link-blank:hover {
  color: #003c79;
}
.m-link-blank .m-icon__blank {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 4px;
  vertical-align: -3px;
}
.m-link-blank .m-icon__blank::before {
  -webkit-mask-image: url("/assets/img/icon_blank.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_blank.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
  background-size: 16px;
}
.m-link-blank__img {
  display: inline-block;
  width: 1em !important;
  height: auto !important;
  margin: 0 0.25em;
  vertical-align: -0.1em;
}
.m-link-modal, .m-link-tooltip {
  font-size: 1rem;
  font-weight: normal;
  text-decoration: underline;
  color: #0d44a0;
  cursor: pointer;
  text-align: left;
}
.m-link-modal:hover, .m-link-tooltip:hover {
  color: #003c79;
}
.m-link-modal [class*=m-icon__], .m-link-tooltip [class*=m-icon__] {
  margin-left: 0.25em;
  position: relative;
  top: 5px;
}
.m-link-anchor {
  color: #0d44a0;
  display: inline-block;
  text-decoration: underline;
}
.m-link-anchor::after {
  content: "";
  -webkit-mask-image: url("/assets/img/icon_anchor.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_anchor.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 4px;
  position: relative;
  bottom: -4px;
}
.m-link-anchor:hover {
  color: #003c79;
}
.m-link-anchor__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.m-link-anchor__list.is-row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 32px;
}
@media screen and (max-width: 768px) {
  .m-link-anchor__list.is-row {
    flex-direction: column;
    gap: 16px;
  }
}
.m-link__list {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.m-link__list:last-of-type {
  margin: 0;
}
.m-link__list li {
  margin: 0 !important;
}
.m-link__list-layout {
  margin-bottom: 20px;
}
.m-message-note + .m-link__list-layout {
  margin-top: 20px;
}
.m-link-icon {
  font-size: 1rem;
  display: inline-block;
  transition: opacity 0.2s;
  position: relative;
  text-decoration: underline;
}
.m-link-icon:hover {
  color: #003c79;
}
.m-link-icon__img {
  display: inline-block;
  width: 1em !important;
  height: auto !important;
  margin: 0 0.25em;
  vertical-align: -0.1em;
}
.m-link-tel {
  color: #003c79;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .m-link-tel {
    pointer-events: none;
  }
}
.m-link-blank.is-inline, .m-link-icon.is-inline {
  display: inline;
}

img[src$=".svg"].m-link-tooltip__image {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  display: inline-block;
}

/*================================================================
ボタン
=================================================================*/
[class*=m-button__primary],
[class*=m-button__cv-primary],
[class*=m-button__secondary],
[class*=m-button__cv-secondary] {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  word-break: keep-all;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
}
[class*=m-button__primary]:hover,
[class*=m-button__cv-primary]:hover,
[class*=m-button__secondary]:hover,
[class*=m-button__cv-secondary]:hover {
  color: #fff !important;
}

[class*=m-button__primary],
[class*=m-button__cv-primary] {
  border: 2px solid #0d44a0;
  background: #0d44a0;
  color: #fff;
}
[class*=m-button__primary]:hover,
[class*=m-button__cv-primary]:hover {
  background: #003c79;
  border: 2px solid #003c79;
  color: #fff !important;
  text-decoration: none !important;
}

[class*=m-button__secondary],
[class*=m-button__cv-secondary] {
  border: 2px solid #0d44a0;
  background: #fff;
  color: #0d44a0;
}
[class*=m-button__secondary]:hover,
[class*=m-button__cv-secondary]:hover {
  border: 2px solid #0d44a0;
  background: #f1f1f4;
  color: #0d44a0 !important;
  text-decoration: none !important;
}

[class*=m-button__tertiary] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d44a0;
  font-weight: bold;
  box-sizing: border-box;
  word-break: keep-all;
  cursor: pointer;
  text-decoration: underline;
  border-radius: 8px;
  border: 2px solid transparent;
  line-height: 1.5;
  text-align: center;
}
[class*=m-button__tertiary].is-error {
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);
}
[class*=m-button__tertiary].is-disable {
  background: transparent !important;
  color: #949497 !important;
  border-color: transparent !important;
  text-decoration: underline !important;
  pointer-events: none;
}
[class*=m-button__tertiary].is-error {
  text-decoration: none;
}
[class*=m-button__tertiary]:hover {
  color: #003c79;
}

[class*=m-button] {
  gap: 8px;
  text-align: center;
}
[class*=m-button].is-error {
  border: 2px solid #ec0000;
  background: #fff;
  color: #ec0000;
}
[class*=m-button].is-error:hover {
  border: 2px solid #ec0000;
  background: #fcf2f0;
  color: #ec0000 !important;
  text-decoration: none !important;
}
[class*=m-button].is-error::after {
  background-color: #ec0000;
}

[class*=m-button].is-disable {
  background: #949497;
  color: #fff;
  border-color: #949497;
  box-shadow: none;
  cursor: inherit;
  pointer-events: none;
}
[class*=m-button].is-disablep {
  background: #949497;
  color: #fff;
}
[class*=m-button].is-disable::after {
  background-color: #fff;
}

.m-button__primary-l {
  width: 100%;
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__primary-l {
    padding: 18px 20px;
  }
}
.m-button__primary-m {
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__primary-m {
    min-height: 56px;
    font-size: 1rem;
  }
}
.m-button__primary-s {
  padding: 9px 20px;
  min-height: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .m-button__primary-s {
    padding: 8px 20px;
    min-height: 44px;
  }
}
.m-button__secondary-l {
  width: 100%;
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__secondary-l {
    padding: 18px 20px;
  }
}
.m-button__secondary-m {
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__secondary-m {
    min-height: 56px;
    font-size: 1rem;
  }
}
.m-button__secondary-s {
  padding: 9px 20px;
  min-height: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .m-button__secondary-s {
    padding: 8px 20px;
    min-height: 44px;
  }
}
.m-button__tertiary-l {
  width: 100%;
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .m-button__tertiary-l {
    padding: 18px 20px;
  }
}
.m-button__tertiary-m {
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__tertiary-m {
    min-height: 56px;
    font-size: 1rem;
  }
}
.m-button__tertiary-s {
  padding: 9px 20px;
  min-height: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .m-button__tertiary-s {
    padding: 8px 20px;
    min-height: 44px;
  }
}
.m-button__error-m {
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__error-m {
    min-height: 56px;
    font-size: 1rem;
  }
}
.m-button__error-s {
  padding: 9px 20px;
  min-height: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .m-button__error-s {
    padding: 8px 20px;
    min-height: 44px;
  }
}
.m-button__disable-m {
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__disable-m {
    min-height: 56px;
    font-size: 1rem;
  }
}
.m-button__disable-s {
  padding: 9px 20px;
  min-height: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .m-button__disable-s {
    padding: 8px 20px;
    min-height: 44px;
  }
}

/* アイコン付き
--------------------------------------------------------*/
[class*=m-button__primary-i-],
[class*=m-button__secondary-i-],
[class*=m-button__tertiary-i-] {
  position: relative;
  padding: 6px 44px 6px 20px;
  min-height: 48px;
  font-size: 1rem;
}
[class*=m-button__primary-i-]::after,
[class*=m-button__secondary-i-]::after,
[class*=m-button__tertiary-i-]::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

[class*=m-button__tertiary-i-] {
  padding: 0 30px 0 0;
  min-height: 16px;
}
[class*=m-button__tertiary-i-]::after {
  right: 8px;
}
[class*=m-button__tertiary-i-].is-disable::after {
  background-color: #949497;
}

.m-button__primary-i-download::after {
  -webkit-mask-image: url("/assets/img/icon_download.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_download.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__primary-i-trash::after {
  -webkit-mask-image: url("/assets/img/icon_trash.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_trash.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__primary-i-preview::after {
  -webkit-mask-image: url("/assets/img/icon_preview.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_preview.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__primary-i-cross::after {
  -webkit-mask-image: url("/assets/img/icon_cross.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_cross.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__primary-i-reload::after {
  -webkit-mask-image: url("/assets/img/icon_reload.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_reload.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__primary-i-minus__border::after {
  -webkit-mask-image: url("/assets/img/icon_minus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_minus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__primary-i-plus__border::after {
  -webkit-mask-image: url("/assets/img/icon_plus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_plus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-download::after {
  -webkit-mask-image: url("/assets/img/icon_download.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_download.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-trash::after {
  -webkit-mask-image: url("/assets/img/icon_trash.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_trash.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-preview::after {
  -webkit-mask-image: url("/assets/img/icon_preview.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_preview.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-cross::after {
  -webkit-mask-image: url("/assets/img/icon_cross.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_cross.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-reload::after {
  -webkit-mask-image: url("/assets/img/icon_reload.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_reload.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-minus__border::after {
  -webkit-mask-image: url("/assets/img/icon_minus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_minus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__secondary-i-plus__border::after {
  -webkit-mask-image: url("/assets/img/icon_plus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_plus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-download::after {
  -webkit-mask-image: url("/assets/img/icon_download.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_download.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-trash::after {
  -webkit-mask-image: url("/assets/img/icon_trash.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_trash.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-preview::after {
  -webkit-mask-image: url("/assets/img/icon_preview.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_preview.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-cross::after {
  -webkit-mask-image: url("/assets/img/icon_cross.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_cross.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-reload::after {
  -webkit-mask-image: url("/assets/img/icon_reload.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_reload.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-minus__border::after {
  -webkit-mask-image: url("/assets/img/icon_minus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_minus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-button__tertiary-i-plus__border::after {
  -webkit-mask-image: url("/assets/img/icon_plus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_plus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}

/* コンバージョンボタン
--------------------------------------------------------*/
.m-button__cv-primary-xl {
  width: 100%;
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .m-button__cv-primary-xl {
    padding: 18px 20px;
  }
}
.m-button__cv-primary-l {
  width: 100%;
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__cv-primary-l {
    padding: 18px 20px;
  }
}
.m-button__cv-secondary-l {
  width: 100%;
  padding: 14px 20px;
  min-height: 72px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-button__cv-secondary-l {
    padding: 18px 20px;
  }
}

/* アイコン付き imgタグ使用
--------------------------------------------------------*/
[class*=m-button__].m-button-icon {
  position: relative;
  word-break: break-all;
  padding: 14px 60px 14px 40px;
  gap: 0;
  word-break: break-all;
}
[class*=m-button__].m-button-icon > img {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px !important;
  height: 24px !important;
  display: block;
  margin: -12px 0 0 0;
}
[class*=m-button__].m-button-icon.m-button__primary-s, [class*=m-button__].m-button-icon.m-button__secondary-s {
  padding: 14px 52px 14px 30px;
}
[class*=m-button__].m-button-icon.m-button__primary-s > img, [class*=m-button__].m-button-icon.m-button__secondary-s > img {
  margin-top: -8px;
  width: 16px !important;
  height: 16px !important;
}
@media screen and (max-width: 768px) {
  [class*=m-button__].m-button-icon.m-button__primary-m, [class*=m-button__].m-button-icon.m-button__secondary-m {
    padding: 14px 52px 14px 30px;
  }
  [class*=m-button__].m-button-icon.m-button__primary-m > img, [class*=m-button__].m-button-icon.m-button__secondary-m > img {
    margin-top: -8px;
    width: 16px !important;
    height: 16px !important;
  }
}

/*================================================================
アイコン
=================================================================*/
[class*=m-icon__] {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}
[class*=m-icon__]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

[class*=m-icon__l-] {
  width: 48px;
  height: 48px;
}

img[class*=m-icon__] {
  display: inline-block;
}

.m-icon__size--1em {
  width: 1em !important;
  height: auto !important;
}

.m-icon__arrow-up::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_up.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_up.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow-down::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow-left::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_left.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_left.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow-right::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__cross::before {
  -webkit-mask-image: url("/assets/img/icon_cross.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_cross.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__check::before {
  -webkit-mask-image: url("/assets/img/icon_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__plus::before {
  -webkit-mask-image: url("/assets/img/icon_plus.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_plus.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__minus::before {
  -webkit-mask-image: url("/assets/img/icon_minus.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_minus.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__nav::before {
  -webkit-mask-image: url("/assets/img/icon_nav.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_nav.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow_w_right::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_w_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_w_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow_w_left::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_w_left.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_w_left.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__plus-border::before {
  -webkit-mask-image: url("/assets/img/icon_plus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_plus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__minus-border::before {
  -webkit-mask-image: url("/assets/img/icon_minus_border.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_minus_border.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__download::before {
  -webkit-mask-image: url("/assets/img/icon_download.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_download.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__blank::before {
  -webkit-mask-image: url("/assets/img/icon_blank.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_blank.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__search::before {
  -webkit-mask-image: url("/assets/img/icon_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__reload::before {
  -webkit-mask-image: url("/assets/img/icon_reload.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_reload.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__trash::before {
  -webkit-mask-image: url("/assets/img/icon_trash.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_trash.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__write::before {
  -webkit-mask-image: url("/assets/img/icon_write.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_write.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__eye::before {
  -webkit-mask-image: url("/assets/img/icon_eye.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_eye.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__preview::before {
  -webkit-mask-image: url("/assets/img/icon_preview.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_preview.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__login::before {
  -webkit-mask-image: url("/assets/img/icon_login.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_login.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__logout::before {
  -webkit-mask-image: url("/assets/img/icon_logout.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_logout.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__login-door::before {
  -webkit-mask-image: url("/assets/img/icon_login-door.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_login-door.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__logout-door::before {
  -webkit-mask-image: url("/assets/img/icon_logout-door.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_logout-door.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-arrow-up::before {
  -webkit-mask-image: url("/assets/img/icon_c_arrow_up.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_arrow_up.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-arrow-down::before {
  -webkit-mask-image: url("/assets/img/icon_c_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-arrow-right::before {
  -webkit-mask-image: url("/assets/img/icon_c_arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-arrow-left::before {
  -webkit-mask-image: url("/assets/img/icon_c_arrow_left.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_arrow_left.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-cross::before {
  -webkit-mask-image: url("/assets/img/icon_c_cross.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_cross.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-plus::before {
  -webkit-mask-image: url("/assets/img/icon_c_plus.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_plus.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-minus::before {
  -webkit-mask-image: url("/assets/img/icon_c_minus.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_minus.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow-pullup::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_pullup.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pullup.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow-pulldown::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__arrow-pullright::before {
  -webkit-mask-image: url("/assets/img/icon_arrow_pullright.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pullright.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-alert::before {
  -webkit-mask-image: url("/assets/img/icon_c_alert.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_alert.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__c-question::before {
  -webkit-mask-image: url("/assets/img/icon_c_question.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_c_question.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__document::before {
  -webkit-mask-image: url("/assets/img/icon_document.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_document.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__other::before {
  -webkit-mask-image: url("/assets/img/icon_other.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_other.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__calendar::before {
  -webkit-mask-image: url("/assets/img/icon_calendar.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_calendar.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__beginner::before {
  -webkit-mask-image: url("/assets/img/icon_beginner.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_beginner.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__print::before {
  -webkit-mask-image: url("/assets/img/icon_print.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_print.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__save::before {
  -webkit-mask-image: url("/assets/img/icon_save.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_save.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__alert-limit::before {
  -webkit-mask-image: url("/assets/img/icon_alert_limit.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_alert_limit.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__account::before {
  -webkit-mask-image: url("/assets/img/icon_account.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_account.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__home::before {
  -webkit-mask-image: url("/assets/img/icon_home.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_home.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__account-gear::before {
  -webkit-mask-image: url("/assets/img/icon_account_gear.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_account_gear.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__anchor::before {
  -webkit-mask-image: url("/assets/img/icon_anchor.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_anchor.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__map::before {
  -webkit-mask-image: url("/assets/img/icon_map.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_map.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__earth::before {
  -webkit-mask-image: url("/assets/img/icon_earth.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_earth.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 24px;
  height: 24px;
}
.m-icon__l-document::before {
  -webkit-mask-image: url("/assets/img/icon_l_document.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_document.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-light::before {
  -webkit-mask-image: url("/assets/img/icon_l_light.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_light.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-radio-sta-lic::before {
  -webkit-mask-image: url("/assets/img/icon_l_radio_station_license.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_radio_station_license.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-write::before {
  -webkit-mask-image: url("/assets/img/icon_l_write.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_write.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-write-narrow::before {
  -webkit-mask-image: url("/assets/img/icon_l_write_narrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_write_narrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-ask::before {
  -webkit-mask-image: url("/assets/img/icon_l_ask.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_ask.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-ask-narrow::before {
  -webkit-mask-image: url("/assets/img/icon_l_ask_narrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_ask_narrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-info::before {
  -webkit-mask-image: url("/assets/img/icon_l_info.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_info.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-map::before {
  -webkit-mask-image: url("/assets/img/icon_l_map.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_map.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-map-info::before {
  -webkit-mask-image: url("/assets/img/icon_l_map_info.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_map_info.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-beginner::before {
  -webkit-mask-image: url("/assets/img/icon_l_beginner.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_beginner.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-24h::before {
  -webkit-mask-image: url("/assets/img/icon_l_24h.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_24h.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-time-money::before {
  -webkit-mask-image: url("/assets/img/icon_l_time_money.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_time_money.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-pc-check::before {
  -webkit-mask-image: url("/assets/img/icon_l_pc_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_pc_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-pc-check-only::before {
  -webkit-mask-image: url("/assets/img/icon_l_pc_check_only.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_pc_check_only.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-touch::before {
  -webkit-mask-image: url("/assets/img/icon_l_touch.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_touch.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-proxy::before {
  -webkit-mask-image: url("/assets/img/icon_l_proxy.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_proxy.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-radio-op-lic-sel::before {
  -webkit-mask-image: url("/assets/img/icon_l_radio_operator_license_select.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_radio_operator_license_select.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-calc-money::before {
  -webkit-mask-image: url("/assets/img/icon_l_calc_money.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_calc_money.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-email-receive::before {
  -webkit-mask-image: url("/assets/img/icon_l_email_receive.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_email_receive.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-email-money::before {
  -webkit-mask-image: url("/assets/img/icon_l_email_money.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_email_money.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-email-alert::before {
  -webkit-mask-image: url("/assets/img/icon_l_email_alert.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_email_alert.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-radio-op-lic::before {
  -webkit-mask-image: url("/assets/img/icon_l_radio_operator_license.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_radio_operator_license.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-pc-complete::before {
  -webkit-mask-image: url("/assets/img/icon_l_pc_complete.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_pc_complete.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-radio-tower::before {
  -webkit-mask-image: url("/assets/img/icon_l_radio_tower.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_radio_tower.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-radio-equipment::before {
  -webkit-mask-image: url("/assets/img/icon_l_radio_equipment.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_radio_equipment.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-list-number::before {
  -webkit-mask-image: url("/assets/img/icon_l_list_number.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_list_number.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-list-check::before {
  -webkit-mask-image: url("/assets/img/icon_l_list_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_list_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-beginner-coating::before {
  -webkit-mask-image: url("/assets/img/icon_l_beginner_coating.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_beginner_coating.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-beginner-coating-narrow::before {
  -webkit-mask-image: url("/assets/img/icon_l_beginner_coating_narrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_beginner_coating_narrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-commission::before {
  -webkit-mask-image: url("/assets/img/icon_l_commission.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_commission.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-menkyojo::before {
  -webkit-mask-image: url("/assets/img/icon_l_menkyojo.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_menkyojo.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-pc-gear::before {
  -webkit-mask-image: url("/assets/img/icon_l_pc_gear.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_pc_gear.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-book::before {
  -webkit-mask-image: url("/assets/img/icon_l_book.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_book.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-user-register::before {
  -webkit-mask-image: url("/assets/img/icon_l_user_register.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_user_register.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-user-check::before {
  -webkit-mask-image: url("/assets/img/icon_l_user_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_user_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-service::before {
  -webkit-mask-image: url("/assets/img/icon_l_service.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_service.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__l-select::before {
  -webkit-mask-image: url("/assets/img/icon_l_select.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_select.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 48px;
  height: 48px;
}
.m-icon__giteki-mark::before {
  background: url("/assets/img/icon_giteki_mark.svg") no-repeat;
  width: 24px;
  height: 24px;
}

/*================================================================
ステップバー
=================================================================*/
.m-form-step + .m-form-lead,
.m-form-step + .m-form-lead__large {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .m-form-step + .m-form-lead,
  .m-form-step + .m-form-lead__large {
    margin-top: 24px;
  }
}

.m-form-step {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .m-form-step {
    max-width: 327px;
  }
}

.m-form-step__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin: 0 auto;
  flex-wrap: wrap;
  row-gap: 37px;
}
@media screen and (max-width: 768px) {
  .m-form-step__list {
    overflow: hidden;
    row-gap: 16px;
  }
}
.m-form-step__list[data-number="1"] {
  max-width: calc(0 * 146px + 72px);
}
.m-form-step__list[data-number="1"] .m-form-step__item {
  width: calc((0 * 146px + 72px) / 1);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="1"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="2"] {
  max-width: calc(1 * 146px + 72px);
}
.m-form-step__list[data-number="2"] .m-form-step__item {
  width: calc((1 * 146px + 72px) / 2);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="2"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="3"] {
  max-width: calc(2 * 146px + 72px);
}
.m-form-step__list[data-number="3"] .m-form-step__item {
  width: calc((2 * 146px + 72px) / 3);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="3"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="4"] {
  max-width: calc(3 * 146px + 72px);
}
.m-form-step__list[data-number="4"] .m-form-step__item {
  width: calc((3 * 146px + 72px) / 4);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="4"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="5"] {
  max-width: calc(4 * 146px + 72px);
}
.m-form-step__list[data-number="5"] .m-form-step__item {
  width: calc((4 * 146px + 72px) / 5);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="5"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="6"] {
  max-width: calc(5 * 146px + 72px);
}
.m-form-step__list[data-number="6"] .m-form-step__item {
  width: calc((5 * 146px + 72px) / 6);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="6"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="7"] {
  max-width: calc(6 * 146px + 72px);
}
.m-form-step__list[data-number="7"] .m-form-step__item {
  width: calc((6 * 146px + 72px) / 7);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="7"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="8"] {
  max-width: calc(7 * 146px + 72px);
}
.m-form-step__list[data-number="8"] .m-form-step__item {
  width: calc((7 * 146px + 72px) / 8);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="8"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="9"] {
  max-width: calc(8 * 146px + 72px);
}
.m-form-step__list[data-number="9"] .m-form-step__item {
  width: calc((8 * 146px + 72px) / 9);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="9"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="10"] {
  max-width: calc(9 * 146px + 72px);
}
.m-form-step__list[data-number="10"] .m-form-step__item {
  width: calc((9 * 146px + 72px) / 10);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="10"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="11"] {
  max-width: calc(10 * 146px + 72px);
}
.m-form-step__list[data-number="11"] .m-form-step__item {
  width: calc((10 * 146px + 72px) / 11);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="11"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="12"] {
  max-width: calc(11 * 146px + 72px);
}
.m-form-step__list[data-number="12"] .m-form-step__item {
  width: calc((11 * 146px + 72px) / 12);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="12"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="13"] {
  max-width: calc(12 * 146px + 72px);
}
.m-form-step__list[data-number="13"] .m-form-step__item {
  width: calc((12 * 146px + 72px) / 13);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="13"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="14"] {
  max-width: calc(13 * 146px + 72px);
}
.m-form-step__list[data-number="14"] .m-form-step__item {
  width: calc((13 * 146px + 72px) / 14);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="14"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="15"] {
  max-width: calc(14 * 146px + 72px);
}
.m-form-step__list[data-number="15"] .m-form-step__item {
  width: calc((14 * 146px + 72px) / 15);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="15"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="16"] {
  max-width: calc(15 * 146px + 72px);
}
.m-form-step__list[data-number="16"] .m-form-step__item {
  width: calc((15 * 146px + 72px) / 16);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="16"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="17"] {
  max-width: calc(16 * 146px + 72px);
}
.m-form-step__list[data-number="17"] .m-form-step__item {
  width: calc((16 * 146px + 72px) / 17);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="17"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="18"] {
  max-width: calc(17 * 146px + 72px);
}
.m-form-step__list[data-number="18"] .m-form-step__item {
  width: calc((17 * 146px + 72px) / 18);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="18"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="19"] {
  max-width: calc(18 * 146px + 72px);
}
.m-form-step__list[data-number="19"] .m-form-step__item {
  width: calc((18 * 146px + 72px) / 19);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="19"] .m-form-step__item {
    width: 25%;
  }
}
.m-form-step__list[data-number="20"] {
  max-width: calc(19 * 146px + 72px);
}
.m-form-step__list[data-number="20"] .m-form-step__item {
  width: calc((19 * 146px + 72px) / 20);
}
@media screen and (max-width: 768px) {
  .m-form-step__list[data-number="20"] .m-form-step__item {
    width: 25%;
  }
}

.m-form-step__item {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  position: relative;
  gap: 8px;
}
.m-form-step__item:last-child {
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .m-form-step__item:last-child {
    padding-bottom: 10px;
  }
}
.m-form-step__item:not(:last-child):after {
  --circle-size: 60px;
  --spacing: 10px;
  content: "";
  position: relative;
  bottom: 41px;
  width: min(100% - var(--circle-size) - var(--spacing) * 2, 70px);
  left: calc(50% + var(--circle-size) / 2 + var(--spacing));
  height: 6px;
  background-color: #949497;
  order: -1;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .m-form-step__item:not(:last-child):after {
    --circle-size: 32px;
    --spacing: 4px;
  }
}
@media screen and (max-width: 768px) {
  .m-form-step__item:not(:last-child):after {
    height: 2px;
    width: min(100% - var(--circle-size) - var(--spacing) * 2);
    left: calc(50% + var(--circle-size) / 2 + var(--spacing));
    bottom: calc(var(--circle-size) / 2 + 4px + 4px);
  }
}
.m-form-step__item.is-active:before {
  background: #0078b0;
  border-color: #0078b0;
}
.m-form-step__item.is-active:after {
  background: #0078b0;
}
.m-form-step__item.is-active .m-form-step__number {
  color: #fff;
}
.m-form-step__item.is-active .m-form-step__number::before {
  border: 0;
  background-color: #0078b0;
}
.m-form-step__item.is-active .m-form-step__text {
  color: #0078b0;
}
.m-form-step__item.is-active:last-child .m-form-step__text {
  color: #0078b0;
}
.m-form-step__item.is-success {
  position: relative;
}
.m-form-step__item.is-success:after {
  background: #0078b0;
}
.m-form-step__item.is-success .m-form-step__number {
  font-size: 0;
}
.m-form-step__item.is-success .m-form-step__number::before {
  border: 0;
  background-color: #0078b0;
}
.m-form-step__item.is-success .m-form-step__number::after {
  content: "";
  -webkit-mask-image: url("/assets/img/icon_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .m-form-step__item.is-success .m-form-step__number::after {
    -webkit-mask-image: url("/assets/img/icon_check.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_check.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #fff;
    width: 12px;
    height: 12px;
  }
}

.m-form-step__number {
  color: #949497;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-form-step__number {
    font-size: 1rem;
    height: 32px;
  }
}
.m-form-step__number::before {
  content: "";
  background: #fff;
  border: 5px solid #949497;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 0;
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .m-form-step__number::before {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }
}

.m-form-step__text {
  font-size: 0.875rem;
  text-align: center;
  font-weight: bold;
  color: #949497;
}
@media screen and (max-width: 768px) {
  .m-form-step__text {
    font-size: 0.875rem;
  }
}

/*================================================================
モーダル
=================================================================*/
.m-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 80px 56px 56px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7490196078);
  transition: opacity 0.3s;
  opacity: 0;
  color: #1a1a1c;
}
@media screen and (max-width: 768px) {
  .m-modal {
    padding: 64px 24px 24px;
  }
}
.m-modal[open] {
  display: flex;
  opacity: 1;
}
.m-modal::backdrop {
  background: transparent;
}
.m-modal__outside {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  cursor: pointer;
  background: transparent;
}
.m-modal__inside {
  width: 100%;
  max-width: 1024px;
  height: -webkit-max-content;
  height: max-content;
  max-height: 100%;
  margin: 0;
  padding: 40px 0 32px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m-modal__inside {
    padding: 24px 0 16px;
  }
}
.m-modal__cnt {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.m-modal__scroll {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  height: -webkit-max-content;
  height: max-content;
}
@media screen and (max-width: 768px) {
  .m-modal__scroll {
    padding: 0 24px;
  }
}
.m-modal__close {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  top: -65px;
  right: 0;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}
@media screen and (max-width: 768px) {
  .m-modal__close {
    width: 32px;
    top: -48px;
  }
}
.m-modal__close:focus-visible {
  box-shadow: inset 0 0 0 3px #fff;
  outline: auto 1px #0d44a0;
  outline-offset: -1px;
}
.m-modal__close-img {
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.m-modal__list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px;
}
.m-modal__box {
  background-color: #f1f1f4;
  padding: 24px;
}
.m-modal__picture {
  text-align: center;
}
.m-modal__picture-img, .m-modal__picture-img-s {
  text-align: center;
}
.m-modal__picture-img img, .m-modal__picture-img-s img {
  width: 100%;
}
.m-modal__picture-img-s img {
  max-width: 200px;
}
.m-modal__h2 {
  width: 100%;
  margin: 0 auto 24px;
  box-sizing: border-box;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .m-modal__h2 {
    font-size: 1.5rem;
  }
}
.m-modal__h2 + .m-modal__h3 {
  margin-top: 24px;
}
.m-modal__h3 {
  width: 100%;
  margin: 40px auto 24px;
  padding-left: 26px;
  box-sizing: border-box;
  position: relative;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-modal__h3 {
    font-size: 1.375rem;
  }
}
.m-modal__h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #0078b0;
}
.m-modal__h3-simple {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 32px auto 0;
}
@media screen and (max-width: 768px) {
  .m-modal__h3-simple {
    font-size: 1.125rem;
  }
}
.m-modal__h4 {
  margin: 24px auto 16px;
  font-size: 1.125rem;
  font-weight: bold;
}
.m-modal__txt {
  margin: 20px 0 8px;
}
.m-modal__txt-l {
  margin: 20px auto 8px;
  font-size: 1.125rem;
  font-weight: bold;
}
.m-modal__filter {
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(2034%) hue-rotate(207deg) brightness(99%) contrast(93%);
}
.m-modal__cnt-buttonlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  max-width: 376px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.m-modal__cnt-buttonlist > li {
  max-width: 376px;
  width: 100%;
}
.m-modal__cnt-buttonlist > li button, .m-modal__cnt-buttonlist > li a {
  width: 100%;
}
.m-modal__cnt-buttonlist > li + li {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .m-modal__cnt-buttonlist > li + li {
    margin-top: 24px;
  }
}
.m-modal__cnt-buttonlist > li:last-child {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .m-modal__cnt-buttonlist > li {
    max-width: 336px;
  }
}
.m-modal .m-link-blank {
  margin-top: 8px;
}
.m-modal .m-image {
  margin: 20px auto;
}
.m-modal .m-modal__txt-l + .m-image {
  margin-top: 8px;
}

/*================================================================
リスト
=================================================================*/
/* ドット
--------------------------------------------------------*/
.m-list-dot {
  margin-top: 8px;
}
.m-list-dot__item {
  color: #1a1a1c;
  margin-top: 8px;
  font-size: 1rem;
  padding-left: calc(1rem + 8px);
  position: relative;
}
.m-list-dot__item .m-link-blank {
  font-size: inherit;
}
.m-list-dot__item .m-link-blank .m-icon__blank {
  width: 14px;
  height: 14px;
}
.m-list-dot__item .m-link-blank .m-icon__blank::before {
  width: 14px;
  height: 14px;
  background-size: 14px;
}
.m-list-dot__item:first-child {
  margin-top: 0;
}
.m-list-dot__item::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 注釈
--------------------------------------------------------*/
.m-list-annotation {
  margin-top: 8px;
}
.m-list-annotation__item {
  color: #626264;
  margin-top: 4px;
  font-size: 0.875rem;
  padding-left: calc(0.875rem + 8px);
  position: relative;
  word-break: break-all;
}
.m-list-annotation__item .m-link-blank {
  font-size: inherit;
  display: inline;
}
.m-list-annotation__item .m-link-blank .m-icon__blank {
  width: 14px;
  height: 14px;
}
.m-list-annotation__item .m-link-blank .m-icon__blank::before {
  width: 14px;
  height: 14px;
  background-size: 14px;
}
.m-list-annotation__item:first-child {
  margin-top: 0;
}
.m-list-annotation__item::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* 数字注釈
--------------------------------------------------------*/
.m-list-annotation-num {
  margin-top: 8px;
}
.m-list-annotation-num__item {
  color: #626264;
  margin-top: 4px;
  font-size: 0.875rem;
  display: flex;
  gap: 8px;
}
.m-list-annotation-num__item:first-child {
  margin-top: 0;
}
.m-list-annotation-num__item .m-link-blank {
  font-size: inherit;
}
.m-list-annotation-num span {
  word-break: keep-all;
}

/* 数字リスト
--------------------------------------------------------*/
.m-list-num {
  margin-top: 8px;
  list-style-type: decimal;
  padding-left: 16px;
}
.m-list-num__item {
  color: #1a1a1c;
  margin-top: 8px;
  font-size: 1rem;
}
.m-list-num__item:first-child {
  margin-top: 0;
}
.m-list-num__item > [class*=m-link] {
  vertical-align: top;
}

/* リンクリスト
--------------------------------------------------------*/
.m-list-link {
  margin-top: 8px;
}
.m-list-link__item {
  color: #1a1a1c;
  margin-top: 8px;
  font-size: 1rem;
  position: relative;
}
.m-list-link__item:first-child {
  margin-top: 0;
}

/* ブロックリンク
--------------------------------------------------------*/
.m-list-blocklink {
  margin-top: 8px;
  width: 100%;
}
.m-accordion .m-list-blocklink {
  margin-top: 0;
}
.m-accordion .m-list-blocklink > li:first-child {
  border-top: none;
}
.m-accordion .m-list-blocklink > li > a {
  padding-left: 32px;
  font-size: 1rem;
  font-weight: normal;
}
.m-list-blocklink .m-accordion-ex {
  border-top: none;
}
.m-list-blocklink .m-accordion-ex__cts {
  border-bottom: none;
}
.m-list-blocklink .m-accordion-ex__cts .m-list-blocklink > li:last-child > a {
  border-bottom: none;
}
.m-list-blocklink .m-accordion-ex__toggle {
  border-top: none;
}
.m-list-blocklink > li:first-child {
  border-top: 1px solid #b4b4b7;
}
.m-list-blocklink > li > a {
  display: block;
  color: #1a1a1c;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 16px 56px 16px 16px;
  border-bottom: 1px solid #b4b4b7;
  position: relative;
  transition: background-color 0.2s;
}
.m-list-blocklink > li > a:hover {
  text-decoration: none;
  background-color: #f1f1f4;
}
.m-list-blocklink > li > a:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/img/icon_arrow_right.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .m-list-blocklink > li > a {
    padding: 16px 40px 16px 0;
  }
  .m-list-blocklink > li > a:hover {
    background-color: #fff;
  }
  .m-list-blocklink > li > a:before {
    right: 0;
  }
}

/* ブロックリンク 一覧
--------------------------------------------------------*/
.m-list-blocklink-wrap[class*=m-col] {
  gap: 0 20px;
}

/* ボタンリスト
--------------------------------------------------------*/
[class*=m-list-button] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  [class*=m-list-button] {
    flex-direction: column;
    align-items: baseline;
    gap: 16px;
  }
}

.m-list-button__cv {
  gap: 24px;
  flex-direction: column;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 64px auto 0;
}
.m-list-button__cv > li {
  width: 100%;
}
.m-list-button__cv > li button {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-list-button__cv {
    margin-top: 40px;
    max-width: 100%;
  }
}
.m-list-button__cv-narrow {
  max-width: 600px;
  margin: 40px auto 0;
  gap: 24px;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.m-list-button__cv-narrow > li {
  width: 100%;
}
.m-list-button__cts {
  gap: 24px;
  flex-direction: column;
  display: flex;
  align-items: center;
  max-width: 376px;
  margin: 24px auto 0;
}
.m-list-button__cts.is-wide {
  max-width: 600px;
}
.m-list-button__cts > li {
  width: 100%;
}
.m-list-button__cts > li button {
  width: inherit;
}
.m-list-button__bottom {
  gap: 24px;
  flex-direction: column;
  display: flex;
  align-items: center;
  max-width: 376px;
  margin: 80px auto 0;
}
.m-list-button__bottom > li {
  width: 100%;
}
.m-list-button__bottom > li button {
  width: inherit;
}
@media screen and (max-width: 768px) {
  .m-list-button__bottom {
    margin-top: 56px;
  }
}
.m-list-button__select, .m-list-button__select-left {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 32px;
}
.m-list-button__select > li button, .m-list-button__select-left > li button {
  padding: 0;
  min-height: 16px;
  font-weight: normal;
}
.m-list-button__select > li [class*=m-button__tertiary-i-], .m-list-button__select-left > li [class*=m-button__tertiary-i-] {
  padding-right: 22px;
}
.m-list-button__select > li [class*=m-button__tertiary-i-]::after, .m-list-button__select-left > li [class*=m-button__tertiary-i-]::after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .m-list-button__select, .m-list-button__select-left {
    display: none;
  }
}
.m-list-button__select-left, .m-list-button__select-left-left {
  justify-content: flex-start;
}
.m-list-button[class*=m-col] > li, .m-list-button[class*=m-col] > li button, .m-list-button[class*=m-col] > li a {
  height: 100%;
}
.m-list-button[class*=m-col] > li button, .m-list-button[class*=m-col] > li a {
  width: 100%;
}
.m-list-button[class*=m-col] > li [class*=m-button__] {
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .m-list-button[class*=m-col] > li + li {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .m-list-button[class*=m-col] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.m-list-button-column {
  flex-direction: column;
}
.m-list-button-column [class*=m-button__] {
  word-break: break-all;
}

.m-list-button__cv [class*=m-button__], .m-list-button__cts [class*=m-button__], .m-list-button__bottom [class*=m-button__] {
  word-break: break-all;
}

/* ボタンリスト アイコン付き
--------------------------------------------------------*/
.m-list-button-block + .m-list-button-block {
  margin-top: 32px;
}
.m-list-button-block[class*=m-col] {
  gap: 32px;
}
.m-list-button-block > li {
  width: 100%;
  height: 100%;
}
.m-list-button-block [class*=m-button__] {
  font-size: 1.25rem;
}
.m-list-button-block [class*=m-button__].m-button-icon {
  height: 100%;
  min-height: 166px;
  padding: 113px 16px 16px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.m-list-button-block [class*=m-button__].m-button-icon > img {
  left: 50%;
  top: 35px;
  margin-left: -40px;
  width: 80px !important;
  height: 80px !important;
}
.m-list-button-block__title {
  text-align: center;
  justify-items: center;
}
.m-list-button-block__text {
  display: block;
  width: 100%;
  margin-top: 8px;
  color: #1a1a1c;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
}
.m-list-button-block.is-text > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.m-list-button-block.is-text [class*=m-button__].m-button-icon {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: start;
  grid-template-columns: 1fr;
}
.m-list-button-block.is-text .m-list-button-block__title {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .m-list-button-block [class*=m-button__].m-button-icon {
    min-height: 144px;
    padding-top: 100px;
  }
  .m-list-button-block [class*=m-button__].m-button-icon > img {
    top: 16px;
  }
  .m-list-button-block.is-text[class*=m-col] > li + li {
    margin-top: 24px !important;
  }
}

/* カードリスト
--------------------------------------------------------*/
.m-list-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .m-list-card {
    flex-flow: column;
  }
}
.m-list-card > li {
  border: 1px solid #b4b4b7;
  display: flex;
  flex: 0 1 calc(50% - 10px);
  align-items: flex-start;
  gap: 0px 24px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .m-list-card > li {
    gap: 0px 16px;
    padding: 16px;
  }
}
.m-list-card [class*=m-list-card__icon] {
  display: flex;
  align-items: center;
  min-width: 56px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  text-align: center;
}
.m-list-card [class*=m-list-card__icon]:before {
  content: "";
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .m-list-card [class*=m-list-card__icon] {
    min-width: 48px;
  }
}
.m-list-card__icon-24h:before {
  -webkit-mask-image: url("/assets/img/icon_l_24h.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_24h.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .m-list-card__icon-24h:before {
    width: 48px;
    height: 48px;
  }
}
.m-list-card__icon-time-money:before {
  -webkit-mask-image: url("/assets/img/icon_l_time_money.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_time_money.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .m-list-card__icon-time-money:before {
    width: 48px;
    height: 48px;
  }
}
.m-list-card__icon-touch:before {
  -webkit-mask-image: url("/assets/img/icon_l_touch.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_touch.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .m-list-card__icon-touch:before {
    width: 48px;
    height: 48px;
  }
}
.m-list-card__icon-check:before {
  -webkit-mask-image: url("/assets/img/icon_l_pc_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_pc_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .m-list-card__icon-check:before {
    width: 48px;
    height: 48px;
  }
}
.m-list-card__hdg {
  color: #003c79;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .m-list-card__hdg {
    font-size: 1.25rem;
  }
}
.m-list-card__txt {
  color: #1a1a1c;
}
.m-list-card__annotation {
  font-size: 0.875rem;
  color: #626264;
}

/* 画像リスト
--------------------------------------------------------*/
.m-list-media {
  display: grid;
}
.m-list-media[class*=m-col] {
  gap: 32px;
}
.m-list-media .m-image {
  margin-top: 0;
}

/* 複数カラム
--------------------------------------------------------*/
[class*=m-col] {
  width: 100%;
  display: grid;
  gap: 20px;
}
[class*=m-col] > li {
  width: 100%;
  margin: 0 !important;
}
[class*=m-col] > li.m-form-content[aria-hidden=false] {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  [class*=m-col] > li {
    width: 100% !important;
    flex-grow: 1;
  }
}
@media screen and (max-width: 768px) {
  [class*=m-col] {
    display: block;
  }
  [class*=m-col] > li {
    margin-top: 16px !important;
  }
}

.m-col1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.m-col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.m-col3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.m-col4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.m-col5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.m-col6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.m-col7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.m-col8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.m-col9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.m-col10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  .m-col {
    display: block;
  }
}

/*================================================================
ツールチップ
=================================================================*/
.m-tooltip {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: underline;
  text-align: left;
  color: #0d44a0;
  position: relative;
}
.m-tooltip:hover {
  color: #003c79;
}
.m-tooltip__toggle {
  width: 1em;
  height: 1em;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background: radial-gradient(#fff 65%, transparent 65%) #0d44a0;
}
.m-tooltip__toggle-wrapper {
  height: 1.5em;
  margin-left: 0.25em;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}
.m-tooltip__toggle-img {
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(2034%) hue-rotate(207deg) brightness(99%) contrast(93%);
}
.m-tooltip__inline-toggle-wrapper {
  width: 1em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}
.m-tooltip__dialog {
  display: none;
  margin: 0;
  position: absolute;
  width: -webkit-max-content;
  width: max-content;
  min-width: 400px;
  max-width: 600px;
  padding: 24px;
  box-sizing: border-box;
  background: #414143;
  color: #fff;
  z-index: 1000;
  font-size: 1rem;
  top: auto;
  border: none;
  border-radius: 4px;
}
.m-tooltip__dialog.m-tooltip__dialog--modal {
  position: static;
  top: 0;
  left: 0;
  width: 0;
  max-width: none;
  min-width: auto;
  height: 0;
  max-height: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.m-tooltip__dialog.m-tooltip__dialog--modal .m-tooltip__outside {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  cursor: pointer;
}
.m-tooltip__dialog.m-tooltip__dialog--modal .m-tooltip__box {
  position: fixed;
  top: 0;
  left: 0;
  width: -webkit-max-content;
  width: max-content;
  min-width: min(400px, 100% - 48px);
  max-width: min(600px, 100% - 48px);
  padding: 24px;
  box-sizing: border-box;
  background: #414143;
  color: #fff;
  border-radius: 4px;
}
.m-tooltip__dialog.m-tooltip__dialog--modal .m-tooltip__box-hdg {
  padding-right: 40px;
}
.m-tooltip__dialog.m-tooltip__dialog--modal .m-tooltip__close {
  display: block;
}
.m-tooltip__dialog.m-tooltip__dialog--modal[open] {
  display: contents;
}
.m-tooltip__dialog.m-tooltip__dialog--modal::backdrop {
  display: block;
  background: transparent;
}
.m-tooltip__dialog[open] {
  display: block;
}
.m-tooltip__dialog[open] .m-tooltip__outside {
  display: block;
}
.m-tooltip__dialog::backdrop {
  display: none;
}
.m-tooltip__outside {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  left: 100%;
  display: none;
}
.m-tooltip__box {
  z-index: 1000;
}
.m-tooltip__box-hdg {
  font-weight: bold;
  margin: 0 auto 8px;
}
.m-tooltip__box-txt {
  margin: 0 auto;
}
.m-tooltip__box-txt [class*=m-icon__] {
  display: inline-block;
  margin: 0 4px;
}
.m-tooltip__close {
  width: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  display: none;
}
.m-tooltip__close-img {
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

[class*=m-form-hdg] .m-tooltip__toggle,
[class*=m-hdg] .m-tooltip__toggle {
  width: 24px;
  height: 24px;
}

/*================================================================
ページトップへ戻るボタン
=================================================================*/
footer .footer__pagetop {
  width: 64px;
  padding: 0;
  aspect-ratio: 1;
  display: block;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  position: fixed;
  right: 40px;
  bottom: 40px;
  border-radius: 50%;
  background: #0d44a0;
  color: transparent;
  font-size: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.25);
  z-index: 100;
}
footer .footer__pagetop::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
footer .footer__pagetop:hover {
  background: #003c79;
}
@media screen and (max-width: 768px) {
  footer .footer__pagetop {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 24px;
  }
  footer .footer__pagetop::before {
    width: 100%;
    height: 100%;
  }
}
footer .footer__pagetop-img {
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(258deg) brightness(106%) contrast(100%);
  height: 28.67px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer.is-show-pagetop .footer__pagetop {
  opacity: 1;
  pointer-events: all;
}

/*================================================================
お知らせ一覧
=================================================================*/
.m-notice {
  width: 100%;
  border-top: 1px solid #b4b4b7;
}
.m-notice + .m-notice {
  border-top: 0;
}
.m-notice.is-close {
  display: none;
}
.m-notice__item {
  width: 100%;
  border-bottom: 1px solid #b4b4b7;
  background: #fff;
  display: flex;
}
.m-notice__item::after {
  content: "";
  display: block;
  width: 16px;
  -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
  height: auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .m-notice__item::after {
    margin-right: 11.5px;
  }
}
.m-notice__link {
  background: #fff;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  text-decoration: none !important;
  color: inherit !important;
}
@media screen and (max-width: 768px) {
  .m-notice__link {
    padding: 16px 8px;
    gap: 8px;
  }
}
.m-notice__link:hover .m-notice__title {
  text-decoration: underline;
}
.m-notice__cnt {
  display: flex;
  gap: 8px 16px;
}
@media screen and (max-width: 768px) {
  .m-notice__cnt {
    flex-wrap: wrap;
    align-items: center;
  }
}
.m-notice__date {
  width: 135px;
  flex-shrink: 0;
  flex-grow: 0;
}
.m-notice__title {
  flex-shrink: 1;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .m-notice__title {
    flex-shrink: 0;
    width: 100%;
  }
}
.m-notice__link-list {
  text-align: right;
  margin-top: 20px;
}

.m-important .m-notice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .m-important .m-notice {
    gap: 16px;
  }
}
.m-important .m-notice__block {
  border: 2px solid #1a1a1c;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  position: relative;
}
.m-important .m-notice__block.is-important {
  border-color: #ec0000;
}
.m-important .m-notice__block.is-maintenance {
  border-color: #003c79;
}
.m-important .m-notice__block.is-other {
  border-color: #949497;
}
.m-important .m-notice__item {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  display: inline-block;
}
.m-important .m-notice__item::after {
  content: unset;
}
.m-important .m-notice__link {
  border: 2px solid #1a1a1c;
  display: flex;
  padding: 6px 48px 6px 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-important .m-notice__link {
    padding: 16px 32px 16px 16px;
  }
}
.m-important .m-notice__link.is-important {
  border-color: #ec0000;
}
.m-important .m-notice__link.is-maintenance {
  border-color: #003c79;
}
.m-important .m-notice__link.is-other {
  border-color: #949497;
}
.m-important .m-notice__link::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-image: url("/assets/img/icon_arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .m-important .m-notice__link::after {
    right: 8px;
  }
}
.m-important .m-notice__cnt {
  gap: 8px;
}
.m-important .m-notice__date {
  width: auto;
  min-width: 125px;
}

/*================================================================
画面番号
=================================================================*/
.m-pagenum {
  max-width: 1280px;
  width: 100%;
  margin: auto auto -64px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .m-pagenum {
    margin: auto auto -24px;
  }
}
.m-pagenum.is-map {
  max-width: none;
}

/*================================================================
filter
=================================================================*/
.m-filter__white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(258deg) brightness(106%) contrast(100%);
}

.m-filter__black {
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(0%) hue-rotate(44deg) brightness(82%) contrast(103%);
}

.m-filter__primary-700 {
  filter: brightness(0) saturate(100%) invert(16%) sepia(36%) saturate(4474%) hue-rotate(195deg) brightness(96%) contrast(104%);
}

.m-filter__primary-600 {
  filter: brightness(0) saturate(100%) invert(17%) sepia(66%) saturate(2883%) hue-rotate(210deg) brightness(96%) contrast(96%);
}

.m-filter__secondary-700 {
  filter: brightness(0) saturate(100%) invert(35%) sepia(99%) saturate(2694%) hue-rotate(177deg) brightness(83%) contrast(101%);
}

.m-filter__secondary-600 {
  filter: brightness(0) saturate(100%) invert(78%) sepia(40%) saturate(269%) hue-rotate(158deg) brightness(97%) contrast(98%);
}

.m-filter__secondary-500 {
  filter: brightness(0) saturate(100%) invert(90%) sepia(13%) saturate(377%) hue-rotate(161deg) brightness(96%) contrast(97%);
}

.m-filter__secondary-400 {
  filter: brightness(0) saturate(100%) invert(100%) sepia(73%) saturate(867%) hue-rotate(176deg) brightness(103%) contrast(97%);
}

.m-filter__sumi-900 {
  filter: brightness(0) saturate(100%) invert(8%) sepia(2%) saturate(2014%) hue-rotate(202deg) brightness(92%) contrast(93%);
}

.m-filter__sumi-800 {
  filter: brightness(0) saturate(100%) invert(23%) sepia(3%) saturate(458%) hue-rotate(202deg) brightness(95%) contrast(89%);
}

.m-filter__sumi-700 {
  filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(139%) hue-rotate(202deg) brightness(90%) contrast(91%);
}

.m-filter__sumi-600 {
  filter: brightness(0) saturate(100%) invert(50%) sepia(4%) saturate(201%) hue-rotate(201deg) brightness(90%) contrast(90%);
}

.m-filter__sumi-500 {
  filter: brightness(0) saturate(100%) invert(62%) sepia(7%) saturate(108%) hue-rotate(202deg) brightness(95%) contrast(84%);
}

.m-filter__sumi-400 {
  filter: brightness(0) saturate(100%) invert(75%) sepia(7%) saturate(77%) hue-rotate(202deg) brightness(97%) contrast(88%);
}

.m-filter__sumi-300 {
  filter: brightness(0) saturate(100%) invert(80%) sepia(82%) saturate(7%) hue-rotate(195deg) brightness(97%) contrast(86%);
}

.m-filter__sumi-200 {
  filter: brightness(0) saturate(100%) invert(97%) sepia(5%) saturate(74%) hue-rotate(202deg) brightness(94%) contrast(98%);
}

.m-filter__sumi-100 {
  filter: brightness(0) saturate(100%) invert(83%) sepia(3%) saturate(117%) hue-rotate(202deg) brightness(117%) contrast(93%);
}

.m-filter__sumi-50 {
  filter: brightness(0) saturate(100%) invert(100%) sepia(16%) saturate(866%) hue-rotate(180deg) brightness(100%) contrast(97%);
}

.m-filter__wood-900 {
  filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(949%) hue-rotate(2deg) brightness(95%) contrast(102%);
}

.m-filter__wood-800 {
  filter: brightness(0) saturate(100%) invert(35%) sepia(74%) saturate(833%) hue-rotate(1deg) brightness(107%) contrast(104%);
}

.m-filter__wood-400 {
  filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(484%) hue-rotate(2deg) brightness(100%) contrast(92%);
}

.m-filter__wood-50 {
  filter: brightness(0) saturate(100%) invert(89%) sepia(21%) saturate(298%) hue-rotate(331deg) brightness(109%) contrast(95%);
}

.m-filter__sun-800 {
  filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(7458%) hue-rotate(0deg) brightness(101%) contrast(108%);
}

.m-filter__sun-700 {
  filter: brightness(0) saturate(100%) invert(88%) sepia(9%) saturate(868%) hue-rotate(311deg) brightness(103%) contrast(93%);
}

.m-filter__sun-600 {
  filter: brightness(0) saturate(100%) invert(92%) sepia(4%) saturate(537%) hue-rotate(318deg) brightness(105%) contrast(98%);
}

.m-filter__forest-600 {
  filter: brightness(0) saturate(100%) invert(47%) sepia(47%) saturate(564%) hue-rotate(99deg) brightness(96%) contrast(99%);
}

/*================================================================
システムポップアップ
=================================================================*/
.m-systempopup {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 80px 56px 56px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7490196078);
  transition: opacity 0.3s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .m-systempopup {
    padding: 64px 24px 24px;
  }
}
.m-systempopup[open] {
  display: flex;
  opacity: 1;
}
.m-systempopup::backdrop {
  background: transparent;
}
.m-systempopup__outside {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  background: transparent;
}
.m-systempopup__inside {
  width: 100%;
  max-width: 1024px;
  height: -webkit-max-content;
  height: max-content;
  max-height: 100%;
  margin: 0;
  padding: 40px 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m-systempopup__inside {
    padding: 24px 0;
  }
}
.m-systempopup__cnt {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-y: scroll;
}
.m-systempopup__scroll {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  height: -webkit-max-content;
  height: max-content;
}
@media screen and (max-width: 768px) {
  .m-systempopup__scroll {
    padding: 0 24px;
  }
}
.m-systempopup__list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px;
}
.m-systempopup__box {
  background-color: #f1f1f4;
  padding: 24px;
}
.m-systempopup__picture {
  text-align: center;
}
.m-systempopup__picture img {
  max-width: 206px;
}
.m-systempopup__picture-img {
  text-align: center;
}
.m-systempopup__picture-img img {
  max-width: 861px;
}
.m-systempopup__button {
  max-width: 336px;
  width: 100%;
  margin: 40px auto 0;
}
.m-systempopup__h2 {
  width: 100%;
  margin: 0 auto 24px;
  box-sizing: border-box;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .m-systempopup__h2 {
    font-size: 1.5rem;
  }
}
.m-systempopup__h2 + .m-systempopup__h3 {
  margin-top: 24px;
}
.m-systempopup__h3 {
  width: 100%;
  margin: 40px auto 24px;
  padding-left: 26px;
  box-sizing: border-box;
  position: relative;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-systempopup__h3 {
    font-size: 1.375rem;
  }
}
.m-systempopup__h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #0078b0;
}
.m-systempopup__h4 {
  margin: 20px auto 8px;
  font-size: 1.125rem;
  font-weight: bold;
}
.m-systempopup__txt-l {
  margin: 20px auto 8px;
  font-size: 1.125rem;
  font-weight: bold;
}

/*================================================================
table
=================================================================*/
table.m-table {
  border-collapse: collapse;
  border-spacing: 1px;
  margin-top: 20px;
  width: 100%;
  height: 100%;
  border-bottom: 0;
  border: 1px solid #b4b4b7;
  /* 横並び
  --------------------------------------------------------*/
}
table.m-table colgroup .m-w1 {
  width: 1%;
}
table.m-table colgroup .m-w2 {
  width: 2%;
}
table.m-table colgroup .m-w3 {
  width: 3%;
}
table.m-table colgroup .m-w4 {
  width: 4%;
}
table.m-table colgroup .m-w5 {
  width: 5%;
}
table.m-table colgroup .m-w6 {
  width: 6%;
}
table.m-table colgroup .m-w7 {
  width: 7%;
}
table.m-table colgroup .m-w8 {
  width: 8%;
}
table.m-table colgroup .m-w9 {
  width: 9%;
}
table.m-table colgroup .m-w10 {
  width: 10%;
}
table.m-table colgroup .m-w11 {
  width: 11%;
}
table.m-table colgroup .m-w12 {
  width: 12%;
}
table.m-table colgroup .m-w13 {
  width: 13%;
}
table.m-table colgroup .m-w14 {
  width: 14%;
}
table.m-table colgroup .m-w15 {
  width: 15%;
}
table.m-table colgroup .m-w16 {
  width: 16%;
}
table.m-table colgroup .m-w17 {
  width: 17%;
}
table.m-table colgroup .m-w18 {
  width: 18%;
}
table.m-table colgroup .m-w19 {
  width: 19%;
}
table.m-table colgroup .m-w20 {
  width: 20%;
}
table.m-table colgroup .m-w21 {
  width: 21%;
}
table.m-table colgroup .m-w22 {
  width: 22%;
}
table.m-table colgroup .m-w23 {
  width: 23%;
}
table.m-table colgroup .m-w24 {
  width: 24%;
}
table.m-table colgroup .m-w25 {
  width: 25%;
}
table.m-table colgroup .m-w26 {
  width: 26%;
}
table.m-table colgroup .m-w27 {
  width: 27%;
}
table.m-table colgroup .m-w28 {
  width: 28%;
}
table.m-table colgroup .m-w29 {
  width: 29%;
}
table.m-table colgroup .m-w30 {
  width: 30%;
}
table.m-table colgroup .m-w31 {
  width: 31%;
}
table.m-table colgroup .m-w32 {
  width: 32%;
}
table.m-table colgroup .m-w33 {
  width: 33%;
}
table.m-table colgroup .m-w34 {
  width: 34%;
}
table.m-table colgroup .m-w35 {
  width: 35%;
}
table.m-table colgroup .m-w36 {
  width: 36%;
}
table.m-table colgroup .m-w37 {
  width: 37%;
}
table.m-table colgroup .m-w38 {
  width: 38%;
}
table.m-table colgroup .m-w39 {
  width: 39%;
}
table.m-table colgroup .m-w40 {
  width: 40%;
}
table.m-table colgroup .m-w41 {
  width: 41%;
}
table.m-table colgroup .m-w42 {
  width: 42%;
}
table.m-table colgroup .m-w43 {
  width: 43%;
}
table.m-table colgroup .m-w44 {
  width: 44%;
}
table.m-table colgroup .m-w45 {
  width: 45%;
}
table.m-table colgroup .m-w46 {
  width: 46%;
}
table.m-table colgroup .m-w47 {
  width: 47%;
}
table.m-table colgroup .m-w48 {
  width: 48%;
}
table.m-table colgroup .m-w49 {
  width: 49%;
}
table.m-table colgroup .m-w50 {
  width: 50%;
}
table.m-table colgroup .m-w51 {
  width: 51%;
}
table.m-table colgroup .m-w52 {
  width: 52%;
}
table.m-table colgroup .m-w53 {
  width: 53%;
}
table.m-table colgroup .m-w54 {
  width: 54%;
}
table.m-table colgroup .m-w55 {
  width: 55%;
}
table.m-table colgroup .m-w56 {
  width: 56%;
}
table.m-table colgroup .m-w57 {
  width: 57%;
}
table.m-table colgroup .m-w58 {
  width: 58%;
}
table.m-table colgroup .m-w59 {
  width: 59%;
}
table.m-table colgroup .m-w60 {
  width: 60%;
}
table.m-table colgroup .m-w61 {
  width: 61%;
}
table.m-table colgroup .m-w62 {
  width: 62%;
}
table.m-table colgroup .m-w63 {
  width: 63%;
}
table.m-table colgroup .m-w64 {
  width: 64%;
}
table.m-table colgroup .m-w65 {
  width: 65%;
}
table.m-table colgroup .m-w66 {
  width: 66%;
}
table.m-table colgroup .m-w67 {
  width: 67%;
}
table.m-table colgroup .m-w68 {
  width: 68%;
}
table.m-table colgroup .m-w69 {
  width: 69%;
}
table.m-table colgroup .m-w70 {
  width: 70%;
}
table.m-table colgroup .m-w71 {
  width: 71%;
}
table.m-table colgroup .m-w72 {
  width: 72%;
}
table.m-table colgroup .m-w73 {
  width: 73%;
}
table.m-table colgroup .m-w74 {
  width: 74%;
}
table.m-table colgroup .m-w75 {
  width: 75%;
}
table.m-table colgroup .m-w76 {
  width: 76%;
}
table.m-table colgroup .m-w77 {
  width: 77%;
}
table.m-table colgroup .m-w78 {
  width: 78%;
}
table.m-table colgroup .m-w79 {
  width: 79%;
}
table.m-table colgroup .m-w80 {
  width: 80%;
}
table.m-table colgroup .m-w81 {
  width: 81%;
}
table.m-table colgroup .m-w82 {
  width: 82%;
}
table.m-table colgroup .m-w83 {
  width: 83%;
}
table.m-table colgroup .m-w84 {
  width: 84%;
}
table.m-table colgroup .m-w85 {
  width: 85%;
}
table.m-table colgroup .m-w86 {
  width: 86%;
}
table.m-table colgroup .m-w87 {
  width: 87%;
}
table.m-table colgroup .m-w88 {
  width: 88%;
}
table.m-table colgroup .m-w89 {
  width: 89%;
}
table.m-table colgroup .m-w90 {
  width: 90%;
}
table.m-table colgroup .m-w91 {
  width: 91%;
}
table.m-table colgroup .m-w92 {
  width: 92%;
}
table.m-table colgroup .m-w93 {
  width: 93%;
}
table.m-table colgroup .m-w94 {
  width: 94%;
}
table.m-table colgroup .m-w95 {
  width: 95%;
}
table.m-table colgroup .m-w96 {
  width: 96%;
}
table.m-table colgroup .m-w97 {
  width: 97%;
}
table.m-table colgroup .m-w98 {
  width: 98%;
}
table.m-table colgroup .m-w99 {
  width: 99%;
}
table.m-table th, table.m-table td {
  border: 1px solid #b4b4b7;
  empty-cells: show;
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
  padding: 14px 16px;
  display: table-cell;
  word-break: break-all;
}
table.m-table th.is-right, table.m-table td.is-right {
  text-align: right;
}
table.m-table th {
  background-color: #eff7fb;
  font-weight: bold;
}
table.m-table th.m-table__2nd {
  font-weight: normal;
}
table.m-table th.m-table__3rd {
  background-color: #f8f8fb;
  font-weight: normal;
}
table.m-table th.m-table__3rd.border-bottom-reset {
  border-bottom: 0;
}
table.m-table td {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  table.m-table:not(.is-scroll) th, table.m-table:not(.is-scroll) td {
    display: block;
    border: 0;
    border-bottom: 1px solid #b4b4b7;
    padding: 8px 16px;
    min-height: 44px;
  }
  table.m-table:not(.is-scroll) td {
    min-height: calc(1rem + 28px);
    padding: 16px;
    min-height: 60px;
  }
  table.m-table:not(.is-scroll).more-row tr:last-child > td {
    border-bottom: 1px solid #b4b4b7;
  }
  table.m-table:not(.is-scroll).more-row .m-table__more-ctrl tr:last-child > td {
    border-bottom: 0;
  }
  table.m-table:not(.is-scroll) tr:last-child > td {
    border-bottom: 0;
  }
}
table.m-table:not(.is-scroll) .m-table__col {
  width: min(20vw, 240px);
}
@media screen and (max-width: 768px) {
  table.m-table:not(.is-scroll) .m-table__col {
    width: 100%;
  }
}
table.m-table:not(.is-scroll) .m-table__col:last-child {
  width: auto;
}
table.m-table:not(.is-scroll) .m-table__col:nth-child(5) {
  width: min(20vw, 240px);
}
@media screen and (max-width: 768px) {
  table.m-table:not(.is-scroll) .m-table__col:nth-child(5) {
    width: 100%;
  }
}
table.m-table__txt {
  font-size: 1rem;
}
table.m-table__txt + .m-table {
  margin-top: 16px;
}
table.m-table .m-table__multi {
  padding: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  table.m-table .m-table__multi {
    border-bottom: 0;
  }
}
table.m-table .m-table__multi-inner {
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
table.m-table .m-table__multi-inner th, table.m-table .m-table__multi-inner td {
  border-left: none;
  border-top: none;
}
table.m-table .m-table__multi-inner tr th:last-child, table.m-table .m-table__multi-inner tr td:last-child {
  border-right: none;
}
table.m-table .m-table__multi-inner tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  table.m-table .m-table__multi-inner {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #b4b4b7;
  }
  table.m-table .m-table__multi-inner th, table.m-table .m-table__multi-inner td {
    display: table-cell;
    border-right: 1px solid #b4b4b7;
  }
  table.m-table .m-table__multi-inner tr:last-of-type td {
    border-bottom: 0;
  }
}
table.m-table .m-table-close {
  text-align: center;
  padding: 14px 16px;
  width: 100%;
  color: #0d44a0;
  font-weight: bold;
}
table.m-table .m-table-close span {
  position: relative;
  padding-right: 24px;
}
table.m-table .m-table-close span::after {
  content: "";
  position: absolute;
  right: 0;
  -webkit-mask-image: url("/assets/img/icon_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
table.m-table .m-table-close__container {
  padding: 0;
}
table.m-table .m-table__more-ctrl {
  border: 1px solid transparent;
}
table.m-table .m-table__more-ctrl td {
  padding: 0;
  border: 0;
  min-height: auto;
}
table.m-table .m-table__more-btn {
  width: 100%;
  height: 100%;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  color: #0d44a0;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  position: relative;
}
table.m-table .m-table__more-btn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-image: url("/assets/img/icon_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
table.m-table .m-table__more-row {
  animation: appear 0.3s ease;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
table.m-table:not(.is-expand) .m-table__more-row {
  display: none;
}
table.m-table:not(.is-expand) .m-table__more-btn {
  margin-top: 0;
}
table.m-table:not(.is-expand) .m-table__mask {
  display: inline-block;
  width: 100%;
  height: 24px;
  margin-top: -24px;
  position: relative;
}
table.m-table:not(.is-expand) .m-table__mask::before {
  content: "";
  position: absolute;
  border-style: none;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 120px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 100px);
}
table.m-table.is-expand .m-table__more-btn::after {
  -webkit-mask-image: url("/assets/img/icon_arrow_up.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_up.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
table.m-table__adjust-hdg th.m-table__2nd {
  width: 240px;
}
@media screen and (max-width: 768px) {
  table.m-table__adjust-hdg th.m-table__2nd {
    width: auto;
  }
}
table.m-table.is-vertical .m-table__vertical-item {
  display: none;
}
@media screen and (max-width: 768px) {
  table.m-table.is-vertical:not(.is-scroll) {
    border: none;
  }
  table.m-table.is-vertical:not(.is-scroll) colgroup [class*=m-w] {
    width: 100%;
  }
  table.m-table.is-vertical:not(.is-scroll) thead {
    display: none;
  }
  table.m-table.is-vertical:not(.is-scroll) .m-table__vertical-item {
    display: block;
    border-bottom: 1px solid #b4b4b7;
    background-color: #eff7fb;
    font-weight: bold;
    padding: 8px 16px;
  }
  table.m-table.is-vertical:not(.is-scroll) .m-table__vertical-data {
    padding: 16px;
  }
  table.m-table.is-vertical:not(.is-scroll) tbody tr {
    display: table;
    border: 1px solid #b4b4b7;
    width: 100%;
  }
  table.m-table.is-vertical:not(.is-scroll) tbody tr > td {
    border-bottom: 1px solid #b4b4b7;
    padding: 0;
  }
  table.m-table.is-vertical:not(.is-scroll) tbody tr > td > span {
    display: block;
  }
  table.m-table.is-vertical:not(.is-scroll) tbody tr > td:last-child {
    border-bottom: none;
  }
  table.m-table.is-vertical:not(.is-scroll) tbody tr + tr {
    margin-top: 24px;
  }
}

.m-table-sort {
  min-width: 100%;
  height: 100%;
  margin-top: 20px;
  border-spacing: 1px;
  border-collapse: separate;
  width: 100%;
}
.m-table-sort colgroup .m-w1 {
  width: 1%;
}
.m-table-sort colgroup .m-w2 {
  width: 2%;
}
.m-table-sort colgroup .m-w3 {
  width: 3%;
}
.m-table-sort colgroup .m-w4 {
  width: 4%;
}
.m-table-sort colgroup .m-w5 {
  width: 5%;
}
.m-table-sort colgroup .m-w6 {
  width: 6%;
}
.m-table-sort colgroup .m-w7 {
  width: 7%;
}
.m-table-sort colgroup .m-w8 {
  width: 8%;
}
.m-table-sort colgroup .m-w9 {
  width: 9%;
}
.m-table-sort colgroup .m-w10 {
  width: 10%;
}
.m-table-sort colgroup .m-w11 {
  width: 11%;
}
.m-table-sort colgroup .m-w12 {
  width: 12%;
}
.m-table-sort colgroup .m-w13 {
  width: 13%;
}
.m-table-sort colgroup .m-w14 {
  width: 14%;
}
.m-table-sort colgroup .m-w15 {
  width: 15%;
}
.m-table-sort colgroup .m-w16 {
  width: 16%;
}
.m-table-sort colgroup .m-w17 {
  width: 17%;
}
.m-table-sort colgroup .m-w18 {
  width: 18%;
}
.m-table-sort colgroup .m-w19 {
  width: 19%;
}
.m-table-sort colgroup .m-w20 {
  width: 20%;
}
.m-table-sort colgroup .m-w21 {
  width: 21%;
}
.m-table-sort colgroup .m-w22 {
  width: 22%;
}
.m-table-sort colgroup .m-w23 {
  width: 23%;
}
.m-table-sort colgroup .m-w24 {
  width: 24%;
}
.m-table-sort colgroup .m-w25 {
  width: 25%;
}
.m-table-sort colgroup .m-w26 {
  width: 26%;
}
.m-table-sort colgroup .m-w27 {
  width: 27%;
}
.m-table-sort colgroup .m-w28 {
  width: 28%;
}
.m-table-sort colgroup .m-w29 {
  width: 29%;
}
.m-table-sort colgroup .m-w30 {
  width: 30%;
}
.m-table-sort colgroup .m-w31 {
  width: 31%;
}
.m-table-sort colgroup .m-w32 {
  width: 32%;
}
.m-table-sort colgroup .m-w33 {
  width: 33%;
}
.m-table-sort colgroup .m-w34 {
  width: 34%;
}
.m-table-sort colgroup .m-w35 {
  width: 35%;
}
.m-table-sort colgroup .m-w36 {
  width: 36%;
}
.m-table-sort colgroup .m-w37 {
  width: 37%;
}
.m-table-sort colgroup .m-w38 {
  width: 38%;
}
.m-table-sort colgroup .m-w39 {
  width: 39%;
}
.m-table-sort colgroup .m-w40 {
  width: 40%;
}
.m-table-sort colgroup .m-w41 {
  width: 41%;
}
.m-table-sort colgroup .m-w42 {
  width: 42%;
}
.m-table-sort colgroup .m-w43 {
  width: 43%;
}
.m-table-sort colgroup .m-w44 {
  width: 44%;
}
.m-table-sort colgroup .m-w45 {
  width: 45%;
}
.m-table-sort colgroup .m-w46 {
  width: 46%;
}
.m-table-sort colgroup .m-w47 {
  width: 47%;
}
.m-table-sort colgroup .m-w48 {
  width: 48%;
}
.m-table-sort colgroup .m-w49 {
  width: 49%;
}
.m-table-sort colgroup .m-w50 {
  width: 50%;
}
.m-table-sort colgroup .m-w51 {
  width: 51%;
}
.m-table-sort colgroup .m-w52 {
  width: 52%;
}
.m-table-sort colgroup .m-w53 {
  width: 53%;
}
.m-table-sort colgroup .m-w54 {
  width: 54%;
}
.m-table-sort colgroup .m-w55 {
  width: 55%;
}
.m-table-sort colgroup .m-w56 {
  width: 56%;
}
.m-table-sort colgroup .m-w57 {
  width: 57%;
}
.m-table-sort colgroup .m-w58 {
  width: 58%;
}
.m-table-sort colgroup .m-w59 {
  width: 59%;
}
.m-table-sort colgroup .m-w60 {
  width: 60%;
}
.m-table-sort colgroup .m-w61 {
  width: 61%;
}
.m-table-sort colgroup .m-w62 {
  width: 62%;
}
.m-table-sort colgroup .m-w63 {
  width: 63%;
}
.m-table-sort colgroup .m-w64 {
  width: 64%;
}
.m-table-sort colgroup .m-w65 {
  width: 65%;
}
.m-table-sort colgroup .m-w66 {
  width: 66%;
}
.m-table-sort colgroup .m-w67 {
  width: 67%;
}
.m-table-sort colgroup .m-w68 {
  width: 68%;
}
.m-table-sort colgroup .m-w69 {
  width: 69%;
}
.m-table-sort colgroup .m-w70 {
  width: 70%;
}
.m-table-sort colgroup .m-w71 {
  width: 71%;
}
.m-table-sort colgroup .m-w72 {
  width: 72%;
}
.m-table-sort colgroup .m-w73 {
  width: 73%;
}
.m-table-sort colgroup .m-w74 {
  width: 74%;
}
.m-table-sort colgroup .m-w75 {
  width: 75%;
}
.m-table-sort colgroup .m-w76 {
  width: 76%;
}
.m-table-sort colgroup .m-w77 {
  width: 77%;
}
.m-table-sort colgroup .m-w78 {
  width: 78%;
}
.m-table-sort colgroup .m-w79 {
  width: 79%;
}
.m-table-sort colgroup .m-w80 {
  width: 80%;
}
.m-table-sort colgroup .m-w81 {
  width: 81%;
}
.m-table-sort colgroup .m-w82 {
  width: 82%;
}
.m-table-sort colgroup .m-w83 {
  width: 83%;
}
.m-table-sort colgroup .m-w84 {
  width: 84%;
}
.m-table-sort colgroup .m-w85 {
  width: 85%;
}
.m-table-sort colgroup .m-w86 {
  width: 86%;
}
.m-table-sort colgroup .m-w87 {
  width: 87%;
}
.m-table-sort colgroup .m-w88 {
  width: 88%;
}
.m-table-sort colgroup .m-w89 {
  width: 89%;
}
.m-table-sort colgroup .m-w90 {
  width: 90%;
}
.m-table-sort colgroup .m-w91 {
  width: 91%;
}
.m-table-sort colgroup .m-w92 {
  width: 92%;
}
.m-table-sort colgroup .m-w93 {
  width: 93%;
}
.m-table-sort colgroup .m-w94 {
  width: 94%;
}
.m-table-sort colgroup .m-w95 {
  width: 95%;
}
.m-table-sort colgroup .m-w96 {
  width: 96%;
}
.m-table-sort colgroup .m-w97 {
  width: 97%;
}
.m-table-sort colgroup .m-w98 {
  width: 98%;
}
.m-table-sort colgroup .m-w99 {
  width: 99%;
}
.m-table-sort colgroup col {
  width: 320px;
}
.m-table-sort colgroup col.m-table-sort__btn {
  min-width: 100px;
  width: 100px;
}
.m-table-sort colgroup col.m-table-sort__chk {
  min-width: 64px;
  width: 64px;
}
.m-table-sort colgroup col.m-table-sort__w {
  min-width: 240px;
  width: 240px;
}
.m-table-sort .m-table-sort__col {
  width: min(20vw, 240px);
}
@media screen and (max-width: 768px) {
  .m-table-sort .m-table-sort__col {
    width: 100%;
  }
}
.m-table-sort .m-table-sort__col:last-child {
  width: auto;
}
.m-table-sort .m-table-sort__col:nth-child(5) {
  width: min(20vw, 240px);
}
@media screen and (max-width: 768px) {
  .m-table-sort .m-table-sort__col:nth-child(5) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .m-table-sort .m-table-sort__row {
    display: flex;
    flex-wrap: wrap;
  }
}
.m-table-sort__wrapper {
  width: 100%;
  overflow-x: hidden;
}
.m-table-sort__wrapper.is-overflow {
  padding-bottom: 16px;
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  .m-table-sort__wrapper.is-overflow {
    overflow-x: hidden;
  }
}
.m-table-sort__wrapper.is-overflow::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #e8e8eb;
  border-radius: 10000px;
}
.m-table-sort__wrapper.is-overflow::-webkit-scrollbar-thumb {
  background: #0d44a0;
  border-radius: 10000px;
}
.m-table-sort__wrapper.is-overflow .m-table-sort {
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .m-table-sort__wrapper.is-overflow .m-table-sort {
    width: 100%;
  }
}
.m-table-sort__wrapper.is-overflow colgroup col:not([class*=m-table-sort__]) {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .m-table-sort {
    margin-top: 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .m-table-sort__head {
    display: none;
  }
}
.m-table-sort thead th {
  padding: 0;
  vertical-align: top;
  height: 100%;
}
.m-table-sort thead th .m-table-sort__head-inner {
  width: 100%;
  height: 100%;
  padding: 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  box-sizing: border-box;
  background: #eff7fb;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  -webkit-appearance: none;
          appearance: none;
}
.m-table-sort thead th button {
  cursor: pointer;
}
.m-table-sort thead th button::after {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  flex-shrink: 0;
  -webkit-mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #949497;
  width: 12px;
  height: 12px;
}
.m-table-sort thead th button.is-sort::after {
  -webkit-mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 12px;
  height: 12px;
}
.m-table-sort thead th button.is-asc::after {
  transform: scale(1, -1);
}
.m-table-sort thead th button.is-asc-sort::after {
  -webkit-mask-image: url("/assets/img/icon_arrow_pullup.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pullup.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 768px) {
  .m-table-sort__body {
    display: block;
  }
}
.m-table-sort__row {
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-table-sort__row {
    padding: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1px;
  }
}
.m-table-sort__row::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #b4b4b7;
}
.m-table-sort__detail {
  height: 100%;
  padding: 1em 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  vertical-align: middle;
}
.m-table-sort__detail .m-list-button__select {
  display: none;
}
@media screen and (max-width: 768px) {
  .m-table-sort__detail {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    order: 1;
    grid-column-end: span 2;
    flex-direction: column;
  }
  .m-table-sort__detail .m-list-button__select {
    display: block;
    margin-top: 16px;
  }
}
.m-table-sort__btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .m-table-sort__btn-sp {
    display: inline;
  }
}
.m-table-sort tbody td {
  max-width: 400px;
  height: 100%;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .m-table-sort tbody td {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-rows: subgrid;
    grid-row-end: span 2;
  }
  .m-table-sort tbody td.m-table-sort__select {
    display: none;
  }
}
.m-table-sort__def {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row-end: span 2;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .m-table-sort__def {
    display: block;
  }
}
.m-table-sort__term {
  padding: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .m-table-sort__term {
    display: flex;
    align-items: center;
  }
}
.m-table-sort__term button {
  cursor: pointer;
}
.m-table-sort__term button::after {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  -webkit-mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #949497;
  width: 12px;
  height: 12px;
}
.m-table-sort__term button.is-sort::after {
  -webkit-mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_pulldown.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #0d44a0;
  width: 12px;
  height: 12px;
}
.m-table-sort__term-inner {
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  box-sizing: border-box;
  background: #eff7fb;
  text-align: left;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  font-size: 1rem;
}
.m-table-sort__desc {
  width: 100%;
  height: 100%;
  padding: 0.75em 0.5em;
  display: flex;
  align-items: center;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .m-table-sort__desc {
    height: auto;
    padding: 0.75em 1em;
  }
}
.m-table-sort__desc--align-center {
  justify-content: center;
}
.m-table-sort-select .m-form-input__radio > li > label {
  padding-left: 0;
  text-indent: 0;
  min-height: 32px;
  width: 32px;
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-form-input__radio > li > label {
    width: 100%;
    min-width: auto;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .m-table-sort-select.m-table-sort .m-table-sort__row {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-rows: 1fr 1fr;
    padding-bottom: 4px;
    position: relative;
    padding-left: 36px;
    display: flex;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-table-sort-select__input {
    grid-row: auto/span 8;
    order: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 32px;
    width: 24px;
    height: 24px;
  }
}
.m-table-sort-select .m-table-sort-select__input .m-form-input__checkbox {
  width: 32px;
  height: 32px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-table-sort-select__input .m-form-input__checkbox {
    width: 24px;
    height: 24px;
  }
}
.m-table-sort-select .m-table-sort-select__input .m-form-input__checkbox > li {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-table-sort-select__input .m-form-input__checkbox > li {
    width: 24px;
    height: 24px;
  }
  .m-table-sort-select .m-table-sort-select__input .m-form-input__checkbox > li > label {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-table-sort-select__input .m-table-sort__desc {
    padding: 0;
  }
}
.m-table-sort-select .m-table-sort-select__input .m-form-input__radio input[type=radio] {
  left: 0;
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-table-sort__term {
    min-height: 44px;
  }
}
@media screen and (max-width: 768px) {
  .m-table-sort-select .m-table-sort__detail {
    transform: translate(-18px, 0);
  }
}

/* scroll
--------------------------------------------------------*/
.m-table__wrapper {
  width: 100%;
  overflow-x: hidden;
}
.m-table__wrapper.is-overflow {
  padding-bottom: 16px;
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  .m-table__wrapper.is-overflow {
    overflow-x: hidden;
  }
}
.m-table__wrapper.is-overflow::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #e8e8eb;
  border-radius: 10000px;
}
.m-table__wrapper.is-overflow::-webkit-scrollbar-thumb {
  background: #0d44a0;
  border-radius: 10000px;
}
.m-table__wrapper.is-overflow .m-table-sort {
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .m-table__wrapper.is-overflow .m-table-sort {
    width: 100%;
  }
}
.m-table__wrapper.is-overflow {
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .m-table__wrapper.is-overflow {
    overflow-x: auto;
  }
}
.m-table__wrapper.is-overflow .m-table {
  min-width: 1200px;
}
.m-table__wrapper.is-overflow colgroup col {
  min-width: 160px;
}
.m-text-bold + .m-table__wrapper.is-overflow > .m-table.is-vertical.is-scroll {
  margin-top: 8px;
}
.m-text-bold + .m-list-annotation + .m-table__wrapper.is-overflow > .m-table.is-vertical.is-scroll {
  margin-top: 8px;
}

/*================================================================
ボックス
=================================================================*/
.m-box,
.m-box-em {
  margin-top: 24px;
  padding: 40px;
  border-radius: 0;
}
.m-hdg1 + .m-box,
.m-hdg1 + .m-box-em {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .m-hdg1 + .m-box,
  .m-hdg1 + .m-box-em {
    margin-top: 40px;
  }
}
.m-box__title,
.m-box-em__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 40px;
}
.m-box__title:first-child,
.m-box-em__title:first-child {
  margin-top: 0;
}
.m-box .m-box__title + .m-list-dot,
.m-box-em .m-box__title + .m-list-dot {
  margin-top: 0;
}
.m-box .m-box__title .m-link-blank,
.m-box .m-box__title .m-link,
.m-box-em .m-box__title .m-link-blank,
.m-box-em .m-box__title .m-link {
  font-size: inherit;
}
.m-box__image,
.m-box-em__image {
  margin: 20px auto 0;
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-box__image,
  .m-box-em__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .m-box,
  .m-box-em {
    padding: 24px;
  }
}
.m-box .m-list-link, .m-box .m-list-dot,
.m-box-em .m-list-link,
.m-box-em .m-list-dot {
  margin-top: 20px;
}
.m-box .m-list-dot:first-child,
.m-box-em .m-list-dot:first-child {
  margin-top: 0;
}
.m-box.is-whole,
.m-box-em.is-whole {
  margin-top: 32px;
}
.m-box.is-separate,
.m-box-em.is-separate {
  margin-top: 40px;
}

.m-box {
  background: #f1f1f4;
  border-radius: 0;
}
.m-box + .m-box:not(.is-whole):not(.is-separate) {
  margin-top: 20px;
}
.m-box-em {
  background: #eff7fb;
  border-radius: 0;
}
.m-box-em + .m-box-em:not(.is-whole):not(.is-separate) {
  margin-top: 20px;
}
.m-box-em__title {
  color: #003c79;
}
@media screen and (max-width: 768px) {
  .m-box-em {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .m-box-em .m-list-dot:not(:first-of-type) {
    margin-top: 10px;
  }
}

.m-message-error,
.m-message-note,
.m-message-em {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
}
.m-message-error__icon,
.m-message-note__icon,
.m-message-em__icon {
  width: 1.5em !important;
  height: 1.5em;
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0;
}

.m-message__title {
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.m-message__text {
  margin-left: 2em;
}
.m-message-error {
  background: #fcf2f0;
}
.m-message-error__icon {
  background: radial-gradient(#fff 65%, transparent 65%), #fcf2f0;
}
.m-message-error__img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(7458%) hue-rotate(0deg) brightness(101%) contrast(108%);
}
.m-message-note {
  background: #f8f1e0;
}
.m-message-note__icon {
  background: radial-gradient(#fff 65%, transparent 65%), #f8f1e0;
}
.m-message-note__img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(99%) saturate(2694%) hue-rotate(177deg) brightness(83%) contrast(101%);
}
.m-message-em {
  background: #eff7fb;
}
.m-message-em__icon {
  background: radial-gradient(#fff 65%, transparent 65%), #f8f1e0;
}
.m-message-em__img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(99%) saturate(2694%) hue-rotate(177deg) brightness(83%) contrast(101%);
}
.m-message__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m-message__inner {
    flex-flow: column;
  }
}

/*================================================================
ページネーション
=================================================================*/
.m-pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m-pagination {
    gap: 0;
  }
}
.m-pagination__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-pagination__item.is-current {
  background: #0d44a0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-sizing: border-box;
}
.m-pagination__item.is-current .m-pagination__link {
  color: #fff;
  z-index: 1;
  position: relative;
  text-decoration: none;
}
.m-pagination__link {
  color: #0d44a0;
  text-decoration: underline;
  display: inherit;
  font-size: 1.125rem;
  padding: 5px 10px;
}
.m-pagination__img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(66%) saturate(2883%) hue-rotate(210deg) brightness(96%) contrast(96%);
}
.m-pagination__result-control {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .m-pagination__result-control {
    margin-top: 24px;
    gap: 20px;
  }
}
.m-pagination__result-control-number {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.m-pagination__result-control-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-pagination__result-control-top {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .m-pagination__result-control-top {
    flex-direction: column;
    gap: 20px;
  }
}
.m-pagination__result-control-button {
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: flex-end;
}
.m-pagination__result-control-button-label {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  word-break: keep-all;
}
.m-pagination__result-control-button .m-form-select {
  max-width: 117px;
  font-size: 1rem;
}

/*================================================================
hidden
=================================================================*/
@media screen and (min-width: 769px) {
  .m-hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m-hidden-sp {
    display: none;
  }
}

/*================================================================
タブ
=================================================================*/
.m-tab {
  margin-top: 64px;
}
.m-tab__btn {
  width: 100%;
  display: flex;
}
.m-tab__btn button {
  flex-grow: 1;
  cursor: pointer;
  width: 100%;
  min-height: 88px;
  color: #0d44a0;
  background-color: #f1f1f4;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  border-top: 1px solid #b4b4b7;
  border-right: 1px solid #b4b4b7;
  border-bottom: 2px solid #0d44a0;
  padding: 16px 16px 16px 17px;
  word-break: break-all;
  z-index: 1;
}
.m-tab__btn button:first-child {
  border-left: 1px solid #b4b4b7;
}
.m-tab__btn button:focus {
  outline-offset: 5px;
  z-index: 2;
}
.m-tab__btn button.is-current {
  background-color: #fff;
  border-top: 8px solid #0d44a0;
  border-right: 2px solid #0d44a0;
  border-left: 2px solid #0d44a0;
  border-bottom: 2px solid #fff;
  padding: 9px 15px 16px 15px;
}
.m-tab__cts {
  margin-top: 64px;
}
.m-tab__cts [data-common-tab=contents].is-disable {
  display: none;
}
@media screen and (max-width: 768px) {
  .m-tab {
    margin-top: 40px;
  }
  .m-tab__btn button {
    font-size: 1.125rem;
    min-height: 72px;
  }
  .m-tab__cts {
    margin-top: 40px;
  }
}

/*================================================================
テキスト
=================================================================*/
/* 本文
--------------------------------------------------------*/
.m-text-bold {
  font-weight: bold;
}

/* ラージ
--------------------------------------------------------*/
.m-text__s {
  font-size: 0.875rem;
}
.m-text__l {
  font-size: 1.125rem;
  font-weight: bold;
}
.m-text__xl {
  font-size: 1.25rem;
  font-weight: bold;
}
.m-text__xxl {
  font-size: 1.5rem;
  font-weight: bold;
}
.m-text__xxxl {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .m-text__xxxl {
    font-size: 1.5rem;
  }
}

/* スモール
--------------------------------------------------------*/
.m-text__s {
  font-size: 0.875rem;
}
.m-text__s-bold {
  font-weight: bold;
}

/*================================================================
システムエラー
=================================================================*/
.m-error__text .m-text__xxxl {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .m-error__text .m-text__xxxl {
    margin-bottom: 24px;
  }
}

/*================================================================
ローディイング
=================================================================*/
/* Sppiners pattern img */
.m-loading {
  width: 80px;
  height: 80px;
  background: url("/assets/img/img_loading.svg");
  background-size: contain;
  animation: anime_loading 1s infinite steps(12);
}

@keyframes anime_loading {
  100% {
    transform: rotate(1turn);
  }
}
/*================================================================
画像
=================================================================*/
.m-image,
.m-image-ex {
  margin: 32px auto 0;
  max-width: 900px;
}
.m-image img + img,
.m-image-ex img + img {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .m-image img + img,
  .m-image-ex img + img {
    margin-top: 20px;
  }
}
.m-image.is-wide,
.m-image-ex.is-wide {
  max-width: 1200px;
}
.m-image.is-left,
.m-image-ex.is-left {
  margin-left: 0;
  margin-right: 0;
}

.m-image-ex > img {
  border: 1px solid #b4b4b7;
}

.m-image-scroll {
  max-width: 900px;
  margin: 32px auto 0;
}
.m-image-scroll.is-overflow {
  padding-bottom: 16px;
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  .m-image-scroll.is-overflow {
    overflow-x: hidden;
  }
}
.m-image-scroll.is-overflow::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #e8e8eb;
  border-radius: 10000px;
}
.m-image-scroll.is-overflow::-webkit-scrollbar-thumb {
  background: #0d44a0;
  border-radius: 10000px;
}
.m-image-scroll.is-overflow .m-table-sort {
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .m-image-scroll.is-overflow .m-table-sort {
    width: 100%;
  }
}
.m-image-scroll.is-overflow {
  overflow-x: auto;
}
.m-image-scroll .m-image-ex,
.m-image-scroll .m-image {
  margin-top: 0;
}
.m-image-scroll > figure {
  width: 900px;
}

/*================================================================
もっと見る
=================================================================*/
.m-more__cts {
  animation: appear 0.3s ease;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.m-more__btn {
  width: 100%;
  height: 100%;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  color: #0d44a0;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  position: relative;
}
.m-more__btn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-image: url("/assets/img/icon_arrow_down.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.m-more:not(.is-expand) .m-more__cts {
  display: none;
}
.m-more.is-expand .m-more__btn::after {
  -webkit-mask-image: url("/assets/img/icon_arrow_up.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_arrow_up.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}

/*================================================================
汎用クラス
=================================================================*/
/* マージントップ
--------------------------------------------------------*/
.m-mt8 {
  margin-top: 8px !important;
}
.m-mt20 {
  margin-top: 20px !important;
}
.m-mt24 {
  margin-top: 24px !important;
}
.m-mt32 {
  margin-top: 32px !important;
}

/* 位置指定
--------------------------------------------------------*/
.m-left {
  text-align: left;
}

.m-center {
  text-align: center;
}

.m-right {
  text-align: right;
}

/*================================================================
コンテンツ表示制御
=================================================================*/
[data-common-show].is-disable,
[data-common-show-btn].is-disable {
  display: none;
}

[data-common-show-btn].is-disable {
  display: none;
}

main.is-adjust {
  padding-top: 0;
}

/*================================================================
エラーブロック
=================================================================*/
.m-form-errorblock {
  font-size: 1rem;
  width: 100%;
  padding: 24px 32px;
  box-sizing: border-box;
  border: 3px solid #ec0000;
  border-radius: 12px;
  background: #fbf0f0;
  margin: 20px 0;
}
.m-form-errorblock__title {
  font-size: 1.125rem;
  font-weight: bold;
}
.m-form-errorblock__title + .m-form-errorblock__list {
  margin-top: 20px;
}

/*================================================================
フォーム 見出し
=================================================================*/
/* hdg
--------------------------------------------------------*/
.m-form-hdg1 {
  font-size: 2rem;
  padding: 40px 0;
  position: relative;
}
.m-form-hdg2 {
  background: #a2dbf5;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 18px 32px;
  min-height: 72px;
  margin: 48px 0 32px;
  position: relative;
}
.m-form-hdg2:first-child {
  margin-top: 0;
}
.m-form-hdg2 .m-label-required {
  margin-right: 8px;
  position: relative;
  top: -3px;
}
@media screen and (max-width: 768px) {
  .m-form-hdg2 .m-label-required {
    top: -4px;
  }
}
.m-form-hdg2 label .m-label-required {
  top: -3px;
}
@media screen and (max-width: 768px) {
  .m-form-hdg2 {
    font-size: 1.375rem;
    padding: 12px 8px;
    min-height: 57px;
    margin: 32px 0 24px;
    line-height: 1.5;
  }
}
.m-form-hdg3 {
  background: #cae5f2;
  border-radius: 4px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 12px 16px 11px;
  min-height: 56px;
  margin: 32px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-form-hdg3 {
    margin: 24px 0;
    padding: 10px 16px;
    font-size: 1.25rem;
    min-height: 50px;
    line-height: 1.5;
  }
}
.m-form-hdg3 .m-label-required {
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.m-form-hdg4 {
  background: #eff7fb;
  border-left: 6px solid #cae5f2;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 9px 10px;
  min-height: 24px;
  margin: 32px 0;
}
.m-form-hdg4 .m-label-required {
  margin-right: 8px;
  position: relative;
  top: -1px;
}
.m-form-hdg4 label .m-label-required {
  top: -1px;
}
@media screen and (max-width: 768px) {
  .m-form-hdg4 {
    margin: 24px 0;
    font-size: 1.125rem;
    min-height: 43px;
    padding: 8px 10px;
    line-height: 1.5;
  }
}
.m-form-hdg5 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 2px solid #b4b4b7;
  margin: 32px 0;
}
.m-form-hdg5 .m-label-required {
  margin-right: 8px;
}

/* title
--------------------------------------------------------*/
.m-form-title__l {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0 8px;
}
.m-form-title__m {
  font-size: 1.375rem;
  font-weight: bold;
  margin: 20px 0 8px;
}
.m-form-title__s {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 20px 0 8px;
}

/*================================================================
フォーム テキスト入力
=================================================================*/
/* テキスト入力
--------------------------------------------------------*/
input[type=text].m-form-input__text,
input[type=tel].m-form-input__text,
input[type=number].m-form-input__text,
input[type=email].m-form-input__text,
input[type=password].m-form-input__text {
  width: 100%;
  height: 48px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #1a1a1c;
  font-size: 1.125rem;
  padding: 0 16px;
}
input[type=text].m-form-input__text.is-error,
input[type=tel].m-form-input__text.is-error,
input[type=number].m-form-input__text.is-error,
input[type=email].m-form-input__text.is-error,
input[type=password].m-form-input__text.is-error {
  background-color: #fcf2f0;
  border-width: 2px;
  border-color: #ec0000;
  padding-left: 15px;
}
input[type=text].m-form-input__text.is-disable,
input[type=tel].m-form-input__text.is-disable,
input[type=number].m-form-input__text.is-disable,
input[type=email].m-form-input__text.is-disable,
input[type=password].m-form-input__text.is-disable {
  pointer-events: none;
  background-color: #e8e8eb;
  color: #949497;
  border-color: #949497;
}

input[class*=m-button] {
  width: 100%;
}

.m-form-text {
  font-size: 1rem;
}
.m-form-text-bold {
  font-weight: bold;
}
.m-form-text__l {
  font-size: 1.125rem;
}
.m-form-text__l-bold {
  font-size: 1.125rem;
  font-weight: bold;
}
.m-form-text__xl {
  font-size: 1.25rem;
}
.m-form-text__xl-bold {
  font-size: 1.25rem;
  font-weight: bold;
}
.m-form-text__select .m-form-select {
  display: inline-block;
  max-width: 210px;
  margin: 4px 4px 8px;
}
@media screen and (max-width: 768px) {
  .m-form-text__select .m-form-select {
    margin: 4px;
  }
}
.m-form-text .m-icon__mark {
  display: inline-block;
  margin: 0 4px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  top: -2px;
}
.m-form-text .m-icon__mark:before {
  width: 16px;
  height: 16px;
  background-size: 16px;
}

.m-form-caution {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5em 0;
  display: flex;
  gap: 0.5em;
}
.m-form-caution__icon {
  display: inline-block;
  width: 1.5em !important;
  height: 1.5em;
  background: radial-gradient(#fff 65%, transparent 65%);
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 768px) {
  .m-form-caution__icon {
    width: 1em !important;
    height: 1em;
    margin: 0.25em 0;
  }
}
.m-form-caution__text .m-form-caution__icon {
  height: 1em;
  margin-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .m-form-caution__text .m-form-caution__icon {
    position: relative;
    top: 0.25em;
  }
}
.m-form-caution__text-sub {
  font-weight: normal;
  display: block;
}
.m-form-caution__text .m-list-dot {
  font-weight: normal;
}

/*================================================================
フォーム textarea
=================================================================*/
.m-form-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 580px;
  min-height: 165px;
  max-height: 350px;
  border-radius: 4px;
  border: 1px solid #1a1a1c;
  padding: 15px;
  resize: vertical;
  font-size: 1.125rem;
}
@media screen and (max-width: 990px) {
  .m-form-textarea {
    min-width: auto;
  }
}
.m-form-textarea.is-error {
  border-width: 2px;
  border-color: #ec0000;
  background-color: #fcf2f0;
}
.m-form-textarea.is-disable {
  pointer-events: none;
  background-color: #e8e8eb;
  color: #949497;
  border-color: #949497;
}
.m-form-textarea-note {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.m-form-textarea-note .m-form-note {
  margin-top: 0;
}
.m-form-textarea-note-num {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1a1a1c;
  margin: 0;
}
.m-form-textarea-note.is-bottom-margin {
  margin: 0 0 8px;
}
@media screen and (max-width: 768px) {
  .m-form-textarea {
    min-width: 100%;
    max-height: 200px;
  }
  .m-form-textarea-note {
    display: block;
  }
}

/*================================================================
チェックボックス
=================================================================*/
.m-form-input__checkbox {
  font-size: 1.125rem;
}
.m-form-input__checkbox > li {
  margin-top: 16px;
}
.m-form-input__checkbox > li:first-child {
  margin: 0;
}
.m-form-input__checkbox > li > label {
  text-indent: -48px;
  padding-left: 48px;
  line-height: 32px;
  min-height: 32px;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox > li > label {
    text-indent: -32px;
    padding-left: 32px;
    line-height: 24px;
    min-height: 32px;
  }
}
.m-form-input__checkbox > li > label + .m-tooltip__inline-toggle-wrapper {
  height: 32px;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox > li > label + .m-tooltip__inline-toggle-wrapper {
    height: 24px;
  }
}
.m-form-input__checkbox.is-icon > li > label .m-form-input__checkbox-label .m-tooltip__inline-toggle-wrapper {
  margin-left: 4px;
  display: inline;
}
.m-form-input__checkbox .is-nest {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox .is-nest {
    margin-left: 32px;
  }
}
.m-form-input__checkbox label {
  position: relative;
  display: inline-block;
}
.m-form-input__checkbox input[type=checkbox] {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  width: 32px;
  height: 32px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox input[type=checkbox] {
    width: 24px;
    height: 24px;
  }
}
.m-form-input__checkbox input[type=checkbox]:checked + .m-form-input__checkbox-icon {
  background-color: #0d44a0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-form-input__checkbox input[type=checkbox]:checked + .m-form-input__checkbox-icon:before {
  content: "";
  width: 25.6px;
  height: 25.6px;
  display: block;
  -webkit-mask-image: url("/assets/img/icon_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 25.6px;
  height: 25.6px;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox input[type=checkbox]:checked + .m-form-input__checkbox-icon:before {
    width: 17.6px;
    height: 17.6px;
    -webkit-mask-image: url("/assets/img/icon_check.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url("/assets/img/icon_check.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #fff;
    width: 17.6px;
    height: 17.6px;
  }
}
.m-form-input__checkbox input[type=checkbox]:focus, .m-form-input__checkbox input[type=checkbox]:active {
  opacity: 1;
}
.m-form-input__checkbox input[type=checkbox].is-disable {
  color: #949497;
  background: #949497;
  pointer-events: none;
}
.m-form-input__checkbox input[type=checkbox].is-disable ~ * {
  cursor: inherit;
}
.m-form-input__checkbox input[type=checkbox].is-disable + .m-form-input__checkbox-icon {
  border-color: #949497;
}
.m-form-input__checkbox input[type=checkbox].is-disable + .m-form-input__checkbox-icon + .m-form-input__checkbox-label {
  color: #949497;
}
.m-form-input__checkbox input[type=checkbox].is-disable:checked + .m-form-input__checkbox-icon {
  background-color: #949497;
  border: 0;
}
.m-form-input__checkbox .m-form-input__checkbox-icon {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #1a1a1c;
  background-color: #fff;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox .m-form-input__checkbox-icon {
    width: 24px;
    height: 24px;
  }
}
.m-form-input__checkbox .m-form-input__checkbox-label {
  cursor: pointer;
  position: relative;
  padding-left: 48px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .m-form-input__checkbox .m-form-input__checkbox-label {
    padding-left: 32px;
    top: -3px;
  }
}
.m-form-input__checkbox .m-form-input__checkbox-label-large {
  font-size: 1.625rem;
  font-weight: bold;
}
.m-form-input__checkbox.is-error .m-form-input__checkbox-icon {
  border-color: #ec0000;
}
.m-form-input__checkbox.is-error .m-form-input__checkbox-label {
  color: #ec0000;
}
.m-form-input__checkbox.is-error input[type=checkbox]:checked:not(:disabled) + .m-form-input__checkbox-icon {
  background-color: #ec0000;
}

.m-form-input__checkboxsort {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.m-form-input__checkboxsort > li {
  margin: 0;
}
.m-form-input__checkboxsort > li > label {
  position: relative;
  display: inline-block;
}
.m-form-input__checkboxsort > li > label input:hover {
  cursor: pointer;
}
.m-form-input__checkboxsort input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 32px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  z-index: 2;
}
.m-form-input__checkboxsort input[type=checkbox]:checked + .m-form-input__checkboxsort-label {
  background-color: #0d44a0;
  color: #fff;
}
.m-form-input__checkboxsort input[type=checkbox]:focus, .m-form-input__checkboxsort input[type=checkbox]:active {
  opacity: 1;
}
.m-form-input__checkboxsort-label {
  display: inline-block;
  border: 2px solid #0d44a0;
  background-color: #fff;
  color: #0d44a0;
  border-radius: 16px;
  padding: 8px 16px;
  text-align: center;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

/*================================================================
ラジオボックス
=================================================================*/
/* ラジオボタン通常
--------------------------------------------------------*/
.m-form-input__radio {
  font-size: 1.125rem;
}
.m-form-input__radio > li {
  margin-top: 16px;
}
.m-form-input__radio > li:first-child {
  margin: 0;
}
.m-form-input__radio > li > label {
  padding-left: 48px;
  text-indent: -48px;
  position: relative;
  display: inline-block;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio > li > label {
    padding-left: 32px;
    text-indent: -32px;
    line-height: 24px;
  }
}
.m-form-input__radio-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.m-form-input__radio-flex > li {
  margin: 0;
}
.m-form-input__radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 32px;
  height: 32px;
  margin: 0;
  top: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio input[type=radio] {
    top: 2px;
    width: 24px;
    height: 24px;
  }
}
.m-form-input__radio input[type=radio]:checked + .m-form-input__radio-icon {
  border-color: #0d44a0;
}
.m-form-input__radio input[type=radio]:checked + .m-form-input__radio-icon:before {
  position: absolute;
  content: "";
  width: 21.33px;
  height: 21.33px;
  background: #0d44a0;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-form-input__radio input[type=radio]:checked + .m-form-input__radio-icon:before {
    width: 16px;
    height: 16px;
  }
}
.m-form-input__radio input[type=radio]:focus, .m-form-input__radio input[type=radio]:active {
  opacity: 1;
}
.m-form-input__radio input[type=radio].is-disable {
  color: #949497;
  background: #949497;
  pointer-events: none;
}
.m-form-input__radio input[type=radio].is-disable ~ * {
  cursor: inherit;
}
.m-form-input__radio input[type=radio].is-disable + .m-form-input__radio-icon {
  border-color: #949497;
}
.m-form-input__radio input[type=radio].is-disable + .m-form-input__radio-icon + .m-form-input__radio-label {
  color: #949497;
}
.m-form-input__radio input[type=radio].is-disable:checked + .m-form-input__radio-icon:before {
  position: absolute;
  content: "";
  width: 21.33px;
  height: 21.33px;
  background: #949497;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-form-input__radio input[type=radio].is-disable:checked + .m-form-input__radio-icon:before {
    width: 16px;
    height: 16px;
  }
}
.m-form-input__radio input[type=radio].is-disable:focus, .m-form-input__radio input[type=radio].is-disable:active {
  opacity: 0;
}
.m-form-input__radio-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #1a1a1c;
  background-color: #fff;
  z-index: 4;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-icon {
    top: 2px;
    width: 24px;
    height: 24px;
  }
}
.m-form-input__radio-label {
  position: relative;
  padding-left: 48px;
  z-index: 3;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-label {
    padding-left: 32px;
  }
}
.m-form-input__radio-label-large {
  font-size: 1.625rem;
  font-weight: bold;
}
.m-form-input__radio.is-error .m-form-input__radio-icon {
  border-color: #ec0000;
}
.m-form-input__radio.is-error input[type=radio]:checked:not(:disabled) + .m-form-input__radio-icon {
  border-color: #ec0000;
}
.m-form-input__radio.is-error input[type=radio]:checked:not(:disabled) + .m-form-input__radio-icon:before {
  background: #ec0000;
}
.m-form-input__radio.is-error .m-form-input__radio-label {
  color: #ec0000;
}
.m-form-input__radio .is-nest {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio .is-nest {
    margin-left: 32px;
  }
}

/* ラジオボタン大
--------------------------------------------------------*/
.m-form-input__radio-l {
  display: flex;
  gap: 16px;
  font-weight: bold;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l {
    flex-direction: column;
  }
}
.m-form-input__radio-l li {
  width: calc(50% - 8px);
}
.m-form-input__radio-l li.is-checked label {
  background: #0d44a0;
  border: 2px solid #0d44a0;
}
.m-form-input__radio-l li.is-checked .m-form-input__radio-label {
  color: #fff;
}
.m-form-input__radio-l li.is-checked .m-form-input__radio-icon {
  border: 0;
}
.m-form-input__radio-l li.is-checked input[type=radio]:checked + .m-form-input__radio-icon:before {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l li.is-checked input[type=radio]:checked + .m-form-input__radio-icon:before {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l li {
    width: 100%;
  }
}
.m-form-input__radio-l label {
  padding: 5px 32px;
  min-height: 64px;
  border: 2px solid #1a1a1c;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l label {
    padding: 5px 16px;
    min-height: 64px;
  }
}
.m-form-input__radio-l input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 32px;
  height: 32px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l input[type=radio] {
    width: 24px;
    height: 24px;
  }
}
.m-form-input__radio-l input[type=radio]:checked + .m-form-input__radio-icon:before {
  position: absolute;
  content: "";
  width: 21.33px;
  height: 21.33px;
  background: #0d44a0;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.m-form-input__radio-l input[type=radio]:focus, .m-form-input__radio-l input[type=radio]:active {
  opacity: 1;
}
.m-form-input__radio-l .m-form-input__radio-icon {
  position: absolute;
  top: 16px;
  left: 32px;
  width: 32px;
  height: 32px;
  border: 2px solid #1a1a1c;
  background-color: #fff;
  z-index: 4;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l .m-form-input__radio-icon {
    width: 24px;
    height: 24px;
    left: 16px;
  }
}
.m-form-input__radio-l .m-form-input__radio-label {
  position: relative;
  padding-left: 48px;
  z-index: 3;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-l .m-form-input__radio-label {
    font-size: 1.125rem;
    padding-left: 32px;
  }
}
.m-form-input__radio-l.is-error label {
  border-color: #ec0000;
}
.m-form-input__radio-l.is-error .m-form-input__radio-icon {
  border-color: #ec0000;
}
.m-form-input__radio-l.is-error li.is-checked label {
  background: #ec0000;
  border-color: #ec0000;
}
.m-form-input__radio-l.is-error input[type=radio]:checked + .m-form-input__radio-icon:before {
  background: #ec0000;
}
.m-form-input__radio-l.is-disable label {
  border-color: #949497;
  pointer-events: none;
}
.m-form-input__radio-l.is-disable .m-form-input__radio-icon {
  border-color: #949497;
}
.m-form-input__radio-l.is-disable .m-form-input__radio-icon + .m-form-input__radio-label {
  color: #949497;
}
.m-form-input__radio-l.is-disable li.is-checked label {
  background: #fff;
  border-color: #949497;
  color: #949497;
}
.m-form-input__radio-l.is-disable input[type=radio]:checked + .m-form-input__radio-icon {
  border: 2px solid #949497;
}
.m-form-input__radio-l.is-disable input[type=radio]:checked + .m-form-input__radio-icon::before {
  background: #fff;
}
.m-form-input__radio-l.is-row {
  display: flex;
  flex-direction: column;
}
.m-form-input__radio-l.is-row label {
  padding: 16px 32px;
}
.m-form-input__radio-l.is-row li {
  width: 100%;
}
.m-form-input__radio-l.is-row li.is-checked .m-list-dot__item {
  color: #fff;
}
.m-form-input__radio-l.is-row .m-list-dot {
  font-weight: normal;
}

/* チェックで表示されるエリア
--------------------------------------------------------*/
.m-form-input__radio-inner {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.m-form-input__radio-inner:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-inner {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-inner {
    flex-direction: column;
  }
}
.m-form-input__radio-inner .m-form-input__text {
  max-width: 552px;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-inner .m-form-input__text {
    max-width: 100%;
  }
}
.m-form-input__radio-inner .m-form-input__text.m-form-postcode__text {
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-inner .m-form-input__text.m-form-postcode__text {
    max-width: 100%;
  }
}
.m-form-input__radio-inner-column {
  flex-direction: column;
  gap: 0;
}

.m-form-input__radio-inner-text {
  font-size: 1.125rem;
  position: relative;
  top: calc(24px - 1.125rem + 2px);
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .m-form-input__radio-inner-text {
    top: inherit;
  }
}

.m-form-date-selection {
  display: flex;
  gap: 16px;
  word-break: keep-all;
  align-items: center;
  width: 100%;
}
.m-form-date-selection .m-form-select {
  max-width: 312px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-date-selection .m-form-select {
    max-width: 100%;
  }
}
.m-form-date-selection__text {
  word-break: keep-all;
  display: flex;
  align-items: center;
}

/*================================================================
フォーム select
=================================================================*/
.m-form-select {
  min-height: 48px;
  border: 1px solid #1a1a1c;
  border-radius: 4px;
  background-color: #fff;
  display: block;
  width: 100%;
  max-width: 552px;
  padding: 0 50px 0 16px;
  font-size: 1.125rem;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("/assets/img/icon_form_select.svg");
  background-position: right 16px center;
  background-size: 22px 34px;
  background-repeat: no-repeat;
  color: #1a1a1c;
}
.m-form-select.is-disable {
  pointer-events: none;
  background-image: url("/assets/img/icon_form_select_disable.svg");
  background-color: #e8e8eb;
  color: #949497;
  border-color: #949497;
}
.m-form-select.is-error {
  background-color: #fcf2f0;
  border-width: 2px;
  border-color: #ec0000;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .m-form-select {
    width: 100%;
    max-width: 100%;
  }
}

/*================================================================
フォーム 添付書類アップロード
=================================================================*/
.m-form-upload .m-form-button {
  word-break: keep-all;
}
.m-form-upload__link {
  margin-bottom: 20px;
}

.m-form-upload__description {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__description {
    flex-direction: column;
  }
}

.m-form-upload__description-text {
  font-size: 1rem;
}

.m-form-upload__file {
  display: none;
}

.m-form-upload__file-list {
  margin-top: 20px;
}

.m-form-upload__list {
  border: 1px solid #b4b4b7;
  padding: 16px 20px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__list {
    padding: 24px 16px;
  }
}
.m-form-upload__list > li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #b4b4b7;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.m-form-upload__list > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .m-form-upload__list > li {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    margin: 0;
  }
}
.m-form-upload__list > li:nth-child(n+2) {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__list > li:nth-child(n+2) {
    padding-top: 24px;
  }
}
.m-form-upload__list > li .m-form-error {
  font-size: 0.875rem;
}
.m-form-upload__list > li.is-disable {
  color: #949497;
}
.m-form-upload__list > li.is-disable .m-form-upload__progress-text {
  color: #949497;
}
.m-form-upload__list > li.is-disable .m-form-upload__progress {
  background-color: #e8e8eb;
}
.m-form-upload__list > li.is-disable .m-form-upload__progress-bar {
  width: 0%;
}

.m-form-upload__text {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .m-form-upload__text {
    font-size: 1rem;
  }
}

.m-form-upload__box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .m-form-upload__box {
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }
}

.m-form-upload__file-box {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.m-form-upload__capacity-text {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: right;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__capacity-text {
    text-align: left;
  }
}

/* プログレスバー
--------------------------------------------------------*/
.m-form-upload__progress-text {
  font-size: 0.875rem;
  color: #003c79;
  font-weight: bold;
  text-align: center;
}

.m-form-upload__progress {
  display: flex;
  height: 7px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: #cae5f2;
  border-radius: 100px;
  width: 342px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__progress {
    width: 100%;
  }
}

.m-form-upload__progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #003c79;
  transition: width 0.6s ease;
  width: 70%;
}

.m-form-upload__progress-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__progress-box {
    width: 100%;
  }
}

/* ドラックアンドドロップ
--------------------------------------------------------*/
.m-form-upload__drop {
  width: 100%;
  border-radius: 4px;
  border: 2.5px dashed #0d44a0;
  background: #eff7fb;
  color: #003c79;
  text-align: center;
  font-size: 1.125rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .m-form-upload__drop {
    padding: 32px;
    font-size: 1rem;
    text-align: left;
  }
}

/*================================================================
フォームレイアウト
=================================================================*/
/* 共通
--------------------------------------------------------*/
.m-form-container {
  background-color: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  padding: 8px 8px 40px;
  margin-top: 32px;
}
.article > .m-form-container:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .m-form-container {
    margin-top: 24px;
    padding: 8px 8px 32px;
  }
}

@media screen and (max-width: 768px) {
  .m-visible-sp {
    display: block !important;
  }
  .m-visible-pc {
    display: none;
  }
}
.m-visible-sp {
  display: none;
}

/* block
--------------------------------------------------------*/
.m-form-block {
  margin-top: 48px;
}
.m-form-block:first-child {
  margin-top: 0;
}
.m-form-block__inner {
  padding: 0 16px;
}
.m-form-block__inner-cts {
  padding: 0 16px;
}
.m-form-block__inner-cts:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .m-form-block__inner-cts {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .m-form-block__inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .m-form-block {
    margin-top: 32px;
  }
}

/* 注釈、エラー
--------------------------------------------------------*/
.m-form-note {
  font-size: 1rem;
  color: #626264;
  margin-top: 8px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.m-form-error {
  font-size: 1rem;
  font-weight: bold;
  color: #ec0000;
  margin: 0.5em 0;
  display: flex;
  gap: 0.5em;
}
.m-form-error__icon {
  width: 1.5em !important;
  height: 1.5em;
  background: radial-gradient(#fff 65%, transparent 65%), #ec0000;
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 768px) {
  .m-form-error__icon {
    width: 1em !important;
    height: 1em;
    margin: 0.25em 0;
  }
}
.m-form-error__img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(7458%) hue-rotate(0deg) brightness(101%) contrast(108%);
}

/* リード文
--------------------------------------------------------*/
.m-form-lead {
  font-size: 1rem;
}
.m-form-lead + .m-list-annotation {
  margin-top: 20px;
}

.m-form-lead__large {
  font-size: 1.25rem;
  font-weight: bold;
}

/* アラートボックス
--------------------------------------------------------*/
.m-form-alert {
  margin-top: 32px;
}
.m-form-alert .m-form-caution {
  margin: 0;
}
.m-form-alert__list {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.m-form-alert__lead {
  font-size: 1.25rem;
  font-weight: bold;
  color: #003c79;
}
.m-form-alert .m-list-dot {
  margin: 0;
}
.m-form-alert .m-list-dot__item {
  margin: 0;
}

/* contents
--------------------------------------------------------*/
.m-form-affiliation__label {
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
  margin: 20px 0 8px;
}

.m-form-mail__title {
  display: block;
  margin-bottom: 8px;
}
.m-form-mail__subt {
  display: block;
  margin: 20px 0 8px;
}

.m-form-item {
  margin-top: 20px;
}
.m-form-item__sub {
  margin-top: 8px;
}
.m-form-item:first-child {
  margin-top: 0;
}

.m-form-automatic-input__txt {
  margin-bottom: 8px;
  font-size: 1rem;
}
.m-form-automatic-input__txt + .m-form-automatic-input__txt {
  margin-top: 20px;
}

.m-form-content {
  display: none;
}
.m-form-content[aria-hidden=false] {
  transition: opacity 0.2s;
  display: block;
}
.m-form-content[aria-hidden=false]:not(section) {
  margin-top: 16px;
}
.m-form-content[aria-hidden=false]:not(section).m-form-content__reset {
  margin: 0;
}
.m-form-content.is-reset {
  margin: 0 -16px;
}
@media screen and (max-width: 768px) {
  .m-form-content.is-reset {
    margin: 0;
  }
}
.m-form-content__top {
  margin-top: 32px;
}

.m-form-preparation.m-form-container {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .m-form-preparation.m-form-container {
    padding-top: 32px;
  }
}
.m-form-preparation.m-form-container .m-form-block__inner-cts > *:first-child {
  margin-top: 0;
}
.m-form-preparation.m-form-container .m-hdg3 .m-icon__giteki-mark {
  vertical-align: baseline;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 0 4px;
}
.m-form-preparation.m-form-container .m-hdg3 .m-icon__giteki-mark::before {
  width: 24px;
  height: 24px;
  background-size: 24px;
}
.m-form-preparation.m-form-container .m-form-contents__lead .m-icon__giteki-mark,
.m-form-preparation.m-form-container .m-form-text .m-icon__giteki-mark,
.m-form-preparation.m-form-container .m-list-annotation .m-icon__giteki-mark,
.m-form-preparation.m-form-container .m-text-icon .m-icon__giteki-mark {
  vertical-align: middle;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 4px;
  top: -2px;
}
.m-form-preparation.m-form-container .m-form-contents__lead .m-icon__giteki-mark::before,
.m-form-preparation.m-form-container .m-form-text .m-icon__giteki-mark::before,
.m-form-preparation.m-form-container .m-list-annotation .m-icon__giteki-mark::before,
.m-form-preparation.m-form-container .m-text-icon .m-icon__giteki-mark::before {
  width: 16px;
  height: 16px;
  background-size: 16px;
}
.m-form-preparation.m-form-container .m-form-text + .m-form-text__l-bold {
  margin-top: 8px;
}
.m-form-preparation.m-form-container .m-list-dot {
  margin-top: 20px;
}
.m-form-preparation.m-form-container .m-list-dot.is-normal .m-list-dot__item {
  font-weight: normal;
}
.m-form-preparation.m-form-container .m-list-dot__item {
  font-weight: bold;
}
.m-form-preparation.m-form-container .m-list-dot__item .m-list-link {
  margin-top: 8px;
}
.m-form-preparation.m-form-container .m-list-dot__item .m-link-blank {
  font-weight: normal;
}

.m-form-contents {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .m-form-contents {
    flex-direction: column;
  }
}
.m-form-contents + .m-form-contents {
  margin-top: 20px;
}
.m-form-contents *:first-child {
  margin-top: 0;
}
.m-form-contents.is-column {
  flex-direction: column;
}
.m-form-contents.is-column .m-form-contents__img {
  margin: 20px auto 0;
  max-width: 600px;
  width: 100%;
}
.m-form-contents .m-form-text:not(:first-child) {
  margin-top: 20px;
}
.m-form-contents__layout {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.m-form-contents__img {
  width: 31.429%;
  max-width: 352px;
}
@media screen and (max-width: 768px) {
  .m-form-contents__img {
    margin: 0 auto;
    width: 100%;
  }
}
.m-form-contents__lead {
  font-size: 1.125rem;
  font-weight: bold;
  background: #cae5f2;
  padding: 4px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px 0;
}

.m-form-procedure-options__layout {
  margin-top: 20px;
}

.m-form-department__item {
  margin-bottom: 20px;
}
.m-form-department__item:last-child {
  margin: 0;
}
.m-form-department__txt {
  font-size: 1.125rem;
  color: #949497;
}
.m-form-department__txt.is-visible {
  color: #1a1a1c;
}
.m-form-department__select {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-department__select {
    max-width: 100%;
  }
}

.m-form-address__txt {
  margin-bottom: 20px;
}

.m-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.m-form-postcode__text {
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-postcode__text {
    max-width: 100%;
    order: 1;
  }
}
.m-form-postcode__button {
  margin: 0 0 0 16px;
}
@media screen and (max-width: 768px) {
  .m-form-postcode__button {
    margin: 20px 0 0 0;
    max-width: 223px;
    width: 100%;
    order: 3;
  }
}
.m-form-postcode__note {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-postcode__note {
    margin-top: 8px;
    order: 2;
  }
}

.m-form-address-details__txt {
  font-size: 1rem;
  margin-bottom: 8px;
}
.m-form-address-details__item {
  margin-top: 20px;
}
.m-form-address-details__item .m-form-text {
  margin-bottom: 8px;
}
.m-form-address-details__item:first-child {
  margin: 0;
}
.m-form-address-details__label {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.m-form-address-details__label label {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .m-form-address-details__label {
    flex-direction: column;
    gap: 4px;
    align-items: baseline;
  }
}
.m-form-address-details__select {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-address-details__select {
    max-width: 100%;
  }
}
.m-form-address-details .m-form-address-details__label + .m-form-text {
  margin-bottom: 8px;
}

.m-form-nationality__txt {
  margin-bottom: 20px;
}
.m-form-nationality__select {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-nationality__select {
    width: 100%;
  }
}
.m-form-nationality .m-link-blank {
  margin-bottom: 20px;
}

.m-form-club-name__item {
  margin-top: 20px;
}
.m-form-club-name__item:first-child {
  margin: 0;
}

.m-form-phone__txt {
  font-size: 1rem;
  margin-bottom: 20px;
}
.m-form-phone__text {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-phone__text {
    max-width: 100%;
  }
}

.m-form-name__layout {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .m-form-name__layout {
    flex-direction: column;
  }
}
.m-form-name__layout:first-child {
  margin: 0;
}
.m-form-name__item {
  width: calc(50% - 8px);
}
@media screen and (max-width: 768px) {
  .m-form-name__item {
    width: 100%;
  }
}
.m-form-name__item .m-form-label {
  gap: 8px;
  flex-direction: row;
}
.m-form-automatic-input + .m-form-name {
  margin-top: 20px;
}
.m-form-name .m-form-text {
  margin-bottom: 8px;
}

.m-form-reason__txt {
  margin-bottom: 20px;
}
.m-form-reason__link {
  margin-bottom: 20px;
}

.m-form-ingredients__txt {
  margin-bottom: 20px;
}

.m-form-date .m-form-input__radio-inner .m-form-input__text.m-form-date__text {
  max-width: 177px;
}
@media screen and (max-width: 768px) {
  .m-form-date .m-form-input__radio-inner .m-form-input__text.m-form-date__text {
    max-width: inherit;
  }
}
.m-form-date__txt {
  margin-bottom: 20px;
}
.m-form-date__txt-large {
  margin-bottom: 16px;
  font-size: 1.125rem;
}
.m-form-date__layout {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-date__layout {
    flex-basis: 100%;
  }
}
.m-form-date__layout .m-form-input__radio-inner-text {
  position: relative;
  top: 0.5625rem;
}
.m-form-date__item {
  width: 100%;
}
.m-form-date__item > .m-form-input__text {
  width: 100%;
}
.m-form-date .m-form-input__radio:nth-of-type(2) .m-form-input__radio-inner {
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .m-form-date .m-form-input__radio:nth-of-type(2) .m-form-input__radio-inner .m-form-date__text {
    max-width: 100%;
  }
}
.m-form-date .m-message-note + .m-form-date__txt {
  margin-top: 20px;
}

.m-form-number__txt {
  margin-bottom: 20px;
  font-size: 1rem;
}
.m-form-number__layout {
  margin-top: 20px;
  display: flex;
  gap: 50px;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-number__layout {
    gap: 16px;
    max-width: 100%;
  }
}
.m-form-number__item {
  width: 100%;
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-number__item {
    max-width: 100%;
    width: 60%;
  }
}
.m-form-number__item:first-child {
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-form-number__item:first-child {
    padding-right: 34px;
    max-width: 100%;
    width: 100%;
  }
}
.m-form-number__item:first-child:after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: calc(1.125rem + 8px + 30px + 4px);
  right: -34px;
}
@media screen and (max-width: 768px) {
  .m-form-number__item:first-child:after {
    right: 0;
  }
}

.m-form-call-sign__txt {
  margin-bottom: 20px;
  font-size: 1rem;
}
.m-form-call-sign__text {
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-call-sign__text {
    max-width: 100%;
  }
}
.m-form-call-sign .m-form-text {
  margin-top: 20px;
}
.m-form-call-sign .m-form-text + .m-link-blank {
  margin-top: 20px;
}
.m-form-call-sign .m-form-input__checkbox {
  margin-top: 20px;
}

.m-form-license {
  margin-top: 16px;
}
.m-form-license .m-form-calendar {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-license .m-form-calendar {
    max-width: 100%;
  }
}

.m-form-usage-fee .m-form-text {
  margin-bottom: 20px;
}

.m-form-upload .m-form-text + .m-link-blank {
  margin-top: 20px;
}
.m-form-upload .m-link-blank + .m-form-text {
  margin-top: 20px;
}
.m-form-upload .m-list-annotation + .m-form-text {
  margin-top: 20px;
}
.m-form-upload .m-list-dot + .m-accordion {
  margin-top: 20px;
}
.m-form-upload .m-accordion .m-form-hdg3:first-child {
  margin-top: 0;
}

.m-form-constituency-info .m-form-text {
  margin-bottom: 20px;
}
.m-form-constituency-info .m-accordion .m-form-hdg3:first-child {
  margin-top: 0;
}

.m-form-remarks .m-form-text {
  margin-bottom: 20px;
}

.m-form-fee-prepayment .m-form-text {
  margin-bottom: 20px;
}

.m-form-license-number {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-license-number {
    flex-direction: column;
    gap: 20px;
  }
}
.m-form-license-number__txt {
  word-break: keep-all;
}
.m-form-license-number__container {
  display: flex;
  gap: 16px;
  max-width: 518px;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-license-number__container {
    max-width: 100%;
  }
}
.m-form-license-number__inner:last-child {
  max-width: 518px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-license-number__inner:last-child {
    max-width: 100%;
  }
}
.m-form-license-number-input-spt__wrapper {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-license-number-input-spt__wrapper {
    flex-wrap: wrap;
  }
}
.m-form-license-number-input-spt__wrapper:nth-of-type(2) .m-form-license-number__inner:first-of-type {
  padding-right: 50px;
  position: relative;
  width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .m-form-license-number-input-spt__wrapper:nth-of-type(2) .m-form-license-number__inner:first-of-type {
    padding-right: 32px;
    width: 100%;
  }
}
.m-form-license-number-input-spt__wrapper:nth-of-type(2) .m-form-license-number__inner:first-of-type:after {
  content: "〜";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .m-form-license-number-input-spt__wrapper:nth-of-type(2) .m-form-license-number__inner:first-of-type:after {
    right: 0;
  }
}
.m-form-license-number-input-spt__wrapper .m-form-license-number__inner {
  width: 100%;
}
.m-form-license-number-input-spt__wrapper .m-form-license-number__inner:last-child {
  max-width: 100%;
}
.m-form-license-number-input-spt__wrapper + .m-form-license-number-input-spt__wrapper {
  margin-top: 20px;
}

.m-form-prepayment .m-form-select {
  max-width: 237px;
}
@media screen and (max-width: 768px) {
  .m-form-prepayment .m-form-select {
    max-width: 100%;
  }
}
.m-form-prepayment__inner {
  display: flex;
  gap: 16px;
  align-items: center;
}
.m-form-prepayment__inner .m-form-input__radio-inner-text {
  top: auto;
}
.m-form-prepayment__inner .m-form-select {
  max-width: 237px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-prepayment__inner .m-form-select {
    max-width: 100%;
  }
}
.m-form-prepayment__txt {
  font-size: 1rem;
  margin-bottom: 16px;
}

.m-form-info .m-accordion .m-form-block__inner-cts .m-form-block__cts + .m-form-block__cts label.m-form-label__bold {
  display: none;
}
@media screen and (max-width: 990px) {
  .m-form-info .m-accordion .m-form-block__inner-cts .m-form-block__cts + .m-form-block__cts label.m-form-label__bold {
    display: inline-block;
  }
}
.m-form-info__txt {
  margin-bottom: 20px;
}
.m-form-info__txt:first-child {
  margin-bottom: 8px;
}
.m-form-info__txt .m-icon__giteki-mark {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 4px;
}
.m-form-info__txt .m-icon__giteki-mark:before {
  background-size: 16px;
  width: 16px;
  height: 16px;
}
.m-form-info__button.m-button__primary-icon-plus__border {
  margin-top: 20px;
}
.m-form-info .m-form-content[aria-hidden=false] {
  margin-top: 32px;
}
@media screen and (max-width: 990px) {
  .m-form-info .m-form-block__cts {
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #b4b4b7;
  }
}

.m-form-block__inner-cts .m-message-note + .m-form-upload {
  margin-top: 20px;
}
.m-form-block__inner-cts .m-message-note + .m-form-upload .m-link-blank + .m-form-text {
  margin-top: 20px;
}
.m-form-block__inner-cts-end .m-form-block__cts:nth-of-type(2) .m-form-block__cts-layout {
  align-items: flex-end;
}
@media screen and (max-width: 990px) {
  .m-form-block__inner-cts-end .m-form-block__cts:nth-of-type(2) .m-form-block__cts-layout {
    align-items: center;
  }
}
.m-form-block__inner-cts-end .m-form-block__cts .m-form-block__cts-layout {
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 990px) {
  .m-form-block__inner-cts-end .m-form-block__cts .m-form-block__cts-layout {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .m-form-block__inner-cts-end .m-form-block__cts .m-form-block__cts-layout {
    max-width: 100%;
  }
}
.m-form-block__inner-cts-end .m-form-block__cts .m-form-block__cts-item {
  max-width: 342px;
}
@media screen and (max-width: 768px) {
  .m-form-block__inner-cts-end .m-form-block__cts .m-form-block__cts-item {
    max-width: 100%;
  }
}
.m-form-block__inner-cts-end .m-form-block__cts:first-child .m-form-block__cts-layout {
  align-items: flex-end;
}
@media screen and (max-width: 990px) {
  .m-form-block__inner-cts-end .m-form-block__cts:first-child .m-form-block__cts-layout {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .m-form-block__inner-cts-end .m-form-block__cts:first-child .m-form-block__cts-layout {
    align-items: baseline;
  }
}
.m-form-block__inner-cts-end .m-form-block__cts:only-of-type .m-form-block__cts-layout {
  align-items: center;
}

.m-form-block__cts {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .m-form-block__cts {
    flex-direction: column;
    align-items: baseline;
    border-bottom: 1px solid #b4b4b7;
    padding-bottom: 20px;
  }
}
.m-form-block__cts + .m-form-block__cts {
  margin-top: 20px;
}
.m-form-block__cts__inner:last-of-type .m-form-block__cts-layout {
  align-items: flex-end;
}
.m-message-note + .m-form-block__cts {
  margin-top: 20px;
}
.m-form-block__cts .m-form-note {
  display: none;
}
@media screen and (max-width: 990px) {
  .m-form-block__cts .m-form-note {
    display: inline-block;
  }
}
.m-accordion .m-form-block__cts:last-of-type {
  align-items: flex-start;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .m-accordion .m-form-block__cts:last-of-type {
    align-items: baseline;
  }
}
.m-accordion .m-form-block__cts:last-of-type .m-form-block__cts-item .m-form-note {
  display: inline-block;
}
.m-form-block__cts:only-of-type {
  align-items: flex-start;
}
.m-form-block__cts:only-of-type .m-form-info__button {
  margin: 0;
  position: relative;
  top: calc(1.125rem + 18px);
}
@media screen and (max-width: 990px) {
  .m-form-block__cts:only-of-type .m-form-info__button {
    top: auto;
  }
}
.m-form-block__cts:only-of-type .m-form-block__cts {
  align-items: center;
}
.m-form-block__cts:only-of-type .m-form-block__cts-item .m-form-label__bold {
  display: inline-block;
}
.m-form-block__cts-item {
  width: 100%;
}
@media screen and (max-width: 990px) {
  .m-form-block__cts-item {
    max-width: 100%;
  }
}
.m-form-block__cts-item label {
  margin-bottom: 8px;
}
.m-form-block__cts-layout {
  display: flex;
  gap: 16px;
  max-width: 788px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-block__cts-layout {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }
}

.m-form-terminal-tube.m-form-cts-units .m-form-block__cts-item {
  display: flex;
  flex-direction: column;
}
.m-form-terminal-tube.m-form-cts-units .m-form-block__cts-layout {
  max-width: 694px;
}
.m-form-terminal-tube.m-form-cts-units input {
  width: 100%;
}
.m-form-terminal-tube.m-form-cts-voltage .m-form-block__cts-layout {
  max-width: 504px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-terminal-tube.m-form-cts-voltage .m-form-block__cts-layout {
    max-width: 100%;
  }
}
.m-form-terminal-tube.m-form-cts-voltage input {
  width: 100%;
}

.m-form-other__link {
  margin-top: 20px;
}
.m-form-other__check {
  margin-top: 20px;
}

.m-form-range .m-form-text {
  margin-bottom: 20px;
}

.m-form-block__unit {
  display: flex;
  gap: 16px;
  align-items: center;
}

.m-accordion-info .m-form-hedge__adjust .m-form-hdg4 {
  margin-top: 32px;
}

.m-form-differentiation {
  display: flex;
  gap: 16px;
}
.m-form-differentiation__txt {
  position: relative;
  top: 0.5625rem;
  word-break: keep-all;
}
.m-form-differentiation__layout {
  width: 252px;
}
@media screen and (max-width: 768px) {
  .m-form-differentiation__layout {
    width: 100%;
  }
}

.m-form-equipment-number__txt {
  margin-bottom: 20px;
  font-size: 1rem;
}

.m-form-type__text {
  display: flex;
  gap: 16px;
}
.m-form-type__text .m-form-button {
  margin: 0;
}
.m-form-type__text .m-form-input__text {
  max-width: 518px;
}
@media screen and (max-width: 768px) {
  .m-form-type__text .m-form-input__text {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .m-form-type__text {
    flex-direction: column;
  }
}

.m-form-measuring-device .m-message-note {
  margin-bottom: 20px;
}
.m-form-measuring-device .m-form-text {
  margin-bottom: 20px;
}
.m-form-measuring-device .m-link-blank {
  margin-bottom: 20px;
}

.m-form-select-type .m-message-note {
  margin-bottom: 20px;
}
.m-form-select-type__layout {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-select-type__layout {
    flex-direction: column;
  }
  .m-form-select-type__layout .m-form-button {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.m-form-select-type__layout + .m-form-select-type__layout {
  margin-top: 20px;
}
.m-form-select-type__layout-button {
  max-width: 202px;
}
.m-form-select-type__button {
  margin-top: 20px;
}

.m-form-drawing .m-message-note {
  margin-bottom: 20px;
}
.m-form-drawing .m-list-annotation {
  margin-bottom: 20px;
}

.m-form-supplement__txt {
  margin-top: 20px;
  font-size: 1rem;
}

.m-form-electricity__layout {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-electricity__layout {
    flex-direction: column;
  }
}
.m-form-electricity__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-electricity__item {
    width: 100%;
  }
}
.m-form-electricity__item > .m-form-input__text, .m-form-electricity__item > .m-form-select {
  width: 100%;
  max-width: 100%;
}
.m-form-electricity__txt {
  margin-top: 20px;
}
.m-form-electricity__check {
  margin-top: 20px;
}
.m-form-electricity__button {
  margin-top: 20px;
}
.m-form-electricity .m-form-text {
  margin-bottom: 20px;
}

.m-form-commission__layout {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.m-form-commission .m-form-input__text {
  max-width: 234px;
}
@media screen and (max-width: 768px) {
  .m-form-commission .m-form-input__text {
    max-width: 100%;
  }
}
.m-form-commission__txt {
  margin-bottom: 20px;
}

.m-form-delivery .m-list-link {
  margin-bottom: 20px;
}

.m-form-receiving-method__txt {
  font-size: 1rem;
}
.m-form-receiving-method__txt + .m-form-receiving-method__txt {
  margin-top: 20px;
}
.m-form-receiving-method .m-form-text {
  margin-top: 8px;
}
.m-form-receiving-method__radio {
  margin-top: 20px;
}
.m-form-receiving-method__check {
  margin-top: 20px;
}
.m-form-receiving-method__inner .m-form-textarea {
  font-size: 1rem;
}
.m-form-receiving-method .m-form-content > .m-form-input__radio-inner {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .m-form-receiving-method .m-form-content > .m-form-input__radio-inner {
    margin-left: 32px;
  }
}
.m-form-receiving-method__layout .m-form-receiving-method__txt + .m-form-automatic-input {
  margin-top: 20px;
}

.m-form-commission__button {
  margin-top: 20px;
}

.m-form-post .m-form-input__text {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-post .m-form-input__text {
    max-width: 100%;
  }
}

.m-form-confirmation {
  padding: 32px 32px 0;
}
@media screen and (max-width: 768px) {
  .m-form-confirmation {
    padding: 24px 0 0;
  }
}
.m-form-confirmation__txt {
  margin-top: 24px;
  font-size: 1rem;
}
.m-form-confirmation .m-form-flex-center {
  justify-content: center;
}
.m-form-confirmation .m-form-button {
  width: min(100%, 376px);
  margin-top: 32px;
}
.m-form-confirmation__lead {
  color: #1a1a1c;
  font-size: 1.625rem;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .m-form-confirmation__lead {
    font-size: 1.375rem;
  }
}
.m-form-confirmation__lead:first-child {
  margin: 0;
}
.m-form-confirmation__lead-small {
  margin-top: 32px;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .m-form-confirmation__lead-small {
    font-size: 1.25rem;
  }
}
.m-form-confirmation__lead .m-tooltip__toggle {
  width: 24px;
  height: 24px;
}
.m-form-confirmation__layout {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.m-form-confirmation__button {
  max-width: 376px;
  width: 100%;
}
.m-form-confirmation__note-small {
  margin-top: 20px;
}
.m-form-confirmation__link {
  margin-top: 20px;
}
.m-form-confirmation__link-list {
  margin-top: 16px;
  margin-bottom: 0;
}

.m-form-description {
  margin: 64px 40px 0;
}
@media screen and (max-width: 768px) {
  .m-form-description {
    margin: 40px 24px 0;
  }
}
.m-form-description .m-form-text__l-bold {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .m-form-description .m-form-text__l-bold {
    margin-top: 20px;
  }
}

.m-form-completed {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .m-form-completed {
    padding: 32px 8px;
  }
}
.m-form-completed__lead {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .m-form-completed__lead {
    font-size: 1.375rem;
  }
}
.m-form-completed__txt {
  font-size: 1rem;
  margin: 32px auto 0;
  text-align: left;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .m-form-completed__txt {
    margin-top: 24px;
    text-align: left;
  }
}
.m-form-completed__txt.m-form-lite-license {
  max-width: 610px;
  margin: 24px auto 0;
  text-align: left;
}
.m-form-completed__inner {
  text-align: center;
}
.m-form-completed__box {
  background: #eff7fb;
  padding: 12px 24px 16px;
  margin-top: 20px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .m-form-completed__box {
    width: 100%;
    padding: 12px 5px 14px;
  }
}
.m-form-completed__box > p {
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-form-completed__box > p {
    font-size: 1.625rem;
  }
}
.m-form-completed__link-list {
  max-width: 519.55px;
  margin: 20px auto 0;
}
.m-form-completed__container {
  padding: 32px 32px 0;
}
@media screen and (max-width: 768px) {
  .m-form-completed__container {
    padding: 24px 8px 0;
  }
}

.m-form-flow__lead {
  font-size: 1.125rem;
  font-weight: bold;
}
.m-form-flow__item {
  margin-bottom: 32px;
}
.m-form-flow__item:last-child {
  margin-bottom: 0;
}
.m-form-flow__item-inner {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  position: relative;
}
.m-form-flow__item-inner:last-child {
  margin-bottom: 0;
}
.m-form-flow__layout {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.m-form-flow__button-list {
  margin-top: 8px;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-flow__button-list {
    margin-top: 20px;
  }
  .m-form-flow__button-list > li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .m-form-flow__button {
    max-width: 100%;
    width: 100%;
  }
}
.m-form-flow img[src$=".svg"].m-form-flow__img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .m-form-flow img[src$=".svg"].m-form-flow__img {
    width: 48px;
    height: 48px;
  }
}

.m-form-electronic-number {
  margin: 20px auto 0;
}
.m-form-electronic-number__txt {
  font-size: 1rem;
}
.m-form-electronic-number__txt-top {
  font-size: 1rem;
  margin-bottom: 20px;
}
.m-form-electronic-number-3col__inner:first-child .m-form-input__text, .m-form-electronic-number-3col__inner:last-child .m-form-input__text {
  width: 130px;
}
.m-form-electronic-number-cards__container {
  margin-top: 20px;
  flex-wrap: wrap;
}
.m-form-electronic-number-cards__card {
  max-width: 48.5%;
  width: 100%;
  border: 1px solid #b4b4b7;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.m-form-electronic-number-cards__card.is-checked {
  border: 1px solid #0d44a0;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__card {
    max-width: 100%;
  }
}
.m-form-electronic-number-cards__card:last-child {
  margin-bottom: 0;
}
.m-form-electronic-number-cards__txt {
  font-size: 1rem;
}
.m-form-electronic-number__link {
  margin-top: 20px;
}
.m-form-electronic-number__layout {
  margin-top: 20px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number__layout {
    flex-direction: column;
    gap: 16px;
  }
}
.m-form-electronic-number__inner, .m-form-electronic-number-3col__inner {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number__inner, .m-form-electronic-number-3col__inner {
    width: 100%;
  }
}
.m-form-electronic-number__inner:first-child, .m-form-electronic-number-3col__inner:first-child {
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number__inner:first-child, .m-form-electronic-number-3col__inner:first-child {
    padding-right: 34px;
  }
}
.m-form-electronic-number__inner:first-child::after, .m-form-electronic-number-3col__inner:first-child::after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: calc(1.125rem + 8px + 30px + 4px);
  right: -34px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number__inner:first-child::after, .m-form-electronic-number-3col__inner:first-child::after {
    right: 0;
  }
}
.m-form-electronic-number__container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.m-form-electronic-number__container .m-form-electronic-number__txt {
  word-break: keep-all;
}
.m-form-electronic-number-2col {
  margin: 20px auto 0;
}
.m-form-electronic-number-2col .m-form-electronic-number__layout {
  align-items: center;
}
.m-form-electronic-number-2col__inner {
  width: 100%;
}
.m-form-electronic-number-2col__inner:first-child {
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-2col__inner:first-child {
    padding-right: 34px;
  }
}
.m-form-electronic-number-2col__inner:first-child::after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: -34px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-2col__inner:first-child::after {
    right: 0;
  }
}
.m-form-electronic-number-3col {
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col__inner:first-child .m-form-input__text, .m-form-electronic-number-3col__inner:last-child .m-form-input__text {
    max-width: 130px;
  }
}
.m-form-electronic-number-3col__inner:first-child {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col__inner:first-child:after {
    right: 0;
  }
}
.m-form-electronic-number-3col__inner:nth-child(2) {
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col__inner:nth-child(2) {
    padding-right: 34px;
  }
}
.m-form-electronic-number-3col__inner:nth-child(2):after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: calc(1.125rem + 8px + 30px + 4px);
  right: -34px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col__inner:nth-child(2):after {
    right: 0;
  }
}
.m-form-electronic-number-3col-2 {
  margin: 20px auto 0;
}
.m-form-electronic-number-3col-2 .m-accordion-info__sort-label + .m-form-electronic-number__layout {
  margin-top: 0;
}
.m-form-electronic-number-3col-2 .m-form-electronic-number__layout:first-of-type .m-form-electronic-number-3col-2__inner:nth-of-type(3) {
  padding-right: 50px;
  position: relative;
  width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col-2 .m-form-electronic-number__layout:first-of-type .m-form-electronic-number-3col-2__inner:nth-of-type(3) {
    padding-right: 32px;
    width: 100%;
  }
}
.m-form-electronic-number-3col-2 .m-form-electronic-number__layout:first-of-type .m-form-electronic-number-3col-2__inner:nth-of-type(3):after {
  content: "〜";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col-2 .m-form-electronic-number__layout:first-of-type .m-form-electronic-number-3col-2__inner:nth-of-type(3):after {
    right: 0;
  }
}
.m-form-electronic-number-3col-2__inner {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col-2__inner:not(:nth-last-of-type(1)) {
    padding-right: 34px;
  }
}
.m-form-electronic-number-3col-2__inner:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  border: 1px solid #1a1a1c;
  width: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: -34px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-3col-2__inner:not(:nth-child(3n)):after {
    right: 0;
  }
}
.m-form-electronic-number-cards__container {
  margin-top: 20px;
  flex-wrap: wrap;
}
.m-form-electronic-number-cards__card {
  max-width: 48.5%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__card {
    max-width: 100%;
  }
}
.m-form-electronic-number-cards__card:nth-last-child(n+2) {
  margin-bottom: 0;
}
.m-form-electronic-number .m-form-license-number {
  margin-top: 16px;
}

.m-form-info-change__txt {
  margin-bottom: 20px;
}

.m-form-applicant-info__txt {
  margin-bottom: 20px;
}
.m-form-applicant-info__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 24px;
}
.m-form-applicant-info__title:first-child {
  margin: 0;
}
.m-form-applicant-info__content {
  margin-top: 8px;
}
.m-form-applicant-info__layout {
  margin-top: 16px;
}
.m-form-applicant-info .m-list-annotation {
  margin-top: 16px;
}

.m-form-change-procedure__txt {
  margin-bottom: 20px;
}
.m-form-change-procedure__layout {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.m-form-change-procedure__layout > li {
  display: inherit;
  align-items: flex-start;
  gap: 16px;
}
.m-form-change-procedure__title {
  word-break: keep-all;
  background-color: #626264;
  padding: 2px 10px;
  min-height: 31px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.m-form-change-procedure__title > span {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .m-form-change-procedure__title {
    font-size: 1rem;
  }
  .m-form-change-procedure__title > span {
    font-size: 1.125rem;
  }
}
.m-form-change-procedure__content {
  line-height: 31px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .m-form-change-procedure__content {
    line-height: 27px;
  }
}
.m-form-change-procedure .m-list-button__cts {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .m-form-change-procedure .m-list-button__cts {
    margin-top: 40px;
  }
}

.m-form-document-change__txt {
  margin-bottom: 20px;
}

.m-form-electronic-number-cards__content {
  margin-top: 20px;
}
.m-form-electronic-number-cards__content .m-tooltip__toggle {
  width: 24px;
  height: 24px;
  margin: 0 4px;
}
.m-form-electronic-number-cards__content .m-form-input__radio-label {
  display: flex;
  align-items: center;
}
.m-form-electronic-number-cards__card-list {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__card-list {
    grid-template-columns: 1fr;
  }
}
.m-form-electronic-number-cards__card-list dt, .m-form-electronic-number-cards__card-list dd {
  font-size: 1.125rem;
  border-bottom: 1px solid #b4b4b7;
}
.m-form-electronic-number-cards__card-list dt:last-of-type, .m-form-electronic-number-cards__card-list dd:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.m-form-electronic-number-cards__card-list dt {
  padding: 9.5px 8px 9.5px 4px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__card-list dt {
    border-bottom: 0;
    padding: 9.5px 8px 0 8px;
  }
}
.m-form-electronic-number-cards__card-list dd {
  font-weight: bold;
  padding: 9.5px 4px 9.5px 8px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__card-list dd {
    padding: 9.5px 8px 9.5px 8px;
  }
}
.m-form-electronic-number-cards__card-list dd strong {
  color: #ec0000;
}
.m-form-electronic-number-cards__layout {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__layout {
    flex-direction: column;
  }
}
.m-form-electronic-number-cards__inner {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-number-cards__inner {
    width: 100%;
  }
}
.m-form-electronic-number-cards__inner:last-child {
  max-width: inherit;
}
.m-form-electronic-number-cards__container {
  max-width: inherit;
  display: flex;
  gap: 16px;
  align-items: center;
}

.m-form-electronic-number-cards__container {
  align-items: stretch;
}

.m-form-confirm-number__text {
  margin-bottom: 20px;
}
.m-form-confirm-number .m-form-input__radio-l {
  margin-top: 20px;
}
.m-form-confirm-number .m-list-dot__item {
  font-weight: bold;
}
.m-form-confirm-number .m-form-content[aria-hidden=false] {
  margin-top: 32px;
}
.m-form-confirm-number .m-form-content .m-form-hdg2 {
  margin-left: -32px;
  margin-right: -32px;
}
@media screen and (max-width: 768px) {
  .m-form-confirm-number .m-form-content .m-form-hdg2 {
    margin-left: 0;
    margin-right: 0;
  }
}

.m-form-auto-entry .m-list-dot {
  margin: 20px 0;
}
.m-form-auto-entry__button {
  max-width: 600px;
  width: 100%;
}
.m-form-auto-entry__button-layout {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .m-form-auto-entry__button-layout {
    margin-top: 40px;
  }
}

.m-form-department .m-form-label__container {
  display: flex;
  gap: 8px;
}

.m-form-applicant-info__title + .m-form-applicant-info__title {
  margin-top: 8px;
}

.m-form-call .m-form-text__l-bold {
  margin-bottom: 20px;
}

.m-form-belong-name__item {
  margin-top: 20px;
}

.m-form-rejection-reason__txt {
  margin-bottom: 20px;
}
.m-form-rejection-reason__link {
  margin-bottom: 20px;
}

.m-form-payment-advance__txt {
  margin-bottom: 20px;
}
.m-form-payment-advance__link {
  margin-bottom: 20px;
}
.m-form-payment-advance .m-list-link {
  margin-bottom: 20px;
}

.m-form-payment-duration__txt {
  margin-bottom: 20px;
}

.m-form-storage__lead {
  font-size: 1.625rem;
  font-weight: bold;
  margin: 32px 0 24px;
}
.m-form-storage__txt {
  font-size: 1rem;
}
.m-form-storage__layout {
  margin: 24px auto 0;
}
.m-form-storage__layout > ul {
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .m-form-storage__layout > ul {
    align-items: center;
  }
}
.m-form-storage__layout > ul > li {
  width: 376px;
}
@media screen and (max-width: 768px) {
  .m-form-storage__layout > ul > li {
    max-width: 376px;
    width: 100%;
  }
}
.m-form-storage__layout > ul > li > button {
  width: 100%;
}
.m-form-storage__button {
  width: 100%;
  margin: 0 auto;
}

.m-form-qualification__select {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-qualification__select {
    max-width: 100%;
  }
}

.m-form-history .m-tooltip {
  margin-bottom: 20px;
}
.m-form-history .m-form-supplement {
  margin-bottom: 20px;
}
.m-form-history__button {
  display: flex;
  justify-content: flex-end;
}

.m-form-signal__txt {
  margin-bottom: 20px;
}
.m-form-signal__text {
  margin-top: 20px;
  max-width: 268px;
}

.m-form-change-number .m-form-input__checkbox {
  margin-top: 20px;
}

.m-form-call .m-form-input__text {
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-call .m-form-input__text {
    max-width: 100%;
  }
}

.m-form-remarks-column .m-list-dot + .m-form-text {
  margin-top: 8px;
}
.m-form-remarks-column [data-form-textarea=area] {
  margin-top: 20px;
}

.m-form-plan .m-form-text__l-bold {
  margin-bottom: 20px;
}

.m-form-symbolic-hope {
  margin-top: 20px;
}
.m-form-symbolic-hope .m-form-input__text {
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-symbolic-hope .m-form-input__text {
    max-width: 100%;
  }
}

.m-form-other-contents .m-form-input__checkbox {
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .m-form-other-contents .m-form-input__checkbox {
    padding: 0;
  }
}

.m-form-local-bureau .m-form-select {
  max-width: 268px;
}
@media screen and (max-width: 768px) {
  .m-form-local-bureau .m-form-select {
    max-width: 100%;
  }
}

.m-form-application .m-form-input__checkbox {
  margin-top: 20px;
}

.m-form-temporary .m-form-input__radio {
  margin-top: 20px;
}
.m-form-temporary__input-layout {
  margin-top: 20px;
}
.m-form-temporary__table table.m-table,
.m-form-temporary__table table.m-table th,
.m-form-temporary__table table.m-table td {
  border: 0;
}
.m-form-temporary__table table.m-table th,
.m-form-temporary__table table.m-table td {
  padding: 18px 16px;
}
@media screen and (max-width: 768px) {
  .m-form-temporary__table table.m-table th,
  .m-form-temporary__table table.m-table td {
    display: table-cell;
  }
}
.m-form-temporary__table table.m-table th + th {
  border-left: 1px solid #fff;
}
.m-form-temporary__table table.m-table td {
  border-bottom: 1px solid #b4b4b7;
}
.m-form-temporary__table table.m-table .m-table__col {
  width: 50%;
}

.m-form-login .m-form-label__bold {
  display: inline-block;
}
.m-form-login .m-form-input__text {
  margin-top: 8px;
}
.m-form-login .m-form-input__text + .m-form-label__bold {
  margin-top: 20px;
}
.m-form-login .m-form-input__text + .m-form-input__checkbox {
  margin-top: 20px;
}
.m-form-login .m-form-input__checkbox {
  font-size: 1rem;
}
.m-form-login .m-form-input__checkbox > li > label {
  text-indent: -40px;
  padding-left: 40px;
  line-height: 24px;
}
.m-form-login .m-form-input__checkbox input[type=checkbox] {
  width: 24px;
  height: 24px;
}
.m-form-login .m-form-input__checkbox input[type=checkbox]:checked + .m-form-input__checkbox-icon:before {
  width: 17.6px;
  height: 17.6px;
  -webkit-mask-image: url("/assets/img/icon_check.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_check.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 17.6px;
  height: 17.6px;
}
.m-form-login .m-form-input__checkbox .m-form-input__checkbox-icon {
  border-width: 1px;
  width: 24px;
  height: 24px;
}
.m-form-login .m-form-input__checkbox .m-form-input__checkbox-label {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .m-form-login .m-form-input__checkbox .m-form-input__checkbox-label {
    padding-left: 32px;
    top: 0;
  }
}

.m-form-note--yearlydivision {
  margin-left: calc(1em + 8px);
}
@media screen and (min-width: 769px) {
  .m-form-note--yearlydivision {
    white-space: nowrap;
  }
}
.m-form-note--example {
  text-indent: -2em;
  padding-left: 2em;
}
.m-form-note--example span {
  text-decoration: underline;
}

.m-form-input-spt-type__item {
  margin-top: 20px;
}
.m-form-input-spt-class__item {
  align-items: center;
}
.m-form-input-spt-class__item + .m-form-input-spt-class__item {
  margin-top: 20px;
}

.m-form-input-spt-class__item.m-col2 {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .m-form-input-spt-class__item.m-col2 {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .m-form-input-spt-class__item .m-col2 {
    width: 100%;
  }
}
.m-form-input-spt-class__item-inner {
  width: 100%;
}
.m-form-input-spt-class__item-inner-half {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-input-spt-class__item-inner-half {
    width: 100%;
  }
}

.m-form-vehicle-name__item {
  margin-top: 20px;
}
.m-form-vehicle-name__item:first-child {
  margin: 0;
}

.m-form-place,
.m-form-person-name,
.m-form-corporation-name {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.m-form-place .m-form-select,
.m-form-person-name .m-form-select,
.m-form-corporation-name .m-form-select {
  margin-top: 8px;
}

.m-form-by-reg .m-form-text {
  margin-bottom: 20px;
}

.m-form-job-name {
  margin-top: 20px;
}

.m-form-account-users-mail .m-form-mail__subt {
  font-size: 1rem;
}

.m-form-scope-delegate-txtarea .m-form-text__select {
  margin-bottom: 32px;
}

.m-form-sub-agent .m-form-input__radio {
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  .m-form-setting-scope-disclosure .m-form-input__checkbox {
    grid-template-columns: 1fr;
  }
}

.m-form-electronic-proxy-date {
  margin-top: 16px;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-electronic-proxy-date {
    max-width: 100%;
  }
}

/*================================================================
カレンダー
=================================================================*/
.m-form-calendar {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 0 20px 0 16px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #1a1a1c;
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.m-form-calendar.is-disable {
  pointer-events: none;
  background-color: #e8e8eb;
  color: #949497;
  border-color: #949497;
}
.m-form-calendar.is-disable .m-form-calendar__text-input,
.m-form-calendar.is-disable .m-form-calendar__clear {
  color: #949497;
}
.m-form-calendar.is-disable .m-form-calendar__icon-img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(7%) saturate(108%) hue-rotate(202deg) brightness(95%) contrast(84%);
}
.m-form-calendar__container {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .m-form-calendar__container {
    max-width: 100%;
  }
}
.m-form-calendar-align-base {
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .m-form-calendar {
    padding: 0 10px;
  }
}
.m-form-calendar__text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.m-form-calendar__text-fn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  grid-template-rows: auto;
}
.m-form-calendar__text-btn {
  height: 100%;
  padding: 0 2px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  color: inherit;
  grid-column: 1/3;
  grid-row: 1;
  border-radius: 0.25em;
}
.m-form-calendar__text-btn:focus-visible {
  background: #eff7fb;
}
.m-form-calendar__text-form {
  grid-column: 1;
  grid-row: 1;
  position: relative;
}
.m-form-calendar__text-form--era {
  grid-column: 1/3;
}
.m-form-calendar__text-dummy {
  display: block;
  visibility: hidden;
  padding: 1px 2px;
  min-width: 1em;
  min-height: 1.5em;
}
.m-form-calendar__text-input {
  width: 100%;
  min-width: 1em;
  height: 100%;
  min-height: 1.5em;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1px 2px;
  background: transparent;
}
.m-form-calendar__text-suffix {
  padding: 1px 0;
  grid-column: 2;
  grid-row: 1;
  cursor: pointer;
}
.m-form-calendar__text-split {
  height: 100%;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
}
.m-form-calendar__icon {
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.m-form-calendar__icon-img {
  width: 24px;
  display: block;
}
.m-form-calendar__dialog {
  position: absolute;
  top: calc(100% + 1px);
  left: auto;
  right: 0;
  font-size: 1rem;
  width: 19.5em;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  background: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .m-form-calendar__dialog {
    left: 0;
    right: auto;
  }
}
.m-form-calendar__dialog.is-open {
  display: flex;
}
.m-form-calendar__dialog-inner {
  width: 100%;
  height: 100%;
  padding: 0.5em 1em;
}
.m-form-calendar__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.m-form-calendar__calendar {
  width: 100%;
  min-height: 19.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.m-form-calendar__category {
  width: 100%;
  height: 100%;
  display: none;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: column;
  align-items: center;
}
.m-form-calendar__category.is-visible {
  display: flex;
}
.m-form-calendar__ctrl {
  width: 100%;
  min-height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.125em 0;
  box-sizing: border-box;
  text-align: center;
  font-style: 0;
  flex-grow: 0;
}
.m-form-calendar__ctrl--month {
  margin-top: 0.5em;
  background: #eff7fb;
}
.m-form-calendar__ctrl-button {
  width: 1em;
  height: 1em;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
          appearance: none;
}
.m-form-calendar__ctrl-img {
  display: block;
}
.m-form-calendar__ctrl-display {
  min-width: 7.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
          appearance: none;
  color: inherit;
}
.m-form-calendar__year-set {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.m-form-calendar__year-set:not(.is-open) {
  display: none;
}
.m-form-calendar__year-bg {
  width: calc(100% + 2em);
  height: calc(100% + 1em);
  position: absolute;
  top: -0.5em;
  left: -1em;
  cursor: pointer;
}
.m-form-calendar__year-select {
  padding: 0.5em 0.25em;
  height: 100%;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 0.5em;
  border: none;
  -webkit-appearance: none;
          appearance: none;
  z-index: 1;
}
.m-form-calendar__year-select::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
  background: #d8d8db;
  border-radius: 0 0.5em 0.5em 0;
  overflow: hidden;
}
.m-form-calendar__year-select::-webkit-scrollbar-thumb {
  background: #0d44a0;
  border-radius: 10000px;
}
.m-form-calendar__year-option {
  padding: 0 0 0 2em;
  height: 11.1111111111%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.m-form-calendar__year-option:hover {
  background: #f1f1f4;
}
.m-form-calendar__year-option:checked {
  background: url(/assets/img/icon_check.svg) 0.3em center/1.2em no-repeat;
}
.m-form-calendar__year-option:checked:hover {
  background: url(/assets/img/icon_check.svg) 0.3em center/1.2em no-repeat, #f1f1f4;
}
.m-form-calendar__month-list {
  width: 100%;
  margin-top: 0.5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.m-form-calendar__month {
  width: 100%;
}
.m-form-calendar__month-btn {
  width: 100%;
  aspect-ratio: 140/87;
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  -webkit-appearance: none;
          appearance: none;
  font-size: 1rem;
}
.m-form-calendar__month-btn:hover {
  background: #f1f1f4;
}
.m-form-calendar__day-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.m-form-calendar__day {
  font-size: 1rem;
  width: 100%;
  aspect-ratio: 1;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-form-calendar__date-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.m-form-calendar__date {
  width: 100%;
}
.m-form-calendar__date-btn {
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  -webkit-appearance: none;
          appearance: none;
  color: inherit;
  font-size: 1rem;
}
.m-form-calendar__date-btn:hover {
  background: linear-gradient(#f1f1f4, #f1f1f4) center/2em 2em no-repeat;
}
.m-form-calendar__selected .m-form-calendar__date-btn {
  color: #fff;
  background: radial-gradient(circle, #0d44a0 0.75em, transparent 0.8em);
}
.m-form-calendar__selected .m-form-calendar__date-btn:hover {
  background: radial-gradient(circle, #0d44a0 0.75em, transparent 0.8em), linear-gradient(#f1f1f4, #f1f1f4) center/2em 2em no-repeat;
}
.m-form-calendar__close-button {
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  position: absolute;
  top: 0.25em;
  right: 0;
  background: radial-gradient(#fff 65%, transparent 65%) #0d44a0;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}
.m-form-calendar__close-img {
  display: block;
  filter: brightness(0) saturate(100%) invert(17%) sepia(66%) saturate(2883%) hue-rotate(210deg) brightness(96%) contrast(96%);
}

.m-form-calendar {
  padding: 10px 20px;
  gap: 16px;
}
.m-form-calendar .m-form-calendar__text {
  order: 2;
}
.m-form-calendar .m-form-calendar__icon {
  order: 1;
}
.m-form-calendar .m-form-calendar__clear {
  order: 3;
  width: 50px;
  white-space: nowrap;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .m-form-calendar {
    padding: 10px 16px;
  }
  .m-form-calendar .m-form-calendar__icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
  }
  .m-form-calendar .m-form-calendar__icon img[src$=".svg"] {
    width: 24px;
    height: 24px;
  }
}

.m-accordion-info__sort-calendar .m-accordion-info__sort-row:first-of-type::after {
  top: 50%;
  transform: translateY(-50%);
}

/*================================================================
フォーム 検索
=================================================================*/
/* 検索
--------------------------------------------------------*/
.m-form-search__lead {
  font-size: 1.125rem;
}
.m-form-search__form {
  margin-top: 8px;
  border: 1px solid #1a1a1c;
  border-radius: 4px;
  background: #fff;
  height: 56px;
  display: flex;
  flex: 1;
}
.m-form-search__form > input[type=text] {
  padding: 12px 16px;
  border-radius: 4px 0 0 4px;
  flex: 1;
}
.m-form-search__form > button {
  background: #0d44a0;
  color: #fff;
  padding: 5px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 1.125rem;
  min-width: 128px;
}
@media screen and (max-width: 768px) {
  .m-form-search__form > button {
    padding: 5px 14px;
    min-width: 56px;
  }
  .m-form-search__form > button span {
    display: none;
  }
}
.m-form-search__form > button::before {
  content: "";
  display: block;
  -webkit-mask-image: url("/assets/img/icon_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.m-form-search__form > button:hover {
  background: #003c79;
}
.m-form-search__note {
  color: #626264;
  margin-top: 8px;
}

/*================================================================
見出し
=================================================================*/
.m-hdg1-ex {
  margin: 64px auto 24px;
  box-sizing: border-box;
  font-size: 2.625rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  color: #003c79;
}
.m-hdg1-ex:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .m-hdg1-ex {
    font-size: 1.625rem;
    margin: 32px auto 24px;
  }
}

.m-hdg2-ex {
  margin: 64px auto 24px;
  box-sizing: border-box;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #003c79;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .m-hdg2-ex {
    margin-top: 40px;
    font-size: 1.5rem;
  }
}

/*================================================================
履歴照会
=================================================================*/
/* 一覧
--------------------------------------------------------*/
p + .history-text {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .m-accordion-info__toggle--history {
    padding-bottom: 56px;
  }
}

.history-list__result-text {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .history-list__result-text {
    margin-top: 32px;
  }
}
.history-list__result-error-text {
  margin: 40px 0;
  font-size: 1rem;
  font-weight: bold;
}
.history-list-button__cv {
  max-width: 376px;
  margin-top: 24px;
}
.history-list-button__cv + .history-list-button__cv {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .history-list-button__cv + .history-list-button__cv {
    margin-top: 56px;
  }
}
.history-list-box {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .history-list-box {
    padding: 24px;
  }
}
.history-list-box .m-list-dot {
  margin-top: 20px;
}
.history-list-box .m-list-link {
  margin-top: 8px;
}

.history-tab .m-tab__cts {
  margin-top: 32px;
}
.history-tab .m-accordion-info__sort-border > .m-accordion-info__sort-hdg {
  margin-top: 0;
}
.history-tab .m-accordion-info__sort-hdg + .m-accordion-info__sort-col2 .m-accordion-info__sort-label {
  margin-top: 0;
}
.history-tab .m-form-address-details__item:first-child {
  margin-top: 20px;
}
.history-tab .m-form-permit-number__layout {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .history-tab .m-form-permit-number__layout {
    flex-direction: column;
  }
}
.history-tab .m-form-permit-number-3col__inner {
  width: 33.3333%;
}
@media screen and (max-width: 768px) {
  .history-tab .m-form-permit-number-3col__inner {
    width: 100%;
  }
}
.history-tab .m-form-permit-number__container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.history-tab .m-form-input__checkbox .m-list-dot {
  padding-left: 48px;
}
.history-tab .m-form-input__checkbox .m-list-dot li {
  font-size: inherit;
  padding-left: 32px;
}
.history-tab .m-table-sort__w {
  min-width: 320px;
}

/* 詳細
--------------------------------------------------------*/
main .wrapper > .article .history-petition__detail-buttonlist {
  margin-top: 24px;
}
main .wrapper > .article .history-petition__detail-buttonlist.m-col1 button {
  margin: 0 auto;
  max-width: 445px;
  width: 100%;
}

/* 詳細（技適）
--------------------------------------------------------*/
main .wrapper > .article .history-petition-giteki__detail-buttonlist {
  margin-top: 24px;
}
main .wrapper > .article .history-petition-giteki__detail-buttonlist.m-col1 button {
  margin: 0 auto;
  max-width: 376px;
  width: 100%;
}

/*================================================================
マイページ
=================================================================*/
.mypage {
  margin: 0 0 16px;
}

.main-mypage {
  padding-bottom: 0;
}

.mypage-contents-text {
  padding: 8px 16px;
}

@media screen and (max-width: 768px) {
  .mypage-section {
    padding-top: 24px;
  }
}
.mypage-section + .breadcrumb {
  margin-top: 16px;
}
.mypage-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mypage-hdg2 {
  font-size: 2rem;
  color: #003c79;
  margin: 64px 0 24px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .mypage-hdg2 {
    font-size: 1.5rem;
  }
}
.mypage-hdg2:first-child {
  margin-top: 0;
}

[class*=mypage-hdg__] {
  position: relative;
  padding-left: 56px;
}
[class*=mypage-hdg__]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  [class*=mypage-hdg__]::before {
    top: -4px;
  }
}

.mypage-hdg__info {
  padding: 0;
}

.mypage-hdg__document::before {
  -webkit-mask-image: url("/assets/img/icon_l_write.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_write.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 48px;
  height: 48px;
}

.mypage-hdg__license::before {
  -webkit-mask-image: url("/assets/img/icon_l_radio_station_license.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_radio_station_license.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 48px;
  height: 48px;
}

.mypage-hdg__application::before {
  -webkit-mask-image: url("/assets/img/icon_l_document.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_document.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 48px;
  height: 48px;
}

.mypage-hdg__know::before {
  -webkit-mask-image: url("/assets/img/icon_l_light.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_light.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 48px;
  height: 48px;
}

.mypage-hdg__question::before {
  -webkit-mask-image: url("/assets/img/icon_l_ask.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_ask.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 48px;
  height: 48px;
}

.mypage-hdg__notice::before {
  -webkit-mask-image: url("/assets/img/icon_l_info.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_l_info.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #003c79;
  width: 48px;
  height: 48px;
}

.mypage-message {
  position: relative;
}
.mypage-message::before {
  content: "";
  position: absolute;
  left: 0;
}

.mypage-info {
  font-size: 1rem;
  position: relative;
  padding-left: 32px;
}
.mypage-info__icon {
  width: 1.33em !important;
  height: 1.33em;
  position: absolute;
  left: 0;
  top: 0.05em;
  background: radial-gradient(#fff 65%, transparent 65%), #0078b0;
  border-radius: 50%;
}
.mypage-info__icon-confirm {
  width: 1.33em !important;
  height: 1.33em;
  position: absolute;
  left: 0;
  top: 0.05em;
  background: radial-gradient(#fff 100%, transparent 0), #ec0000;
  border-radius: 50%;
}
.mypage-info__icon-confirm .mypage-info__img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(86%) saturate(7458%) hue-rotate(0deg) brightness(101%) contrast(108%);
  width: 24px;
}
.mypage-info__img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(99%) saturate(2694%) hue-rotate(177deg) brightness(83%) contrast(101%);
  width: 24px;
}
.mypage-info__text-bold {
  font-weight: bold;
  display: block;
}

.mypage-information__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-width: 8px 0;
  border-style: solid;
  border-color: #0f4399;
  border-image: linear-gradient(to right, #0078b0, #0f4399);
  border-image-slice: 1;
}
.mypage-information__container + .mypage-information__container {
  margin-top: 30px;
}
.mypage-information__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mypage-information__message-text {
  position: relative;
  font-weight: bold;
  padding-left: 48px;
  line-height: 1.5;
  display: inline-block;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .mypage-information__message-text {
    font-size: 1.125rem;
  }
}
.mypage-information .mypage-info__icon {
  width: 32px !important;
  height: 32px;
  position: absolute;
  left: 0;
  top: -0.05em;
  background: radial-gradient(#fff 65%, transparent 65%), #0078b0;
  border-radius: 50%;
}
.mypage-information .mypage-info__icon-confirm {
  width: 32px !important;
  height: 32px;
}
.mypage-information .mypage-info__icon-confirm > img {
  width: 32px;
}

.mypage-document__link-list {
  text-align: right;
  margin-top: 20px;
}

.mypage-license .mypage-text {
  margin-top: 20px;
}
.mypage-license__link-list {
  text-align: right;
  margin-top: 20px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.mypage-license .mypage-status__text {
  position: relative;
  padding-left: 61px;
}
.mypage-license .mypage-status__text::before {
  content: "";
  position: absolute;
  left: 0;
  background: url("/assets/img/icon_ribon.svg") no-repeat;
  width: 41px;
  height: 48px;
}
.mypage-license .mypage-status__text span {
  font-size: 1.5rem;
  font-weight: bold;
}
.mypage-license .mypage-status__text-container {
  background: none;
  margin: 0 0 8px;
  padding: 0;
}
.mypage-license .m-message-note + .m-message-note {
  margin-top: 20px;
}

.mypage-status {
  border: 3px solid #e8e8eb;
  padding: 24px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .mypage-status {
    padding: 16px;
  }
}
.mypage-status__container {
  display: grid;
  gap: 24px;
  margin-top: 20px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .mypage-status__container {
    grid-template-columns: 1fr;
  }
}
.mypage-status-round {
  border-radius: 12px;
  border: 1px solid #e8e8eb;
}
.mypage-status__progress {
  gap: 4px;
  display: flex;
}
.mypage-status__progress span {
  height: 8px;
  background: #e8e8eb;
  width: 20%;
}
.mypage-status__progress span.is-current, .mypage-status__progress span.is-success {
  background: #a2dbf5;
}
.mypage-status__text-l {
  font-size: 1.5rem;
  font-weight: bold;
}
.mypage-status__text-container {
  margin-top: 8px;
  background: #e8e8eb;
  padding: 18px 24px;
  display: flex;
  gap: 48px;
  align-items: center;
}
.mypage-status .mypage-modal {
  text-align: right;
  margin-top: 8px;
}
.mypage-status .mypage-list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .mypage-status .mypage-list {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}
.mypage-status .mypage-list dt, .mypage-status .mypage-list dd {
  padding-bottom: 8px;
  border-bottom: 1px solid #b4b4b7;
  display: flex;
  align-items: center;
}
.mypage-status .mypage-list dt:last-of-type, .mypage-status .mypage-list dd:last-of-type {
  border-bottom: 0;
}
.mypage-status .mypage-list dt {
  padding-right: 16px;
}
@media screen and (max-width: 768px) {
  .mypage-status .mypage-list dt {
    border: 0;
    padding-bottom: 0;
  }
  .mypage-status .mypage-list dt:last-of-type {
    padding: 0;
  }
}
.mypage-status .mypage-list dd {
  font-size: 1.125rem;
  font-weight: bold;
}
.mypage-status .mypage-list dd.mypage-limit {
  color: #ec0000;
}
.mypage-status .mypage-button {
  margin-top: 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .mypage-status .mypage-button {
    margin-top: 8px;
  }
}
.mypage-status .mypage-button .m-button__primary-s,
.mypage-status .mypage-button .m-button__secondary-s {
  width: 100%;
}
.mypage-status .mypage-button-l {
  margin-top: 24px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .mypage-status .mypage-button-l {
    margin-top: 8px;
  }
}
.mypage-status .mypage-button-l .m-button__primary-s,
.mypage-status .mypage-button-l .m-button__secondary-s {
  width: 100%;
}
.mypage-status .mypage-link {
  text-align: center;
  margin-top: 16px;
  font-weight: bold;
}
.mypage-status .m-link__list {
  gap: 8px;
  margin: 16px 0 24px;
}
@media screen and (max-width: 768px) {
  .mypage-status .m-link__list {
    gap: 16px;
    margin: 8px 0 24px;
  }
}

.mypage-application .m-list-button li > .m-button__primary-l {
  min-height: 88px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .mypage-application .m-list-button li > .m-button__primary-l {
    min-height: 72px;
    font-size: 1.25rem;
  }
}

.mypage-know .m-list-button {
  gap: 16px;
  align-items: unset;
  flex-wrap: nowrap;
}
.mypage-know .m-list-button li {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .mypage-know .m-list-button li {
    width: 100%;
  }
}
.mypage-know .m-list-button li > .m-button__secondary-m {
  width: 100%;
  height: 100%;
  word-break: break-all;
}

.mypage-question {
  margin-top: 20px;
}
.mypage-question .m-list-dot {
  margin-top: 20px;
}
.mypage-question .m-list-link {
  margin-top: 20px;
}
.mypage-question__link-list {
  text-align: right;
  margin-top: 20px;
}

.mypage-modal__status {
  column-gap: 16px;
  row-gap: 4px;
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #b4b4b7;
}
@media screen and (max-width: 768px) {
  .mypage-modal__status {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.mypage-modal__status-lead {
  font-size: 1.25rem;
  font-weight: bold;
  word-break: keep-all;
}
.mypage-modal__status-inner {
  padding: 16px;
  border-left: 8px solid #a2dbf5;
  display: inherit;
  align-items: baseline;
  column-gap: 16px;
}
.mypage-modal__status-inner:first-of-type, .mypage-modal__status-inner:last-of-type {
  border-color: #e8e8eb;
}
@media screen and (max-width: 768px) {
  .mypage-modal__status-inner {
    flex-direction: column;
    padding: 8px 16px;
  }
}
.mypage-modal__status-paragraph {
  border-left: 8px solid #a2dbf5;
  padding: 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.mypage-modal__status-paragraph .mypage-modal__status-inner {
  border: 0;
  padding: 0;
}
.mypage-modal__status-paragraph .mypage-modal__status-inner:nth-of-type(n+2) {
  padding-left: 16px;
}
.mypage-modal .m-list-link {
  margin-top: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mypage-modal .m-modal__button {
    margin-top: 32px;
  }
}

.mypage-detail-buttonlist {
  width: 100%;
  max-width: 376px;
  align-items: center;
  display: grid;
  gap: 24px;
  margin: 24px auto 0;
}
.mypage-detail-buttonlist > li {
  width: 100%;
  height: 100%;
}
.mypage-detail-buttonlist > li > button {
  width: 100%;
  height: 100%;
}
.m-table + .mypage-detail-buttonlist {
  margin-top: 36px;
}
.mypage-detail-buttonlist + .mypage-detail-buttonlist {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .mypage-detail-buttonlist + .mypage-detail-buttonlist {
    margin-top: 40px;
  }
}
.mypage-detail-buttonlist-col2 {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .mypage-detail-buttonlist-col2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.mypage-detail-buttonlist-col2 > li {
  width: 100%;
}
.mypage-detail-buttonlist-col2 > li > button {
  word-break: normal;
}

.mypage-progress__hdg2 {
  margin: 24px 0 8px;
  font-size: 1.25rem;
  font-weight: bold;
}

.mypage-text-margin {
  margin-top: 20px;
}
.mypage-text-right {
  text-align: right;
}

.mypage-result__text {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .mypage-result__text {
    margin-top: 32px;
  }
}
.mypage-result__error-text {
  margin: 40px 0;
  font-size: 1rem;
  font-weight: bold;
}
.mypage-result__button-cv {
  max-width: 376px;
  margin-top: 24px;
}
.mypage-result__button-cv .m-button__secondary-l {
  min-height: 56px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.mypage-result__button-cv {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .mypage-result__button-cv {
    margin-top: 56px;
  }
}

main .wrapper > .article .mypage-result__text + .m-list-button__bottom,
main .wrapper > .article .mypage-result__text + .m-list-annotation + .m-list-button__bottom {
  margin-top: 24px;
}

.mypage-list-button {
  max-width: 376px;
  margin: 40px auto 0;
}
.mypage-list-button .m-list-button-column {
  gap: 24px;
}
.mypage-list-button .m-list-button-column > li {
  width: 100%;
}
.mypage-list-button .m-list-button-column > li > * {
  width: inherit;
}
.mypage-list-button .m-list-button-column > li [class*=m-button] {
  word-break: break-all;
}

.mypage-table {
  width: 100%;
}
.mypage-table-l table.m-table th, .mypage-table-l table.m-table td {
  padding: 24px 16px;
}
@media screen and (max-width: 768px) {
  .mypage-table-l table.m-table th, .mypage-table-l table.m-table td {
    padding: 8px 16px;
  }
}
.mypage-table-l table.m-table th.m-table__text-l, .mypage-table-l table.m-table td.m-table__text-l {
  text-align: right;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mypage-table-l table.m-table td {
    padding: 16px;
  }
}
.mypage-table table.m-table {
  display: flex;
  border: 0;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table {
    border: 1px solid #b4b4b7;
  }
}
.mypage-table table.m-table tbody {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table tbody {
    grid-template-columns: 1fr;
  }
}
.mypage-table table.m-table tr {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.mypage-table table.m-table tr th, .mypage-table table.m-table tr td {
  display: grid;
  align-items: center;
}
.mypage-table table.m-table tr:nth-of-type(4n) th, .mypage-table table.m-table tr:nth-of-type(4n) td {
  border-right: 1px solid #b4b4b7;
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table tr:nth-of-type(4n) th, .mypage-table table.m-table tr:nth-of-type(4n) td {
    border: 0;
  }
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table tr:nth-of-type(4n) th {
    border-bottom: 1px solid #b4b4b7;
  }
}
.mypage-table table.m-table tr:nth-of-type(n + 5) th, .mypage-table table.m-table tr:nth-of-type(n + 5) td {
  border-top: 0;
  border-bottom: 1px solid #b4b4b7;
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table tr:nth-of-type(n + 5) th, .mypage-table table.m-table tr:nth-of-type(n + 5) td {
    border: 0;
  }
}
.mypage-table table.m-table tr:nth-of-type(n + 5) th {
  border-bottom: 1px solid #b4b4b7;
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table tr:nth-of-type(n + 5) th {
    border-top: 1px solid #b4b4b7;
  }
}
.mypage-table table.m-table th {
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .mypage-table table.m-table th {
    border-bottom: 1px solid #b4b4b7;
  }
}
.mypage-table table.m-table th, .mypage-table table.m-table td {
  border-right: 0;
}

/*================================================================
技適特例
=================================================================*/
.giteki-list-button {
  margin-top: 64px;
}

.m-form-text.giteki-text-wide {
  line-height: 1.75;
}

.giteki-radio-station .m-form-text + .m-form-text {
  margin-top: 20px;
}
.giteki-radio-station .m-pagination__result-control {
  margin-top: 20px;
}
.giteki-radio-station .m-pagination__layout {
  margin-top: 20px;
}
.giteki-radio-station .m-form-hdg3:first-of-type {
  margin-top: 20px;
}
.giteki-radio-station .m-table__2nd {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .giteki-radio-station .m-table__2nd {
    width: auto;
  }
}

@media screen and (max-width: 990px) {
  .giteki-permit-number .m-form-block__cts {
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .giteki-permit-number .m-form-block__cts {
    align-items: flex-start;
  }
}
.giteki-permit-number .m-form-block__cts:only-of-type .m-form-info__button {
  top: calc(1.125rem + 14px);
}
@media screen and (max-width: 990px) {
  .giteki-permit-number .m-form-block__cts:only-of-type .m-form-info__button {
    top: auto;
  }
}
.giteki-permit-number .m-form-block__cts-layout {
  max-width: 836px;
}
.giteki-permit-number .m-form-block__cts-item {
  max-width: 268px;
}
.giteki-permit-number .m-accordion-info__add {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .giteki-permit-number .m-accordion-info__add {
    margin-top: 16px;
  }
}
.giteki-permit-number .m-form-block__cts-item label {
  display: inline-block;
}
.giteki-permit-number .m-form-block__unit {
  align-items: flex-start;
}
.giteki-permit-number .m-form-block__unit-inner {
  width: 100%;
}
.giteki-permit-number .m-form-input__text__l {
  transform: translateY(50%);
}

.giteki-notifier-information .m-form-text {
  margin-bottom: 20px;
}
.giteki-notifier-information .m-form-applicant-info__content {
  font-size: 1.125rem;
}

.giteki-userinfo-change__button {
  max-width: 376px;
  width: 100%;
}
.giteki-userinfo-change__button-layout {
  display: flex;
  justify-content: center;
}

.giteki-purpose .m-list-dot {
  margin-top: 20px;
}
.giteki-purpose .m-form-input__radio-l {
  margin-top: 20px;
}
.giteki-purpose > .m-form-content {
  margin-top: 32px;
}

.giteki-standard .giteki-box {
  margin-top: 20px;
}
.giteki-standard .giteki-box .m-form-text {
  margin-bottom: 0;
}
.giteki-standard .giteki-box .m-form-text__xl-bold {
  margin-bottom: 16px;
}
.giteki-standard .giteki-box .m-link-blank {
  margin: 0;
}
.giteki-standard .giteki-box .m-list-link {
  margin-top: 20px;
}
.giteki-standard .giteki-box .m-list-dot {
  margin-top: 20px;
}
.giteki-standard .giteki-box .m-list-dot:first-of-type {
  margin: 0;
}
.giteki-standard__container {
  margin-top: 20px;
}
.giteki-standard__lead {
  font-weight: bold;
  font-size: 1.125rem;
  margin: 20px 0 16px;
}
.giteki-standard .m-form-input__checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .giteki-standard .m-form-input__checkbox {
    grid-template-columns: 1fr;
  }
}
.giteki-standard .m-form-input__checkbox li {
  margin: 0;
}
.giteki-standard .m-form-error {
  margin-top: 20px;
}
.giteki-standard .giteki-box .m-list-dot__item {
  font-weight: normal;
}

.giteki-basis .m-list-link {
  margin-top: 20px;
}
.giteki-basis .m-form-input__checkbox {
  margin-top: 20px;
}

.giteki-radio-info .m-accordion-list__item {
  flex: 1;
}
.giteki-radio-info .m-accordion-info {
  width: 100%;
}
.giteki-radio-info .m-accordion-list {
  margin-top: 20px;
}
.giteki-radio-info .m-accordion-list .m-form-hdg3:first-child {
  margin-top: 0;
}
.giteki-radio-info .m-form-input__checkbox > li > label {
  text-indent: 0;
  padding-left: 0;
  display: flex;
}
.giteki-radio-info .m-accordion-list.is-checked {
  margin-top: 0;
  display: flex;
}
.giteki-radio-info .m-accordion-list__item:last-of-type {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .giteki-radio-info .m-accordion-list__item:last-of-type {
    flex-direction: column;
  }
}
.giteki-radio-info + .m-pagination__result-control-top {
  margin-top: 20px;
}

.giteki-input__checkbox {
  margin-top: 20px;
}
.giteki-input__checkbox .m-form-input__checkbox-icon, .giteki-input__checkbox.m-form-input__checkbox input[type=checkbox] {
  top: 24px;
}
@media screen and (max-width: 768px) {
  .giteki-input__checkbox .m-form-input__checkbox-icon, .giteki-input__checkbox.m-form-input__checkbox input[type=checkbox] {
    top: 17.5px;
  }
}
.giteki-input__checkbox .m-accordion-info {
  margin-left: 48px;
  width: 100%;
  width: calc(100% - 48px);
}
@media screen and (max-width: 768px) {
  .giteki-input__checkbox .m-accordion-info {
    margin-left: 32px;
    width: calc(100% - 32px);
  }
}
.giteki-input__checkbox > li {
  display: flex;
}
.giteki-input__checkbox > li .m-accordion-list {
  width: 100%;
}

.giteki-input-radio__layout {
  margin-top: 20px;
}

.giteki-input-text__text {
  margin-bottom: 20px;
  font-size: 1rem;
}

.giteki-location .m-list-annotation {
  margin-top: 20px;
}
.giteki-location .m-form-input__radio {
  margin-top: 20px;
}
.giteki-location .m-form-content[aria-hidden=false] {
  margin-top: 20px;
}
.giteki-location .m-link-modal {
  margin-bottom: 20px;
}
.giteki-location > .m-form-text {
  margin-bottom: 8px;
}

.giteki-date .m-form-calendar {
  margin-top: 16px;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .giteki-date .m-form-calendar {
    max-width: 100%;
  }
}

.giteki-howto .m-list-annotation {
  margin-top: 20px;
}
.giteki-howto .m-form-content[aria-hidden=false] {
  margin-top: 32px;
}
.giteki-howto .m-form-number__text {
  font-size: 1rem;
  margin-bottom: 20px;
}

.giteki-acts {
  margin-bottom: 16px;
}

.giteki-sorting .m-form-select {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .giteki-sorting .m-form-select {
    max-width: 100%;
  }
}

.giteki-example .m-form-text {
  margin-bottom: 20px;
}
.giteki-example .m-form-note {
  margin: 0;
}

.giteki-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.giteki-setting__editing {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .giteki-setting__editing {
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }
}
.giteki-setting__editing .m-list-link {
  display: flex;
  gap: 20px;
}
.giteki-setting__editing .m-list-link__item {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .giteki-setting__editing > div {
    margin-left: auto;
  }
}
.giteki-setting.is-end {
  justify-content: flex-end;
}

.giteki-modal-setting .m-form-input__checkbox {
  margin-top: 20px;
}
.giteki-modal-setting .m-form-content[aria-hidden=false] {
  margin: 20px 0 32px;
}
.giteki-modal-setting__container {
  padding-left: 48px;
}
@media screen and (max-width: 768px) {
  .giteki-modal-setting__container {
    padding-left: 32px;
  }
}
.giteki-modal-setting__text {
  font-size: 1rem;
  margin-bottom: 20px;
}

.giteki-modal-accordion__button {
  width: auto;
  height: 48px;
  font-size: 1rem;
  padding: 10px 16px;
}
@media screen and (max-width: 768px) {
  .giteki-modal-accordion__button {
    width: 100%;
    height: auto;
  }
}
.giteki-modal-accordion__button-layout {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .giteki-modal-accordion__button-layout {
    gap: 16px;
    flex-direction: column;
  }
}

.giteki-corporate-number .m-form-text {
  margin-bottom: 20px;
}

.giteki-box {
  margin-top: 20px;
}
.giteki-box__lead {
  font-size: 1.25rem;
  font-weight: bold;
  color: #003c79;
}
.giteki-box .m-list-dot {
  margin-top: 16px;
}
.giteki-box .m-list-dot__item {
  font-weight: bold;
  margin-top: 10px;
}
.giteki-box .m-link-blank {
  font-weight: normal;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .giteki-box {
    padding: 24px;
  }
}

.giteki-target .m-form-error {
  margin-top: 20px;
}
.giteki-target .m-form-error + .m-pagination__result-control-top {
  margin-top: 20px;
}
.giteki-target .giteki-setting__select {
  margin-top: 20px;
}
.giteki-target .giteki-setting__select .m-list-link {
  display: flex;
  gap: 20px;
}
.giteki-target .giteki-setting__select .m-list-link__item {
  margin: 0;
}

.giteki-table__container {
  margin-top: 20px;
}
.giteki-table__container .m-form-input__checkbox li {
  display: flex;
  margin-top: 32px;
}
.giteki-table__container .m-form-input__checkbox li:first-child {
  margin: 0;
}
.giteki-table__container .m-form-input__checkbox li label {
  text-indent: 0;
  padding-left: 0;
  display: flex;
  cursor: pointer;
}
.giteki-table__layout {
  width: 100%;
  height: 100%;
}
.giteki-table__layout .m-form-input__checkbox-icon,
.giteki-table__layout input[type=checkbox] {
  top: 12px;
}
@media screen and (max-width: 768px) {
  .giteki-table__layout .m-form-input__checkbox-icon,
  .giteki-table__layout input[type=checkbox] {
    top: 13px;
  }
}
.giteki-table__layout .m-form-hdg3 {
  margin: 0 0 0 48px;
  width: calc(100% - 48px);
}
@media screen and (max-width: 768px) {
  .giteki-table__layout .m-form-hdg3 {
    margin: 0 0 0 32px;
    width: calc(100% - 32px);
  }
}
.giteki-table__layout .m-table {
  margin: 20px 0 0 48px;
  width: calc(100% - 48px);
}
@media screen and (max-width: 768px) {
  .giteki-table__layout .m-table {
    margin-left: 32px;
    width: calc(100% - 32px);
  }
}

.giteki-change-howto .m-form-number__text {
  font-size: 1rem;
  margin-bottom: 20px;
}
.giteki-change-howto .m-form-text__l-bold {
  margin-bottom: 8px;
  margin-top: 32px;
}
.giteki-change-howto .m-form-text__l-bold:first-child {
  margin-top: 0;
}
.giteki-change-howto .m-form-name__layout {
  margin-top: 0;
}
.giteki-change-howto .m-list-button {
  max-width: 376px;
  width: 100%;
  margin: 40px auto 0;
  gap: 24px;
}
.giteki-change-howto .m-list-button > li {
  width: 100%;
}
.giteki-change-howto .m-list-button > li > * {
  width: inherit;
}

/*================================================================
ユーザ情報メンテナンス
=================================================================*/
/* 共通
--------------------------------------------------------*/
.account-buttonlist {
  width: 100%;
  max-width: 376px;
  align-items: center;
  display: grid;
  gap: 16px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .account-buttonlist {
    margin-top: 32px;
  }
}
.account-buttonlist > li {
  width: 100%;
  height: 100%;
}
.account-buttonlist > li > button {
  width: 100%;
  height: 100%;
}
.account-buttonlist.m-col2 {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  .account-buttonlist.m-col2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.account-buttonlist.m-col2 > li {
  width: 100%;
}
.account-buttonlist.m-col2 > li > button {
  word-break: normal;
}
@media screen and (max-width: 768px) {
  .m-hdg2 + .account-buttonlist {
    margin-top: 24px;
  }
}
.account-text + .account-buttonlist {
  margin-top: 24px;
}
.account-buttonlist + .m-table {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .account-buttonlist + .m-table {
    margin-top: 32px;
  }
}

/* 詳細
--------------------------------------------------------*/
.account-def {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.account-def-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-def-term {
  font-size: 1.125rem;
  font-weight: bold;
}
.account-def-data {
  font-size: 1.125rem;
  font-weight: normal;
}
.account__detail-buttonlist {
  width: 100%;
  align-items: center;
  display: grid;
  gap: 16px;
  margin: 40px auto 0;
}
.account__detail-buttonlist > li {
  width: 100%;
  max-width: 376px;
  height: 100%;
  margin: 0 auto;
}
.account__detail-buttonlist > li > button {
  width: 100%;
  height: 100%;
}
.m-table + .account__detail-buttonlist {
  margin-top: 36px;
}
.account__detail-buttonlist--top {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .account__detail-buttonlist--top {
    margin-top: 40px;
  }
}
.account__detail-buttonlist-col2 {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  .account__detail-buttonlist-col2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.account__detail-buttonlist-col2 > li {
  width: 100%;
}
.account__detail-buttonlist-col2 > li > button {
  word-break: normal;
}
.account-changeinfo__list-annotation + .account-form-name {
  margin-top: 20px;
}
.account-form-name__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}
@media screen and (max-width: 768px) {
  .account-form-name__layout {
    grid-template-columns: 1fr;
  }
}
.account-form-name__item .m-form-label {
  margin: 0;
}
.account-form-name__item .m-form-input__text {
  margin: 8px 0;
}
.account-form-name__item-text {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.account-form-name__label {
  margin: 0;
}
.account-form-name__note {
  margin: 0;
}
.account-form-postcode {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.account-form-postcode__button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .account-form-postcode__button {
    order: 1;
  }
}
.account-form-postcode__note {
  margin: 0;
  width: 100%;
}
.account-form-delegate {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.account-form-delegate__corporate-name {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.account-form-delegate__corporate-name-input {
  max-width: 268px;
}
.account-form-delegate__corporate-name-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .account-form-delegate__corporate-name-button {
    order: 1;
  }
}
.account-form-delegate__corporate-name-note {
  margin: 0;
  width: 100%;
}
.account-form-group {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.account-form-group__group-name {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.account-form-group__group-name-input {
  max-width: 268px;
}
.account-form-group__group-name-button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .account-form-group__group-name-button {
    order: 1;
  }
}
.account-form-group__group-name-note {
  margin: 0;
  width: 100%;
}

.m-hdg2 + .account-def {
  margin-top: 0;
}

.account-onetime-pw {
  text-align: center;
}

/* ユーザID変更
--------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .account-userid.m-form-container {
    padding-bottom: 40px;
  }
}
.account-userid .m-form-mail__subt {
  font-size: 1rem;
}

/* メール送付完了（番号入力）
--------------------------------------------------------*/
/* 共通:認証コード入力 */
.m-form-auth-code__item + .m-form-auth-code__item {
  margin-top: 20px;
}

/* 身元確認方法変更
--------------------------------------------------------*/
.account-identification__service .m-form-input__checkbox li {
  display: flex;
  align-items: center;
}
.account-identification__service .m-form-input__checkbox-label {
  margin-right: 4px;
}
.account-identification__required .m-form-input__radio-l .m-form-content {
  margin-top: 0;
}
.account-identification__mailing .m-link-modal {
  margin-bottom: 24px;
}
.account-identification__mailing .m-form-text {
  margin-bottom: 8px;
}
.account-identification__uploads .m-form-text {
  margin-bottom: 8px;
}

/* ワンタイムパスワードの入力
--------------------------------------------------------*/
.account-onetime__lead-link {
  margin-top: 20px;
}

/* データ引き継ぎ
--------------------------------------------------------*/
.account-data__login {
  margin-top: 20px;
}

/* メール配信設定
--------------------------------------------------------*/
.account-mailconfig__list {
  margin-top: 20px;
}

/* アカウント情報変更
--------------------------------------------------------*/
.account-info__service-list {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .account-info__service-list {
    margin-top: 12px;
  }
}
.account-info__service-list > li {
  font-weight: bold;
}
.account-info__service-list > li .m-tooltip__toggle-wrapper {
  margin-left: 10px;
}
.account-info__service-list > li .m-tooltip__toggle {
  width: 24px;
  height: 24px;
}

/* ユーザ情報変更
--------------------------------------------------------*/
.account-changeinfo__list-annotation {
  margin-top: 20px;
}

/* アカウント削除
--------------------------------------------------------*/
.account-delete__lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .account-delete__lead {
    margin-bottom: 24px;
  }
}

/* データ引継ぎ内容の確認
--------------------------------------------------------*/
.account-dataconfirm__list {
  margin-top: 20px;
}

/*================================================================
申請届出状況照会
=================================================================*/
@media screen and (max-width: 768px) {
  .m-accordion-info__sort .m-accordion-info__toggle-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .m-accordion-info__sort .m-form-input__checkbox.m-col2 {
    grid-template-columns: none;
  }
}

.progress-buttonlist {
  margin: 24px auto 0;
}
.progress-buttonlist.m-col1 {
  max-width: 376px;
}
.progress-buttonlist + .progress-buttonlist {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .progress-buttonlist + .progress-buttonlist {
    margin-top: 40px;
  }
}
p + .progress-buttonlist, .m-list-link + .progress-buttonlist {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  p + .progress-buttonlist, .m-list-link + .progress-buttonlist {
    margin-top: 32px;
  }
}
.m-table + .progress-buttonlist {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .progress__form-content .m-accordion-info__sort-row > span {
    width: 16px;
  }
}
.progress__form-content input[type=text].m-form-input__text {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .progress__form-content input[type=text].m-form-input__text {
    max-width: 100%;
    width: 100%;
  }
}

.progress-detail-text {
  margin-top: 20px;
}

.progress-detail-status {
  margin-top: 20px;
  text-align: right;
}

.progress-table-sort-status__icon {
  width: 16px !important;
  height: 16px;
  background: radial-gradient(#fff 65%, transparent 65%), #0078b0;
  border-radius: 50%;
  margin-left: 4px;
  flex-shrink: 0;
}

/*================================================================
追加別送
=================================================================*/
/* 添付書類選択
--------------------------------------------------------*/
.additional-electronic-number .m-form-electronic-number {
  margin: 20px auto 0;
}
.additional-electronic-number .m-form-electronic-number__txt {
  font-size: 1rem;
}
.additional-electronic-number .m-form-electronic-number-3col__inner:first-child .m-form-input__text, .additional-electronic-number .m-form-electronic-number-3col__inner:last-child .m-form-input__text {
  width: 130px;
}
.additional-electronic-number .m-form-electronic-number-cards__container {
  margin-top: 20px;
  flex-wrap: wrap;
}
.additional-electronic-number .m-form-electronic-number-cards__card {
  max-width: 48.5%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .additional-electronic-number .m-form-electronic-number-cards__card {
    max-width: 100%;
  }
}
.additional-electronic-number .m-form-electronic-number-cards__card:nth-last-child(n+2) {
  margin-bottom: 0;
}
.additional-electronic-number .m-form-electronic-number-cards__txt {
  font-size: 1rem;
}

/*================================================================
申請種別選択
=================================================================*/
.application-content .m-list-dot__item {
  margin: 0;
}

.application-box__lead {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.application-date .m-form-calendar {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .application-date .m-form-calendar {
    max-width: 100%;
  }
}

.application-lead {
  margin-top: 32px;
}

/*================================================================
取り下げ願
=================================================================*/
.withdraw-alert .m-box__blue {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .withdraw-alert .m-box__blue {
    padding: 24px;
  }
}
.withdraw-alert .m-list-dot {
  margin-top: 16px;
}
.withdraw-alert .m-list-dot + .m-list-dot {
  margin-top: 20px;
}
.withdraw-alert .m-list-annotation {
  margin-top: 20px;
}
.withdraw-alert + .m-form-container {
  margin-top: 24px;
}

/*================================================================
補正後提出
=================================================================*/
.correction-annotation {
  margin-top: 20px;
}

/*================================================================
一時保存している申請・届出
=================================================================*/
/* 詳細
--------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .draftpetition-table {
    margin-top: 24px;
  }
}
.draftpetition-table .m-form-input__checkbox > li > label {
  padding-left: 0;
  text-indent: 0;
  width: 32px;
}

/*================================================================
電子免許状等照会
=================================================================*/
.license-contents__list .license-text + .m-list-link {
  margin: 8px auto;
}
.license-contents__list .m-list-link + .license-text {
  margin-top: 8px;
}

.license-modal__content .m-modal__box {
  margin-top: 20px;
}
.license-modal__content .m-list-dot {
  margin-top: 20px;
}
.license-modal__content .m-modal__picture-img > img {
  max-width: 502px;
}

.license-contents__detail .m-box p + .m-list-dot {
  margin-top: 20px;
}
.license-contents__detail .m-list-button + .m-list-annotation {
  margin-top: 20px;
}
.license-contents__detail-show {
  text-align: center;
  margin-top: 16px;
}

.license-text {
  font-size: 1rem;
  line-height: 1.75;
}
.license-text .m-link-blank {
  display: inline;
}

.license-anchor {
  margin-top: 8px;
}

.license-description {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.license-description__title {
  font-weight: bold;
  font-size: 14px;
}
.license-description__content {
  margin-top: 4px;
  font-size: 14px;
}
.license-description__content + .license-description__title {
  margin-top: 14px;
}
.license-description__content + .license-description__content {
  margin-top: 14px;
}
.license-description + .license-template__number {
  margin-top: 32px;
}

.license-template__number + .license-template__table table.m-table {
  margin-top: 8px;
}

.license-download {
  margin-top: 40px;
}
.license-download .m-list-button {
  margin: 24px auto 0;
  max-width: 376px;
  width: 100%;
}
.license-download .m-list-button > li {
  width: inherit;
}
.license-download .m-button__secondary-m {
  width: 100%;
}

.license-template {
  max-width: 910px;
  margin: 20px auto 0;
}
.license-template.is-overflow {
  padding-bottom: 16px;
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  .license-template.is-overflow {
    overflow-x: hidden;
  }
}
.license-template.is-overflow::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #e8e8eb;
  border-radius: 10000px;
}
.license-template.is-overflow::-webkit-scrollbar-thumb {
  background: #0d44a0;
  border-radius: 10000px;
}
.license-template.is-overflow .m-table-sort {
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .license-template.is-overflow .m-table-sort {
    width: 100%;
  }
}
.license-template.is-overflow {
  overflow-x: scroll;
}
@media screen and (min-width: 1280px) {
  .license-template.is-overflow {
    overflow-x: visible;
    overflow-y: auto;
  }
}
.license-template + .m-pagination__result-control {
  margin-top: 20px;
}
.license-template__inner {
  width: 910px;
  height: 1284px;
  padding: 32px;
  border: 2px solid #0d44a0;
  margin: 0 auto;
  background-color: #fff;
}
.license-template__number {
  text-align: right;
  font-size: 14px;
}
.license-template__title {
  text-align: center;
  font-size: 24px;
}
.license-template__title-sub {
  font-size: 14px;
  display: block;
  margin-top: 4px;
}
.license-template__table table.m-table {
  margin-top: 16px;
}
.license-template__table table.m-table th {
  background-color: unset;
}
.license-template__table table.m-table th, .license-template__table table.m-table td {
  padding: 2px 8px;
  font-size: 14px;
  line-height: 1.26;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .license-template__table table.m-table th, .license-template__table table.m-table td {
    display: table-cell;
    border: 1px solid #b4b4b7;
  }
}
.license-template__table table.m-table .m-table__head {
  padding: 0 8px;
}
.license-template__table table.m-table .m-table__head:first-child {
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}
.license-template__table table.m-table .m-table__head-inner {
  display: flex;
  flex-direction: column;
}
.license-template__table table.m-table .m-table__head-sub {
  font-weight: normal;
  font-size: 14px;
  display: flex;
  gap: 16px;
}
.license-template__comment {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.26;
}
.license-template__date {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 14px;
}
.license-template__official-seal-type-text {
  font-size: 14px;
}
.license-template-disposal .license-template__date {
  margin-top: 42px;
}
.license-template-disposal .license-template__inner {
  padding: 32px 80px;
}
.license-template-other table.m-table td {
  padding: 8px;
}
.license-template-other .license-template__date {
  margin-top: 48px;
}
.license-template-other .license-template__inner {
  padding: 32px 80px;
}

.license-list-button__cv {
  margin-top: 24px;
  max-width: 376px;
}
.license-list__result-text {
  margin-top: 40px;
}

/*================================================================
お知らせ一覧
=================================================================*/
.news__sort {
  margin-top: 0;
}
.news__sort-hdg {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.news__sort fieldset {
  margin: 8px 0 0;
}
.news__sort fieldset:not(:last-of-type) {
  margin-bottom: 20px;
}
.news__sort .m-notice__cnt {
  padding: 16px;
}
.news__sort .m-info__sort-hdg {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.news__sort-select {
  width: auto;
}
.news__sort-select .m-form-select {
  width: auto;
  min-width: 148px;
}
.news__control-top .m-pagination__result-control-top {
  margin-bottom: 20px;
}
.news__body p {
  line-height: 1.75;
  margin: 24px auto 32px;
}
@media screen and (max-width: 768px) {
  .news__body p {
    margin-bottom: 24px;
  }
}
.news__body .m-list-dot {
  margin-bottom: 8px;
}
.news-table table.m-table {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .news-table table.m-table {
    margin-top: 24px;
  }
}
.news-table table.m-table th, .news-table table.m-tabletd {
  line-height: 1.75;
}
.news-title {
  display: flex;
  gap: 8px 16px;
}
.news__list {
  margin-top: 32px;
  border-top: 1px solid #b4b4b7;
}
.news__list .m-notice__item {
  display: block;
}
.news__list .m-notice__text {
  padding: 0 16px 16px;
}
.news__list .m-notice {
  border: 0;
}
.news__list .m-notice__item {
  display: block;
}
.news__list .m-notice__item::after {
  display: none;
}
.news__list .m-notice__cnt {
  padding: 16px;
}
.news__list .m-notice__text {
  padding: 0 16px 16px;
}
@media screen and (max-width: 768px) {
  .news__list {
    margin-top: 24px;
  }
}
.news-buttonlist {
  width: 100%;
  max-width: 376px;
  align-items: center;
  display: grid;
  gap: 16px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .news-buttonlist {
    margin-top: 32px;
  }
}

/*================================================================
無線局情報
=================================================================*/
/* 無線局情報入力支援機能
--------------------------------------------------------*/
.input-spt-button {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .input-spt-button {
    grid-template-columns: minmax(0, 1fr);
  }
}

/*  無線局情報検索
--------------------------------------------------------*/
.input-spt-button-cv {
  max-width: 376px;
}
@media screen and (max-width: 768px) {
  .input-spt-button-cv {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .input-spt-table .m-form-input__checkbox {
    max-height: 24px;
  }
}
.input-spt-table .m-form-input__checkbox > li > label {
  padding-left: 0;
  text-indent: 0;
  width: 32px;
}
@media screen and (max-width: 768px) {
  .input-spt-table .m-form-input__checkbox > li > label {
    width: 24px;
    min-height: 24px;
  }
}
.input-spt-table .m-table-sort-select.m-table-sort .m-table-sort__row {
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .input-spt-table .m-table-sort-select.m-table-sort .m-table-sort__row {
    padding-bottom: 24px;
  }
}

/*  無線局情報検索結果照会
--------------------------------------------------------*/
.input-spt__form-content .m-accordion-info__sort-calendar {
  flex-wrap: wrap;
}
.input-spt__form-content .m-accordion-info__sort-calendar .m-form-note--example {
  width: 100%;
}
.input-spt__form-content .m-form-address-details__label .m-accordion-info__sort-label,
.input-spt__form-content .m-form-address-details__item .m-accordion-info__sort-label,
.input-spt__form-content fieldset .m-accordion-info__sort-label {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .input-spt__form-content fieldset .m-accordion-info__sort-label + .m-accordion-info__sort-col2 {
    margin-top: 8px;
  }
}
.input-spt-button-cv-result {
  max-width: 376px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .input-spt-button-cv-result {
    margin-top: 32px;
  }
}
.input-spt-button-select > li button {
  font-weight: normal;
  margin: auto;
  width: auto;
}

/*================================================================
申請説明
=================================================================*/
.flow-procedure__cts .m-link-anchor__list {
  margin-top: 8px;
}
.flow-procedure__cts .m-box .m-box__title {
  margin-bottom: 24px;
}
.flow-procedure__cts .m-box .m-list-dot {
  margin-top: 20px;
}
.flow-procedure__cts .m-form-text + .m-accordion-box {
  margin-top: 24px;
}

.flow-table {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .flow-table {
    margin-bottom: 32px;
  }
}
.flow-table table.m-table .m-list-dot:first-child {
  margin: 0;
}

.flow-table-en {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .flow-table-en {
    margin-bottom: 32px;
  }
}
.flow-table-en table.m-table {
  margin: 0;
}
.flow-table-en table.m-table th {
  min-width: 240px;
}
.flow-table-en table.m-table td {
  word-break: break-word;
}
.flow-table-en table.m-table .m-list-dot:first-child {
  margin: 0;
}

.flow-under-cts .m-link-blank {
  margin-top: 8px;
}

.flow-buttonlist {
  width: 100%;
  max-width: 376px;
  align-items: center;
  display: grid;
  gap: 16px;
  margin: 24px auto 0;
}

/*================================================================
ユーザ情報メンテナンス 委任
=================================================================*/
/* 委任管理
--------------------------------------------------------*/
.account-users__button-cv {
  max-width: 376px;
  margin-top: 24px;
}

/*================================================================
アカウント発行
=================================================================*/
/* 移行説明
--------------------------------------------------------*/
.signup-block__other {
  margin-top: 32px;
}

/* 利用規約
--------------------------------------------------------*/
.terms {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: max-content;
  height: -webkit-max-content;
  height: max-content;
  max-height: 100%;
  margin: 0;
  box-sizing: border-box;
}
.terms .m-form-container {
  padding-top: 20px;
}
.terms-scroll {
  border: 1px solid #b4b4b7;
  border-radius: 8px;
  margin-top: 24px;
  padding: 20px 8px;
}
@media screen and (max-width: 990px) {
  .terms-scroll {
    padding-bottom: 16px;
  }
}
.terms-scroll__inner {
  height: 534px;
  padding: 4px 16px;
  overflow-y: auto;
}
.terms-scroll__inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #e8e8eb;
  border-radius: 10000px;
}
.terms-scroll__inner::-webkit-scrollbar-track {
  background: #e8e8eb;
  border-radius: 100px;
}
.terms-scroll__inner::-webkit-scrollbar-thumb {
  background: #0d44a0;
  border-radius: 10000px;
}
@media screen and (max-width: 990px) {
  .terms-scroll__inner {
    height: 270px;
    padding-inline: 12px;
  }
}
.terms__cnt {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .terms__cnt {
    height: 300px;
    padding-inline: 8px;
  }
}
.terms-agreement {
  margin: 45px auto 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .terms-agreement {
    margin-top: 40px;
  }
}
.terms-agreement .m-form-input__checkbox li {
  text-align: center;
}
.terms-agreement__txt {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .terms-agreement__txt {
    margin-top: 20px;
  }
}

/*================================================================
初めてご利用の方へ
=================================================================*/
.beginner-speech-bubble {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 0 43px;
}
@media screen and (max-width: 768px) {
  .beginner-speech-bubble {
    align-items: flex-end;
    gap: 0 13px;
  }
}
.beginner-speech-bubble__txt {
  background: #fff;
  border: 1px solid #b4b4b7;
  border-radius: 20px;
  font-size: 1.125rem;
  line-height: 1.75;
  padding: 24px 40px;
  position: relative;
  max-width: 814px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .beginner-speech-bubble__txt {
    padding-inline: 16px;
  }
}
.beginner-speech-bubble__txt:before, .beginner-speech-bubble__txt:after {
  content: "";
  border-width: 0 30px 12px 0;
  position: absolute;
  border-style: solid;
  display: block;
  right: 0;
  width: 0;
  transform: skewY(-20deg);
}
@media screen and (max-width: 768px) {
  .beginner-speech-bubble__txt:before, .beginner-speech-bubble__txt:after {
    border-width: 10px 15px 0 0;
    transform: none;
  }
}
.beginner-speech-bubble__txt:before {
  border-color: #b4b4b7 transparent;
  bottom: 31px;
  right: -30px;
}
@media screen and (max-width: 768px) {
  .beginner-speech-bubble__txt:before {
    right: -15px;
  }
}
.beginner-speech-bubble__txt:after {
  border-color: #fff transparent;
  bottom: 30px;
  right: -25px;
}
@media screen and (max-width: 768px) {
  .beginner-speech-bubble__txt:after {
    right: -11px;
  }
}
.beginner-speech-bubble__img {
  position: relative;
  min-height: 200px;
  min-width: 148px;
}
@media screen and (max-width: 768px) {
  .beginner-speech-bubble__img {
    min-height: 130px;
    min-width: 95px;
  }
}
.beginner-speech-bubble__img:before {
  content: "";
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  display: block;
  align-self: stretch;
  background: url(/assets/img/img_denpa-riyoko.svg) bottom center/contain no-repeat;
}

.beginner-accordion-hdg > .m-hdg3:first-child {
  margin-top: 0;
}
.beginner-accordion-hdg .m-list-card {
  margin: 32px 0 20px;
}
@media screen and (max-width: 768px) {
  .beginner-accordion-hdg .m-list-card {
    margin-top: 20px;
  }
}
.beginner-accordion-hdg .m-accordion-hdg__cts-inner {
  padding-top: 40px;
  padding-bottom: 36px;
}
.beginner-accordion-hdg .m-accordion-hdg__cts-inner .m-link-blank {
  display: inline;
}
.beginner-accordion-hdg .m-accordion-hdg__toggle {
  row-gap: 8px;
}
@media screen and (max-width: 768px) {
  .beginner-accordion-hdg .m-accordion-hdg__toggle-txt {
    padding-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .beginner-accordion-hdg .m-accordion-box__toggle-txt, .beginner-accordion-hdg .m-accordion-box__cts-inner {
    padding-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .beginner-accordion-hdg .m-accordion-box__toggle-hdg + .m-accordion-box__toggle-txt, .beginner-accordion-hdg .m-accordion-box__cts-hdg + .m-accordion-box__cts-inner {
    padding-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .beginner-accordion-hdg .flow-step__inner {
    min-width: 162px;
  }
}

.beginner-cv-txt {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .beginner-cv-txt {
    margin-top: 40px;
  }
}
.beginner-cv-txt + .m-list-button__cv {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .beginner-cv-txt + .m-list-button__cv {
    margin-top: 32px;
  }
}

main .wrapper > .article .beginner-accordion-hdg .m-list-button__bottom {
  margin-top: 40px;
}

/*================================================================
検索結果
=================================================================*/
.search-wrap .gsc-search-button {
  width: auto;
}
.search-wrap .gsc-search-button-v2 {
  border: 0;
  background: #0d44a0;
  color: #fff;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 0 3px 3px 0;
  height: 56px !important;
  cursor: pointer;
  width: 128px;
  justify-content: center;
  display: flex;
  gap: 8px;
}
.search-wrap .gsc-search-button-v2:hover {
  background: #003c79;
}
.search-wrap .gsc-search-button-v2 svg {
  display: none;
}
.search-wrap .gsc-search-button-v2::before {
  content: "";
  -webkit-mask-image: url("/assets/img/icon_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.search-wrap .gsc-search-button-v2::after {
  content: "検索";
  display: block;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .search-wrap .gsc-search-button-v2::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .search-wrap .gsc-search-button-v2 {
    width: 56px;
  }
}
.search-wrap .gsc-clear-button {
  display: none;
}
.search-wrap form.gsc-search-box {
  color: #333;
  margin-bottom: 0;
}
.search-wrap form.gsc-search-box table.gsc-search-box {
  margin-bottom: 0;
  position: relative;
}
.search-wrap form.gsc-search-box .gsc-input {
  font-size: 1.125rem;
  padding-right: 0;
  flex: 1;
}
.search-wrap form.gsc-search-box .gsc-input-box {
  border-radius: 4px;
  border: none;
  padding: 0;
}
.search-wrap form.gsc-search-box .gsib_a {
  padding: 0;
}
.search-wrap form.gsc-search-box .gsib_a input {
  margin: 0 !important;
  height: 56px !important;
  border-radius: 4px 0 0 4px;
  padding: 12px 16px !important;
  background-position-x: 20px !important;
}
.search-wrap form.gsc-search-box .gsib_a input:focus {
  background: none !important;
}
.search-wrap table.gsc-search-box {
  border-style: none;
  border-width: 0;
  border-spacing: 0 0;
  width: 100%;
  margin-bottom: 2px;
}
.search-wrap table.gsc-search-box > tbody > tr {
  display: flex;
  border: 1px solid #1a1a1c !important;
  border-radius: 4px;
}
.search-wrap .gsib_b {
  display: none;
}
.search-wrap .gsc-result-info {
  color: #1a1a1c;
  padding: 0 4px 20px 4px;
  margin-top: 12px;
  font-size: 1rem;
}
.search-wrap .gs-title {
  color: #0d44a0 !important;
  line-height: 1.75;
  font-size: 1rem !important;
  text-decoration: underline !important;
}
.search-wrap .gs-title:hover {
  color: #003c79 !important;
}
.search-wrap .gs-title:hover * {
  color: #003c79 !important;
}
.search-wrap .gs-title * {
  font-size: 1rem !important;
  color: #0d44a0 !important;
}
.search-wrap .gsc-above-wrapper-area {
  border-bottom: 1px solid #b4b4b7;
  padding: 0;
  margin-top: 20px;
}
.search-wrap .gs-visibleUrl-breadcrumb {
  color: #626264 !important;
  font-size: 0.875rem;
}
.search-wrap .gs-fileFormat,
.search-wrap .gs-fileFormatType {
  color: #626264;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.75rem;
}
.search-wrap .gs-snippet {
  color: #1a1a1c !important;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.search-wrap .gsc-webResult.gsc-result {
  padding: 16px;
  border-bottom: 1px solid #b4b4b7;
}
@media screen and (max-width: 768px) {
  .search-wrap .gsc-webResult.gsc-result {
    padding: 16px 8px;
  }
}
.search-wrap .gsc-control-cse {
  padding: 0;
}
.search-wrap .gsc-results {
  width: 100%;
}
.search-wrap .gsc-results .gsc-cursor-box {
  margin: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .search-wrap .gsc-results .gsc-cursor-box {
    margin: 20px auto;
    max-width: 456px;
  }
}
.search-wrap .gsc-results .gsc-cursor-box .gsc-cursor-page {
  color: #0d44a0 !important;
  text-decoration: underline;
  font-size: 1rem;
}
.search-wrap .gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
  color: #003c79 !important;
}
.search-wrap .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: #fff !important;
  text-decoration: none;
}
.search-wrap .gsc-results .gsc-cursor-box .gsc-cursor-current-page:hover {
  color: #fff !important;
  text-decoration: none;
}
.search-wrap .gsc-cursor-current-page {
  position: relative;
  z-index: 1;
}
.search-wrap .gsc-cursor-current-page:hover::before {
  background: #003c79;
}
.search-wrap .gsc-cursor-current-page::before {
  content: "";
  position: absolute;
  background: #0d44a0;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}
html.fontsize-l .search-wrap .gsc-cursor-current-page::before {
  width: 40px;
  height: 40px;
}
html.fontsize-ll .search-wrap .gsc-cursor-current-page::before {
  width: 48px;
  height: 48px;
}
.search-wrap .gsc-cursor {
  display: flex !important;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .search-wrap .gsc-cursor {
    justify-content: space-between;
    gap: unset;
    margin-left: 12px;
  }
}
.search-wrap .gsc-cursor-page {
  margin: 0 !important;
}
.search-wrap .gcsc-find-more-on-google {
  color: #0d44a0;
}
.search-wrap .gcsc-find-more-on-google:hover {
  color: #003c79;
}
.search-wrap .gcsc-find-more-on-google-text,
.search-wrap .gcsc-find-more-on-google-query {
  font-size: 1rem;
  line-height: 1.75;
}
.search-wrap .gcsc-find-more-on-google-magnifier {
  display: none;
}
.search-wrap .gcsc-more-maybe-branding-root {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .search-wrap .gcsc-more-maybe-branding-root {
    flex-direction: column;
    gap: 16px;
  }
}
.search-wrap .gcsc-find-more-on-google {
  margin: 0;
  padding: 0;
}
.search-wrap .gcsc-find-more-on-google::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  -webkit-mask-image: url("/assets/img/icon_search.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/assets/img/icon_search.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1c;
  width: 16px;
  height: 16px;
}
.search-wrap .gsc-control-cse {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.search-wrap .gsc-search-button {
  margin: 0;
}
.search-wrap .gsc-tabHeader {
  display: none !important;
}

.search-button.m-list-button__bottom {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .search-button.m-list-button__bottom {
    margin-top: 56px;
  }
}

.search__sort .m-info__sort-hdg {
  margin: 0 0 8px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .search__sort .m-form-input__radio-flex {
    gap: 16px;
  }
}

/*================================================================
ご利用ガイド
=================================================================*/
.guide-lead-button {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .guide-lead-button {
    margin-top: 32px;
  }
}

/*================================================================
申請の流れトップ
=================================================================*/
@media screen and (min-width: 769px) {
  .breadcrumb + .flow-hdg1.m-hdg1 {
    margin-top: 56px;
  }
}
.flow-step__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 20px auto 0;
  flex-wrap: wrap;
  gap: 8px 0;
  text-align: center;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-step__list {
    overflow: hidden;
    gap: 8px 0;
    max-width: 350px;
  }
}
.flow-step li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 0;
}
@media screen and (max-width: 768px) {
  .flow-step li {
    gap: 0;
    width: 33.3333%;
  }
}
@media screen and (max-width: 768px) {
  .flow-step li:last-child {
    width: calc(33.3333% - 24px);
  }
}
.flow-step li:not(:last-child):after {
  content: "";
  background-color: #003c79;
  height: 24px;
  width: 16px;
  display: block;
  -webkit-mask-image: url(/assets/img/icon_arrow_pullright.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(/assets/img/icon_arrow_pullright.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  padding-inline: 6px;
}
@media screen and (max-width: 768px) {
  .flow-step li:not(:last-child):after {
    height: 16px;
    width: 12px;
  }
}
.flow-step li .m-icon__arrow-pullright:before {
  background-color: #003c79;
  height: 15px;
  width: 24px;
  display: block;
}
.flow-step__inner {
  background: #eff7fb;
  color: #003c79;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px;
  min-width: 170px;
  min-height: 132px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .flow-step__inner {
    justify-content: center;
    padding: 8px;
    min-width: auto;
    width: 100px;
    min-height: auto;
    height: 100%;
  }
}
.flow-step__number {
  font-size: 1.25rem;
  font-weight: bold;
}
.flow-step__text {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flow-step__text {
    font-size: 0.875rem;
  }
}
.flow-list li:nth-child(6) .m-list-annotation {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .flow-list .m-hdg3 {
    font-size: 2rem;
    margin-top: 64px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .flow-list .m-hdg3 {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-inline: 0;
  }
}
.flow-list__inner {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .flow-list__inner {
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }
}
.flow-list [class*=m-icon__] {
  background: #e8e8eb;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
}
.flow-list [class*=m-icon__]:before {
  background-color: #003c79;
  height: 80px;
  width: 80px;
  position: static;
}
@media screen and (max-width: 768px) {
  .flow-list [class*=m-icon__]:before {
    height: 56px;
    width: 56px;
  }
}
@media screen and (max-width: 768px) {
  .flow-list [class*=m-icon__] {
    margin: 0 auto;
    height: 100px;
    width: 100px;
  }
}
.flow-list__text .m-list-link {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .flow-list__text .m-list-link__item {
    margin-top: 16px;
  }
}
.flow-list__text .m-list-button-column {
  margin: 20px 0;
  max-width: 376px;
}
.flow-list__text .m-list-button-column li {
  width: 100%;
}
.flow-list__text .m-list-button-column [class*=m-button__] {
  width: 100%;
}
.flow-list__text .m-hdg4:first-child {
  margin-top: 0;
}
.flow-list .m-box {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .flow-list .m-box {
    margin-top: 40px;
  }
}
.flow-list .m-box__title {
  margin: 0;
}
.flow-list-button__cv {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .flow-list-button__cv {
    margin-top: 32px;
  }
}
.flow-list-button__bottom {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .flow-list-button__bottom {
    margin-top: 56px;
    max-width: 100%;
  }
}

/*================================================================
サイトマップ
=================================================================*/
.sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 32px;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .sitemap {
    flex-direction: column;
    gap: 32px 0px;
    margin-top: 40px;
  }
}
.sitemap__block {
  width: calc(33.3333333333% - 21.3333333333px);
}
.sitemap__block:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .sitemap__block {
    width: 100%;
  }
}
.sitemap__hdg {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1c;
  margin: 0 auto 16px;
  line-height: 1.5;
}

/*================================================================
よくあるご質問
=================================================================*/
/* トップ
--------------------------------------------------------*/
.faq-search {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 64px;
}
.faq-search > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: start;
  gap: 20px;
  width: 100%;
}
.faq-search > li > a {
  display: flex;
  flex-grow: 1;
  align-items: center;
  height: 100%;
  border-top: 1px solid #b4b4b7;
  border-bottom: 1px solid #b4b4b7;
  color: #1a1a1c;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 16px 36px 16px 16px;
  min-height: 92px;
  border-top: 1px solid #b4b4b7;
  position: relative;
  transition: background-color 0.2s;
}
.faq-search > li > a:hover {
  text-decoration: none;
  background-color: #f1f1f4;
}
.faq-search > li > a:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/img/icon_arrow_right.svg) center center no-repeat;
  background-size: contain;
}
.faq-search > li .m-list-dot {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .faq-search {
    display: block;
  }
  .faq-search > li + li {
    margin-top: 32px;
  }
  .faq-search > li > a {
    min-height: auto;
    padding: 16px 40px 16px 0;
  }
  .faq-search > li > a:hover {
    background-color: #fff;
  }
  .faq-search > li > a:before {
    right: 0;
  }
}

/* 一覧
--------------------------------------------------------*/
.faq-category .m-list-blocklink {
  margin-top: 0;
}
.faq-category .m-list-blocklink > li > a {
  font-size: 1.125rem;
  display: flex;
  align-items: start;
  gap: 32px;
  padding: 0 56px 0 14px;
}
.faq-category .m-list-blocklink > li > a > span {
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
}
.faq-category .m-list-blocklink > li > a > span:first-child {
  font-size: 1.5rem;
  height: 100%;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .faq-category .m-list-blocklink > li > a {
    padding: 16px 32px 16px 14px;
    gap: 20px;
  }
}
.faq-category .m-more__cts .m-list-blocklink > li:first-child {
  border-top: none;
}
.faq-category .m-more__cts .m-list-blocklink > li:first-child > a {
  border-top: none;
}
.faq-category__list {
  margin-top: 80px;
}
.faq-category__list .m-list-blocklink {
  margin-top: 20px;
}
.faq-category__list .m-list-blocklink.m-col2 {
  gap: 0 64px;
}
.faq-category__list .m-list-blocklink.m-col2 > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  align-items: center;
}
.faq-category__list .m-list-blocklink.m-col2 > li:nth-child(2) {
  border-top: 1px solid #b4b4b7;
}
.faq-category__list .m-list-blocklink.m-col2 > li > a {
  min-height: 92px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq-category__list {
    margin-top: 56px;
  }
  .faq-category__list h2 {
    font-size: 1.375rem;
  }
  .faq-category__list .m-list-blocklink {
    display: block;
  }
  .faq-category__list .m-list-blocklink.m-col2 > li:nth-child(2) {
    border-top: none;
  }
  .faq-category__list .m-list-blocklink.m-col2 > li > a {
    min-height: auto;
    display: block;
  }
  .faq-category__list .m-list-blocklink[class*=m-col] > li {
    margin-top: 0 !important;
  }
}

/* 詳細
--------------------------------------------------------*/
.faq-title {
  font-size: 2.625rem;
  font-weight: bold;
  letter-spacing: 1.68px;
  color: #003c79;
  display: flex;
  gap: 24px;
  margin: 64px 0 24px;
}
@media screen and (max-width: 768px) {
  .faq-title {
    font-size: 1.625rem;
    gap: 16px;
  }
}

.faq-subt {
  font-weight: bold;
  line-height: 175%;
  letter-spacing: 0.64px;
  margin: 24px auto 8px;
}

.faq-detail {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .faq-detail {
    gap: 16px;
  }
}
.faq-detail__initial {
  font-size: 2.625rem;
  font-weight: bold;
  letter-spacing: 1.68px;
  color: #003c79;
  display: inline-block;
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  .faq-detail__initial {
    font-size: 1.625rem;
  }
}
.faq-detail__answer {
  padding-top: 16px;
}
.faq-detail__answer > *:first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .faq-detail__answer {
    padding-top: 8px;
  }
}
.faq-detail__answer .m-list-dot {
  margin-top: 24px;
}
.faq-detail__answer .m-image {
  margin-top: 8px;
}
.faq-detail__answer .m-image + .m-image, .faq-detail__answer .m-image + .m-list-media {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .faq-detail__answer .m-image + .m-image, .faq-detail__answer .m-image + .m-list-media {
    margin-top: 16px;
  }
}
.faq-detail__answer .m-list-media {
  margin-top: 8px;
}
.faq-detail__answer .m-list-media + .m-image, .faq-detail__answer .m-list-media + .m-list-media {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .faq-detail__answer .m-list-media + .m-image, .faq-detail__answer .m-list-media + .m-list-media {
    margin-top: 16px;
  }
}
.faq-detail__answer .m-list-media .m-image {
  margin-top: 0;
}
.faq-detail__answer .m-table {
  margin-top: 8px;
  height: auto;
}

/* NOREN 
--------------------------------------------------------*/
.m-text-icon .m-icon__giteki-mark {
  vertical-align: middle;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 4px;
  top: -2px;
}

.m-text-icon .m-icon__giteki-mark::before {
  width: 16px;
  height: 16px;
  background-size: 16px;
}

.header-nav__control-container {
@media screen and (max-width: 768px) {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
}

.header-nav__control-container:hover {
  color: inherit;
  text-decoration: none;
}

.m-box__title .m-link-blank,.m-box__title .m-link {
  font-size: inherit;
}

.m-image-scroll .m-image-ex,
.m-image-scroll .m-image {
  margin-top: 0;
}

.m-list-annotation-num__item .m-link-blank {
  font-size: inherit;
}

.m-notice.is-close {
    display: none;
}

.m-text-bold + .m-table__wrapper.is-overflow > .m-table.is-vertical.is-scroll {
  margin-top: 8px;
}

.m-text-bold + .m-list-annotation + .m-table__wrapper.is-overflow > .m-table.is-vertical.is-scroll {
  margin-top: 8px;
}

.news__sort fieldset:not(:last-of-type) {
 margin-bottom: 20px;
}

.news__list .m-notice__cnt {
 padding: 16px;
}

.news__list .m-notice__item {
    display: block;
}

.news__list .m-notice__text {
    padding: 0 16px 16px;
}

.m-important .m-notice__block {
    border: 2px solid #1a1a1c;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    position: relative;
}

.m-important .m-notice__block.is-important {
    border-color: #ec0000;
}

.m-important .m-notice__block.is-maintenance {
    border-color: #003c79;
}

.m-important .m-notice__block.is-other {
    border-color: #949497;
}

.is-inline.is-wordbreak {
    word-break: break-all;
}

.flow-step__list.is-english .flow-step__text {
    word-break: break-all;
}
.flow-step__list.is-english.is-col6 > li {
    max-width: 200px;
}
.flow-step__list.is-english.is-col6-first > li {
    max-width: 195px;
}