@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #1c2134;
  --color-font-blue: #24477e;
  --color-font-gray: #9aa0ab;
  --color-border: #dedede;
  --color-bg-blue: #17325c;
  --color-bg-blue-hover: #2d4c7c;
  --color-bg-gray: #f2f4f7;
  --color-bg-gray-dark: #001733;
  --color-bg-gray-dark-hover: #203d68;
  --color-bg-gray-light: #f5f5f5;
  --color-line: #18aa2b;
  --color-line-hover: #24b738;
  --color-line-shadow: #267a37;
  --color-line-shadow-hover: #189f2a;
  --color-white: #fff;
  --color-red: #e00c10;
  --color-link: #0063ff;
}

/*!
global > content-size
------------------------------
*/
:root {
  --content-width: 960px;
  --content-width-l: 1200px;
  --header-height: 64px;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: auto;
  }
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", serif;
  --font-family-serif: "Noto Serif JP", 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: inherit;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

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

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;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

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

main {
  display: block;
}

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

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
  margin: 0;
  padding: 0;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

iframe {
  vertical-align: bottom;
}

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

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

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.7;
  font-size: 15px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}

/*!
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: 48px 0 56px;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 64px 0 72px;
  }
}

/*!
component > button
------------------------------
*/
.c-button {
  display: flex;
  align-items: center;
  padding: 12px 36px;
  gap: 10px;
  background-color: var(--color-bg-blue);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
  transition: background-color 0.3s;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 12px 44px;
    gap: 16px;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    background-color: var(--color-bg-blue-hover);
  }
}
.c-button::after {
  --size: 8px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  rotate: 45deg;
}
.c-button.--small {
  padding: 6px 16px;
  font-size: 14px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-button.--small {
    font-size: 16px;
  }
}

.c-button-cta {
  color: var(--color-white);
  font-weight: 600;
  padding: 16px 24px 16px 24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-cta {
    font-size: 20px;
  }
}
.c-button-cta::before {
  --size: 24px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-button-cta::after {
  --size: 10px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  rotate: 45deg;
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
}
.c-button-cta.--line {
  background-color: var(--color-line);
  border-bottom: 5px solid var(--color-line-shadow);
}
@media (any-hover: hover) {
  .c-button-cta.--line:hover {
    background-color: var(--color-line-hover);
    border-bottom: 5px solid var(--color-line-shadow-hover);
  }
}
.c-button-cta.--line::before {
  background-image: url("../img/icon-line.svg");
  margin-right: 0.5em;
}
.c-button-cta.--contact {
  background-color: var(--color-bg-blue);
  border-bottom: 5px solid var(--color-bg-gray-dark);
}
@media (any-hover: hover) {
  .c-button-cta.--contact:hover {
    background-color: var(--color-bg-blue-hover);
    border-bottom: 5px solid var(--color-bg-gray-dark-hover);
  }
}
.c-button-cta.--contact::before {
  background-image: url("../img/icon-mail.svg");
  margin-right: 0.4em;
  translate: 0 1px;
}
.c-button-cta.--small {
  font-size: 15px;
  padding: 10px 16px 10px 22px;
  justify-content: flex-start;
}
.c-button-cta.--small::before {
  --size: 20px;
}
.c-button-cta.--small::after {
  --size: 8px;
  right: 20px;
}

/*!
component > title
------------------------------
*/
/*!
component > blog-author-info
------------------------------
*/
.c-member-info {
  padding: 20px;
  border: 1px solid var(--color-border);
  --size: 64px;
  display: grid;
  grid-template-columns: var(--size) 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-member-info {
    --size: 84px;
  }
}

.c-member-info-icon {
  grid-column: 1/2;
}
.c-member-info-icon img {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  overflow: hidden;
}

.c-member-info-details {
  grid-column: 2/3;
  align-self: center;
}

.c-member-info-name {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.c-member-info-position {
  color: var(--color-font-gray);
  font-size: 14px;
  font-weight: 500;
}

.c-member-info-profile {
  grid-column: 1/-1;
  font-weight: 500;
  line-height: 1.6;
}
.c-member-info-profile ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-member-info-profile li {
  list-style: disc;
}

.c-member-info-simple {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-member-info-simple-type {
  font-weight: 500;
}

.c-member-info-simple-icon img {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.c-member-info-simple-name {
  font-weight: 600;
}

/*!
component > category-filter
------------------------------
*/
.c-category-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-category-filter {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

.c-category-title {
  font-weight: 500;
  font-size: 16px;
}

.c-category-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-category-list {
    gap: 12px;
  }
}

.c-category-link {
  display: inline-block;
  padding: 4px 24px;
  border-radius: 9999px;
  background-color: var(--color-bg-gray-light);
  color: var(--color-font-gray);
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s;
}
.c-category-link.current {
  background-color: var(--color-bg-blue);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .c-category-link:hover {
    background-color: var(--color-bg-blue);
    color: var(--color-white);
  }
}

/*!
component > news-post
------------------------------
*/
.c-news-post {
  border-bottom: 1px solid var(--color-border);
}
.c-news-post:first-child {
  border-top: 1px solid var(--color-border);
}

.c-news-post-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .c-news-post-link {
    padding: 20px;
  }
}
.c-news-post-link .c-post-title {
  transition: color 0.3s;
  color: var(--color-font-base);
}
@media (any-hover: hover) {
  .c-news-post-link:hover .c-post-title {
    color: var(--color-font-blue);
  }
}

.c-news-post-title {
  grid-column: 1/-1;
}

/*!
component > service-post
------------------------------
*/
@media screen and (min-width: 768px) {
  .c-service-post {
    --arrow-size: 46px;
  }
}

.c-service-post-content {
  padding: 20px 16px;
  border: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .c-service-post-content {
    padding: 32px calc(28px + var(--arrow-size)) 28px 28px;
  }
}

.c-service-post-link {
  display: block;
  position: relative;
  transition: background-color 0.3s;
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .c-service-post-link:hover {
    background-color: var(--color-bg-gray-light);
  }
}

.c-service-post-target {
  display: inline-block;
  margin-bottom: 6px;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 4px 8px;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-service-post-target {
    font-size: 16px;
  }
}

.c-service-post-title {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-service-post-title {
    font-size: 24px;
  }
}

.c-service-post-overview {
  margin-top: 8px;
  font-weight: 500;
}

.c-service-post-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 16px;
  gap: 10px;
  background-color: var(--color-bg-blue);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-service-post-more {
    font-size: 16px;
    width: var(--arrow-size);
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.c-service-post-more::after {
  --size: 8px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .c-service-post-more::after {
    --size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-service-post-more span {
    display: none;
  }
}

/*!
component > voice-card
------------------------------
*/
.c-voice-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px 64px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-voice-card {
    padding: 24px 20px 72px;
  }
}
.c-voice-card:after {
  --size: 30px;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-bg-blue);
  border-radius: 2px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}
@media screen and (min-width: 768px) {
  .c-voice-card:after {
    --size: 34px;
    bottom: 20px;
    right: 20px;
  }
}
.c-voice-card::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 1;
  bottom: 27px;
  right: 28px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .c-voice-card::before {
    bottom: 32px;
    right: 33px;
  }
}
@media (any-hover: hover) {
  .c-voice-card:hover {
    background-color: var(--color-bg-gray-light);
  }
}

.c-voice-card-title {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-voice-card-title {
    font-size: 22px;
  }
}

.c-voice-card-comment {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-voice-card-comment {
    line-height: 1.7;
  }
}

/*!
component > page-kv
------------------------------
*/
.c-page-kv {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .c-page-kv {
    padding: 72px 0;
  }
}
.c-page-kv::before {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  content: "";
  width: 46%;
  height: 100%;
  background-image: url(../img/page-kv.jpg);
  background-position: bottom;
  background-size: cover;
}
.c-page-kv::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  margin-inline: auto;
  background: linear-gradient(90deg, #17325c 0%, #3f5d8b 57.56%, rgba(63, 93, 139, 0) 71.94%), linear-gradient(0deg, rgba(0, 36, 84, 0.23), rgba(0, 36, 84, 0.23));
}

.c-page-kv-title {
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-page-kv-title {
    font-size: 48px;
  }
}

.c-page-kv-head-text {
  margin-top: 16px;
  color: var(--color-white);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-page-kv-head-text {
    margin-top: 32px;
  }
}

.c-page-kv-service-name {
  margin-top: 18px;
  color: var(--color-white);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-page-kv-service-name {
    font-size: 20px;
  }
}

/*!
component > title
------------------------------
*/
.contact-form {
  --color-primary: #1e5aff;
  --color-outline-focus-inside: #1e5aff;
  --color-outline-focus-outside: #dfe8ff;
  --base-line-height: 1.7;
  --base-font-size: 16px;
}

.c-form-text {
  padding: 12px;
  box-shadow: 0 0 0 1px var(--color-border) inset;
  background-color: var(--color-bg-gray-light);
  outline: 0;
  width: 100%;
  font-size: 16px;
}

.c-form-text::placeholder {
  opacity: 0.2;
}

.c-form-text:focus {
  box-shadow: 0 0 0 1px var(--color-outline-focus-inside) inset, 0 0 0 4px var(--color-outline-focus-outside);
}

.c-form-text--textarea {
  min-height: 200px;
  field-sizing: content;
}

.c-form-option {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.c-form-option .wpcf7-list-item-label {
  --radio-checkbox-size: 20px;
  display: inline-flex;
  width: fit-content;
  font-weight: 500;
  position: relative;
  gap: 6px;
  cursor: pointer;
}
.c-form-option .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: var(--radio-checkbox-size);
  height: var(--radio-checkbox-size);
  box-shadow: 0 0 0 1px var(--color-border) inset;
  flex-shrink: 0;
  translate: 0 calc((var(--base-font-size) * var(--base-line-height) - var(--radio-checkbox-size)) / 2);
}
.c-form-option .wpcf7-list-item {
  margin: 0;
}

/* radio固有のスタイル */
.c-form-option--radio input:checked + .wpcf7-list-item-label::before {
  background-color: var(--color-white);
  border: calc(var(--radio-checkbox-size) / 4) solid var(--color-primary);
  box-shadow: 0 0 0 1px transparent inset;
}
.c-form-option--radio .wpcf7-list-item-label::before {
  border-radius: 50%;
}

/* checkbox固有のスタイル */
.c-form-option--checkbox input:checked + .wpcf7-list-item-label::before {
  background-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary) inset;
}
.c-form-option--checkbox input:checked + .wpcf7-list-item-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: var(--radio-checkbox-size);
  height: var(--radio-checkbox-size);
  left: 0;
  top: calc((var(--base-font-size) * var(--base-line-height) - var(--radio-checkbox-size)) / 2);
  background-image: url("../img/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-form-option--checkbox .wpcf7-list-item-label::before {
  border-radius: 4px;
}

/* フォーカス時 */
.c-form-option input:focus-visible + .wpcf7-list-item-label {
  color: var(--color-primary);
}
.c-form-option input:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 1px var(--color-outline-focus-inside) inset, 0 0 0 3px var(--color-outline-focus-outside);
}
.c-form-option input:checked:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 0 transparent inset, 0 0 0 3px var(--color-outline-focus-outside);
}

