/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #303439;
  --color-bg: #f0f3f9;
  --color-black: #303439;
  --color-black-hover: #21262b;
  --color-white: #fff;
  --color-white-hover: #f2f1f1;
  --color-border: #bbbbbb;
  --color-border-light: #dadada;
  --color-primary: #005be1;
  --color-primary-hover: #004ec2;
  --color-primary-light: #417dd4;
  --color-link: #3173d6;
  --color-danger: #ef3131;
  --color-form-grey: #f9f9f9;
  --color-outline: #2c84cb;
  --color-outline-inset: #b5defb;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-xs: 780px;
  --width-content-s: 920px;
  --width-content: 1080px;
  --width-content-l: 1180px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

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

main {
  display: block;
}

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

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
html {
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  line-height: 1.8;
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-ptb {
  padding: 64px 0;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 80px 0;
  }
}

.u-text-link {
  text-decoration: underline;
  color: var(--color-link);
}
@media (hover: hover) {
  .u-text-link:hover {
    text-decoration: none;
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  background-color: var(--color-primary);
  padding: 12px 40px 12px calc(40px + 0.1em);
  font-weight: bold;
  color: var(--color-white);
  border-radius: 100vh;
  letter-spacing: 0.1em;
  transition: 0.3s;
  display: inline-block;
}
@media (hover: hover) {
  .c-button:hover {
    background-color: var(--color-primary-hover);
  }
}

/*!
component > title
------------------------------
*/
.c-title-en {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: bold;
}

.c-title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 32px;
  }
}
.c-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 0 auto;
  margin-top: 20px;
  opacity: 0.4;
}
.c-title span {
  display: block;
}

/*!
component > button
------------------------------
*/
.c-cta {
  padding: 64px 0;
  background-color: var(--color-primary-light);
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding: 80px 0;
  }
}

.c-cta-text {
  text-align: center;
  color: var(--color-white);
  font-weight: bold;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .c-cta-text {
    font-size: 32px;
  }
}
.c-cta-text span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-cta-text span {
    display: inline;
  }
}

.c-cta-document-request {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-cta-document-request {
    margin-top: 40px;
  }
}
.c-cta-document-request a {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 18px 24px;
  border-radius: 100vh;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-cta-document-request a {
    font-size: 22px;
    padding: 18px 48px;
  }
}
@media (hover: hover) {
  .c-cta-document-request a:hover {
    background-color: var(--color-white-hover);
    transform: scale(1.02);
  }
}
.c-cta-document-request img {
  width: 30px;
}

.c-cta-contact {
  text-align: center;
  margin-top: 16px;
}
.c-cta-contact a {
  text-decoration: underline;
  color: var(--color-white);
}
@media (hover: hover) {
  .c-cta-contact a:hover {
    text-decoration: none;
  }
}

/*!
component > form
------------------------------
*/
.c-form {
  background-color: var(--color-white);
  padding: 24px 16px;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .c-form {
    border-radius: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .c-form {
    padding: 24px 32px;
  }
}

.c-form-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .c-form-title {
    font-size: 22px;
  }
}

/*!
component > seminar-item
------------------------------
*/
.c-seminar-state span {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100vh;
  font-weight: bold;
  font-size: 14px;
}
.c-seminar-state .open {
  background-color: #d4fadf;
  color: #0bab3b;
}
.c-seminar-state .closed {
  background-color: #eee;
  color: #666;
}
.c-seminar-state .archive {
  background-color: #e4eeff;
  color: var(--color-primary);
}

.c-seminar-item-thumbnail {
  overflow: hidden;
  margin-top: 8px;
}
.c-seminar-item-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-seminar-item-thumbnail a {
  transition: 0.3s;
  aspect-ratio: 1200/630;
  display: block;
}
@media (hover: hover) {
  .c-seminar-item-thumbnail a:hover {
    transform: scale(1.05);
  }
}

.c-seminar-item-title {
  font-weight: bold;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-seminar-item-title {
    font-size: 22px;
  }
}
.c-seminar-item-title a {
  transition: 0.3s;
}
@media (hover: hover) {
  .c-seminar-item-title a:hover {
    color: var(--color-primary);
  }
}

