:root {
  --font-size-base: 1;
  --text-size-scale: 1.2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  *,
  *::before,
  *::after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  font-size: calc(10 * var(--font-size-base) * 0.1rem);
  text-rendering: optimizeSpeed;
  line-height: 1.55;
  color: #707070;
}

*:focus {
  outline: 0;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

figure {
  display: block;
}

img,
picture,
svg {
  display: block;
}

img,
picture {
  width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border-radius: 0;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
input[type=password],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

select {
  background: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-value {
  color: inherit;
  background: transparent;
}
select::-ms-expand {
  display: none;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 0;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  background: transparent;
  font: inherit;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
}
@media not screen and (max-width: 768px), print {
  html {
    font-size: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1440px) {
  html {
    font-size: calc(10 / 14.4 * 1vw);
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: calc(10 / 7.5 * 1vw);
  }
}
@media print {
  html {
    font-size: calc(6 / 14.4 * 1vw) !important;
  }
}

body {
  color: #53565a;
}

@media not screen and (max-width: 768px), print {
  .l-body {
    padding-left: calc((100% - 121rem) / 2);
    padding-right: calc((100% - 121rem) / 2);
  }
  .l-body.is-narrow {
    padding-left: calc((100% - 100rem) / 2);
    padding-right: calc((100% - 100rem) / 2);
  }
}

.c-cover {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  pointer-events: none;
  z-index: 99999;
}
@media print {
  .c-cover {
    display: none !important;
  }
}

@keyframes c-cover {
  0% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.c-top-button {
  position: fixed;
  z-index: 2;
  border: 2px solid #97999b;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}
@media not screen and (max-width: 768px), print {
  .c-top-button {
    width: 5rem;
    height: 5rem;
    border-radius: 2.5rem;
    right: 4rem;
    bottom: 11.8rem;
    transform: translate(0, 34rem);
  }
}
@media only screen and (max-width: 768px) {
  .c-top-button {
    width: 9.6rem;
    height: 9.6rem;
    border-radius: 4.8rem;
    right: 3.5rem;
    bottom: 24rem;
    transform: translate(0, 34rem);
  }
}
@media not screen and (max-width: 768px), print {
  .c-top-button svg {
    width: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-top-button svg {
    width: 4rem;
  }
}
@media not screen and (max-width: 768px), print {
  .is-scrolled .c-top-button {
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 768px) {
  .is-scrolled .c-top-button {
    transform: translate(0, 0);
  }
}

@media print {
  .c-top-button {
    display: none !important;
  }
}

.c-information {
  background: #3b4043;
  color: #fff;
  padding: 3rem 0;
}

@media not screen and (max-width: 768px), print {
  .c-information__content {
    font-size: calc(16 * var(--font-size-base) * var(--text-size-scale) * 0.1rem);
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content {
    font-size: calc(24 * var(--font-size-base) * var(--text-size-scale) * 0.1rem);
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content {
    --font-size-base: 1;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-information__content {
    --font-size-base: 1.2;
  }
}
@media screen and (min-width: 1201px) {
  .c-information__content {
    --font-size-base: 1;
  }
}
.c-information__content h2 {
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 1.5em;
}
.c-information__content h3 {
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 1.3125em;
}
.c-information__content h4 {
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 1.125em;
}
.c-information__content h5,
.c-information__content h6 {
  font-weight: 700;
  margin-bottom: 1em;
  font-size: 1em;
}
.c-information__content h2,
.c-information__content h3,
.c-information__content h4,
.c-information__content h5,
.c-information__content h6 {
  clear: both;
}
@media not screen and (max-width: 768px), print {
  .c-information__content h2:not(:first-child),
  .c-information__content h3:not(:first-child),
  .c-information__content h4:not(:first-child),
  .c-information__content h5:not(:first-child),
  .c-information__content h6:not(:first-child) {
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content h2:not(:first-child),
  .c-information__content h3:not(:first-child),
  .c-information__content h4:not(:first-child),
  .c-information__content h5:not(:first-child),
  .c-information__content h6:not(:first-child) {
    margin-top: 12rem;
  }
}
.c-information__content p,
.c-information__content ul,
.c-information__content ol {
  font-weight: 400;
  line-height: 1.75;
}
@media not screen and (max-width: 768px), print {
  .c-information__content p + p,
  .c-information__content p + ul,
  .c-information__content p + ol,
  .c-information__content ul + p,
  .c-information__content ul + ul,
  .c-information__content ul + ol,
  .c-information__content ol + p,
  .c-information__content ol + ul,
  .c-information__content ol + ol {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content p + p,
  .c-information__content p + ul,
  .c-information__content p + ol,
  .c-information__content ul + p,
  .c-information__content ul + ul,
  .c-information__content ul + ol,
  .c-information__content ol + p,
  .c-information__content ol + ul,
  .c-information__content ol + ol {
    margin-top: 3rem;
  }
}
.c-information__content ul {
  list-style: disc;
  margin-left: 1.25em;
}
.c-information__content ol {
  list-style: decimal;
  margin-left: 1.25em;
}
.c-information__content a[href] {
  color: #0099ff;
  text-decoration: underline;
}
.c-information__content a[href][target] {
  padding-right: 1.2em;
  background: url(../images/common/icon-link.svg) no-repeat right center/0.6em auto;
}
.c-information__content a[href$=".pdf"],
.c-information__content a[href$=".pdf"][target] {
  padding-right: 1.2em;
  background: url(../images/common/icon-link-pdf.png) no-repeat right center/0.8em auto;
}
.c-information__content img {
  clear: both;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
@media not screen and (max-width: 768px), print {
  .c-information__content img {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content img {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content img.alignnone {
    max-width: 100%;
    margin-left: 0;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content img.aligncenter {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content img.alignleft {
    float: left;
    max-width: 50%;
    margin-right: 4rem;
    margin-top: 0.5em;
    margin-bottom: 2em;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content img.alignright {
    float: right;
    max-width: 50%;
    margin-left: 4rem;
    margin-top: 0.5em;
    margin-bottom: 2em;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content .wp-caption {
    margin-top: 12rem;
    margin-bottom: 12rem;
    max-width: 100%;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption img {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content .wp-caption img {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.alignnone {
    max-width: 100%;
    margin-left: 0;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.alignnone img {
    max-width: 100%;
    margin-left: 0;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.aligncenter {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.aligncenter img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.alignleft {
    float: left;
    max-width: 50%;
    margin-right: 4rem;
    margin-top: 0.5em;
    margin-bottom: 2em;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.alignleft img {
    max-width: 100%;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.alignright {
    float: right;
    max-width: 50%;
    margin-left: 4rem;
    margin-top: 0.5em;
    margin-bottom: 2em;
  }
}
@media not screen and (max-width: 768px), print {
  .c-information__content .wp-caption.alignright img {
    max-width: 100%;
  }
}
.c-information__content .wp-caption-dd,
.c-information__content .wp-caption-text {
  font-size: 0.875em;
}
.c-information__content blockquote {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 2em;
  background: #eee;
  padding: 0.5em;
  border-left: 0.5em solid #ccc;
}
.c-information__content .box {
  border: 1px solid #333;
  padding: 1em 2em;
  margin-top: 2em;
  margin-bottom: 2em;
}
.c-information__content .hc-post__interviewee {
  font-weight: 700;
}
.c-information__content .toc {
  background: #eee;
  padding: 1em 2em;
  margin: 0 0 2em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.c-information__content .toc__item {
  font-size: 0.8em;
}
.c-information__content .toc__item + .toc__item {
  margin-top: 0.2em;
}
.c-information__content .toc__item--3 {
  margin-left: 1.5em;
}
.c-information__content .toc__item--4 {
  margin-left: 3em;
}
.c-information__content .toc__item--5 {
  margin-left: 4.5em;
}
.c-information__content .toc__item--6 {
  margin-left: 6em;
}
.c-information__content .toc__item--anchor.toc__item--3 {
  margin-left: 3em;
}
.c-information__content .toc__item--anchor.toc__item--4 {
  margin-left: 4.5em;
}
.c-information__content .toc__item--anchor.toc__item--5 {
  margin-left: 6em;
}
.c-information__content .toc__item--anchor.toc__item--6 {
  margin-left: 7.5em;
}
@media not screen and (max-width: 768px), print {
  .c-information__content {
    width: 121rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .c-information__content {
    margin: 0 4rem;
  }
}

.c-information__content + .c-information__content {
  margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media not screen and (max-width: 768px), print {
  .u-sp-only {
    display: none !important;
  }
}

.js-in-view {
  opacity: 0;
  transform: translate(0, 3rem);
}
.js-in-view[data-animation-state=shown] {
  opacity: 1;
  transform: translate(0, 0);
}
@media print {
  .js-in-view {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

@keyframes in-view {
  0% {
    opacity: 0;
    transform: translate(0, 3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}/*# sourceMappingURL=common.css.map */