/*!
component > cta
------------------------------
*/
.c-cta {
  padding: 48px 0;
  text-align: center;
  background-image: url("../img/cta-bg-sp.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding: 64px 0;
    background-image: url("../img/cta-bg.jpg");
  }
}

.c-cta-title {
  line-height: 1.5;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-family-serif);
}
@media screen and (min-width: 768px) {
  .c-cta-title {
    font-size: 32px;
    line-height: 1.7;
  }
}
.c-cta-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-cta-title span {
    display: inline;
  }
}

.c-cta-text {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 12px;
  font-family: var(--font-family-serif);
}
.c-cta-text > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-cta-text > span {
    display: inline;
  }
}

.c-cta-text-bold {
  background-color: var(--color-white);
  color: var(--color-font-blue);
  padding: 0 4px;
  display: inline-block;
  margin-inline: 4px;
}

.c-cta-button-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  max-width: 776px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-cta-button-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*!
component > post
------------------------------
*/
.c-post-link {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
@media (any-hover: hover) {
  .c-post-link:hover .c-post-thumbnail img {
    transform: scale(1.05);
  }
}

.c-post-thumbnail {
  overflow: hidden;
  margin-bottom: 6px;
}
.c-post-thumbnail img {
  transition: transform 0.3s;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.c-post-no-thumbnail {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  background-color: #efefef;
}
.c-post-no-thumbnail p {
  opacity: 0.3;
  font-weight: bold;
  font-size: 20px;
}

.c-post-info {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
}

.c-post-date {
  font-weight: 500;
}

.c-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c-post-category {
  display: inline-block;
  padding: 1px 6px;
  background-color: #e5eff7;
  color: var(--color-font-blue);
  font-weight: 500;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-post-category {
    font-size: 14px;
  }
}

.c-post-title {
  color: var(--color-font-blue);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-post-title {
    font-size: 20px;
  }
}

/*!
component > share
------------------------------
*/
.c-share {
  background-color: var(--color-bg-gray);
  margin-top: 40px;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .c-share {
    margin-top: 48px;
    padding: 32px 40px;
  }
}
@media screen and (min-width: 1080px) {
  .c-share {
    padding: 32px 64px;
  }
}

.c-share-title {
  color: var(--color-font-blue);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-share-title {
    font-size: 22px;
  }
}

.c-share-buttons {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6px 12px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .c-share-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-share-button {
  text-align: center;
  padding: 12px 8px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.c-share-button.--x {
  background-color: #0f1419;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .c-share-button.--x:hover {
    background-color: #313a42;
  }
}
.c-share-button.--facebook {
  background-color: #4267b2;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .c-share-button.--facebook:hover {
    background-color: #5b80cb;
  }
}
.c-share-button.--copy {
  background-color: #d1d5d8;
}
@media (any-hover: hover) {
  .c-share-button.--copy:hover {
    background-color: #e3e6e8;
  }
}

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

.c-single-head {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 32px;
  margin-bottom: 40px;
}

.c-single-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-single-title {
  margin-top: 8px;
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .c-single-title {
    font-size: 36px;
  }
}

.c-single-member-info-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-single-member-info-simple {
    gap: 8px 32px;
  }
}

.c-single-contents {
  font-size: 16px;
}
.c-single-contents .wp-block-post-content {
  font-size: 16px;
}
.c-single-contents .wp-block-post-content > * {
  margin-top: 24px;
}
.c-single-contents p {
  line-height: 2;
}
.c-single-contents h1 {
  font-size: 32px;
  font-weight: 600;
}
.c-single-contents h2 {
  margin-top: 48px !important;
  padding: 8px 16px;
  border-left: 5px solid var(--color-bg-blue);
  background: var(--color-bg-gray);
  color: var(--color-font-blue);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-single-contents h2 {
    font-size: 24px;
  }
}
.c-single-contents h3 {
  border-left: 5px solid var(--color-bg-blue);
  padding: 4px 16px;
  color: var(--color-font-blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-single-contents h3 {
    font-size: 20px;
  }
}
.c-single-contents h4 {
  color: var(--color-font-blue);
  padding: 4px 8px;
  background: var(--color-bg-gray-light);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-single-contents h4 {
    font-size: 18px;
  }
}
.c-single-contents ul {
  list-style: disc;
  padding-left: 24px;
}
.c-single-contents ul li::marker {
  color: var(--color-bg-blue);
}
.c-single-contents ol {
  list-style: decimal-leading-zero;
  padding-left: 28px;
}
.c-single-contents ol li::marker {
  color: var(--color-bg-blue);
}
.c-single-contents a {
  text-decoration: underline;
  color: var(--color-link);
  word-break: break-all;
}
@media (any-hover: hover) {
  .c-single-contents a:hover {
    text-decoration: none;
  }
}
.c-single-contents strong {
  font-weight: 600;
}
.c-single-contents em {
  font-style: italic;
}
.c-single-contents blockquote {
  background-color: var(--color-bg-gray-light);
  padding: 16px;
  position: relative;
  font-weight: 500;
  font-style: italic;
}
.c-single-contents blockquote::before {
  --size: 40px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  background-image: url("../img/icon-blockquote.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 9px;
  top: 12px;
  opacity: 0.15;
}
.c-single-contents summary {
  position: relative;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 12px 4px 32px;
  border-radius: 4px;
  background-color: var(--color-bg-gray-light);
}
.c-single-contents summary::before {
  position: absolute;
  left: 12px;
  top: 13px;
  content: "";
  display: inline-block;
  background-color: var(--color-bg-blue);
  width: 10px;
  height: 12px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.c-single-contents details[open] summary::before {
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  width: 11px;
  height: 10px;
}
.c-single-contents details[open] summary + * {
  margin-top: 6px;
  padding-left: 10px;
}
.c-single-contents figure {
  border-bottom: none !important;
  margin: 24px 0 0;
}
.c-single-contents .wp-block-table {
  overflow: scroll;
  padding-bottom: 12px;
  margin-bottom: -8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-single-contents .wp-block-table::-webkit-scrollbar {
  display: none;
}
.c-single-contents table {
  border: none;
  min-width: 500px;
}
.c-single-contents table + figcaption {
  font-style: italic;
  opacity: 0.6;
  text-align: center;
  margin-top: 4px;
}
.c-single-contents thead,
.c-single-contents tfoot {
  border: none !important;
}
.c-single-contents th,
.c-single-contents td {
  border: 1px solid var(--color-border) !important;
  background-color: var(--color-bg-gray-light);
}
.c-single-contents thead th,
.c-single-contents thead td,
.c-single-contents tfoot th,
.c-single-contents tfoot td {
  background-color: var(--color-bg-blue);
  color: var(--color-white);
  font-weight: 600;
}
.c-single-contents thead th:first-child,
.c-single-contents thead td:first-child,
.c-single-contents tfoot th:first-child,
.c-single-contents tfoot td:first-child {
  border-left: 1px solid var(--color-bg-blue) !important;
}
.c-single-contents thead th:last-child,
.c-single-contents thead td:last-child,
.c-single-contents tfoot th:last-child,
.c-single-contents tfoot td:last-child {
  border-right: 1px solid var(--color-bg-blue) !important;
}
.c-single-contents .wp-element-button,
.c-single-contents .wp-block-button a {
  padding: 12px 24px;
  color: var(--color-white);
  background-color: var(--color-bg-blue);
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  transition: background-color 0.3s;
}
.c-single-contents .wp-element-button::after,
.c-single-contents .wp-block-button a::after {
  --size: 8px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  rotate: 45deg;
  translate: 0 1px;
}
@media (any-hover: hover) {
  .c-single-contents .wp-element-button:hover,
  .c-single-contents .wp-block-button a:hover {
    background-color: var(--color-bg-blue-hover);
  }
}
.c-single-contents .wp-block-embed-twitter {
  padding: 0 2px;
}
.c-single-contents .wp-block-embed-twitter .twitter-tweet {
  margin: 0 auto !important;
}
.c-single-contents .wp-block-embed-twitter iframe {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.c-single-contents .wp-block-embed-youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.c-single-contents iframe[src^="https://www.google.com/maps/embed"] {
  max-width: 100%;
  height: auto;
  aspect-ratio: 600/450;
}
.c-single-contents #ez-toc-container {
  background-color: var(--color-bg-gray-light);
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin: 0;
  padding: 0;
  margin-top: 48px;
}
.c-single-contents #ez-toc-container.toc_close nav {
  padding: 0;
}
.c-single-contents #ez-toc-container nav {
  padding: 16px 24px 20px 24px;
}
.c-single-contents #ez-toc-container .ez-toc-title-container {
  display: block;
  padding: 8px 24px;
  background-color: var(--color-bg-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-single-contents #ez-toc-container .ez-toc-title {
  font-weight: 600;
  color: var(--color-white);
  cursor: auto !important;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-single-contents #ez-toc-container .ez-toc-title::before {
  --size: 27px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  background-image: url("../img/icon-toc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  translate: 0 1px;
}
.c-single-contents #ez-toc-container .ez-toc-js-icon-con {
  display: block;
  border: none;
  border-radius: 0;
  width: 40px;
  height: 32px;
}
.c-single-contents #ez-toc-container .ez-toc-js-icon-con svg {
  opacity: 0;
}
.c-single-contents #ez-toc-container .ez-toc-pull-right {
  display: block;
}
.c-single-contents #ez-toc-container ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-single-contents #ez-toc-container .ez-toc-list-level-1 {
  list-style: decimal-leading-zero !important;
}
.c-single-contents #ez-toc-container .ez-toc-list-level-1 > li {
  list-style: decimal-leading-zero !important;
  overflow: visible !important;
}
.c-single-contents #ez-toc-container .ez-toc-list-level-1 > li::marker {
  color: var(--color-bg-blue);
}
.c-single-contents #ez-toc-container li > ul {
  margin-top: 8px;
  margin-left: 32px;
}
.c-single-contents #ez-toc-container a {
  font-size: 16px;
  color: var(--color-font-base) !important;
  font-weight: 600;
  display: block;
}
@media (any-hover: hover) {
  .c-single-contents #ez-toc-container a:hover {
    text-decoration: none;
    color: var(--color-font-blue) !important;
  }
}
.c-single-contents > * {
  margin-top: 24px;
}