.c-seminar-item-tags {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-seminar-item-tag {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  line-height: 1.4;
  font-size: 14px;
}
.c-seminar-item-tag span:nth-child(1) {
  border-right: 1px solid #b8b8b8;
}
.c-seminar-item-tag span:nth-child(2) {
  padding-left: 12px;
}

/*!
component > block > speaker
------------------------------
*/
.c-speaker {
  background-color: var(--color-bg);
  border-radius: 15px;
  padding: 25px 30px;
}
@media screen and (min-width: 500px) {
  .c-speaker {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 25px;
  }
}

.c-speaker-img {
  width: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.c-speaker-img img {
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 500px) {
  .c-speaker-img {
    width: 150px;
  }
}

.c-speaker-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 500px) {
  .c-speaker-name {
    font-size: 22px;
    margin-top: 0;
    text-align: left;
  }
}

.c-speaker-affiliation {
  text-align: center;
  margin-top: 5px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (min-width: 500px) {
  .c-speaker-affiliation {
    text-align: left;
  }
}

.c-speaker-info {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.8;
}

/*!
component > block > faq
------------------------------
*/
.c-faq-block-answer {
  margin-top: 20px;
}

/*!
component > pagenation
------------------------------
*/
.c-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0 6px;
  margin-top: 60px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-pagination .nav-links::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-pagination .nav-links {
    gap: 0 12px;
    margin-top: 75px;
  }
}
.c-pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 7px;
  background-color: var(--color-bg);
  flex-shrink: 0;
}
.c-pagination a.page-numbers {
  transition: 0.3s;
}
@media (hover: hover) {
  .c-pagination a.page-numbers:hover {
    background-color: var(--color-black);
    color: var(--color-white);
  }
}
.c-pagination .current {
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-pagination .prev,
.c-pagination .next {
  color: transparent !important;
  font-size: 1px !important;
  position: relative;
  background-color: var(--color-bg);
}
.c-pagination .prev::before,
.c-pagination .next::before {
  content: "";
  position: absolute;
  top: 17px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-font-base);
  border-right: 2px solid var(--color-font-base);
  transition: 0.3s;
}
@media (hover: hover) {
  .c-pagination .prev:hover::before,
  .c-pagination .next:hover::before {
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
  }
}
.c-pagination .prev::before {
  right: 15px;
  transform: rotate(-135deg);
}
.c-pagination .next::before {
  right: 18px;
  transform: rotate(45deg);
}

/*!
component > page-kv
------------------------------
*/
.c-page-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-page-title {
    font-size: 26px;
  }
}

.c-page-title-en {
  color: var(--color-primary);
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

/*!
component > logo
------------------------------
*/
.c-logo {
  display: flex;
  overflow: hidden;
}

.c-logo-list {
  display: flex;
  padding: 24px 0 !important;
}
@media screen and (min-width: 768px) {
  .c-logo-list {
    padding: 32px 0 !important;
  }
}
.c-logo-list li {
  padding: 0 8px;
}
.c-logo-list li img {
  height: 32px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-logo-list li img {
    height: 40px;
    width: auto;
  }
}

/*!
component > posts
------------------------------
*/
.c-posts-archive-title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 16px;
  background-color: var(--color-bg);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-posts-archive-title {
    font-size: 26px;
  }
}

.c-posts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .c-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .c-posts {
    gap: 64px 40px;
  }
}

@media screen and (min-width: 1080px) {
  .c-posts--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-posts-coming-soon {
  text-align: center;
  font-weight: bold;
}

/*!
component > posts
------------------------------
*/
.c-post {
  display: flex;
  flex-direction: column;
}

.c-post-date-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.c-post-date-wrap span {
  font-weight: bold;
  opacity: 0.6;
  display: flex;
  gap: 4px;
  align-items: center;
}
.c-post-date-wrap span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
}

.c-post-date::before {
  background-image: url(../img/icon-time.svg);
}

.c-post-update::before {
  background-image: url(../img/icon-history.svg);
}

.c-post-thumbnail {
  overflow: hidden;
}
.c-post-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-post-thumbnail a {
  transition: 0.3s;
  aspect-ratio: 1200/630;
  display: block;
}
@media (hover: hover) {
  .c-post-thumbnail a:hover {
    transform: scale(1.05);
  }
}

.c-post-thumbnail-youtube a {
  aspect-ratio: 16/9;
}

.c-post-title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 8px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-post-title {
    font-size: 22px;
  }
}
.c-post-title a {
  transition: 0.3s;
}
@media (hover: hover) {
  .c-post-title a:hover {
    color: var(--color-primary);
  }
}

