@charset "UTF-8";
/*---------------------------------------------

Style CSS

for jibun-apps.jp
coded by d-spica at 2022-01-12

---------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
/*---------------------------------------------

Set CSS

for jibun-apps.jp
coded by d-spica at 2022-01-12
imported to "style.scss"

---------------------------------------------*/
/* Reset */
body, header, hgroup, main, section, article, aside, nav, footer, main, figure, figcaption, picture, div,
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, hr,
blockquote, pre, table, caption, th, td, address,
form, fieldset, legend, object {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, pre, table, code, kbd, samp, acronym, time, input, textarea, select {
  font-size: 100%;
}

a, ins, u {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, b {
  font-weight: inherit;
}

address, em, i, b, cite, dfn, var {
  font-style: normal;
}

fieldset {
  border: none;
}

input, textarea {
  font-family: inherit;
  font-weight: normal;
}

input, button {
  margin: 0;
  vertical-align: middle;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture, video {
  vertical-align: bottom;
}

mark {
  background: none;
}

a, input, button, textarea {
  outline: none;
}

[type=text], [type=email], [type=tel], [type=submit], [type=button], select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  font-size: max(16px, 100%);
}

/* Setting */
ul {
  list-style-position: outside;
  list-style-type: none;
}

ol {
  list-style-position: outside;
}

table {
  border-collapse: collapse;
}

/* Set Var */
:root {
  --sans-font: "Hiragino Kaku Gothic ProN", "メイリオ", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  --point-font: "Zen Maru Gothic", sans-serif;
  --font-color: #333;
  --page-color: #1E88E5;
  --form-color: #FB8C00;
  --record-color: #FF5252;
  --enterprise-color: #9AC24C;
  --series-color: #FDC800;
  --link-color: #1DC1EA;
  --speed-fast: 0.3s;
  --speed-nomal: 0.6s;
  --speed-slow: 0.8s;
  --v-margin: min(3rem, calc(3.2vw + 20px));
  --h-margin: max(7vw, calc(50vw - 540px));
}

/*---------------------------------------------

Base CSS

for jibun-apps.jp
coded by d-spica at 2022-01-12
imported to "style.scss"

---------------------------------------------*/
html {
  background-color: #FFF;
  line-height: 1.4;
  font-family: var(--sans-font);
  font-size: min(20px, 1vw + 12.8px);
  font-weight: 400;
  color: var(--font-color);
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
}

#page {
  position: relative;
}

hr {
  visibility: hidden;
  height: 0;
  clear: both;
}

a {
  color: inherit;
  transition: var(--speed-fast);
}

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

.obp-S,
.obp-M,
.obp-L {
  display: none;
}

header.g_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  box-sizing: border-box;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.4);
  background-color: #FFF;
  padding: 0 max(7vw, 50vw - 30rem);
  width: 100%;
  height: 4rem;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-weight: 700;
}
header.g_header h1 {
  width: 14rem;
  line-height: 1;
}
header.g_header h1 a {
  display: block;
}
header.g_header .nav-main > dt {
  position: relative;
  margin-right: -0.8rem;
  padding: 0.8rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
header.g_header .nav-main > dt i {
  display: block;
  position: absolute;
  top: 40%;
  left: 0.8rem;
  border-radius: 1.5px;
  background-color: var(--series-color);
  width: 2rem;
  height: 3px;
  transition: var(--speed-fast);
}
header.g_header .nav-main > dt i:nth-of-type(1) {
  transform: translateY(-0.5rem);
}
header.g_header .nav-main > dt i:nth-of-type(2) {
  transform: translateY(0.5rem);
}
header.g_header .nav-main > dt span {
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-size: 0.7rem;
  color: #000;
  transition: var(--speed-fast);
}
header.g_header .nav-main > dt span.close {
  opacity: 0;
}
header.g_header .nav-main > dd {
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #FFF;
  width: 100%;
  height: 0;
  transition: height var(--speed-fast);
}
header.g_header .nav-main dl.child {
  font-size: 0.85rem;
}
header.g_header .nav-main dl.child dt {
  position: relative;
  border-top: solid 1px #CDD;
  padding: 1.5em var(--h-margin);
  transition: color var(--speed-fast);
  cursor: pointer;
}
header.g_header .nav-main dl.child dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: var(--h-margin);
  border-right: solid 2px;
  border-bottom: solid 2px;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--speed-fast);
}
header.g_header .nav-main dl.child dd {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--speed-fast);
}
header.g_header .nav-main dl.child ul {
  border-top: solid 1px #CDD;
}
header.g_header .nav-main dl.child li a {
  display: flex;
  gap: 0 1em;
  align-items: center;
  padding: 0 var(--h-margin);
  height: 4.4em;
}
header.g_header .nav-main dl.child li a i {
  display: block;
  width: 2em;
}
header.g_header .nav-main dl.child li a span {
  display: block;
  font-family: var(--sans-font);
  font-size: 0.6rem;
  font-weight: 400;
}
header.g_header .nav-main dl.child li a em {
  display: block;
  font-family: var(--point-font);
  font-size: 0.85rem;
  font-weight: 700;
}
header.g_header .nav-main dl.child li a:hover {
  background-color: #EEE;
}
header.g_header .nav-main dl.child.is-opened dt {
  color: var(--series-color);
}
header.g_header .nav-main dl.child.is-opened dt::after {
  transform: translateY(-30%) rotate(-135deg);
}
header.g_header .nav-main dl.child.is-opened dd {
  max-height: 12.2rem;
}
header.g_header .nav-main ul.child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  border-top: solid 1px #CDD;
  padding: 1.5rem var(--h-margin);
  text-align: center;
  font-size: 0.7rem;
}
header.g_header .nav-main ul.child .login {
  width: calc(50% - 0.6rem);
  max-width: 18rem;
}
header.g_header .nav-main ul.child .login a {
  display: block;
  border-radius: 9999rem;
  background-color: var(--series-color);
  padding: 0.6em 1.2em;
}
header.g_header .nav-main ul.child .login a:hover {
  opacity: 0.7;
}
header.g_header .nav-main ul.child .update {
  width: calc(50% - 0.6rem);
  max-width: 18rem;
}
header.g_header .nav-main ul.child .update a {
  display: block;
  padding: 0.6em 1.2em;
}
header.g_header .nav-main ul.child .contact, header.g_header .nav-main ul.child .seminar {
  width: calc(50% - 0.6rem);
  max-width: 18rem;
}
header.g_header .nav-main ul.child .contact a, header.g_header .nav-main ul.child .seminar a {
  display: block;
  border: solid 1px #B1BABF;
  border-radius: 0.4rem;
  padding: 1.2em;
}
header.g_header .nav-main ul.child .contact a:hover, header.g_header .nav-main ul.child .seminar a:hover {
  background-color: #EEE;
}
header.g_header .nav-main.is-opened > dt i:nth-of-type(1) {
  transform: translateY(0) rotate(30deg);
}
header.g_header .nav-main.is-opened > dt i:nth-of-type(2) {
  transform: scaleX(0);
}
header.g_header .nav-main.is-opened > dt i:nth-of-type(3) {
  transform: translateY(0) rotate(-30deg);
}
header.g_header .nav-main.is-opened > dt span.menu {
  opacity: 0;
}
header.g_header .nav-main.is-opened > dt span.close {
  opacity: 1;
}
header.g_header .nav-main.is-opened > dd {
  transform: translateX(0);
  height: calc(100dvh - 4rem);
}

header.header {
  container-type: scroll-state;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 8;
  margin-bottom: -1rem;
  background-color: #CCC;
  padding: 0.75rem max(4vw, 50vw - 30rem);
  height: 4rem;
  transition: background-color var(--speed-fast);
}
header.header.is-arrived {
  background-color: transparent !important;
}
header.header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  box-sizing: border-box;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  background-color: #FFF;
  padding: 1rem;
  height: 4rem;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-weight: 700;
}
@container scroll-state(stuck: top) {
  header.header div {
    background-color: #EEE;
  }
}
header.header h1 {
  width: 10.5rem;
  line-height: 1;
}
header.header h1 a {
  display: block;
}
header.header .nav-main dt {
  position: relative;
  margin-right: -0.8rem;
  padding: 0.8rem;
  width: 2rem;
  height: 1.6rem;
  cursor: pointer;
}
header.header .nav-main dt i {
  display: block;
  position: absolute;
  top: 35%;
  left: calc(50% - 0.35rem);
  border-right: solid 2px;
  border-bottom: solid 2px;
  width: 0.6rem;
  height: 0.6rem;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--speed-fast);
}
header.header .nav-main dt span {
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-size: 0.7rem;
  color: #000;
  transition: var(--speed-fast);
}
header.header .nav-main dt span.close {
  opacity: 0;
}
header.header .nav-main dd {
  position: absolute;
  top: 4rem;
  left: 0;
  overflow: hidden;
  border-radius: 0 0 0.5rem 0.5rem;
  width: 100%;
  max-height: 0;
  background-color: #FFF;
  font-size: 0.85rem;
  transition: max-height var(--speed-fast);
}
header.header .nav-main li {
  border-top: solid 1px #CDD;
}
header.header .nav-main li a {
  display: block;
  background-color: var(--bg-color);
  padding: 1.2em var(--h-margin);
}
header.header .nav-main li.button {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}
header.header .nav-main li.button a {
  display: inline-block;
  margin: 0.5em;
  box-sizing: border-box;
  border: solid 1px #BBB;
  border-radius: 0.5em;
  background-color: #FFF;
  padding: 1em 1.5em;
  width: 20em;
}
header.header .nav-main li.button a:hover {
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.1rem);
}
header.header .nav-main li.button a[href*=trials] {
  border-color: #31B4A1;
  background-color: #31B4A1;
  color: #FFF !important;
}
header.header .nav-main.is-opened dt i {
  transform: rotate(-135deg);
}
header.header .nav-main.is-opened dt span.menu {
  opacity: 0;
}
header.header .nav-main.is-opened dt span.close {
  opacity: 1;
}
header.header .nav-main.is-opened dd {
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0.5rem 0.5rem;
  max-height: 20rem;
}
header.header div:has(.is-opened) {
  border-radius: 0.5rem 0.5rem 0 0;
}

.site-series header.g_header {
  position: fixed;
  top: 0;
  left: 0;
}

.site-page header.header {
  background-color: var(--page-color);
}
.site-page header.header .nav-main dt i {
  color: var(--page-color);
}

.site-form header.header {
  background-color: var(--form-color);
}
.site-form header.header .nav-main dt i {
  color: var(--form-color);
}

.site-record header.header {
  background-color: var(--record-color);
}
.site-record header.header .nav-main dt i {
  color: var(--record-color);
}

section.headline {
  margin-bottom: -4rem;
  background-color: #fde6e6;
  padding: 6rem 1rem 2rem;
  text-align: center;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 700;
  color: #f00;
}
section.headline a {
  text-decoration: underline;
  color: inherit;
}

article.main {
  position: relative;
  font-size: 0.75rem;
}
article.main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--series-color);
  width: 100%;
  height: 20rem;
}