.c-single-share {
  margin-top: 24px;
}

.c-single-member-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-single-member-info {
    margin-top: 48px;
  }
}

/*!
component > banner
------------------------------
*/
.c-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.c-banner li:last-child {
  position: sticky;
  top: 160px;
}

/*!
component > problem
------------------------------
*/
.c-problem-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-problem-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .c-problem-list {
    gap: 16px 40px;
  }
}

.c-problem-item {
  padding: 8px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--color-border);
  color: var(--color-font-blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-problem-item {
    font-size: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .c-problem-item {
    padding: 16px;
  }
}

/*!
component > banner
------------------------------
*/
.c-pagination .nav-links {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-pagination .nav-links {
    margin-top: 48px;
  }
}

.c-pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 14px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-pagination .page-numbers {
    width: 40px;
    height: 40px;
  }
}
@media (any-hover: hover) {
  .c-pagination .page-numbers:hover {
    background-color: var(--color-bg-blue);
    color: var(--color-white);
    border: 1px solid var(--color-bg-blue);
  }
  .c-pagination .page-numbers:hover.next::before, .c-pagination .page-numbers:hover.prev::before {
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
  }
}

.c-pagination .page-numbers:not(:first-child) {
  margin-left: 6px;
}

.c-pagination .page-numbers.prev {
  position: relative;
}