.c-post-tags {
  font-weight: bold;
  margin-top: 8px;
}
.c-post-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.c-post-tags li {
  line-height: 1.5;
}
.c-post-tags a {
  font-size: 12px;
  opacity: 0.6;
  transition: 0.3s;
}
.c-post-tags a::before {
  content: "#";
}
@media (hover: hover) {
  .c-post-tags a:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.c-post-download {
  padding-top: 16px;
  margin-top: auto;
}

.c-post-download-button {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 10px 8px;
  display: block;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-post-download-button:hover {
    background-color: var(--color-black-hover);
  }
}

/*!
component > contents
------------------------------
*/
.c-contents {
  line-height: 2;
}
.c-contents.--blog {
  margin-top: 60px !important;
}
@media screen and (min-width: 768px) {
  .c-contents.--blog {
    margin-top: 75px !important;
  }
}
.c-contents > *:not(:first-child) {
  margin-top: 20px;
}
.c-contents h2 {
  font-size: 20px;
  font-weight: bold;
  padding: 12px 16px;
  background-color: var(--color-bg);
  margin-top: 60px !important;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-contents h2 {
    font-size: 24px;
    margin-top: 75px !important;
  }
}
.c-contents h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px !important;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-contents h3 {
    font-size: 22px;
    margin-top: 56px !important;
  }
}
.c-contents strong,
.c-contents strong * {
  font-weight: bold;
}
.c-contents em,
.c-contents em * {
  font-style: italic;
}
.c-contents a {
  color: var(--color-link);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-contents a:hover {
    text-decoration: none;
  }
}
.c-contents ul {
  padding-left: 24px;
}
.c-contents ul li {
  list-style-type: disc;
  gap: 15px;
  font-weight: bold;
}
.c-contents ol {
  padding-left: 24px;
}
.c-contents ol li {
  list-style-type: decimal;
  gap: 15px;
  font-weight: bold;
}
.c-contents .wp-block-table {
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-contents .wp-block-table::-webkit-scrollbar {
  display: none;
}
.c-contents table {
  width: 100%;
  min-width: 500px;
}
.c-contents table th,
.c-contents table td {
  border: 1px solid var(--color-border);
  padding: 8px;
}
.c-contents table thead {
  border-bottom: 1px solid var(--color-border);
}
.c-contents table thead th,
.c-contents table thead td {
  background-color: #eee;
  font-weight: bold;
}
.c-contents .wp-element-caption {
  opacity: 0.7;
  font-size: 14px;
  margin-top: 4px;
}
.c-contents .wp-block-spacer {
  margin: 0;
}
.c-contents .wp-block-button__link {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 32px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-contents .wp-block-button__link {
    font-size: 18px;
  }
}
@media (hover: hover) {
  .c-contents .wp-block-button__link:hover {
    background-color: var(--color-primary-hover);
  }
}
.c-contents .wp-block-embed-youtube .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.c-contents .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

/*!
component > tag-link-list
------------------------------
*/
.c-tag-link-list-wrap {
  margin-top: 48px;
  padding: 24px 16px;
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .c-tag-link-list-wrap {
    margin-top: 56px;
    padding: 24px;
  }
}

.c-tag-link-list-title {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-tag-link-list-title {
    font-size: 22px;
  }
}

.c-tag-link-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.c-tag-link-list a {
  opacity: 0.6;
  transition: 0.3s;
  font-weight: bold;
}
.c-tag-link-list a::before {
  content: "#";
}
@media (hover: hover) {
  .c-tag-link-list a:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

/*!
component > single
------------------------------
*/
.c-single-title {
  margin-top: 8px;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-single-title {
    font-size: 26px;
  }
}

/*!
component > seminar
------------------------------
*/
.c-seminar-state span {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100vh;
  font-weight: bold;
  font-size: 14px;
}
.c-seminar-state .open {
  background-color: #d4fadf;
  color: #0bab3b;
}
.c-seminar-state .closed {
  background-color: #eee;
  color: #666;
}
.c-seminar-state .archive {
  background-color: #e4eeff;
  color: var(--color-primary);
}

/*!
component > cta-banner
------------------------------
*/
.c-cta-banner-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-cta-banner-wrap {
    display: block;
  }
}

.c-cta-banner-top {
  display: none;
}

.c-cta-banner {
  position: fixed;
  bottom: 12px;
  width: 300px;
}
.c-cta-banner.--left {
  left: 12px;
}
.c-cta-banner.--right {
  right: 12px;
}

.c-cta-banner-close {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-black);
}

.c-cta-banner-close-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.c-cta-banner-close-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 10px;
  background-color: var(--color-white);
  display: block;
}

.c-cta-banner-close-icon span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-cta-banner-close-icon span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*!
component > side
------------------------------
*/
.c-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-side-title {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-side-title {
    font-size: 22px;
  }
}