.site-series article.main {
  padding-top: 4rem;
}

.site-series.page-top2 article.main::before {
  display: none;
}

.site-page article.main::before {
  background-color: var(--page-color);
}

.site-form article.main::before {
  background-color: var(--form-color);
}

.site-record article.main::before {
  background-color: var(--record-color);
}

footer.footer {
  background-color: #F4F6FA;
  padding: var(--v-margin) var(--h-margin);
}
footer.footer .nav-site {
  display: flex;
  justify-content: center;
  gap: 0 min(2vw, 2em);
  margin-bottom: var(--v-margin);
  font-size: min(0.75rem, 3.4vw);
}
footer.footer .nav-site li {
  flex: 1;
}
footer.footer .nav-site li a {
  display: block;
  text-align: center;
  white-space: nowrap;
  font-family: var(--point-font);
  font-weight: 700;
}
footer.footer .nav-site li a i {
  display: block;
  margin: 0 auto 0.5em;
  width: 2rem;
  transition: var(--speed-fast);
}
footer.footer .nav-site li a:hover i {
  transform: scale(1.2);
}
footer.footer p.partner {
  display: flex;
  justify-content: center;
  gap: 0 min(2vw, 2em);
  margin: calc(-0.6 * var(--v-margin)) 0 calc(0.75 * var(--v-margin));
}
footer.footer p.partner span {
  display: block;
  width: min(7.5rem, 25% - 0.25rem);
  text-align: center;
}
footer.footer p.partner span img {
  width: 3rem;
}
footer.footer dl.partner {
  border-top: solid 1px #CDD;
  padding: calc(0.5 * var(--v-margin)) 0;
  text-align: center;
  font-size: 0.75rem;
}
footer.footer dl.partner dt {
  display: none;
}
footer.footer dl.partner dd {
  display: flex;
  justify-content: center;
  gap: 0 0.3rem;
}
footer.footer dl.partner dd span {
  display: block;
  background-color: #FFF;
  flex: 1;
  max-width: 14em;
}
footer.footer .nav-sub {
  margin: 0 -1em;
  border-top: solid 1px #CDD;
  padding: 2em 0;
  text-align: center;
  font-size: 0.6rem;
}
footer.footer .nav-sub li {
  display: inline-block;
  margin-bottom: 0.6em;
  color: #76858E;
}
footer.footer .nav-sub li:nth-of-type(n+2)::before {
  content: " | ";
}
footer.footer .nav-sub li a {
  display: inline-block;
  padding: 0 0.1em;
}
footer.footer .nav-sub a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--font-color);
}
footer.footer .copyright {
  text-align: center;
  font-size: 0.6rem;
  color: #76858E;
}

div.layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
div.layer section {
  margin: 5rem auto;
  background-color: #FFF;
  max-width: 80%;
  width: 36rem;
}
div.layer section p {
  padding: 2rem 3rem;
  line-height: 2;
  font-size: 0.75rem;
}

@media all and (min-width: 480px) {
  .obp-S {
    display: inline-block;
  }
  .ubp-S {
    display: none;
  }
  footer.footer .nav-site li {
    flex: 0 1 10em;
  }
  footer.footer .nav-sub {
    margin: 0;
  }
  footer.footer .nav-sub li a {
    padding: 0 0.3em;
  }
}
@media all and (min-width: 720px) {
  .obp-M {
    display: inline-block;
  }
  .ubp-M {
    display: none;
  }
}
@media all and (min-width: 960px) {
  .obp-L {
    display: inline-block;
  }
  .ubp-L {
    display: none;
  }
  footer.footer .nav-sub {
    padding-bottom: 0;
    text-align: left;
  }
  footer.footer .nav-sub li {
    margin-bottom: 0;
  }
  footer.footer .copyright {
    margin-top: -1.4em;
    text-align: right;
  }
}
@media all and (min-width: 1280px) {
  header.g_header {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem 2rem;
  }
  header.g_header .nav-main {
    flex: 1;
  }
  header.g_header .nav-main > dt {
    display: none;
  }
  header.g_header .nav-main > dd {
    display: flex;
    align-items: center;
    gap: 0.5rem 1rem;
    position: static;
    overflow: visible;
    background-color: transparent;
    height: auto;
    transform: translateX(0);
  }
  header.g_header .nav-main dl.child {
    position: relative;
    font-size: 0.7rem;
  }
  header.g_header .nav-main dl.child dt {
    border: none;
    padding: 1em 2em 1em 0.5em;
    white-space: nowrap;
  }
  header.g_header .nav-main dl.child dt::after {
    right: 0.5em;
  }
  header.g_header .nav-main dl.child dd {
    position: absolute;
    top: 4.55em;
    left: 0;
    z-index: -1;
    box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.4);
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: #FFF;
    width: 20rem;
  }
  header.g_header .nav-main dl.child ul {
    border: none;
  }
  header.g_header .nav-main dl.child li a {
    padding: 0 1rem;
  }
  header.g_header .nav-main dl.child li a em {
    font-size: 0.7rem;
  }
  header.g_header .nav-main dl.child:nth-of-type(2) dd {
    width: 11rem;
  }
  header.g_header .nav-main ul.child {
    flex: 1;
    align-items: center;
    gap: 0.3rem;
    border: none;
    padding: 0;
  }
  header.g_header .nav-main ul.child .login {
    order: 3;
    width: auto;
    font-size: 0.6rem;
  }
  header.g_header .nav-main ul.child .update {
    order: 4;
    width: auto;
    font-size: 0.6rem;
  }
  header.g_header .nav-main ul.child .seminar {
    order: 1;
    width: auto;
  }
  header.g_header .nav-main ul.child .seminar a {
    padding: 0.5em 1.5em;
  }
  header.g_header .nav-main ul.child .contact {
    order: 2;
    margin-right: auto;
    width: auto;
  }
  header.g_header .nav-main ul.child .contact a {
    padding: 0.5em 1.5em;
  }
  header.header .nav-main dt {
    display: none;
  }
  header.header .nav-main dd {
    position: static;
    box-shadow: none;
    background-color: transparent;
    height: auto;
    font-size: 0.7rem;
    max-height: none;
  }
  header.header .nav-main dd ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 0.5em;
  }
  header.header .nav-main dd .assist {
    position: absolute;
    top: 0.6em;
    right: 0;
    margin-top: 0;
    font-size: 0.6rem;
  }
  header.header .nav-main dd .assist li {
    margin-right: 0;
  }
  header.header .nav-main dd .assist li a {
    padding: 0.2em;
  }
  header.header .nav-main dd .assist li a::after {
    height: 1px;
  }
  header.header .nav-main dd li {
    border-top: none;
    padding: 0 0.2em;
  }
  header.header .nav-main dd li a {
    position: relative;
    padding: 0.3em;
  }
  header.header .nav-main dd li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--series-color);
    width: 100%;
    height: 2px;
    transform-origin: 100% 100%;
    transform: scaleX(0);
    transition: transform var(--speed-fast);
  }
  header.header .nav-main dd li a:hover, header.header .nav-main dd li a.current {
    color: var(--series-color);
  }
  header.header .nav-main dd li a:hover::after, header.header .nav-main dd li a.current::after {
    transform-origin: 0 100%;
    transform: scaleX(1);
  }
  header.header .nav-main dd li.button a {
    padding: 0.4em;
    width: 12em;
    font-size: 0.65rem;
  }
  header.header .nav-main dd li.button a::after {
    display: none;
  }
  header.header .nav-main dd li.button a[href*=contact]:hover, header.header .nav-main dd li.button a.current {
    color: inherit !important;
  }
  .site-series header.header .nav-main dd li:not(.button) {
    display: none;
  }
  .site-page header.header .nav-main dd li a:hover, .site-page header.header .nav-main dd li a.current {
    color: var(--page-color);
  }
  .site-page header.header .nav-main dd li a::after {
    background-color: var(--page-color);
  }
  .site-form header.header .nav-main dd li a:hover, .site-form header.header .nav-main dd li a.current {
    color: var(--form-color);
  }
  .site-form header.header .nav-main dd li a::after {
    background-color: var(--form-color);
  }
  .site-record header.header .nav-main dd li a:hover, .site-record header.header .nav-main dd li a.current {
    color: var(--record-color);
  }
  .site-record header.header .nav-main dd li a::after {
    background-color: var(--record-color);
  }
}
/*---------------------------------------------

Parts CSS

for jibun-apps.jp
coded by d-spica at 2022-01-12
imported to "style.scss"

---------------------------------------------*/
[class*=button-L] {
  display: inline-block;
  box-sizing: border-box;
  border: solid 1px #B1BABF;
  border-radius: 0.8em;
  background-color: #FFF;
  width: 25em;
  padding: 1.5em 0.5em;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--speed-fast);
}
[class*=button-L]:hover {
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.3);
  transform: translateY(-0.1rem);
}
[class*=button-L].button-LC {
  border: solid 4px var(--series-color);
  padding: calc(1.5em - 3px) calc(0.5em - 3px);
  color: var(--series-color);
}
[class*=button-L].button-LCF {
  border-color: var(--series-color);
  background-color: var(--series-color);
  color: #FFF;
}
[class*=button-L].button-LG {
  border-color: #31B4A1;
  background-color: #31B4A1;
  color: #FFF;
}

.site-page .button-LC {
  border-color: var(--page-color);
  color: var(--page-color);
}
.site-page .button-LCF {
  border-color: var(--page-color);
  background-color: var(--page-color);
}

.site-form .button-LC {
  border-color: var(--form-color);
  color: var(--form-color);
}
.site-form .button-LCF {
  border-color: var(--form-color);
  background-color: var(--form-color);
}

.site-record .button-LC {
  border-color: var(--record-color);
  color: var(--record-color);
}
.site-record .button-LCF {
  border-color: var(--record-color);
  background-color: var(--record-color);
}

[class*=button-M] {
  display: inline-block;
  box-sizing: border-box;
  border: solid 1px #B1BABF;
  border-radius: 9999rem;
  background-color: #FFF;
  width: 21em;
  padding: 0.8em 0.5em;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--speed-fast);
}
[class*=button-M]:hover {
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.1rem);
}
[class*=button-M].button-MC {
  border: solid 2px #999;
}

.site-page .button-MC {
  border-color: var(--page-color);
  color: var(--page-color);
}

.site-form .button-MC {
  border-color: var(--form-color);
  color: var(--form-color);
}

.site-record .button-MC {
  border-color: var(--record-color);
  color: var(--record-color);
}

[class*=button-S] {
  display: inline-block;
  box-sizing: border-box;
  border: solid 1px #B1BABF;
  border-radius: 9999rem;
  background-color: #FFF;
  width: 14em;
  padding: 0.8em 0.5em;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 0.7rem;
  font-weight: 700;
  transition: var(--speed-fast);
}
[class*=button-S]:hover {
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.1rem);
}

.button-SS {
  border: solid 2px var(--series-color);
  color: var(--series-color);
}

.button-SP {
  border: solid 2px var(--page-color);
  color: var(--page-color);
}