.c-pagination .page-numbers.prev::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-font-base);
  border-right: 1px solid var(--color-font-base);
  transform: rotate(-135deg);
}

.c-pagination .page-numbers.next {
  position: relative;
}

.c-pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-font-base);
  border-right: 1px solid var(--color-font-base);
  transform: rotate(45deg);
}

.c-pagination .page-numbers.current {
  background-color: var(--color-bg-blue);
  color: var(--color-white);
  border: 1px solid var(--color-bg-blue);
}

/*!
layout > container
------------------------------
*/
.l-container {
  width: min(90%, var(--content-width));
  margin-inline: auto;
}

.l-container-l {
  width: min(90%, var(--content-width-l));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: var(--z-index-header);
  height: var(--header-height);
  padding-left: 6px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 0;
    padding-top: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
  }
}

.l-header-logo {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    grid-column: 1/2;
    margin-left: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-logo {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-left: 40px;
  }
}
.l-header-logo img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .l-header-logo img {
    width: 244px;
  }
}
.l-header-logo span {
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (min-width: 1080px) {
  .l-header-logo span {
    margin-left: 0;
    font-size: 12px;
  }
}

.l-header-pc-only-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-pc-only-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 371px;
    grid-column: 2/3;
    margin-right: 24px;
    margin-left: auto;
    gap: 12px;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-pc-only-menu {
    margin-right: 40px;
  }
}

.l-header-menu {
  top: var(--header-height);
  width: 100%;
  height: calc(100% - var(--header-height));
  background-color: rgba(0, 0, 0, 0.6);
  overflow: visible;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    position: static;
    display: block;
    opacity: 1 !important;
    width: auto;
    height: auto;
    background-color: transparent;
    grid-column: 1/3;
    margin-top: 12px;
  }
}
.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-nav {
  width: 100%;
  max-height: 100%;
  background-color: #fff;
  padding: 14px 0;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .l-header-menu-nav {
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
    color: var(--color-font-base);
    overflow: visible;
    border-top: 1px solid var(--color-border);
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-header-menu-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1280px;
    margin-inline: auto;
    padding: 0 40px;
  }
}

.l-header-menu-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item::before {
    content: "";
    display: block;
    width: 1px;
    height: 40%;
    background-color: var(--color-border);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header-menu-item:nth-last-child(3)::after {
    content: "";
    display: block;
    width: 1px;
    height: 40%;
    background-color: var(--color-border);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.l-header-menu-item.--line, .l-header-menu-item.--contact {
  width: 95%;
  margin-inline: auto;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item.--line, .l-header-menu-item.--contact {
    display: none;
  }
}
.l-header-menu-item.--contact {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item.--sp {
    display: none;
  }
}
.l-header-menu-item.--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item.--pc {
    display: block;
  }
}

.l-header-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 8px 20px;
  transition: color 0.3s;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header-menu-link {
    padding: 0;
    display: block;
    text-align: center;
    padding: 12px;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .l-header-menu-link:hover {
    color: var(--color-font-blue);
  }
  .l-header-menu-link:hover span::after {
    opacity: 1;
  }
}
.l-header-menu-link span::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--color-font-blue);
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-header-menu-link:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-font-base);
  border-right: 2px solid var(--color-font-base);
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .l-header-menu-link:after {
    display: none;
  }
}
.l-header-menu-link.--line, .l-header-menu-link.--contact {
  color: var(--color-white);
  width: calc(100% - 40px);
  margin-inline: auto;
  padding: 14px 16px;
  font-size: 18px;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .l-header-menu-link.--line, .l-header-menu-link.--contact {
    display: none;
  }
}
.l-header-menu-link.--line:after, .l-header-menu-link.--contact:after {
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  margin-left: auto;
}
.l-header-menu-link.--line::before, .l-header-menu-link.--contact::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
.l-header-menu-link.--line {
  background-color: var(--color-line);
  border-bottom: 5px solid var(--color-line-shadow);
}
.l-header-menu-link.--line::before {
  background-image: url("../img/icon-line.svg");
}
.l-header-menu-link.--contact {
  background-color: var(--color-bg-blue);
  border-bottom: 5px solid var(--color-bg-gray-dark);
}
.l-header-menu-link.--contact::before {
  background-image: url("../img/icon-mail.svg");
}

.l-header-menu-link--service {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 8px;
}
.l-header-menu-link--service::before {
  content: "";
  display: block;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 12px;
  height: 6px;
  background-color: var(--color-font-blue);
}
.l-header-menu-link--service::after {
  display: none;
}