.c-side-list {
  margin-top: 16px;
}
.c-side-list.--tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c-side-category-item {
  border-top: 1px solid var(--color-border);
}
.c-side-category-item:last-child {
  border-bottom: 1px solid var(--color-border);
}
.c-side-category-item a {
  display: flex;
  gap: 12px;
  padding: 12px 4px;
  font-weight: bold;
  opacity: 0.7;
  transition: 0.3s;
}
.c-side-category-item a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-font-base);
  border-right: 2px solid var(--color-font-base);
  rotate: 45deg;
  flex-shrink: 0;
  translate: 0 8px;
}
@media screen and (min-width: 768px) {
  .c-side-category-item a::before {
    translate: 0 10px;
  }
}
@media (any-hover: hover) {
  .c-side-category-item a:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .c-side-category-item a:hover::before {
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
  }
}

.c-side-tag-item a {
  display: inline-block;
  background-color: var(--color-bg);
  padding: 3px 14px;
  border-radius: 100vh;
  font-weight: bold;
  transition: 0.3s;
  font-size: 14px;
}
.c-side-tag-item a::before {
  content: "# ";
}
@media (any-hover: hover) {
  .c-side-tag-item a:hover {
    color: var(--color-primary);
    background-color: #e0e8f7;
  }
  .c-side-tag-item a:hover span {
    opacity: 1;
  }
}
.c-side-tag-item span {
  opacity: 0.7;
  transition: 0.3s;
}

/*!
page > news > archive-news
------------------------------
*/
.c-post-news {
  border-bottom: 1px solid var(--color-border-light);
  max-width: 760px;
  margin: 0 auto;
}
.c-post-news a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 20px 12px;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-post-news a {
    grid-template-columns: 160px 1fr;
  }
}
@media (any-hover: hover) {
  .c-post-news a:hover {
    background-color: #fafafa;
  }
}

.c-post-news-date {
  display: block;
  font-weight: bold;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .c-post-news-date {
    margin-top: 2px;
  }
}

.c-post-news-title {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-post-news-title {
    font-size: 20px;
  }
}

/*!
component > service-list
------------------------------
*/
.c-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-service-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-service-list.--business .c-service-link {
  background-color: var(--color-white);
}

.c-service-title {
  font-weight: bold;
  color: var(--color-white);
  background: linear-gradient(90deg, #005be1 0%, #4291db 100%);
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 1.5;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 500px) {
  .c-service-title {
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
  }
}

.c-service-item-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-service-link {
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 6px 8px 6px 12px;
  font-weight: bold;
  gap: 8px;
  background-color: var(--color-bg);
}
.c-service-link::before {
  content: "";
  display: inline-block;
  width: 7px;
  aspect-ratio: 1;
  border-left: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: rotate(-135deg);
}

/*!
layout > container
------------------------------
*/
.l-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrap main {
  flex: 1;
}

.l-container-l, .l-container, .l-container-s, .l-container-xs {
  width: 90%;
  margin: 0 auto;
}

.l-container-xs {
  max-width: var(--width-content-xs);
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

.l-body {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .l-body {
    margin-top: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .l-single-2column {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
  }
}
.l-single-2column.no-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  max-width: 800px;
  margin-inline: auto;
}

@media screen and (min-width: 1080px) {
  .l-single-2column-form {
    position: sticky;
    right: 0;
    top: 120px;
  }
}
.l-single-2column-form h2 {
  font-size: 20px;
  font-weight: bold;
  padding: 12px 16px;
  background-color: var(--color-bg);
  margin: 60px 0 20px !important;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .l-single-2column-form h2 {
    font-size: 24px;
    margin: 75px 0 20px !important;
  }
}
@media screen and (min-width: 1080px) {
  .l-single-2column-form h2 {
    font-size: 22px;
    margin: -6px 0 16px !important;
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (min-width: 1080px) {
  .l-single-2column-form-hs {
    overflow: scroll;
    max-height: calc(100vh - 210px);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-single-2column-form-hs::-webkit-scrollbar {
    display: none;
  }
}

.l-blog-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1080px) {
  .l-blog-page {
    grid-template-columns: 1fr 340px;
    gap: 64px;
  }
}

/*!
layout > header
------------------------------
*/
.header {
  height: 60px;
  background-color: var(--color-white);
  box-shadow: 0px 4px 16px rgba(56, 63, 73, 0.3);
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding-left: 8px;
  z-index: 1;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .header {
    height: 80px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    padding: 0 40px;
  }
}

.header-logo {
  font-weight: bold;
  width: 165px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .header-logo {
    width: 180px;
  }
}
@media screen and (min-width: 1100px) {
  .header-logo {
    width: 260px;
  }
}

.header-nav-wrap {
  display: none;
}
@media screen and (min-width: 1000px) {
  .header-nav-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 4px;
    margin-left: auto;
  }
}

.header-list {
  display: flex;
  gap: 12px;
  margin-left: 16px;
  font-size: 14px;
}
@media screen and (min-width: 1250px) {
  .header-list {
    margin-left: 24px;
    font-size: 16px;
    gap: 24px;
  }
}

.header-item {
  font-weight: bold;
}

.header-item-text-pc {
  display: none;
}
@media screen and (min-width: 1350px) {
  .header-item-text-pc {
    display: inline;
  }
}

.header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-left: auto;
}
@media screen and (min-width: 1000px) {
  .header-cta {
    padding-left: 16px;
    gap: 8px;
    margin-left: 0;
    height: 70px;
  }
}
@media screen and (min-width: 1100px) {
  .header-cta {
    padding-left: 24px;
  }
}

.header-cta-document-request,
.header-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-white);
  font-weight: bold;
  transition: 0.3s;
  gap: 6px;
  padding: 0 12px 0 8px;
  letter-spacing: 0.08em;
  font-size: 14px;
}
@media screen and (min-width: 1000px) {
  .header-cta-document-request,
  .header-cta-contact {
    padding: 0 20px 0 16px;
    height: 75%;
    border-radius: 100vh;
    width: 190px;
  }
}
.header-cta-document-request img,
.header-cta-contact img {
  width: 22px;
}