.button-SF {
  border: solid 2px var(--form-color);
  color: var(--form-color);
}

.button-SR {
  border: solid 2px var(--record-color);
  color: var(--record-color);
}

u[class*=tag] {
  display: inline-block;
  border: solid 1px #707070;
  border-radius: 0.2rem;
  background-color: #FFF;
  padding: 0.2em 0.5em;
  min-width: 9em;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  font-weight: 700;
}
u[class*=tag].tag-page {
  border-color: var(--page-color);
  background-color: var(--page-color);
  color: #FFF;
}
u[class*=tag].tag-form {
  border-color: var(--form-color);
  background-color: var(--form-color);
  color: #FFF;
}
u[class*=tag].tag-record {
  border-color: var(--record-color);
  background-color: var(--record-color);
  color: #FFF;
}

.wp-pagenavi {
  margin-top: var(--v-margin);
  text-align: center;
  font-size: 0.65rem;
}
.wp-pagenavi .previouspostslink {
  display: inline-block;
  position: relative;
  width: 1.5em;
  text-indent: -9999rem;
}
.wp-pagenavi .previouspostslink::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.4em);
  left: calc(50% - 0.2em);
  border-top: solid 1px;
  border-left: solid 1px;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(-45deg);
}
.wp-pagenavi .nextpostslink {
  display: inline-block;
  position: relative;
  width: 1.5em;
  text-indent: -9999rem;
}
.wp-pagenavi .nextpostslink::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.4em);
  right: calc(50% - 0.2em);
  border-top: solid 1px;
  border-right: solid 1px;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(45deg);
}
.wp-pagenavi .page {
  display: inline-block;
  margin: 0 0.4em;
  box-sizing: border-box;
  border: solid 1px #CECECE;
  border-radius: 9999rem;
  width: 2.5em;
  text-align: center;
  line-height: 2.4em;
  color: var(--series-color);
}
.wp-pagenavi .current {
  display: inline-block;
  margin: 0 0.4em;
  box-sizing: border-box;
  border: solid 1px #999;
  border-radius: 9999rem;
  background-color: var(--series-color);
  width: 2.5em;
  text-align: center;
  line-height: 2.4em;
  color: #FFF;
}

p.trial {
  text-align: center;
}
p.trial .button-LG {
  margin-top: 1rem;
  width: 26.5rem;
}
p.trial em {
  display: block;
  margin: 3.2em auto 1.2em;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
  font-size: 0.9rem;
  font-family: var(--point-font);
  font-weight: 700;
}
p.trial em::before {
  content: "●";
  color: #31B4A1;
}
p.trial span {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--point-font);
  color: #76858E;
}

.site-page .wp-pagenavi .page {
  color: var(--page-color);
}
.site-page .wp-pagenavi .current {
  border-color: var(--page-color);
  background-color: var(--page-color);
}

.site-form .wp-pagenavi .page {
  color: var(--form-color);
}
.site-form .wp-pagenavi .current {
  border-color: var(--form-color);
  background-color: var(--form-color);
}

.site-record .wp-pagenavi .page {
  color: var(--record-color);
}
.site-record .wp-pagenavi .current {
  border-color: var(--record-color);
  background-color: var(--record-color);
}

[type=text], [type=email], [type=tel], textarea, select {
  box-sizing: border-box;
  padding: 0.3em;
  line-height: 1.4;
}

button {
  padding: 0;
}

::-moz-placeholder {
  color: #BBB;
}

::placeholder {
  color: #BBB;
}

/*---------------------------------------------

Top Page Sections CSS

for jibun-apps.jp
coded by d-spica at 2022-01-15
imported to "style.scss"

---------------------------------------------*/
.main > section {
  padding: var(--v-margin) var(--h-margin);
}

header.title-series {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -6.6rem;
  position: relative;
  height: 19rem;
  line-height: 1.8;
  text-align: center;
  font-family: var(--point-font);
  font-weight: 700;
}
header.title-series h2 {
  margin-top: 0.8em;
  font-size: 2rem;
  color: #FFF;
}
header.title-series p {
  margin-bottom: 1.5em;
  font-size: 0.9rem;
}
header.title-series::before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  left: calc(50% - 5.25rem);
  z-index: -1;
  background: url("../img/lg-series-bg.svg") no-repeat 50% 0/100% auto;
  mix-blend-mode: multiply;
  width: 10.5rem;
  height: 11.5rem;
}
header.title-series::after {
  content: "";
  display: block;
  position: relative;
  z-index: -1;
  margin-bottom: -1rem;
  border-radius: 1.8rem 1.8rem 0 0;
  background-color: #FFF;
  width: calc(100% - 2 * max(2vw, 50vw - 600px));
  height: 7.6rem;
}

header.title-series-2 {
  position: relative;
  margin-bottom: -6.6rem;
  font-family: var(--point-font);
  font-weight: 700;
}
header.title-series-2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: max(2vw, 50vw - 600px);
  margin-bottom: -1rem;
  border-radius: 1.8rem 1.8rem 0 0;
  background-color: #FFF;
  width: calc(100% - 2 * max(2vw, 50vw - 600px));
  height: 7.6rem;
}
header.title-series-2 picture {
  display: block;
}

header.summary {
  position: relative;
  padding: 5rem var(--h-margin) var(--v-margin);
}
header.summary::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  left: max(4vw, 50vw - 600px);
  z-index: -1;
  border-radius: 1.8rem 1.8rem 0 0;
  background-color: #FFF;
  width: calc(100% - 2 * max(4vw, 50vw - 600px));
  height: calc(100% - 5rem);
}
header.summary h2 {
  margin-bottom: 2rem;
  text-align: center;
  white-space: nowrap;
  font-family: var(--point-font);
  font-size: min(3.5rem, 6.25vw + 10px);
  font-weight: 700;
}
header.summary picture {
  display: block;
  margin: 0 auto;
  max-width: 20rem;
}
header.summary .badge {
  margin: 1rem auto 0;
  max-width: 20rem;
}

section.about {
  position: relative;
  z-index: 1;
  padding-left: max(7vw, 50vw - 420px);
  padding-right: max(7vw, 50vw - 420px);
}
section.about h3 {
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.8;
  font-family: var(--point-font);
  font-size: 1.6rem;
  font-weight: 700;
}
section.about h3 img {
  display: block;
  margin: 0 auto;
  width: 16rem;
}
section.about p {
  margin-bottom: 2.5em;
  line-height: 2;
  text-align: justify;
  font-size: 0.95rem;
}
section.about ul {
  display: flex;
  gap: 0 2.5rem;
  margin: 0 auto 5rem;
  max-width: 18rem;
}
section.about li {
  width: calc(50% - 1.25rem);
}
section.about li i {
  display: block;
}
section.about li span {
  display: block;
  margin-top: 1em;
}

.site-record header.summary h2 {
  font-size: min(3.5rem, 6.0185185vw - 1.2592593px);
}

section.lineup {
  position: relative;
  z-index: 1;
  padding-top: 2.6rem;
}
section.lineup h3 {
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.5rem;
}
section.lineup div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
section.lineup div > a {
  display: block;
  width: min(25em, 100%);
}
section.lineup div dl {
  box-sizing: border-box;
  border: solid 4px #999;
  border-radius: 1.2rem;
  padding: 2rem;
  height: 100%;
}
section.lineup div dl.page {
  border-color: var(--page-color);
}
section.lineup div dl.page dt {
  width: 62%;
}
section.lineup div dl.form {
  border-color: var(--form-color);
}
section.lineup div dl.form dt {
  width: 65%;
}
section.lineup div dl.record {
  border-color: var(--record-color);
}
section.lineup div dl.record dt {
  width: 69%;
}
section.lineup div dl.enterprise {
  border-color: var(--enterprise-color);
}
section.lineup div dt {
  margin: 0 auto 2em;
}
section.lineup div dd {
  text-align: justify;
  line-height: 1.8;
}
section.lineup div .button {
  margin-top: 2em;
  text-align: center;
}
section.lineup div p i {
  font-size: 0.6rem;
}
section.lineup .summary {
  margin: var(--v-margin) 0 2em;
  text-align: center;
  line-height: 2;
  font-family: var(--point-font);
  font-weight: 700;
}
section.lineup .button {
  text-align: center;
}
section.lineup .button .button-LG {
  font-size: 0.75rem;
}

section.endorsement {
  background-color: #FFF176;
  padding-left: max(7vw, 50vw - 480px);
  padding-right: max(7vw, 50vw - 480px);
}
section.endorsement h3 {
  position: relative;
  z-index: 1;
  margin: 0 auto -2.4rem;
  background: url("../img/rb-hd-S.png") no-repeat 50% 50%/100% 100%;
  padding: 0.5em 2.5rem 1.8em;
  width: 12rem;
  text-align: center;
  line-height: 1.2;
  font-size: 1rem;
  font-family: var(--point-font);
  font-weight: 700;
  color: #FFF;
}
section.endorsement div.box {
  border-radius: 0.8rem;
  background-color: #FFF;
  padding: 4rem min(3rem, 7vw) 0.5rem;
  font-size: 0.8rem;
}
section.endorsement p {
  margin-bottom: 1.8em;
  line-height: 1.8;
  text-align: justify;
}
section.endorsement .foot {
  text-align: right;
}
section.endorsement .foot a {
  color: var(--link-color);
}
section.endorsement .foot a::before {
  content: "";
  display: inline-block;
  margin-right: 0.3em;
  border-left: solid 0.5em;
  border-top: solid 0.3em transparent;
  border-bottom: solid 0.3em transparent;
  width: 0;
  height: 0;
  vertical-align: 0.1em;
}

section.notice {
  position: relative;
  margin: 0 auto;
  padding-left: max(7vw, 50vw - 410px);
  padding-right: max(7vw, 50vw - 410px);
}
section.notice h3 {
  margin-bottom: 1rem;
  padding: 0 0.3rem;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.5rem;
}
section.notice .nav-index {
  position: absolute;
  top: calc(var(--v-margin) + 1.2em);
  right: max(7vw, 50vw - 410px);
  font-size: 0.65rem;
  font-weight: 700;
}
section.notice .nav-index a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.notice ul {
  border-top: solid 1px #D6D6D6;
}
section.notice li {
  border-bottom: solid 1px #D6D6D6;
}
section.notice li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1.5em;
  padding: 1.2em 0.3rem;
}
section.notice li a time {
  width: 6em;
}
section.notice li a span {
  width: 100%;
  transition: var(--speed-fast);
}
section.notice li a:hover span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--link-color);
}
section.notice .buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: var(--v-margin);
}

section.trial {
  padding-top: 0;
}
section.trial p.trial {
  padding-top: var(--v-margin);
  border-top: solid 1px #CECECE;
}

section.trial + section.feature {
  padding-top: calc(2 * var(--v-margin));
}