/* サブメニュー */
.l-header-menu-sub-list {
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .l-header-menu-sub-list {
    transform: scale(0.95);
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    background-color: var(--color-white);
    min-width: 100%;
    padding: 10px 0;
  }
}

.l-header-menu-sub-link {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 8px 20px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-sub-link {
    padding: 5px 16px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .l-header-menu-sub-link:hover {
    background-color: var(--color-bg-gray);
  }
}

/* ハンバーガーボタン */
.l-header-menu-open-button,
.l-header-menu-close-button {
  width: var(--header-height);
  height: calc(var(--header-height) - 1px);
  display: grid;
  place-items: center;
  background-color: var(--color-bg-gray);
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    display: none;
  }
}
.l-header-menu-open-button img,
.l-header-menu-close-button img {
  width: 60%;
}

.l-header-menu-close-button {
  position: absolute;
  right: 0;
  top: calc(var(--header-height) * -1);
  outline: none;
  z-index: var(--z-index-header);
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 32px 5% 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (min-width: 1080px) {
  .l-footer {
    padding: 24px 40px;
    grid-template-columns: auto 1fr;
    gap: 0;
  }
}

.l-footer-logo-wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1200px) {
  .l-footer-logo-wrap {
    grid-column: 1/2;
    flex-direction: row;
    align-items: center;
  }
}

.l-footer-logo {
  max-width: 248px;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .l-footer-logo {
    margin: 0;
    max-width: 244px;
  }
}

.l-footer-logo-text {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.l-footer-menu-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .l-footer-menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-menu-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 24px;
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-menu-list {
    gap: 2px 28px;
  }
}

.l-footer-menu-item {
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 1080px) {
  .l-footer-menu-item {
    border-bottom: none;
  }
}
.l-footer-menu-item:nth-child(1) {
  border-top: 1px solid var(--color-border);
}
@media screen and (min-width: 1080px) {
  .l-footer-menu-item:nth-child(1) {
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-menu-item:nth-child(2) {
    border-top: 1px solid var(--color-border);
  }
}
@media screen and (min-width: 768px) and (min-width: 1080px) {
  .l-footer-menu-item:nth-child(2) {
    border-top: none;
  }
}

.l-footer-menu-link {
  display: block;
  padding: 12px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 1080px) {
  .l-footer-menu-link {
    padding: 0;
  }
}
@media (any-hover: hover) {
  .l-footer-menu-link:hover {
    color: var(--color-font-blue);
  }
}
.l-footer-menu-link::after {
  --size: 8px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color-font-gray);
  border-right: 2px solid var(--color-font-gray);
  rotate: 45deg;
}
@media screen and (min-width: 1080px) {
  .l-footer-menu-link::after {
    display: none;
  }
}

.l-footer-menu-list02 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .l-footer-menu-list02 {
    margin-top: 24px;
    justify-content: flex-end;
    grid-column: 1/-1;
  }
}

.l-footer-menu-link02 {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-font-gray);
}

.l-footer-copyright {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-font-gray);
}
@media screen and (min-width: 1080px) {
  .l-footer-copyright {
    margin-top: 12px;
    text-align: right;
    grid-column: 1/-1;
  }
}

/*!
layout > news
------------------------------
*/
.l-main-sidebar {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l-main-sidebar {
    grid-template-columns: 1fr 320px;
  }
}
@media screen and (min-width: 1080px) {
  .l-main-sidebar {
    gap: 64px;
  }
}
@media screen and (min-width: 768px) {
  .l-main-sidebar.--blog-single {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .l-main-sidebar.--blog-single {
    grid-template-columns: 1fr 320px;
  }
}

/*!
page > top > top-common
------------------------------
*/
.top-title {
  color: var(--color-font-blue);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-title {
    font-size: 36px;
  }
}
.top-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-title span {
    display: inline;
  }
}

.top-title-small {
  text-align: center;
  color: var(--color-font-blue);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-title-small {
    font-size: 28px;
  }
}
.top-title-small span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-title-small span {
    display: inline;
  }
}

.top-head-text {
  text-align: center;
  font-weight: 500;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .top-head-text {
    margin-top: 20px;
  }
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  background-image: url("../img/top/top-kv-bg-sp.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-kv {
    background-image: url("../img/top/top-kv-bg.jpg");
  }
}

.top-kv-people {
  position: absolute;
  bottom: 0;
  right: -65px;
}
.top-kv-people img {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .top-kv-people img {
    height: 100%;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-people {
    top: 0;
    bottom: auto;
    right: -4%;
    height: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-people {
    right: calc((100% - var(--content-width-l)) / 2 + 40px);
  }
}

.top-kv-inner {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-kv-inner {
    padding: 96px 0 72px;
  }
}

.top-kv-text {
  font-family: var(--font-family-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 6px;
}
@media screen and (min-width: 768px) {
  .top-kv-text {
    font-size: 22px;
  }
}

.top-kv-text02 {
  font-size: 35px;
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1.4;
  margin-top: 4px;
  margin-left: -8px;
}
@media screen and (min-width: 768px) {
  .top-kv-text02 {
    font-size: 54px;
  }
}
.top-kv-text02 span {
  display: block;
}

.top-kv-text03 {
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.9px;
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.top-kv-text03 span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-kv-text03 span {
    display: inline;
  }
}

.top-kv-button-list {
  max-width: 779px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .top-kv-button-list {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-kv-bottom {
  padding: 24px 0 32px;
}

.top-kv-bottom-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px 34px;
  margin-top: 20px;
  max-width: 900px;
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .top-kv-bottom-list {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-kv-developer-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-kv-developer-logo-list {
    gap: 24px 40px;
  }
}

.top-kv-developer-logo img {
  height: 50px;
  width: auto;
}

.top-kv-media {
  margin-top: 28px;
  padding: 24px 20px;
  background-image: url(../img/top/kv-media-bg-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .top-kv-media {
    margin-top: 36px;
    background-image: url(../img/top/kv-media-bg.jpg);
  }
}

.top-kv-media-title {
  color: var(--color-font-blue);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-kv-media-title {
    font-size: 24px;
  }
}
.top-kv-media-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-kv-media-title span {
    display: inline;
  }
}

.top-kv-media-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin-top: 24px;
}

.top-kv-media-logo img {
  height: 35px;
  width: auto;
}

/*!
page > top > top-problem
------------------------------
*/
.top-problem {
  padding: 48px 0;
  background-image: url(../img/top/top-problem-bg-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .top-problem {
    padding: 56px 0 72px;
    background-image: url(../img/top/top-problem-bg.jpg);
  }
}

.top-problem-list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-problem-list {
    margin-top: 48px;
  }
}

/*!
page > top > top-reason
------------------------------
*/
.top-reason {
  padding: 48px 0;
  background-color: var(--color-bg-gray);
}
@media screen and (min-width: 768px) {
  .top-reason {
    padding: 56px 0 72px;
  }
}

.top-reason-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px 16px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-reason-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .top-reason-list {
    gap: 48px 24px;
  }
}

.top-reason-item-img {
  position: relative;
}

.top-reason-item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 8px;
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 1080px) {
  .top-reason-item-title {
    padding: 20px 24px;
    font-size: 22px;
  }
}
.top-reason-item-title span {
  display: block;
}

.top-reason-item-text {
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-reason-item-text {
    margin-top: 16px;
  }
}

/*!
page > top > top-video
------------------------------
*/
.top-video {
  padding: 48px 0 56px;
  border-radius: 4px;
  background-color: var(--color-bg-blue);
}
@media screen and (min-width: 768px) {
  .top-video {
    padding: 64px 0 72px;
  }
}

.top-video-inner {
  display: grid;
}
@media screen and (min-width: 768px) {
  .top-video-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 52px;
  }
}

.top-video-title {
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-video-title {
    font-size: 36px;
    text-align: left;
  }
}
.top-video-title span {
  display: block;
}

.top-video-text {
  margin-top: 16px;
  color: var(--color-white);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-video-text {
    margin-top: 20px;
    text-align-last: left;
  }
}

.top-video-video {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-video-video {
    margin-top: 0;
  }
}
.top-video-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 4px;
}