.header-cta-document-request {
  background-color: #db3636;
}
@media (hover: hover) {
  .header-cta-document-request:hover {
    background-color: #c12424;
  }
}

.header-cta-document-request-text-pc {
  display: none;
}
@media screen and (min-width: 500px) {
  .header-cta-document-request-text-pc {
    display: block;
  }
}

@media screen and (min-width: 500px) {
  .header-cta-document-request-text-sp {
    display: none;
  }
}

.header-cta-contact {
  display: none;
}
@media screen and (min-width: 1000px) {
  .header-cta-contact {
    display: flex;
    background-color: var(--color-primary);
    color: var(--color-white);
  }
}
@media (hover: hover) {
  .header-cta-contact:hover {
    background-color: var(--color-primary-hover);
  }
}

.header-hm-button {
  aspect-ratio: 1/1;
  height: 100%;
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.header-hm-button img {
  width: 30px;
}
@media screen and (min-width: 1000px) {
  .header-hm-button {
    display: none;
  }
}

.header-hm-button-text {
  display: block;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  font-size: 10px;
}

.header-hm-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(320px);
  visibility: hidden;
  transition: 0.15s;
}
.header-hm-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.header-hm-menu-bg {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
  display: none;
}
.header-hm-menu-bg.is-open {
  display: block;
}

.header-hm-menu-inner {
  width: 90%;
}

.header-hm-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  aspect-ratio: 1/1;
  height: 70px;
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.header-hm-menu-close img {
  width: 30px;
}
@media screen and (min-width: 1000px) {
  .header-hm-menu-close {
    display: none;
  }
}

.header-hm-close-text {
  display: block;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  font-size: 10px;
}

.header-hm-menu-list {
  display: flex;
  flex-direction: column;
}

.header-hm-menu-item {
  font-size: 16px;
}
.header-hm-menu-item a {
  display: block;
  padding: 6px 0;
  font-weight: bold;
}

.header-hm-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.header-hm-menu-cta-document-request,
.header-hm-menu-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-white);
  font-weight: bold;
  transition: 0.3s;
  gap: 6px;
  padding: 0 30px 0 24px;
  letter-spacing: 0.08em;
  padding: 16px 0;
  font-size: 16px;
  border-radius: 100vh;
}
.header-hm-menu-cta-document-request img,
.header-hm-menu-cta-contact img {
  width: 25px;
}

.header-hm-menu-cta-document-request {
  background-color: #db3636;
}
@media (hover: hover) {
  .header-hm-menu-cta-document-request:hover {
    background-color: #c12424;
  }
}