section.feature {
  position: relative;
}
section.feature::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: var(--h-margin);
  background-color: #CECECE;
  width: calc(100% - 2 * var(--h-margin));
  height: 1px;
}
section.feature h3 {
  margin-bottom: 0.5em;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.5rem;
  font-weight: 700;
}
section.feature h3 img {
  padding: 0 0.3em;
  width: 14rem;
}
section.feature h3 em {
  font-size: 1.9rem;
  color: var(--series-color);
}
section.feature section {
  position: relative;
  padding: 3rem 0 1.5rem;
}
section.feature section::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(-1 * var(--h-margin));
  z-index: -1;
  background-color: #F6F6F6;
  width: calc(100% + 2 * var(--h-margin));
  height: 24rem;
}
section.feature section dl {
  position: relative;
  box-sizing: border-box;
  border-radius: 1.2rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.3);
  background: #FFF url("../img/lg-series-bg-G.svg") no-repeat 100% 100%/10rem auto;
  margin: 0 auto;
  padding: 2rem 2.4rem 1.6rem;
  max-width: 30em;
}
section.feature section dt {
  margin-bottom: 0.8em;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
}
section.feature section dt b {
  position: absolute;
  top: -2.5rem;
  left: 2.4rem;
  line-height: 1;
  font-size: 4rem;
  color: var(--series-color);
}
section.feature section dt em {
  color: var(--series-color);
}
section.feature section dd {
  text-align: justify;
  line-height: 2;
}
section.feature section picture {
  display: block;
  margin: 1rem auto 0;
  max-width: 30em;
}
section.feature .button {
  margin-top: var(--v-margin);
  border-top: solid 1px #CECECE;
  padding-top: var(--v-margin);
  text-align: center;
}

.site-page section.feature h3 em {
  color: var(--page-color);
}
.site-page section.feature dt b, .site-page section.feature dt em {
  color: var(--page-color);
}
.site-page section.feature section::before {
  background-color: #E3F7FF;
}

.site-form section.feature h3 em {
  color: var(--form-color);
}
.site-form section.feature dt b, .site-form section.feature dt em {
  color: var(--form-color);
}
.site-form section.feature section::before {
  background-color: #FFF8E2;
}

.site-record section.feature h3 em {
  color: var(--record-color);
}
.site-record section.feature dt b, .site-record section.feature dt em {
  color: var(--record-color);
}
.site-record section.feature section::before {
  background-color: #FFDBDB;
}

section.record {
  position: relative;
}
section.record picture {
  display: block;
  margin: 0 calc(-1 * var(--h-margin));
}
section.record .nav-root {
  position: absolute;
  bottom: calc(var(--v-margin) + 7vw);
  left: calc(50% - 10em);
  width: 20em;
  font-family: var(--point-font);
  font-size: 0.8rem;
  font-weight: 700;
}
section.record .nav-root a {
  display: block;
  border: solid 0.2em var(--series-color);
  border-radius: 0.8em;
  background-color: #FFF;
  padding: 1em;
  text-align: center;
  letter-spacing: 0.1em;
}
section.record .nav-root a::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  background: url("../img/lg-series-mk.svg") no-repeat 50% 50%/contain;
  width: 2.4em;
  height: 2.4em;
  vertical-align: -0.9em;
}
section.record .nav-root a:hover {
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.1rem);
}

footer.content-foot {
  padding: var(--v-margin) var(--h-margin) 0;
  text-align: center;
}
footer.content-foot .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--v-margin);
}
footer.content-foot .trial {
  margin-bottom: var(--v-margin);
  border-bottom: solid 1px #CECECE;
  padding-bottom: var(--v-margin);
}
footer.content-foot .nav dt {
  margin: 0 auto;
  padding: var(--v-margin) 0;
  max-width: min(16rem, 80%);
}
footer.content-foot .nav dd {
  margin: 0 calc(-1 * var(--h-margin));
  background-color: var(--series-color);
  padding: 1.5em;
  font-family: var(--point-font);
  font-size: 0.7rem;
  color: #FFF;
}
footer.content-foot .nav dd ul {
  display: flex;
  flex-wrap: wrap;
}
footer.content-foot .nav dd li {
  width: 50%;
}
footer.content-foot .nav dd li a {
  display: block;
  padding: 0.8em 1.2em;
}
footer.content-foot .nav dd li a:hover {
  opacity: 0.6;
}

.site-page footer.content-foot .nav dd {
  background-color: var(--page-color);
}

.site-form footer.content-foot .nav dd {
  background-color: var(--form-color);
}

.site-record footer.content-foot .nav dd {
  background-color: var(--record-color);
}

/* */
@media all and (min-width: 480px) {
  section.about h3 img {
    display: inline-block;
    margin-right: 0.2em;
    vertical-align: -0.35em;
  }
}
@media all and (min-width: 640px) {
  section.notice .buttons {
    flex-direction: row;
  }
}
@media all and (min-width: 720px) {
  header.title-series-2 {
    margin-bottom: max(-5rem, 1rem - 10vw);
    background-color: var(--series-color);
    padding: 0 max(0rem, 50vw - 40rem);
  }
  header.title-series-2::after {
    height: min(6rem, 10vw);
  }
  section.endorsement h3 {
    margin-bottom: -1.8rem;
    background: url("../img/rb-hd-L.png") no-repeat 50% 50%/100% 100%;
    padding-bottom: 1.4em;
    width: calc(100% - 7rem);
    max-width: 29rem;
    font-size: 1.2rem;
  }
  section.record picture {
    position: relative;
    padding-top: 16rem;
  }
  section.record picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.record .nav-root {
    bottom: calc(var(--v-margin) + 0.8rem);
    font-size: 1rem;
  }
  footer.content-foot .button {
    flex-direction: row;
  }
  footer.content-foot .nav dd ul {
    flex-direction: row;
    justify-content: center;
    height: auto;
  }
  footer.content-foot .nav dd li {
    width: auto;
  }
}
@media all and (min-width: 960px) {
  header.title-series h2 {
    font-size: 3rem;
  }
  header.title-series p {
    font-size: 1.2rem;
  }
  header.summary h2 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
  }
  header.summary picture {
    display: block;
    margin: 0 auto;
    max-width: none;
  }
  header.summary .badge {
    position: absolute;
    bottom: var(--v-margin);
    right: var(--h-margin);
    width: 22.2%;
    max-width: 13.9srem;
  }
  section.about h3 {
    font-size: 2.5rem;
  }
  section.about h3 img {
    width: 23rem;
    vertical-align: -0.3em;
  }
  section.about p {
    float: left;
    width: 60%;
  }
  section.about ul {
    gap: 0 2rem;
    float: right;
    margin-bottom: 3rem;
    width: 34%;
  }
  section.about li {
    width: calc(50% - 1rem);
  }
  section.about figure {
    clear: both;
  }
  section.lineup div {
    flex-direction: row;
    justify-content: center;
    align-items: normal;
    flex-wrap: wrap;
  }
  section.lineup div > a {
    width: min(30em, 50% - 0.75rem);
  }
  section.lineup div dl {
    padding: 12%;
  }
  section.lineup div dl.page {
    border-color: var(--page-color);
  }
  section.lineup div dl.form {
    border-color: var(--form-color);
  }
  section.lineup div dl.record {
    border-color: var(--record-color);
  }
  section.lineup div dt {
    margin: 0 auto 2em;
  }
  section.lineup div dd {
    text-align: justify;
    line-height: 1.8;
  }
  section.lineup div .button {
    margin-top: 2em;
    text-align: center;
  }
  section.feature h3 {
    font-size: 2.5rem;
  }
  section.feature h3 img {
    padding: 0 0.3em;
    width: 21rem;
  }
  section.feature h3 em {
    font-size: 3rem;
  }
  section.feature section {
    display: flex;
    padding: 5rem 0 2.5rem;
  }
  section.feature section::before {
    width: calc(50vw + 12rem);
    height: 20rem;
  }
  section.feature section dl {
    margin: 0;
    max-width: none;
    padding: 3rem;
    width: 23rem;
    height: 21rem;
  }
  section.feature section dt b {
    left: 3rem;
  }
  section.feature section picture {
    flex: 1;
    margin: -3rem 0 0 -3rem;
    max-width: none;
  }
  section.feature section:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
  section.feature section:nth-of-type(2n)::before {
    left: auto;
    right: calc(-1 * var(--h-margin));
  }
  section.feature section:nth-of-type(2n) picture {
    margin: -3rem -3rem 0 0;
  }
}
@media all and (min-width: 1200px) {
  section.record picture {
    position: relative;
    padding-top: 0;
  }
  section.record picture img {
    position: static;
  }
  section.record .nav-root {
    bottom: calc(var(--v-margin) + 15% - 2.4rem);
  }
}
/*---------------------------------------------

Lower Page Sections CSS

for jibun-apps.jp
coded by d-spica at 2022-01-17
imported to "style.scss"

---------------------------------------------*/
header.title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -11rem;
  position: relative;
  height: 19rem;
  line-height: 1.8;
  text-align: center;
  font-family: var(--point-font);
  font-weight: 700;
}
header.title h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #FFF;
}
header.title::after {
  content: "";
  display: block;
  position: relative;
  bottom: -1rem;
  z-index: -1;
  border-radius: 1.8rem 1.8rem 0 0;
  background-color: #FFF;
  width: calc(100% - 2 * max(2vw, 50vw - 600px));
  height: 13rem;
}

header.title + section {
  position: relative;
}

article.column2::before {
  display: none;
}
article.column2 .columns {
  background-color: #F4F6FA;
  padding: 0.01rem 0;
}

header.title2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--series-color);
  height: 7rem;
  font-family: var(--point-font);
  font-weight: 700;
}
header.title2 h2 {
  font-size: 1.5rem;
  color: #FFF;
}

.site-page header.title2 {
  background-color: var(--page-color);
}

.site-form header.title2 {
  background-color: var(--form-color);
}

.site-record header.title2 {
  background-color: var(--record-color);
}

.column2 .columns > nav {
  margin: var(--v-margin) var(--h-margin);
}

nav.posts dl {
  border: solid 1px #CFD8DE;
  border-radius: 0.4rem;
  background-color: #FFF;
}
nav.posts dt {
  padding: 0.75rem;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
}
nav.posts dt i {
  display: inline-block;
  margin-right: 0.3em;
  width: 1.6em;
  vertical-align: -0.1em;
}
nav.posts dd li {
  position: relative;
  border-top: solid 1px #CFD8DE;
}
nav.posts dd li a {
  display: block;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--series-color);
}
nav.posts dd li em {
  display: block;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--series-color);
  cursor: pointer;
}
nav.posts dd li em::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  border-right: solid 2px #333;
  border-bottom: solid 2px #333;
  width: 0.6em;
  height: 0.6em;
  rotate: 45deg;
  transition: var(--speed-fast);
}
nav.posts dd li.is-opened em::after {
  top: 1.5em;
  rotate: -135deg;
}
nav.posts dd li li:nth-of-type(n+2) {
  border-top: solid 1px #CFD8DE;
}
nav.posts dd li li a {
  display: block;
  padding: 0.75rem 0.75rem 0.75rem calc(0.75rem + 1em);
  text-indent: -0.7em;
  font-size: 0.65rem;
  font-weight: 700;
  color: inherit !important;
}
nav.posts dd li li a::before {
  content: "";
  display: inline-block;
  margin-right: 0.3em;
  border-radius: 9999rem;
  background-color: var(--series-color);
  width: 0.4em;
  height: 0.4em;
  vertical-align: 0.1em;
}