/*!
page > top > top-video-voice
------------------------------
*/
.top-video-voice {
  padding: 48px 0;
  background-color: var(--color-bg-gray);
}
@media screen and (min-width: 768px) {
  .top-video-voice {
    padding: 56px 0;
  }
}

.top-video-voice-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-video-voice-list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 24px;
  }
}

.top-video-voice-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 4px;
}

.top-video-voice-title {
  margin-top: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 1080px) {
  .top-video-voice-title {
    font-size: 18px;
  }
}

/*!
page > top > top-voice
------------------------------
*/
.top-voice {
  padding: 48px 0 56px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-voice {
    padding: 64px 0 72px;
  }
}

.top-voice-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .top-voice-inner {
    gap: 48px;
  }
}

.top-voice-list-wrap {
  --button-size: 50px;
  position: relative;
  margin-inline: auto;
  width: calc(100% - var(--button-size) * 2 - 2px);
  max-width: calc(var(--content-width-l) + var(--button-size) * 2);
}

.splide__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  padding: 8px;
  width: var(--button-size);
  aspect-ratio: 1/1;
}
.splide__arrow::after {
  --size: 14px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-top: 2px solid var(--color-font-blue);
  border-right: 2px solid var(--color-font-blue);
}
.splide__arrow--prev {
  left: calc(var(--button-size) * -1);
}
.splide__arrow--prev::after {
  rotate: -135deg;
}
.splide__arrow--next {
  right: calc(var(--button-size) * -1);
}
.splide__arrow--next::after {
  rotate: 45deg;
}

.splide__pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .splide__pagination {
    margin-top: 32px;
  }
}

.splide__pagination__page {
  --size: 10px;
  background-color: #eaeaea;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
}
.splide__pagination__page.is-active {
  background-color: var(--color-font-blue);
}

.top-voice-button {
  display: grid;
  place-items: center;
}

/*!
page > top > top-member
------------------------------
*/
.top-member {
  padding: 48px 0 56px;
}
@media screen and (min-width: 768px) {
  .top-member {
    padding: 64px 0 72px;
  }
}

.top-member-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-member-inner {
    gap: 48px;
  }
}

.top-member-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.top-member-list > *:nth-child(4) {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-member-list > *:nth-child(4) {
    display: grid;
  }
}
@media screen and (min-width: 1080px) {
  .top-member-list > *:nth-child(4) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .top-member-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .top-member-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-member-post {
  padding: 20px;
  border: 1px solid var(--color-border);
}

.top-member-post-inner {
  --size: 64px;
  display: grid;
  grid-template-columns: var(--size) 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .top-member-post-inner {
    --size: 84px;
  }
}

.top-member-post-icon {
  grid-column: 1/2;
}
.top-member-post-icon img {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  overflow: hidden;
}

.top-member-post-info {
  grid-column: 2/3;
  align-self: center;
}

.top-member-post-name {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.top-member-post-position {
  color: var(--color-font-gray);
  font-size: 14px;
  font-weight: 500;
}

.top-member-post-profile {
  grid-column: 1/-1;
  font-weight: 500;
  line-height: 1.6;
}

/*!
page > top > top-flow
------------------------------
*/
.top-flow {
  padding: 48px 0 56px;
  background-color: var(--color-bg-gray);
}
@media screen and (min-width: 768px) {
  .top-flow {
    padding: 64px 0 72px;
  }
}

@media screen and (min-width: 768px) {
  .top-flow-inner {
    display: grid;
    place-content: center;
  }
}

.top-flow-list {
  display: grid;
  gap: 27px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-flow-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 43px;
    width: fit-content;
    margin-top: 48px;
  }
}

.top-flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .top-flow-item {
    grid-template-columns: auto;
    grid-template-rows: auto 1fr;
    justify-items: center;
    align-items: flex-start;
    min-width: 95px;
    min-height: 360px;
  }
}
.top-flow-item.--blue {
  background-color: #e9eff7;
}
.top-flow-item.--green {
  background-color: #e9f7f0;
}
.top-flow-item:not(:last-child)::after {
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 9px;
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 20px;
  height: 11px;
  background-color: var(--color-font-blue);
}
@media screen and (min-width: 768px) {
  .top-flow-item:not(:last-child)::after {
    left: 100%;
    top: 50%;
    translate: 17px -50%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 11px;
    height: 20px;
  }
}

.top-flow-item-number {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-flow-item-number {
    font-size: 28px;
  }
}

.top-flow-item-text {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-flow-item-text {
    font-size: 20px;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
  }
}

/*!
page > top > top-faq
------------------------------
*/
.top-faq {
  padding: 48px 0 56px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .top-faq {
    padding: 64px 0 72px;
  }
}

.top-faq-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-faq-list {
    margin-top: 48px;
  }
}

.top-faq-question {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  background-color: var(--color-bg-blue);
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-faq-question {
    gap: 16px;
    padding: 8px 16px;
    font-size: 18px;
  }
}
.top-faq-question::before {
  content: "Q.";
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .top-faq-question::before {
    font-size: 24px;
  }
}

.top-faq-answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  padding: 8px 16px 16px;
  border: 1px solid var(--color-border);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-faq-answer {
    padding: 12px 16px 20px;
  }
}
.top-faq-answer::before {
  content: "A.";
  margin-top: -6px;
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .top-faq-answer::before {
    margin-top: -8px;
    font-size: 24px;
  }
}

/*!
page > top > top-service
------------------------------
*/
.top-service {
  padding: 48px 0 56px;
  background-image: url(../img/service-bg-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .top-service {
    padding: 64px 0 72px;
    background-image: url(../img/service-bg.jpg);
  }
}

.top-service-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .top-service-list {
    margin-top: 48px;
  }
}