.header-hm-menu-cta-contact {
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media (hover: hover) {
  .header-hm-menu-cta-contact:hover {
    background-color: var(--color-primary-hover);
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 40px 0;
}

.footer-list-wrap {
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 24px;
}

.footer-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-list {
    gap: 12px 0;
  }
}

.footer-item:not(:last-child) ::after {
  content: "/";
  display: inline-block;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .footer-item:not(:last-child) ::after {
    padding: 0 16px;
  }
}

.footer-copyright {
  font-size: 12px;
  display: block;
  text-align: center;
  margin-top: 24px;
}

/*!
page > top > top-common
------------------------------
*/
.top-section {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .top-section {
    padding: 96px 0;
  }
}
.top-section.--bg {
  background-color: var(--color-bg);
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  background-image: url(../img/top-kv-sp.jpg);
  background-position: top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .top-kv {
    background-image: url(../img/top-kv-tb.jpg);
  }
}
@media screen and (min-width: 1080px) {
  .top-kv {
    min-height: 600px;
    background-image: none;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .top-kv {
    grid-template-columns: 1fr 35%;
  }
}

.top-kv-text {
  padding: 300px 24px 48px;
}
@media screen and (min-width: 768px) {
  .top-kv-text {
    padding: 64px 40px 48px;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-text {
    height: 100%;
    padding: 40px;
    background-image: url(../img/top-kv.jpg);
    background-position: right;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .top-kv-text {
    padding: 40px 80px;
  }
}

.top-kv-copy {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-white);
  width: fit-content;
}
@media screen and (min-width: 500px) {
  .top-kv-copy {
    font-size: 38px;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-copy {
    font-size: 46px;
  }
}
.top-kv-copy span:nth-child(1), .top-kv-copy span:nth-child(2) {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-kv-copy span:nth-child(1), .top-kv-copy span:nth-child(2) {
    display: inline;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-copy span:nth-child(1), .top-kv-copy span:nth-child(2) {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .top-kv-copy span:nth-child(1), .top-kv-copy span:nth-child(2) {
    display: inline;
  }
}
.top-kv-copy span:nth-child(3) {
  display: block;
}

.top-kv-copy-brackets-left,
.top-kv-copy-brackets-right {
  position: relative;
  width: fit-content;
}

.top-kv-copy-brackets-left::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.7em;
  border-top: 1px solid var(--color-white);
  border-left: 1px solid var(--color-white);
  position: absolute;
  left: -0.3em;
  top: -0.05em;
}

.top-kv-copy-brackets-right::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.7em;
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  position: absolute;
  right: -0.3em;
  bottom: -0.05em;
}

.top-kv-copy02 {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-white);
}
@media screen and (min-width: 500px) {
  .top-kv-copy02 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-copy02 {
    margin-top: 24px;
    font-size: 18px;
  }
}
.top-kv-copy02 span {
  font-weight: bold;
  display: block;
}

.top-kv-form {
  display: none;
}
@media screen and (min-width: 1080px) {
  .top-kv-form {
    display: block;
  }
}
.top-kv-form.c-form {
  border-radius: 0 !important;
}

.top-kv-list {
  margin-top: 40px;
}

/*!
page > top > top-problem-body
------------------------------
*/
.top-problem {
  position: relative;
}
.top-problem::after {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 60px;
  background: var(--color-bg);
  height: 25.9807621135px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.top-problem-body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 24px;
}
@media screen and (min-width: 768px) {
  .top-problem-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .top-problem-body {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.top-problem-text {
  margin-top: 16px;
  text-align: center;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .top-problem-text {
    font-size: 24px;
  }
}
.top-problem-text span {
  display: block;
}

.top-problem-text02 {
  margin-top: 8px;
}

.top-problem-solution-dot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 40px 0 32px;
}
@media screen and (min-width: 768px) {
  .top-problem-solution-dot {
    margin: 64px 0 48px;
  }
}
.top-problem-solution-dot span {
  width: 8px;
  height: 8px;
  background-color: var(--color-black);
  border-radius: 50%;
}

.top-problem-solution-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-problem-solution-text {
    font-size: 38px;
  }
}
.top-problem-solution-text span {
  display: block;
}

/*!
page > top > top-feature
------------------------------
*/
.top-feature-body {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .top-feature-body {
    margin-top: 64px;
    gap: 64px;
  }
}

.top-feature-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .top-feature-section {
    grid-template-columns: 50% 1fr;
    gap: 48px;
  }
}

.top-feature-section-number {
  font-weight: bold;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-feature-section-number.--sp {
    display: none;
  }
}
.top-feature-section-number.--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-feature-section-number.--pc {
    display: block;
  }
}

.top-feature-section-title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-feature-section-title {
    font-size: 24px;
  }
}
.top-feature-section-title span {
  display: block;
}

.top-feature-section-text {
  margin-top: 8px;
}
@media screen and (min-width: 1080px) {
  .top-feature-section-text {
    margin-top: 24px;
  }
}

.top-feature-others {
  margin-top: 48px;
}
@media screen and (min-width: 1080px) {
  .top-feature-others {
    margin-top: 64px;
  }
}

.top-feature-others-title {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .top-feature-others-title {
    font-size: 24px;
  }
}

.top-feature-others-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px auto 0;
  max-width: 960px;
}
@media screen and (min-width: 768px) {
  .top-feature-others-list {
    gap: 24px;
  }
}