.site-page nav.posts dd li em, .site-page nav.posts dd li a {
  color: var(--page-color);
}

.site-form nav.posts dd li em, .site-form nav.posts dd li a {
  color: var(--form-color);
}

.site-record nav.posts dd li em, .site-record nav.posts dd li a {
  color: var(--record-color);
}

.site-page nav.posts dd li li a.current {
  background-color: rgba(30, 136, 229, 0.1);
}

.site-page nav.posts dd li:has(.current) em {
  background-color: rgba(30, 136, 229, 0.2);
}

.site-form nav.posts dd li li a.current {
  background-color: rgba(251, 140, 0, 0.1);
}

.site-form nav.posts dd li:has(.current) em {
  background-color: rgba(251, 140, 0, 0.2);
}

.site-record nav.posts dd li li a.current {
  background-color: rgba(255, 82, 82, 0.1);
}

.site-record nav.posts dd li:has(.current) em {
  background-color: rgba(255, 82, 82, 0.2);
}

.site-page nav.posts dd li li a::before {
  background-color: var(--page-color);
}

.site-form nav.posts dd li li a::before {
  background-color: var(--form-color);
}

.site-record nav.posts dd li li a::before {
  background-color: var(--record-color);
}

nav.sites li {
  overflow: hidden;
  border: solid 1px #CFD8DE;
  border-radius: 0.4rem;
}
nav.sites li:nth-of-type(n+2) {
  margin-top: 0.5rem;
}
nav.sites li a {
  display: block;
  background-color: #FFF;
  padding: 0.75rem;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
}
nav.sites li a i {
  display: inline-block;
  margin-right: 0.3em;
  width: 1.6em;
  vertical-align: -0.1em;
}

.site-page nav.sites li:has([href*=jibun-page]),
.site-form nav.sites li:has([href*=jibun-form]),
.site-record nav.sites li:has([href*=jibun-record]) {
  display: none;
}

section.features header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 2rem;
}
section.features header h3 {
  line-height: 1.6;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
}
section.features header h3 span {
  display: block;
  color: var(--series-color);
}
section.features header h3 em {
  font-size: 2rem;
}
section.features header picture {
  display: block;
  margin: 0 auto;
  max-width: 30rem;
}
section.features a {
  color: var(--link-color);
}
section.features a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-page section.features header span {
  color: var(--page-color);
}

.site-form section.features header span {
  color: var(--form-color);
}

.site-record section.features header span {
  color: var(--record-color);
}

section.functions {
  margin-top: var(--v-margin);
}
section.functions h4 {
  margin-bottom: 1.2em;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
}
section.functions ul {
  border-top: solid 1px #CFD8DE;
}
section.functions li {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 2rem;
  border-bottom: solid 1px #CFD8DE;
  padding: 1.5rem 0;
}
section.functions dt {
  margin-bottom: 1em;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 700;
}
section.functions dd {
  text-align: justify;
  line-height: 2;
}
section.functions picture {
  display: block;
  margin: 0 auto;
  max-width: 30rem;
}

.site-page section.functions h4 {
  color: var(--page-color);
}

.site-form section.functions h4 {
  color: var(--form-color);
}

.site-record section.functions h4 {
  color: var(--record-color);
}

section.starting-flow h3 {
  margin-bottom: 1.2em;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--series-color);
}
section.starting-flow > p {
  margin-bottom: 2em;
  line-height: 2;
  font-family: var(--point-font);
  font-weight: 700;
}
section.starting-flow ul {
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  padding: 0.5rem 6%;
}
section.starting-flow li {
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
  padding: 0.5rem 0 1.5rem;
}
section.starting-flow li:nth-of-type(n+2) {
  border-top: solid 1px #CFD8DE;
}
section.starting-flow dt {
  margin-bottom: 0.8em;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 700;
}
section.starting-flow dt span {
  display: block;
  font-family: var(--point-font);
  color: var(--series-color);
}
section.starting-flow dt span b {
  font-size: 200%;
}
section.starting-flow dd {
  text-align: justify;
  line-height: 2;
}
section.starting-flow picture {
  display: block;
  margin: 0 auto;
  max-width: 30rem;
}

.site-page section.starting-flow h3 {
  color: var(--page-color);
}

.site-form section.starting-flow h3 {
  color: var(--form-color);
}

.site-record section.starting-flow h3 {
  color: var(--record-color);
}

.site-page section.starting-flow dt span {
  color: var(--page-color);
}

.site-form section.starting-flow dt span {
  color: var(--form-color);
}

.site-record section.starting-flow dt span {
  color: var(--record-color);
}

section.plans {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
section.plans .summary {
  line-height: 2;
  font-family: var(--point-font);
  font-weight: 700;
}
section.plans dl {
  margin: 0 auto;
  box-sizing: border-box;
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  max-width: 100%;
  width: 24rem;
}
section.plans dl:nth-of-type(2) dt {
  background-color: #314048;
}
section.plans dt {
  border-radius: calc(0.8rem - 1px) calc(0.8rem - 1px) 0 0;
  background-color: #31B4A1;
  padding: 0.8em;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
}
section.plans dd .price {
  padding: 1.2rem;
  text-align: center;
}
section.plans dd .price em {
  display: block;
  font-size: 200%;
  font-weight: 700;
}
section.plans dd li {
  background-color: #CFD8DE;
  padding: 0.6em 1.2em;
  line-height: 1.8;
}
section.plans dd li:nth-of-type(2n) {
  background-color: #F4F6FA;
}
section.plans dd .button {
  padding: 1.2rem;
  text-align: center;
}
section.plans dd .button [class*=button-L] {
  font-size: 0.75rem;
}
section.plans .note {
  text-align: right;
  font-size: 0.65rem;
}

section.plan-info {
  padding-top: 0;
}
section.plan-info div {
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  padding: 4% 6% calc(4% - 2em);
}
section.plan-info dl {
  margin-bottom: 2em;
}
section.plan-info dt {
  margin-bottom: 0.3em;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 700;
}
section.plan-info dd {
  text-align: justify;
  line-height: 2;
}
section.plan-info dd li {
  position: relative;
  padding-left: 1em;
}
section.plan-info dd li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
section.plan-info dd .note {
  position: relative;
  padding-left: 1em;
}
section.plan-info dd .note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
section.plan-info a {
  color: var(--link-color);
}
section.plan-info a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

section.contact .summary {
  margin-bottom: 2em;
  text-align: center;
  line-height: 2;
  font-family: var(--point-font);
  font-weight: 700;
}
section.contact .button {
  margin-bottom: 3em;
  text-align: center;
}
section.contact .button .button-LG {
  padding: 1.5em;
  width: 21em;
  font-size: 0.75rem;
}
section.contact .pdf {
  margin-bottom: 3em;
  text-align: center;
}
section.contact .pdf span {
  display: block;
}
section.contact .pdf i {
  display: block;
  color: var(--link-color);
}
section.contact .buttons {
  margin-bottom: var(--v-margin);
  border-top: solid 1px #CCC;
  font-family: var(--point-font);
}
section.contact .buttons li {
  border-bottom: solid 1px #CCC;
  padding: 2em 0;
  text-align: center;
}
section.contact .buttons li span {
  display: block;
  margin-bottom: 1.5em;
  line-height: 2;
}
section.contact .buttons [class*=button-L] {
  padding: 1.2em 0.5em;
  letter-spacing: 0.05em;
  font-size: 100%;
}
section.contact .buttons .button-LC {
  border-width: 2px;
}
section.contact .buttons .button-L {
  border-width: 2px;
}
section.contact div {
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  background-color: #F4F6FA;
  padding: 4% 6% calc(4% - 1.5em);
}
section.contact div p {
  margin-bottom: 1em;
  text-align: justify;
  line-height: 2;
}

section.profile {
  padding-left: max(7vw, 50vw - 420px);
  padding-right: max(7vw, 50vw - 420px);
}
section.profile dl {
  border-bottom: solid 1px #CFD8DE;
  padding: 1.2em 0;
  line-height: 1.6;
  font-weight: 700;
}
section.profile dl:nth-of-type(1) {
  border-top: solid 1px #CFD8DE;
}
section.profile dt {
  margin-bottom: 0.5em;
}
section.profile dd {
  padding-left: 1em;
}

section.aim {
  padding-left: max(7vw, 50vw - 420px);
  padding-right: max(7vw, 50vw - 420px);
}
section.aim h3 {
  margin-bottom: 1.5em;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: min(1.2rem, 5.6vw);
  font-weight: 700;
  color: #FB8C00;
}
section.aim p {
  margin-bottom: 2em;
  text-align: justify;
  line-height: 2;
  font-family: var(--point-font);
  font-size: 0.8rem;
}
section.aim picture {
  display: block;
  margin: 0 auto;
  max-width: 34rem;
}

section.info h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
section.info iframe {
  border: solid 1px #CFD8DE;
  width: 100%;
  height: calc(100vh - 2rem);
}
section.info dl {
  margin: 2.5rem 0;
}
section.info dl.history dt {
  font-size: 100%;
}
section.info dl.history li {
  position: relative;
  padding-left: 7em;
}
section.info dl.history li time {
  position: absolute;
  top: 0;
  left: 0;
}
section.info dt {
  margin-bottom: 0.8em;
  font-size: 1rem;
  font-weight: 700;
}
section.info p {
  margin-bottom: 2em;
  text-align: justify;
  line-height: 2;
}
section.info li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.7em;
  text-align: justify;
  line-height: 2;
}
section.info li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2em;
  text-align: right;
}
section.info li ul {
  margin-top: 0.5em;
}
section.info .wide-mark li {
  padding-left: 2.5em;
}
section.info .wide-mark li i {
  width: 2em;
}
section.info .widest-mark li {
  padding-left: 3.5em;
}
section.info .widest-mark li i {
  width: 3em;
  white-space: nowrap;
}
section.info table {
  margin: 1em 0;
  width: 100%;
}
section.info table.info {
  font-size: 85%;
}
section.info table.info caption {
  font-weight: 700;
}
section.info table.info th {
  white-space: nowrap;
}
section.info table.info th:nth-of-type(1) {
  max-width: 20%;
}
section.info table.info td:nth-of-type(2) {
  text-align: left;
}
section.info caption {
  padding-bottom: 0.5em;
  text-align: left;
}
section.info th {
  border: solid 1px #CFD8DE;
  background-color: #F4F6FA;
  padding: 0.5em 1em;
  width: 50%;
  text-align: center;
  font-weight: 400;
}
section.info td {
  border: solid 1px #CFD8DE;
  padding: 0.5em 1em;
  text-align: center;
}
section.info dd p {
  margin-bottom: 0.5em;
}
section.info dd em {
  font-weight: 700;
}
section.info dd a {
  word-break: break-all;
  color: var(--link-color);
}