/*!
page > top > top-media
------------------------------
*/
.top-media {
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .top-media {
    padding: 56px 0;
  }
}

.top-media-list {
  border: 1px solid var(--color-border);
  padding: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .top-media-list {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    padding: 40px;
  }
}

.top-media-item-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-block: 24px;
}
@media screen and (min-width: 768px) {
  .top-media-item-line {
    width: 1px;
    height: 185px;
    margin-block: 0;
  }
}

.top-media-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .top-media-item {
    gap: 12px;
  }
}

.top-media-item-img img {
  border-radius: 4px;
  aspect-ratio: 295/160;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-media-item-img img {
    aspect-ratio: 400/160;
  }
}

.top-media-item-title {
  --size: 40px;
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  display: grid;
  grid-template-columns: var(--size) 1fr;
  gap: 8px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-media-item-title {
    --size: 50px;
    font-size: 22px;
  }
}
.top-media-item-title:before {
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top-media-item-title.--blog::before {
  background-image: url("../img/top/icon-media-blog.svg");
}
.top-media-item-title.--youtube::before {
  background-image: url("../img/top/icon-media-youtube.svg");
}

.top-media-item-text {
  font-weight: 500;
  line-height: 1.6;
}

.top-media-item-link {
  margin-left: auto;
}

/*!
page > blog > blog-archive
------------------------------
*/
.blog-archive-contents {
  margin-top: 40px;
}

.blog-archive-posts {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .blog-archive-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*!
page > news > news-archive
------------------------------
*/
.news-archive-contents {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .news-archive-contents {
    margin-top: 32px;
  }
}

.news-archive-monthly-link {
  display: block;
  position: relative;
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .news-archive-monthly-link:hover {
    color: var(--color-font-blue);
  }
}
.news-archive-monthly-item:first-child .news-archive-monthly-link {
  border-top: 1px solid var(--color-border);
}
.news-archive-monthly-link::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-font-gray);
  border-right: 2px solid var(--color-font-gray);
  rotate: 45deg;
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
}

/*!
page > voice > voice-archive
------------------------------
*/
.voice-archive-contents {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .voice-archive-contents {
    margin-top: 32px;
  }
}

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