.top-feature-others-item {
  background-color: var(--color-bg);
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px 0 48px;
  border-radius: 8px;
  position: relative;
}
.top-feature-others-item::before {
  content: "";
  display: block;
  border-radius: 100vh;
  width: 5px;
  height: 50px;
  background-color: var(--color-primary);
  position: absolute;
  left: 24px;
  top: 15px;
}
@media screen and (min-width: 768px) {
  .top-feature-others-item::before {
    top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .top-feature-others-item {
    border-radius: 12px;
    height: 100px;
  }
}
.top-feature-others-item span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-feature-others-item span {
    font-size: 20px;
  }
}

/*!
page > top > top-case
------------------------------
*/
.top-case {
  background-color: var(--color-bg);
}

.top-case-body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .top-case-body {
    margin-top: 64px;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .top-case-body {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-case-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.top-case-partner {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top-case-partner {
    margin-top: 64px;
  }
}

.top-case-partner-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.top-case-partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  background-color: var(--color-white);
  padding: 24px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .top-case-partner-list {
    gap: 24px 64px;
    padding: 40px;
  }
}

.top-case-partner-item img {
  height: 32px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .top-case-partner-item img {
    height: 40px;
    width: auto;
  }
}

/*!
page > top > top-flow
------------------------------
*/
.top-flow-body {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top-flow-body {
    margin-top: 64px;
  }
}

.top-flow-item {
  background-color: var(--color-white);
  padding: 24px 16px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .top-flow-item {
    padding: 32px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 24px;
    padding: 28px 32px 32px 8px;
  }
}
@media screen and (min-width: 1080px) {
  .top-flow-item {
    padding: 32px 40px 40px 12px;
  }
}

.top-flow-number {
  color: var(--color-primary);
  opacity: 0.4;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .top-flow-number {
    text-align: left;
    font-size: 56px;
    grid-column: 1/2;
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.top-flow-item-title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .top-flow-item-title {
    text-align: left;
    font-size: 24px;
    grid-column: 2/3;
    grid-row: 1/2;
    margin-top: 0;
  }
}

.top-flow-item-text {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .top-flow-item-text {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.top-flow-arrow {
  display: block;
  width: 30px;
  margin: 16px auto;
  background: var(--color-black);
  height: 17.3205080757px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/*!
page > top > top-faq
------------------------------
*/
.top-faq-body {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-faq-body {
    margin-top: 64px;
    gap: 48px;
  }
}

.top-faq-q {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .top-faq-q {
    font-size: 22px;
  }
}
.top-faq-q::before {
  content: "Q.";
  font-size: 22px;
  color: var(--color-primary);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-faq-q::before {
    font-size: 28px;
  }
}

.top-faq-a {
  margin-top: 16px;
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .top-faq-a {
    padding-left: 39px;
  }
}
.top-faq-a ul {
  padding-left: 24px;
  margin-top: 8px;
}
.top-faq-a ul li {
  list-style: disc;
}

/*!
page > top > top-faq
------------------------------
*/
.top-business {
  background-image: url(../img/business-sp.jpg);
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .top-business {
    background-image: url(../img/business-pc.jpg);
  }
}

.top-business-img {
  aspect-ratio: 1746/2097;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top-business-img {
    margin-top: 64px;
    aspect-ratio: 2910/1500;
    background-color: var(--color-white);
    padding: 24px;
  }
}

.top-business-list {
  margin-top: 40px;
}

.top-business-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*!
page > top > top-kv
------------------------------
*/
.top-document-request-body {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top-document-request-body {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .top-document-request-body {
    grid-template-columns: 45% 1fr;
  }
}

.top-document-request-img img {
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .top-document-request-img img {
    border-radius: 16px;
  }
}

.top-document-request-note {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .top-document-request-note {
    font-size: 18px;
  }
}

.top-document-request-recommend {
  margin-top: 24px;
}
.top-document-request-recommend p {
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 4px;
}
.top-document-request-recommend ul {
  padding-left: 24px;
}
.top-document-request-recommend ul li {
  list-style: disc;
  font-weight: bold;
}

.top-document-request-form {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top-document-request-form {
    margin-top: 0;
  }
}

/*!
page > top > top-news
------------------------------
*/
.top-news-body {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .top-news-body {
    margin-top: 44px;
  }
}

.top-news-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/*!
page > contact > contact
------------------------------
*/
.contact-text {
  margin: 0 auto;
  background-color: var(--color-bg);
  padding: 18px 24px;
  border-radius: 12px;
}

.contact-form {
  margin: 24px auto 0;
}

/*!
page > thanks > thanks
------------------------------
*/
.thanks-text {
  text-align: center;
  font-weight: bold;
}
.thanks-text span:nth-child(2) {
  display: block;
}
@media screen and (min-width: 768px) {
  .thanks-text span:nth-child(2) {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .thanks-text span:nth-child(3) {
    display: block;
  }
}

.thanks-spir-text {
  font-weight: bold;
  font-size: 18px;
  margin-top: 40px;
  text-align: center;
}

/*!
page > privacy > privacy
------------------------------
*/
.privacy {
  line-height: 2;
}

.privacy-head-text {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .privacy-head-text {
    margin-bottom: 48px;
  }
}

.privacy-section {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .privacy-section {
    margin-bottom: 48px;
  }
}
.privacy-section > * {
  margin-top: 24px;
}

.privacy-section-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: -12px;
}
@media screen and (min-width: 768px) {
  .privacy-section-title {
    font-size: 24px;
  }
}

.privacy-section-list {
  padding-left: 24px;
}
.privacy-section-list li {
  list-style: disc;
}
.privacy-section-list li > ul {
  padding-left: 24px;
}

/*!
page > seminar > single-seminar
------------------------------
*/
.single-seminar-main {
  overflow: hidden;
}

.single-seminar-table {
  margin-top: 40px;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .single-seminar-table {
    margin-top: 48px;
  }
}

.single-seminar-tbody {
  display: block;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-seminar-tr {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 16px;
}
.single-seminar-tr:first-child {
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .single-seminar-tr {
    grid-template-columns: 140px 1fr;
    gap: 24px;
  }
}

.single-seminar-th {
  font-weight: bold;
}

.single-seminar-table-title {
  font-size: 20px;
  font-weight: bold;
  padding: 12px 16px;
  background-color: var(--color-bg);
  margin-top: 60px !important;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .single-seminar-table-title {
    font-size: 24px;
    margin-top: 75px !important;
  }
}

.single-seminar-state {
  margin-top: 16px;
}

.single-seminar-contents {
  margin-top: 40px;
}

/*!
page > error > error
------------------------------
*/
.error-text {
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .error-text-br02 {
    display: none;
  }
}

.error-button {
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
}

/*!
page > contact > contact
------------------------------
*/
@media screen and (min-width: 1000px) {
  .company {
    display: grid;
    grid-template-columns: 1fr 420px;
    position: relative;
    align-items: start;
  }
}

.company-main-inner {
  width: 90%;
  margin-inline: auto;
  max-width: 800px;
}

.company-main-contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.company-form {
  background-color: var(--color-bg);
  padding: 64px 24px 32px;
}
@media screen and (min-width: 1000px) {
  .company-form {
    position: sticky;
    right: 0;
    top: 80px;
    height: calc(100vh - 80px);
    overflow: scroll;
    padding: 40px 24px 24px;
  }
}

.company-form-thumbnail {
  margin-bottom: 24px;
}

.company-form-text {
  margin-bottom: 24px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.company-table {
  width: 100%;
}

.company-tbody {
  display: block;
}

.company-tr {
  border-bottom: 1px solid var(--color-border-light);
  display: grid;
  grid-template-columns: 1fr;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .company-tr {
    grid-template-columns: 200px 1fr;
  }
}

.company-th,
.company-td {
  display: block;
}

.company-th {
  font-weight: bold;
}

.company-td {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .company-td {
    margin-top: 0;
  }
}
.company-td ul {
  list-style: disc;
  padding-left: 18px;
}
.company-td a {
  text-decoration: underline;
}
@media (hover: hover) {
  .company-td a:hover {
    text-decoration: none;
  }
}

/*!
page > blog > single-blog
------------------------------
*/
.single-blog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1080px) {
  .single-blog {
    grid-template-columns: 1fr 340px;
    gap: 64px;
  }
}

.single-blog-inner {
  overflow: hidden;
}

.single-blog-thumbnail {
  margin-top: 8px;
}

.single-author-list {
  margin-top: 48px !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .single-author-list {
    margin-top: 64px !important;
  }
}

.single-author {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-bg);
}

.single-author-title {
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 24px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .single-author-title {
    text-align-last: left;
  }
}
@media screen and (min-width: 768px) {
  .single-author-title {
    font-size: 20px;
  }
}

.single-author-main {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 500px) {
  .single-author-main {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }
}

.single-author-thumbnail {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  background-color: var(--color-white);
  width: 100px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .single-author-thumbnail {
    width: 100%;
  }
}

.single-author-info {
  text-align: center;
}
@media screen and (min-width: 500px) {
  .single-author-info {
    text-align-last: left;
  }
}

.single-author-name {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .single-author-name {
    font-size: 20px;
  }
}

.single-author-position {
  font-size: 14px;
  opacity: 0.6;
  font-weight: bold;
}
.single-author-position::before {
  content: "/";
  margin: 0 4px;
}

.single-author-prof {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.8;
}/*# sourceMappingURL=style.css.map */