section.links {
  padding-top: 0;
  text-align: center;
}
section.links .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
section.links .button span {
  font-family: var(--point-font);
  font-weight: 700;
}

section.partner {
  padding-left: max(7vw, 50vw - 420px);
  padding-right: max(7vw, 50vw - 420px);
}
section.partner h3 {
  margin-bottom: 0.8em;
  font-size: 1.2rem;
  font-weight: 700;
}
section.partner h3.first {
  font-size: 1.5rem;
}
section.partner p {
  margin-bottom: 2em;
  line-height: 2;
  text-align: justify;
}
section.partner p:last-child {
  margin-bottom: 0;
}
section.partner .note {
  font-size: 0.65rem;
}
section.partner img.half-left {
  display: block;
  margin: 0 auto 2em;
  width: min(100%, 21rem);
}
section.partner picture {
  display: block;
  margin-bottom: 2em;
  text-align: center;
}
section.partner a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.partner a:hover {
  text-decoration: none;
}
section.partner dl {
  margin-bottom: 2em;
}
section.partner dt {
  margin-bottom: 0.5em;
  font-size: 0.9rem;
  font-weight: 700;
}
section.partner dt b {
  display: inline-block;
  margin-right: 0.5em;
  letter-spacing: 0.05em;
  vertical-align: -0.15em;
  font-size: 150%;
  color: #FDC800;
}
section.partner dd p {
  margin-bottom: 0.5em;
  font-size: 0.65rem;
}
section.partner .banners span {
  display: inline-block;
  margin: 0 0.2em 0.6em 0;
  width: 10.2rem;
}
section.partner:nth-of-type(n+2) h3 {
  position: relative;
}
section.partner:nth-of-type(n+2) h3::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(-1 * var(--v-margin));
  left: 0;
  background-color: #CECECE;
  width: 100%;
  height: 1px;
}
section.partner section {
  margin: 1rem 0;
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  background-color: #F4F6FA;
  padding: calc(0.7 * var(--v-margin)) min(7vw, 2.5rem) max(1px, 0.7 * var(--v-margin) - 2em);
}
section.partner section h4 {
  margin-bottom: 0.9em;
  border-bottom: solid 1px #76858E;
  padding-bottom: 0.7em;
  font-size: 1rem;
  font-weight: 700;
}
section.partner section.point {
  border-color: #FDC800;
  background-color: #FFF8E2;
}
section.partner section.point h4 {
  border-color: #FDC800;
}
section.partner section.point dd p:not(.note) {
  font-size: 0.75rem;
}

section.entry {
  text-align: center;
}
section.entry h3 {
  margin-bottom: 1.8em;
  font-size: min(4.5vw, 1.5rem);
  font-weight: 700;
}

section.partners p {
  margin-bottom: 2em;
  line-height: 2;
}
section.partners p.summary {
  text-align: center;
  font-family: var(--point-font);
  font-weight: 700;
}
section.partners .scroll-box {
  overflow-x: auto;
  padding-bottom: 20px;
}
section.partners table {
  min-width: max(100%, 36em);
}
section.partners thead th {
  box-sizing: border-box;
  background-color: #314048;
  padding: 0.8em 1.2em;
  width: 33.333%;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  color: #FFF;
}
section.partners tbody td {
  padding: 1em 1.2em;
  line-height: 1.6;
}
section.partners tbody tr:nth-of-type(2n+1) td {
  background-color: #F4F6FA;
}
section.partners tbody a {
  word-break: break-all;
}
section.partners .nav {
  margin-top: 3rem;
  text-align: center;
}

@media all and (min-width: 720px) {
  section.starting-flow > p {
    text-align: center;
  }
  section.plans .summary {
    text-align: center;
  }
  section.profile dl {
    display: flex;
  }
  section.profile dt {
    margin-bottom: 0;
    width: 9em;
  }
  section.profile dd {
    flex: 1;
    padding-left: 0;
  }
  section.aim h3 {
    font-size: 1.6rem;
  }
  section.aim p {
    font-size: 0.9rem;
  }
  section.info table.info {
    font-size: 100%;
  }
  section.links .button {
    flex-direction: row;
  }
  section.contact + section.links .button {
    flex-direction: column;
  }
  section.partner {
    overflow: hidden;
  }
  section.partner img.half-left {
    float: left;
    margin: 0 7% 0 0;
    width: min(46.5%, 21rem);
  }
}
@media all and (min-width: 960px) {
  header.title {
    margin-bottom: -9rem;
    height: 19rem;
  }
  header.title h2 {
    margin-top: 3rem;
    font-size: 2rem;
  }
  header.title::after {
    height: 11rem;
  }
  header.title2 {
    height: 9.5rem;
  }
  header.title2 h2 {
    font-size: 2rem;
  }
  .column2 .columns > nav {
    margin: 0 0 0.5rem;
  }
  article.column2 .columns {
    padding: var(--v-margin) var(--h-margin);
  }
  article.column2 .columns::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }
  nav.posts {
    float: right;
    width: 13rem;
  }
  nav.sites {
    float: right;
    width: 13rem;
  }
  section.features header {
    flex-direction: row;
  }
  section.features header h3 {
    width: 12em;
    font-size: 1.5rem;
  }
  section.features header h3 em {
    font-size: 2.5rem;
  }
  section.features header picture {
    flex: 1;
  }
  section.functions h4 {
    font-size: 1.5rem;
  }
  section.functions dt {
    font-size: 1.2rem;
  }
  section.functions li {
    flex-direction: row;
    padding: 2rem 0;
  }
  section.functions li:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
  section.functions dl {
    width: 42%;
  }
  section.functions picture {
    flex: 1;
  }
  section.starting-flow h3 {
    font-size: 1.6rem;
  }
  section.starting-flow li {
    flex-direction: row;
    padding: 2rem 0;
  }
  section.starting-flow dl {
    width: 45%;
  }
  section.starting-flow picture {
    flex: 1;
  }
  section.plans {
    flex-direction: row;
    flex-wrap: wrap;
  }
  section.plans .summary {
    width: 100%;
  }
  section.plans dl {
    margin: 0;
    width: calc(50% - 0.75rem);
  }
  section.plans .note {
    width: 100%;
  }
  section.info h3 {
    font-size: 1.5rem;
  }
  section.contact .buttons {
    display: flex;
    border-top: none;
    border-left: solid 1px #CCC;
    font-size: min(1.3vw, 0.75rem);
  }
  section.contact .buttons li {
    box-sizing: border-box;
    border-bottom: none;
    border-right: solid 1px #CCC;
    padding: 0.3em 3% 1em;
    width: 50%;
  }
  section.contact .buttons li:nth-of-type(3) {
    display: none;
  }
  section.contact .buttons li span {
    height: 6em;
  }
}
/*---------------------------------------------

Post Page Sections CSS

for jibun-apps.jp
coded by d-spica at 2022-01-19
imported to "style.scss"

---------------------------------------------*/
section.notices,
section.manuals {
  margin: 0 auto;
  padding-left: max(7vw, 50vw - 410px);
  padding-right: max(7vw, 50vw - 410px);
  min-height: 10rem;
}
section.notices h3,
section.manuals h3 {
  margin-bottom: 1rem;
  padding: 0 0.3rem;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.5rem;
}
section.notices .nav-index,
section.manuals .nav-index {
  position: absolute;
  top: calc(var(--v-margin) + 1.2em);
  right: max(7vw, 50vw - 410px);
  font-size: 0.65rem;
  font-weight: 700;
}
section.notices .nav-index a:hover,
section.manuals .nav-index a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.notices ul,
section.manuals ul {
  border-top: solid 1px #D6D6D6;
}
section.notices li,
section.manuals li {
  border-bottom: solid 1px #D6D6D6;
}
section.notices li a,
section.manuals li a {
  position: relative;
}
section.notices li a::after,
section.manuals li a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.7em);
  right: 0.5em;
  border-top: solid 1px;
  border-right: solid 1px;
  width: 1em;
  height: 1em;
  transform: rotate(45deg);
}
section.notices li a span,
section.manuals li a span {
  box-sizing: border-box;
  padding-right: 1em;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--speed-fast);
}
section.notices li a:hover span,
section.manuals li a:hover span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--link-color);
}
section.notices li.none,
section.manuals li.none {
  padding: 5em 0.3rem;
  text-align: center;
}

section.notices li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1.5em;
  padding: 1.2em 0.3rem;
}
section.notices li a time {
  width: 6em;
}

section.manuals li a {
  display: block;
  padding: 2em 0.3rem;
}

section.faqs, section.faq-post {
  position: relative;
}
section.faqs h3, section.faq-post h3 {
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--series-color);
}
section.faqs form, section.faq-post form {
  position: relative;
  margin-bottom: 2rem;
  border: solid 1px #CFD8DE;
  border-radius: 9999rem;
  padding: 0.5em 0.6em 0.5em 2.6em;
  font-size: 16px;
}
section.faqs form button, section.faq-post form button {
  position: absolute;
  top: calc(50% - 0.6em);
  left: 1em;
  width: 1.2em;
  padding: 0;
}
section.faqs form [type=text], section.faq-post form [type=text] {
  border: none;
  width: 100%;
}
section.faqs section, section.faq-post section {
  position: relative;
  margin-top: 1.2rem;
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
}
section.faqs section span[id], section.faq-post section span[id] {
  display: block;
  position: absolute;
  top: -6rem;
  left: 0;
  height: 0;
}
section.faqs section .meta, section.faq-post section .meta {
  display: flex;
  justify-content: flex-end;
  gap: 2em;
  padding: 3% calc(1.5em + 4%) 0;
  text-align: right;
  font-size: 0.6rem;
  color: #76858E;
}
section.faqs section .meta time, section.faq-post section .meta time {
  display: inline-block;
  padding: 0.2em 0;
  background: no-repeat 0 50%/auto 1.2em;
}
section.faqs section .meta time.public, section.faq-post section .meta time.public {
  background-image: url("../img/mk-time.svg");
  padding-left: 1.5em;
}
section.faqs section .meta time.update, section.faq-post section .meta time.update {
  background-image: url("../img/mk-update.svg");
  padding-left: 1.2em;
}
section.faqs section h4, section.faq-post section h4 {
  position: relative;
  padding: 3% calc(1.5em + 4%) 3% calc(1.5rem + 4%);
  line-height: 1.6;
  font-size: 0.8rem;
  font-weight: 700;
}
section.faqs section h4 b, section.faq-post section h4 b {
  position: absolute;
  top: calc(50% - 0.6em);
  left: 3%;
  line-height: 1;
  font-family: var(--point-font);
  font-size: 1.5rem;
}
section.faqs section div, section.faq-post section div {
  position: relative;
  margin: 0;
  padding: 2em calc(1.5em + 4%) 0 calc(1.5rem + 4%);
  word-break: break-all;
}
section.faqs section div b, section.faq-post section div b {
  position: absolute;
  top: 0.9em;
  left: 3.5%;
  line-height: 1;
  font-family: var(--point-font);
  font-size: 1.5rem;
  color: var(--series-color);
}
section.faqs .none, section.faq-post .none {
  padding: 5em 0.3rem;
  text-align: center;
}