/*!
page > voice > voice-single
------------------------------
*/
.voice-single-performers-title {
  background-color: var(--color-bg-blue) !important;
  color: var(--color-white) !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px !important;
}
@media screen and (min-width: 768px) {
  .voice-single-performers-title {
    font-size: 18px !important;
    padding: 10px 24px !important;
  }
}
.voice-single-performers-title:before {
  --size: 24px;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  background-image: url("../img/icon-people.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.voice-single-performers-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  background-color: var(--color-bg-gray-light);
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .voice-single-performers-list {
    padding: 16px 24px 20px 24px;
  }
}
@media screen and (min-width: 768px) {
  .voice-single-performers-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.voice-single-performers-item {
  --size: 64px;
  display: grid;
  grid-template-columns: var(--size) 1fr;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
@media screen and (min-width: 768px) {
  .voice-single-performers-item {
    --size: 84px;
  }
}

.voice-single-performers-img {
  grid-column: 1/2;
}
.voice-single-performers-img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.voice-single-performers-info {
  grid-column: 2/3;
  align-self: center;
}

.voice-single-performers-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .voice-single-performers-name {
    font-size: 22px;
  }
}

.voice-single-performers-position {
  color: var(--color-font-gray);
  font-size: 14px;
  font-weight: 500;
}

.voice-single-performers-profile {
  grid-column: 1/-1;
  font-weight: 500;
  line-height: 1.7 !important;
}

/*!
page > single > single
------------------------------
*/
.service-archive {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*!
page > single > single
------------------------------
*/
.service-single-title {
  color: var(--color-font-blue);
  text-align: center;
  font-family: var(--font-family-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .service-single-title {
    font-size: 36px;
  }
}
.service-single-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .service-single-title span {
    display: inline;
  }
}

.service-single-problem-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px 40px;
}
@media screen and (min-width: 768px) {
  .service-single-problem-list {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-single-problem-item {
  padding: 16px 20px;
  border: 1px solid var(--color-border);
}

.service-single-problem-text {
  color: var(--color-font-blue);
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .service-single-problem-text {
    font-size: 18px;
  }
}

.service-single-problem-text02 {
  margin-top: 4px;
  font-weight: 600;
}

.service-single-feature {
  background-color: var(--color-bg-gray);
}

.service-single-feature-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  counter-reset: feature;
}
@media screen and (min-width: 768px) {
  .service-single-feature-list {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.service-single-feature-item {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 16px;
  counter-increment: feature;
}
@media screen and (min-width: 768px) {
  .service-single-feature-item {
    padding: 20px;
  }
}

.service-single-feature-title {
  color: var(--color-font-blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  font-family: var(--font-family-serif);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .service-single-feature-title {
    font-size: 22px;
  }
}
.service-single-feature-title:before {
  content: counter(feature, decimal-leading-zero);
  display: block;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--color-bg-blue);
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1.5;
}

.service-single-feature-text {
  margin-top: 12px;
  font-weight: 500;
}

.service-single-content {
  background-color: var(--color-bg-gray-light);
}

.service-single-content-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .service-single-content-list {
    margin-top: 48px;
    grid-template-columns: auto 1fr;
  }
}

.service-single-content-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  border: 1px solid var(--color-border);
  padding: 16px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .service-single-content-item {
    padding: 20px 28px;
    grid-template-columns: subgrid;
    grid-column: 1/-1;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .service-single-content-item {
    gap: 64px;
  }
}

.service-single-content-title {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .service-single-content-title {
    font-size: 22px;
  }
}
.service-single-content-title:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color-bg-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-single-content-text {
  font-weight: 500;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .service-single-content-text {
    padding-inline: 0;
  }
}

.service-single-content-message {
  text-align: center;
  margin-top: 32px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .service-single-content-message {
    margin-top: 48px;
  }
}

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

.service-single-contact {
  background-color: var(--color-bg-gray);
}

.service-single-contact-form {
  background-color: var(--color-white);
  padding: 32px 24px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .service-single-contact-form {
    padding: 55px 46px;
    margin-top: 48px;
  }
}

.service-single-other {
  background-image: url(../img/service-bg-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .service-single-other {
    background-image: url(../img/service-bg.jpg);
  }
}

.service-single-other-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .service-single-other-list {
    margin-top: 48px;
  }
}

/*!
page > contact > contact-form
------------------------------
*/
.contact-form {
  margin-top: -24px;
}

.contact-form-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.contact-form-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .contact-form-item p {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .contact-form-item.--consent p {
    display: block;
  }
}

.contact-form-label {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contact-form-label {
    margin-bottom: 0;
    translate: 0 1px;
  }
}
@media screen and (min-width: 768px) {
  .contact-form-label.--text {
    translate: 0 14px;
  }
}

.contact-form-required {
  color: var(--color-red);
  font-size: 12px;
  display: inline-block;
  font-weight: 600;
  margin-left: 4px;
}
.contact-form-required::before {
  content: "*";
  display: inline-block;
  margin-right: 2px;
  color: var(--color-red);
}

.contact-form-consent-text {
  text-align: center;
}
.contact-form-consent-text a {
  text-decoration: underline;
  color: var(--color-link);
}
@media (any-hover: hover) {
  .contact-form-consent-text a:hover {
    text-decoration: none;
  }
}

.contact-form-button {
  display: grid;
  place-items: center;
  margin-top: 16px;
}
.contact-form-button p {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 384px;
}
.contact-form-button p::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  rotate: 45deg;
  position: absolute;
  right: 24px;
  top: 47%;
  translate: 0 -50%;
  pointer-events: none;
}
.contact-form-button input {
  display: block;
  width: 100%;
  padding: 15px 16px 13px 16px;
  color: var(--color-white);
  font-weight: 600;
  border-bottom: 5px solid var(--color-bg-gray-dark);
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .contact-form-button input {
    font-size: 20px;
    padding: 17px 16px 15px 16px;
  }
}
@media (any-hover: hover) {
  .contact-form-button input:hover {
    border-bottom: 5px solid var(--color-bg-gray-dark-hover);
  }
}
.contact-form-button .wpcf7-spinner {
  margin: 0 auto;
  display: none;
}

form.submitting .wpcf7-spinner {
  display: block !important;
}

.wpcf7-response-output {
  text-align: center;
  padding: 16px 8px !important;
  border: 1px solid var(--color-red) !important;
  color: var(--color-red) !important;
  font-weight: 600;
  background-color: rgb(255, 232, 232);
  margin: 24px 0 0 !important;
}

.wpcf7-not-valid-tip {
  font-weight: 600 !important;
  margin-top: 6px;
  font-size: 15px !important;
  color: var(--color-red) !important;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/*!
page > news > news-post
------------------------------
*/
.member-archive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1080px) {
  .member-archive {
    grid-template-columns: repeat(2, 1fr);
  }
}

.member-archive-article {
  padding: 20px;
  border: 1px solid var(--color-border);
}

.member-archive-inner {
  --size: 94px;
  display: grid;
  grid-template-columns: var(--size) 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .member-archive-inner {
    --size: 136px;
  }
}

.member-archive-icon {
  grid-column: 1/2;
}
.member-archive-icon img {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  overflow: hidden;
}

.member-archive-info {
  grid-column: 2/3;
  align-self: center;
}

.member-archive-name {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .member-archive-name {
    font-size: 22px;
  }
}

.member-archive-position {
  color: var(--color-font-gray);
  font-size: 14px;
  font-weight: 500;
}

.member-archive-link-wrap {
  --icon-size: 24px;
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .member-archive-link-wrap {
    --icon-size: 28px;
    gap: 16px;
    margin-top: 12px;
  }
}

.member-archive-link-sns {
  width: var(--icon-size);
}

.member-archive-link-others {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-link);
  font-weight: 500;
}
.member-archive-link-others::before {
  content: "";
  display: inline-block;
  width: calc(var(--icon-size) * 0.85);
  height: calc(var(--icon-size) * 0.85);
  background-image: url("../img/icon-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.member-archive-profile {
  grid-column: 1/-1;
  font-weight: 500;
  line-height: 1.6;
}

/*!
page > about > about-intro
------------------------------
*/
.about-intro {
  padding: 48px 0 56px;
}
@media screen and (min-width: 768px) {
  .about-intro {
    padding: 64px 0 72px;
  }
}

.about-intro-list {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .about-intro-list {
    gap: 32px;
  }
}

.about-intro-item {
  display: grid;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .about-intro-item {
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding-inline: 40px;
    padding-bottom: 40px;
  }
}

.about-intro-title {
  min-width: 210px;
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about-intro-title {
    font-size: 32px;
  }
}

.about-intro-text {
  margin-top: 10px;
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about-intro-text {
    font-size: 22px;
  }
}

.about-intro-value-item {
  counter-increment: value-item;
  position: relative;
  padding-left: 1.5em;
  line-height: 2;
}
.about-intro-value-item::before {
  content: counter(value-item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  font-family: var(--font-family-serif);
  font-size: 1em;
}

.about-intro-value-list {
  counter-reset: value-item;
}

/*!
page > about > about-company
------------------------------
*/
.about-company {
  padding: 48px 0 56px;
  background-color: var(--color-bg-gray-light);
}
@media screen and (min-width: 768px) {
  .about-company {
    padding: 64px 0 72px;
  }
}

.about-company-title {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about-company-title {
    font-size: 36px;
  }
}

.about-company-sections {
  display: grid;
  gap: 56px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .about-company-sections {
    margin-top: 48px;
  }
}

.about-company-section-title {
  padding: 0 8px 4px;
  border-left: 4px solid var(--color-font-blue);
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about-company-section-title {
    padding: 0 16px 8px;
    border-left: 8px solid var(--color-font-blue);
    font-size: 28px;
  }
}

.about-company-info {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about-company-info {
    gap: 24px;
  }
}

.about-company-info-list {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .about-company-info-list {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding-bottom: 24px;
  }
}

.about-company-info-term {
  min-width: 160px;
  font-weight: 600;
  line-height: 1.5;
}

.about-company-info-desc {
  font-weight: 500;
  line-height: 1.5;
}

.about-company-org {
  margin-top: 32px;
  padding: 12px 24px 28px 28px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .about-company-org {
    margin-top: 48px;
    padding: 24px 32px 40px 40px;
  }
}

.about-company-org-title {
  color: var(--color-font-blue);
  font-family: var(--font-family-serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-company-org-title {
    font-size: 28px;
  }
}

.about-company-org-img {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .about-company-org-img {
    margin-top: 16px;
  }
}

/*!
page > error > error
------------------------------
*/
.error-text {
  text-align: center;
}
.error-text span {
  display: block;
}

.error-button {
  margin-top: 40px;
  display: grid;
  place-items: center;
}

/*!
page > privacy > privacy-contents
------------------------------
*/
.privacy-contents > * {
  margin-top: 8px;
  line-height: 2;
}
.privacy-contents h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .privacy-contents h2 {
    font-size: 26px;
  }
}
.privacy-contents ol {
  list-style: decimal;
}
@media screen and (min-width: 768px) {
  .privacy-contents ol {
    padding-left: 18px;
  }
}
.privacy-contents a {
  text-decoration: underline;
  color: var(--color-link);
  word-break: break-all;
}
@media (any-hover: hover) {
  .privacy-contents a:hover {
    text-decoration: none;
  }
}/*# sourceMappingURL=style.css.map */