section.faq-post section h4 {
  position: relative;
  padding: 3% calc(1.5em + 4%) 3% calc(1.5rem + 4%);
  line-height: 1.6;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
section.faq-post section h4 b {
  position: absolute;
  top: calc(50% - 0.6em);
  left: 3%;
  line-height: 1;
  font-family: var(--point-font);
  font-size: 1.5rem;
}

section.faqs section h4 {
  cursor: pointer;
}
section.faqs section .link {
  position: absolute;
  top: min(1.25rem, 2.8vw - 0.6em);
  right: 0.5rem;
  margin-bottom: 0;
}
section.faqs section .link a {
  display: block;
  padding: 1em;
  font-size: 0.6rem;
}
section.faqs section .link a span {
  display: none;
}
section.faqs section .link a::after {
  content: "";
  display: inline-block;
  background: url(../img/mk-newtab.png) no-repeat 50% 50%/contain;
  width: 1.25em;
  height: 1.25em;
}
section.faqs section div {
  display: none;
}
section.faqs section .button {
  padding: 0 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
}
section.faqs section .button::after {
  content: "";
  display: inline-block;
  border-top: solid 2px;
  border-right: solid 2px;
  width: 0.7em;
  height: 0.7em;
  transform: rotate(135deg);
  transition: transform var(--speed-fast);
}
section.faqs section.is-opened .button::after {
  transform: rotate(-45deg);
}

div.support {
  margin: var(--v-margin) calc(0.5 * var(--h-margin));
  border-radius: 0.8rem;
  background-color: #FFF;
  padding: 0.01rem min(3.5vw, 3rem) var(--v-margin);
}
div.support .contact {
  text-align: center;
}

section[class^=support_] {
  position: relative;
  padding: var(--v-margin) 0;
}
section[class^=support_] span[id] {
  display: block;
  position: absolute;
  top: -6rem;
  left: 0;
  height: 0;
}
section[class^=support_] h3 {
  margin-bottom: 1em;
  text-align: center;
  font-family: var(--point-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--series-color);
}

.site-page section[class^=support_] h3 {
  color: var(--page-color);
}

.site-form section[class^=support_] h3 {
  color: var(--form-color);
}

.site-record section[class^=support_] h3 {
  color: var(--record-color);
}

section.support_manuals li {
  border-bottom: solid 1px #D6D6D6;
}
section.support_manuals li:nth-of-type(1) {
  border-top: solid 1px #D6D6D6;
}
section.support_manuals li a {
  display: block;
  position: relative;
  padding: 2em 0.3rem 2em calc(0.3rem + 0.8em);
}
section.support_manuals li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.5em;
  left: 0.3rem;
  border-radius: 9999rem;
  background-color: var(--series-color);
  width: 0.4rem;
  height: 0.4rem;
}
section.support_manuals li a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.7em);
  right: 0.5em;
  border-top: solid 1px;
  border-right: solid 1px;
  width: 1em;
  height: 1em;
  transform: rotate(45deg);
}
section.support_manuals li a span {
  box-sizing: border-box;
  padding-right: 1em;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--speed-fast);
}
section.support_manuals li a:hover span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--link-color);
}

section.support_faqs > div {
  border: solid 2px #999;
  border-radius: 0.8rem;
  padding: 2rem 6%;
}
section.support_faqs form {
  position: relative;
  margin-bottom: 2rem;
  border: solid 1px #CFD8DE;
  border-radius: 9999rem;
  background-color: #F4F6FA;
  padding: 0.5em 0.6em 0.5em 2.6em;
  font-size: 16px;
}
section.support_faqs form button {
  position: absolute;
  top: calc(50% - 0.6em);
  left: 1em;
  width: 1.2em;
  padding: 0;
}
section.support_faqs form [type=text] {
  border: none;
  width: 100%;
}
section.support_faqs ul {
  font-size: 0.9rem;
}
section.support_faqs li:nth-of-type(n+2) {
  margin-top: 1rem;
}
section.support_faqs li a {
  display: block;
  position: relative;
  padding-left: 2.5em;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.support_faqs li a b {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  font-size: 160%;
  font-weight: 700;
  color: #999;
}
section.support_faqs .button {
  margin-top: 2rem;
  text-align: center;
}

section.support_documents ul {
  border: solid 2px #999;
  border-radius: 0.8rem;
  padding: 2rem 6%;
}
section.support_documents li:nth-of-type(n+2) {
  margin-top: 1rem;
}
section.support_documents li a {
  display: block;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.support_documents li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0.3em;
  background-color: #999;
  border-radius: 9999rem;
  width: 0.4em;
  height: 0.4em;
}

section.faq-post .button {
  padding-top: var(--v-margin);
  text-align: center;
}

.site-page section.faqs h3,
.site-page section.faqs section div b,
.site-page section.support_faqs li a b,
.site-page section.faq-post h3,
.site-page section.faq-post section div b {
  color: var(--page-color);
}

.site-form section.faqs h3,
.site-form section.faqs section div b,
.site-form section.support_faqs li a b,
.site-form section.faq-post h3,
.site-form section.faq-post section div b {
  color: var(--form-color);
}

.site-record section.faqs h3,
.site-record section.faqs section div b,
.site-record section.support_faqs li a b,
.site-record section.faq-post h3,
.site-record section.faq-post section div b {
  color: var(--record-color);
}

.site-page section.support_manuals ul,
.site-page section.support_faqs > div,
.site-page section.support_documents ul {
  border-color: var(--page-color);
}

.site-page section.support_manuals li a::before,
.site-page section.support_documents li a::before {
  background-color: var(--page-color);
}

.site-form section.support_manuals ul,
.site-form section.support_faqs > div,
.site-form section.support_documents ul {
  border-color: var(--form-color);
}

.site-form section.support_manuals li a::before,
.site-form section.support_documents li a::before {
  background-color: var(--form-color);
}

.site-record section.support_manuals ul,
.site-record section.support_faqs > div,
.site-record section.support_documents ul {
  border-color: var(--record-color);
}

.site-record section.support_manuals li a::before,
.site-record section.support_documents li a::before {
  background-color: var(--record-color);
}

section.notice-post,
section.manual-post {
  position: relative;
}
section.notice-post h3,
section.manual-post h3 {
  margin-bottom: 0.8em;
  font-size: 1.2rem;
  font-weight: 700;
}
section.notice-post .meta,
section.manual-post .meta {
  font-size: 0.65rem;
  font-weight: 700;
}
section.notice-post .meta span,
section.manual-post .meta span {
  display: inline-block;
  margin-right: 2em;
}
section.notice-post .sns,
section.manual-post .sns {
  margin-bottom: 2rem;
  font-size: 0.65rem;
}
section.notice-post .sns li,
section.manual-post .sns li {
  display: inline-block;
  margin-right: 2em;
}
section.notice-post .sns li img,
section.manual-post .sns li img {
  margin-right: 0.5em;
  width: 1.4em;
  vertical-align: middle;
  transition: var(--speed-fast);
}
section.notice-post .sns li a:hover img,
section.manual-post .sns li a:hover img {
  transform: scale(1.4);
}
section.notice-post .button,
section.manual-post .button {
  border-top: solid 1px #CFD8DE;
  padding-top: var(--v-margin);
  text-align: center;
}

section.manual-post .category {
  margin: var(--v-margin) 0;
  text-align: center;
  font-family: var(--point-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--series-color);
}
section.manual-post h3 {
  margin-top: var(--v-margin);
  background-color: var(--series-color);
  padding: 0.8em 1em;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
}

.site-page section.manual-post .category {
  color: var(--page-color);
}

.site-page section.manual-post h3 {
  background-color: var(--page-color);
}

.site-form section.manual-post .category {
  color: var(--form-color);
}

.site-form section.manual-post h3 {
  background-color: var(--form-color);
}

.site-record section.manual-post .category {
  color: var(--record-color);
}

.site-record section.manual-post h3 {
  background-color: var(--record-color);
}

.post-body {
  margin: 3rem 0;
}
.post-body h1, .post-body h2, .post-body h3, .post-body h4 {
  margin: 3em 0 1em;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 700;
}
.post-body h5 {
  margin: 3em 0 1em;
  line-height: 1.6;
  font-size: 0.85rem;
  font-weight: 700;
}
.post-body h6 {
  margin: 2em 0 0.5em;
  line-height: 1.6;
  font-weight: 700;
}
.post-body p {
  margin-bottom: 2em;
  line-height: 2;
}
.post-body ul {
  margin-bottom: 2em;
  padding-left: 2em;
  line-height: 1.8;
  list-style: disc;
}
.post-body ol {
  margin-bottom: 2em;
  padding-left: 2em;
  line-height: 1.8;
}
.post-body li {
  margin-bottom: 0.3em;
}
.post-body blockquote {
  margin-bottom: 2em;
  border-left: solid 0.4em #D6D6D6;
  padding-left: 1em;
  line-height: 2;
}
.post-body table {
  margin: 1em 0;
  width: 100%;
  text-align: center;
}
.post-body caption {
  padding-bottom: 0.5em;
}
.post-body th {
  border: solid 1px #CFD8DE;
  background-color: #F4F6FA;
  padding: 0.5em 1em;
  font-weight: 400;
}
.post-body td {
  border: solid 1px #CFD8DE;
  padding: 0.5em 1em;
}
.post-body b {
  font-weight: 700;
}
.post-body i {
  font-style: italic;
}
.post-body a {
  color: var(--link-color);
}
.post-body a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.post-body .alignleft {
  display: block;
  margin: 0 auto 1em 0;
}
.post-body .alignright {
  display: block;
  margin: 0 0 1em auto;
}
.post-body .aligncenter {
  display: block;
  margin: 0 auto 1em;
}
.post-body .wp-embedded-content {
  width: 100%;
  max-width: 25rem;
}

section.casestudy {
  min-height: 10rem;
}
section.casestudy h3 {
  margin-bottom: 1rem;
  padding: 0 0.3rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--point-font);
  font-size: 1.5rem;
}
section.casestudy section {
  margin: var(--v-margin) 0;
}
section.casestudy section h4 {
  padding: 0 0.3rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: 700;
}
section.casestudy section.search {
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  background-color: #F4F6FA;
  padding: 1.5rem;
}
section.casestudy section.search dl {
  padding: 1.2rem 0;
}
section.casestudy section.search dl:nth-of-type(n+2) {
  border-top: solid 1px #CFD8DE;
}
section.casestudy section.search dt {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
section.casestudy section.search dt::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  width: 0.5em;
  height: 0.5em;
  transform: rotate(135deg);
  transition: var(--speed-fast);
}
section.casestudy section.search dt.is-opened::after {
  top: calc(50% - 0.2em);
  transform: rotate(-45deg);
}
section.casestudy section.search dd {
  font-size: 0.9rem;
  line-height: 2.2;
}
section.casestudy section.search dd label {
  display: inline-block;
  margin-right: 1.5em;
}
section.casestudy section.search dd [type=checkbox] {
  margin: 0.3em 0.6em 0.3em 0.3em;
  vertical-align: 0;
  transform: scale(1.6);
}
section.casestudy section.search p {
  text-align: center;
}
section.casestudy section.search button {
  display: inline-block;
  box-sizing: border-box;
  border-radius: 0.4rem;
  background-color: #999;
  width: 16rem;
  padding: 1.2em 0.5em;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFF;
  transition: var(--speed-fast);
}
section.casestudy section.search button:hover {
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.3);
  transform: translateY(-0.1rem);
}
section.casestudy section.cases {
  margin-bottom: 0;
}
section.casestudy section.cases ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3rem;
  margin: -1rem auto;
  max-width: 20rem;
}
section.casestudy section.cases li {
  width: 100%;
  padding: 2.5rem 0;
  font-weight: 700;
}
section.casestudy section.cases li:nth-of-type(n+2) {
  border-top: solid 1px #CECECE;
}
section.casestudy section.cases li i {
  display: block;
  position: relative;
  border: solid 1px #CECECE;
  padding-top: 66.666%;
}
section.casestudy section.cases li i img {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.casestudy section.cases li em {
  display: block;
  margin: 1em 0 0.8em;
  font-size: 0.9rem;
}
section.casestudy section.cases li u {
  display: block;
}
section.casestudy section.cases li u a {
  display: inline-block;
  margin-right: 0.3em;
  margin-bottom: 0.3em;
  border: solid 1px #707070;
  border-radius: 0.4em;
  padding: 0.2em 1em;
  font-size: 0.6rem;
}
section.casestudy section.cases li u a:hover {
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.1rem);
}
section.casestudy section.cases li span {
  margin-top: 0.5em;
  display: block;
  font-size: 1rem;
  color: #999;
}
section.casestudy section.cases li b {
  display: block;
  margin-top: 1em;
  text-align: center;
}
section.casestudy section.cases p.none {
  margin: 5rem 0;
  text-align: center;
}

section.casestudy-post {
  margin: 0 auto;
  padding-left: max(7vw, 50vw - 410px);
  padding-right: max(7vw, 50vw - 410px);
  min-height: 10rem;
}
section.casestudy-post header {
  margin-bottom: 1rem;
  font-weight: 700;
}
section.casestudy-post header h3 {
  margin-bottom: 1em;
  font-size: 1.5rem;
}
section.casestudy-post header .logo {
  position: relative;
  border: solid 1px #CECECE;
  padding-top: 66.666%;
}
section.casestudy-post header .logo img {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.casestudy-post header .company {
  margin: 1em 0 0.8em;
  font-size: 1.2rem;
  font-weight: 700;
}
section.casestudy-post header .tags a {
  display: inline-block;
  margin-right: 0.3em;
  margin-bottom: 0.3em;
  border: solid 1px #707070;
  border-radius: 0.4em;
  padding: 0.2em 1em;
  font-size: 0.6rem;
}
section.casestudy-post header .tags a:hover {
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.1rem);
}
section.casestudy-post header .lead {
  overflow: hidden;
  margin-top: 1em;
  line-height: 2;
  text-align: justify;
  font-weight: 400;
}
section.casestudy-post section {
  margin: 3.5rem 0;
}
section.casestudy-post section a {
  color: var(--link-color);
}
section.casestudy-post section a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.casestudy-post section.summary {
  margin-top: 1rem;
}
section.casestudy-post section.summary p {
  margin-bottom: 1em;
  line-height: 2;
  text-align: justify;
}
section.casestudy-post section.summary ol {
  margin-top: 2rem;
  list-style: none;
  font-weight: 700;
}
section.casestudy-post section.summary ol li:nth-of-type(1) {
  border: solid 1px #CFD8DE;
  border-radius: 0.8rem;
  background-color: #F4F6FA;
  padding: 1.5rem 1.5rem 0;
}
section.casestudy-post section.summary ol li:nth-of-type(2) {
  position: relative;
  margin-top: 2.5rem;
  border: solid 2px #999;
  border-radius: 0.8rem;
  padding: calc(1.5rem - 1px) calc(1.5rem - 1px) 0;
}
section.casestudy-post section.summary ol li:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: -1.9rem;
  left: calc(50% - 1rem);
  background: url("../img/ar-down.svg") no-repeat 50% 50%/cover;
  width: 1.8rem;
  height: 1.25rem;
}
section.casestudy-post section.summary ol li dt {
  margin-bottom: 0.2em;
  font-size: 1rem;
}
section.casestudy-post section.summary ol li dd {
  margin-bottom: 2em;
  line-height: 1.8;
  font-size: 0.8rem;
}
section.casestudy-post section.story h4 {
  margin-bottom: 0.5em;
  font-size: 1.3rem;
  font-weight: 700;
  color: #999;
}
section.casestudy-post section.story p {
  margin-bottom: 2em;
  line-height: 2;
  text-align: justify;
}
section.casestudy-post section.point {
  border-radius: 0.8rem;
  background-color: #EEE;
  padding: 1.5rem 1.5rem 0.1rem;
}
section.casestudy-post section.point h4 {
  margin-bottom: 0.5em;
  font-size: 1.3rem;
  font-weight: 700;
  color: #999;
}
section.casestudy-post section.point p {
  margin-bottom: 2em;
  line-height: 2;
  text-align: justify;
}
section.casestudy-post figure {
  margin: 3.5rem 0;
}
section.casestudy-post .button {
  margin-top: 3.5rem;
  border-top: solid 1px #CECECE;
  padding-top: 3.5rem;
  text-align: center;
}
section.casestudy-post .foot {
  line-height: 2;
  color: #76858E;
}

.site-page section.faqs h3,
.site-page section.faqs section div b,
.site-page section.faq-post h3,
.site-page section.faq-post section div b,
.site-page section.casestudy section.cases li span,
.site-page section.casestudy-post section.summary ol li:nth-of-type(2) dt,
.site-page section.casestudy-post section.story h4,
.site-page section.casestudy-post section.point h4 {
  color: var(--page-color);
}

.site-form section.faqs h3,
.site-form section.faqs section div b,
.site-form section.faq-post h3,
.site-form section.faq-post section div b,
.site-form section.casestudy section.cases li span,
.site-form section.casestudy-post section.summary ol li:nth-of-type(2) dt,
.site-form section.casestudy-post section.story h4,
.site-form section.casestudy-post section.point h4 {
  color: var(--form-color);
}

.site-record section.faqs h3,
.site-record section.faqs section div b,
.site-record section.faq-post h3,
.site-record section.faq-post section div b,
.site-record section.casestudy section.cases li span,
.site-record section.casestudy-post section.summary ol li:nth-of-type(2) dt,
.site-record section.casestudy-post section.story h4,
.site-record section.casestudy-post section.point h4 {
  color: var(--record-color);
}

.site-page section.casestudy section.search button {
  background-color: var(--page-color);
}

.site-form section.casestudy section.search button {
  background-color: var(--form-color);
}

.site-record section.casestudy section.search button {
  background-color: var(--record-color);
}

.site-page section.casestudy-post section.summary ol li:nth-of-type(2) {
  border-color: var(--page-color);
}

.site-form section.casestudy-post section.summary ol li:nth-of-type(2) {
  border-color: var(--form-color);
}

.site-record section.casestudy-post section.summary ol li:nth-of-type(2) {
  border-color: var(--record-color);
}

.site-page section.casestudy-post section.point {
  background-color: #E3F7FF;
}

.site-form section.casestudy-post section.point {
  background-color: #FFF8E2;
}

.site-record section.casestudy-post section.point {
  background-color: #FFDBDB;
}

@media all and (min-width: 720px) {
  section.support_faqs > div {
    padding: 3rem 12%;
  }
  section.support_faqs .button {
    margin-top: 3rem;
  }
  section.casestudy section.search {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
  }
  section.casestudy section.search h4, section.casestudy section.search p {
    width: 100%;
  }
  section.casestudy section.search dl {
    margin: 2rem 0;
    box-sizing: border-box;
    padding: 0 2rem;
    width: 50%;
  }
  section.casestudy section.search dl:nth-of-type(n+2) {
    border-top: none;
    border-left: solid 1px #CFD8DE;
  }
  section.casestudy section.search dt::after {
    display: none;
  }
  section.casestudy section.cases ul {
    margin-top: 0;
    max-width: 43rem;
  }
  section.casestudy section.cases li {
    position: relative;
    padding: 2rem 0 5.4rem;
    width: calc(50% - 1.5rem);
  }
  section.casestudy section.cases li:nth-of-type(n+2) {
    border-top: none;
  }
  section.casestudy section.cases li b {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
  }
  section.casestudy-post header::after {
    content: "";
    display: block;
    clear: left;
    height: 0;
  }
  section.casestudy-post header .logo {
    float: left;
    margin-right: 1.5rem;
    width: min(40%, 17rem);
    padding-top: min(26.666%, 11.333rem);
  }
  section.casestudy-post section.summary ol li:nth-of-type(1) {
    padding: 2rem 2rem 0.5rem;
  }
  section.casestudy-post section.summary ol li:nth-of-type(2) {
    padding: calc(2rem - 1px) calc(2rem - 1px) calc(0.5rem - 1px);
  }
  section.casestudy-post section.point {
    padding: 2rem 2rem 0.5rem;
  }
}
@media all and (min-width: 960px) {
  div.support {
    float: left;
    margin: 0;
    box-sizing: border-box;
    width: calc(100% - 15rem);
  }
  section.notice-post h3 {
    font-size: 1.5rem;
  }
  section.manual-post .category {
    font-size: 1.5rem;
  }
  section.manual-post h3 {
    font-size: 1.2rem;
  }
  section.faqs h3, section.faq-post h3 {
    font-size: 1.5rem;
  }
  section.faqs section h4, section.faq-post section h4 {
    font-size: 0.9rem;
  }
  section.faqs section h4 {
    padding-right: calc(7em + 4%);
  }
  section.faqs section .link {
    top: min(1.5rem, 2.8vw - 0.2em);
    right: 1.5rem;
  }
  section.faqs section .link a {
    border: solid 1px #CCC;
    border-radius: 0.4em;
    padding: 0.5em 1.5em 0.5em 2em;
  }
  section.faqs section .link a span {
    display: inline-block;
  }
  section.faqs section .link a::after {
    margin-left: 0.5em;
    vertical-align: -0.2em;
  }
  .post-body .alignleft {
    float: left;
    margin-right: 2em;
    max-width: 60%;
  }
  .post-body .alignright {
    float: right;
    margin-left: 2em;
    max-width: 60%;
  }
  .post-body .aligncenter {
    display: block;
    margin: 0 auto 1em;
  }
}
@media all and (min-width: 1200px) {
  section.casestudy section.cases ul {
    max-width: none;
  }
  section.casestudy section.cases li {
    width: calc(33.333% - 2rem);
  }
}/*# sourceMappingURL=style.css.map */