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

mixin

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

Reset

----------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
large,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

setting

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

全体

----------------------------------------------------------*/
:root {
  --header-block-size: 95px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #2E3139;
  text-align: left;
  background-color: #FAFBFC;
}

body * {
  box-sizing: border-box;
}

summary {
  list-style: none;
}

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

button {
  background: none;
  padding: 0;
  font-family: inherit;
}
button a {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

main {
  padding-top: var(--header-block-size);
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.is-fix-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .is-fix-sp {
    display: block;
  }
}

.is-fix-pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .is-fix-pc {
    display: none;
  }
}

.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .is-min-pc {
    display: block;
  }
}

.is-tab-pc {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .is-tab-pc {
    display: block;
  }
}

.inner {
  max-width: 1100px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media only screen and (max-width: 1080px) {
  .inner {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

.inner--wide {
  max-width: 1440px;
  padding-inline: 60px;
  margin-inline: auto;
}
@media only screen and (max-width: 1080px) {
  .inner--wide {
    padding-inline: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .inner--wide {
    padding-inline: 20px;
  }
}

.content-column {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .content-column {
    flex-direction: column;
  }
}

.content-column__main {
  padding-inline: 40px;
  min-width: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .content-column__main {
    padding-inline: 0px;
  }
}

.content-column__main-bottom {
  background-color: #EBEFF5;
  margin-right: -40px;
  margin-left: calc(50% - 50vw);
  padding-right: 40px;
  padding-left: calc(50vw - 50%);
}
@media only screen and (max-width: 768px) {
  .content-column__main-bottom {
    padding-inline: 20px;
    margin-inline: -20px;
  }
}

.content-column__sub {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  position: relative;
}
@media only screen and (max-width: 1080px) {
  .content-column__sub {
    width: 37.037037037%;
  }
}
@media only screen and (max-width: 768px) {
  .content-column__sub {
    width: 100%;
  }
}

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  padding-block: 20px 12px;
  border-bottom: 1px solid #cbd1d9;
}
@media only screen and (max-width: 768px) {
  .header {
    padding-block: 12px 4px;
  }
}

.header__inner {
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: 56px 40px;
  margin-inline: auto;
}
@media only screen and (max-width: 1080px) {
  .header__inner {
    justify-content: space-between;
    padding-inline: 22px 8px;
  }
}

.header__headline {
  width: 109px;
}
@media only screen and (max-width: 1080px) {
  .header__headline {
    width: 96px;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .header__menu.is-min-pc {
    display: flex;
  }
}

.header__items {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}

.header__sns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__sns.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .header__sns.is-min-pc {
    display: flex;
  }
}

.header__sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
}
.header__sns-link img {
  width: 100%;
}

.header__sp-menu {
  display: none;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .header__sp-menu.is-tab-pc {
    display: flex;
  }
}

.header-drawer-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  aspect-ratio: 1/1;
  padding: 8px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.header-drawer-button img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .header-drawer-button:hover {
    opacity: 0.7;
  }
}

.header-drawer {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  translate: 100% 0;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: auto;
}
.header-drawer.js-open {
  translate: 0 0;
}

.header-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  padding-top: 20px;
}

.header-drawer__body {
  padding: 40px 20px;
}

.header-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.header-drawer__item {
  width: 100%;
}

.header-drawer__link {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
}

.header-drawer__bottom {
  margin-top: 32px;
}

.header-drawer__bottom-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
}

.header-drawer__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.header-drawer__sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
}
.header-drawer__sns-link img {
  width: 100%;
}

.c-header-search__form {
  display: flex;
}

.c-header-search__input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cbd1d9;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
}
.c-header-search__input::-moz-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}
.c-header-search__input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-header-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 45px;
  background-color: #0e4988;
  border-radius: 0 8px 8px 0;
  padding: 6px 16px 6px 8px;
  flex-shrink: 0;
}

.c-header-search__popular {
  padding: 6px 12px;
  margin-top: 12px;
}

.c-header-search__popular-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-header-search__popular-list {
  display: flex;
  flex-direction: column;
}

.c-header-search__popular-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 20px;
}
.c-header-search__popular-item + .c-header-search__popular-item {
  border-top: 1px solid #CBD1D9;
}

.c-header-search__popular-number {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: Italic;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}

.c-header-search__tag {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background: #E0E6EB;
  border-radius: 2px;
  padding: 4px 8px;
}
.c-header-search__tag.--hash {
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-header-search__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer {
  padding-block: 60px;
}

.footer__inner {
  max-width: 1440px;
  padding-inline: 60px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .footer__inner {
    padding-inline: 20px;
  }
}

.footer__top {
  background: linear-gradient(146.87deg, #ecf1f4 15.42%, #cfe9ec 54.49%, #9ebbce 88.85%);
  padding: 24px 40px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .footer__top {
    padding: 20px 16px;
  }
}

.footer__top-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid #ffffff;
  padding: 48px 80px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 24px;
  }
}

.footer__top-body-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #1660a6 4.17%, #0d9296 97.08%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-title {
    text-align: center;
  }
}

.footer__top-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  margin-top: 4px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-title {
    font-size: 24px;
    text-align: center;
    margin-top: 8px;
  }
}

.footer__top-body-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #536580;
  margin-top: 24px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-text {
    text-align: center;
  }
}

.footer__top-body-note {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 4px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-note {
    text-align: center;
  }
}

.footer__top-body-link {
  margin-top: 24px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-link {
    margin: 0;
  }
}
.footer__top-body-link.is-min-pc {
  display: none;
}
@media only screen and (min-width: 1081px) {
  .footer__top-body-link.is-min-pc {
    display: flex;
  }
}
.footer__top-body-link.is-tab-pc {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-link.is-tab-pc {
    display: flex;
  }
}

.footer__top-body-right {
  display: flex;
  justify-content: center;
  gap: 4px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-right {
    width: 100%;
  }
}

.footer__top-body-right-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 260px;
  background-color: #ffffff;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1215686275));
  padding: 20px;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-right-link {
    width: min(100%, 198px);
  }
}
@media only screen and (max-width: 768px) {
  .footer__top-body-right-link {
    padding: 20px 12px;
  }
}
.footer__top-body-right-link:nth-child(1) {
  border-radius: 8px 0 0 8px;
}
.footer__top-body-right-link:nth-child(2) {
  border-radius: 0 8px 8px 0;
}

.footer__top-body-right-icon {
  width: 48px;
}
.footer__top-body-right-icon img {
  width: 100%;
}

.footer__top-body-right-link-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
}
@media only screen and (max-width: 1080px) {
  .footer__top-body-right-link-text {
    font-size: 14px;
  }
}
.footer__top-body-right-link-text .--small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  vertical-align: middle;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid #cbd1d9;
  padding-left: 20px;
}
@media only screen and (max-width: 1080px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 52px;
    padding-left: 0;
  }
}

.footer__bottom-logo {
  width: 139px;
}
.footer__bottom-logo img {
  width: 100%;
}

.footer__nav-list {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1080px) {
  .footer__nav-list {
    width: 250px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
  }
}

.footer__nav-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}

.footer__bottom-copyright {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-align: center;
  color: #5e6472;
  margin-top: 28px;
}
@media only screen and (max-width: 1080px) {
  .footer__bottom-copyright {
    font-size: 12px;
    margin-top: 32px;
  }
}

.c-search__form {
  display: flex;
  margin-top: 20px;
}

.c-search__input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cbd1d9;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
}
.c-search__input::-moz-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}
.c-search__input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 45px;
  background-color: #0e4988;
  border-radius: 0 8px 8px 0;
  padding: 6px 11px 6px 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-search__button:hover {
    opacity: 0.7;
  }
}

.c-search__popular {
  margin-top: 20px;
}

.c-search__popular-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-search__popular-list {
  display: flex;
  flex-direction: column;
  padding-inline: 12px;
  margin-top: 10px;
}

.c-search__popular-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 20px;
}
.c-search__popular-item + .c-search__popular-item {
  border-top: 1px solid #CBD1D9;
}

.c-search__popular-number {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: Italic;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}

.c-search__tag {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background: #E0E6EB;
  border-radius: 2px;
  padding: 4px 8px;
}
.c-search__tag::before {
  content: "#";
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-search__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 4px;
  padding-inline: 12px 0;
  margin-top: 10px;
}

.c-sidebar {
  max-width: 400px;
  height: 100%;
  padding: 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-sidebar {
    display: none;
  }
}

.c-sidebar-headline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
.c-sidebar-headline::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cbd1d9;
  flex: 1;
}

.c-sidebar-news {
  padding-block: 20px;
}

.c-sidebar-news__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.c-sidebar-news__item {
  background: #e0e6eb;
}

.c-sidebar-news__item-link {
  display: block;
  padding: 8px 16px;
}

.c-sidebar-news__item-date {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #5e6472;
}

.c-sidebar-news__item-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  margin-top: 4px;
}

.c-sidebar-company {
  padding-block: 20px;
}

.c-sidebar-company__item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.c-sidebar-company__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  background-color: #FFFFFF;
  padding: 10px;
  margin-top: 20px;
}
.c-sidebar-company__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-sidebar-company__item-content {
  margin-top: 20px;
}

.c-sidebar-company__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.c-sidebar-company__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.c-sidebar-company__item-tag {
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background-color: #e0e6eb;
  border-radius: 9999px;
  padding: 6px 12px;
}

.c-sidebar-company__item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  margin-top: 20px;
}

.c-sidebar-company__item-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.c-sidebar-toc {
  padding-block: 20px;
}

.c-toc-list {
  margin-top: 20px;
}

.c-toc-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #0e4988;
  display: flex;
  align-items: center;
  padding-left: 34px;
  position: relative;
}
.c-toc-item.level-2 a::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  background-color: #0e4988;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.c-toc-item.level-3 {
  margin-left: 24px;
}
.c-toc-item.level-3 a {
  gap: 8px;
  padding-left: 0;
}
.c-toc-item.level-3 a::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: url("../img/common/icon-textlink.svg") no-repeat center center/contain;
  position: static;
  transform: none;
}
.c-toc-item.level-4 {
  margin-left: 15px;
}
.c-toc-item.level-5 {
  margin-left: 20px;
}
.c-toc-item.level-6 {
  margin-left: 20px;
}
.c-toc-item .c-toc-sublist {
  margin-top: 20px;
}
.c-toc-item + .c-toc-item {
  margin-top: 20px;
}

.c-sidebar-search {
  padding-block: 20px;
}

.archive-article .c-sidebar-search,
.single-article .c-sidebar-search {
  position: sticky;
  top: var(--header-block-size);
}
@media only screen and (max-width: 768px) {
  .archive-article .c-sidebar-search,
  .single-article .c-sidebar-search {
    position: static;
    top: inherit;
  }
}

.c-sidebar-events {
  padding-block: 20px;
}
@media only screen and (max-width: 768px) {
  .c-sidebar-events {
    margin-top: 40px;
  }
}

.c-sidebar-events__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .c-sidebar-events__list {
    gap: 20px;
  }
}

.c-sidebar-events__item-link {
  display: block;
  border: 1px solid #cbd1d9;
  border-radius: 12px;
  overflow: hidden;
}

.c-sidebar-events__item-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 320/172;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sidebar-events__item-content {
  padding: 16px 20px 24px;
}

.c-sidebar-events__item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  color: #2e3139;
}

.c-sidebar-events__item-company {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  color: #324765;
  margin-top: 8px;
}

.c-sidebar-events__item-date {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  border-top: 1px solid #cbd1d9;
  padding-top: 12px;
  margin-top: 16px;
}

.c-sidebar-events__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.c-sidebar-events__item-tag {
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  border: 1px solid #324765;
  border-radius: 2px;
  padding: 4px 8px;
}

.c-sidebar-events__button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.c-sidebar-prediction__top {
  background: linear-gradient(146.87deg, #ecf1f4 15.42%, #cfe9ec 54.49%, #9ebbce 88.85%);
  padding: 20px 16px;
  margin-top: 20px;
}

.c-sidebar-prediction__top-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border: 1px solid #ffffff;
  padding: 40px 24px;
}

.c-sidebar-prediction__top-body-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  background: linear-gradient(90deg, #1660a6 4.17%, #0d9296 97.08%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.c-sidebar-prediction__top-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
  margin-top: 12px;
}

.c-sidebar-prediction__top-body-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #536580;
  margin-top: 24px;
}

.c-sidebar-prediction__top-body-note {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #5e6472;
  margin-top: 4px;
}

.c-sidebar-prediction__top-body-right {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.c-sidebar-prediction__top-body-right-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 198px);
  background-color: #ffffff;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1215686275));
  padding: 20px 12px;
}
.c-sidebar-prediction__top-body-right-link:nth-child(1) {
  border-radius: 8px 0 0 8px;
}
.c-sidebar-prediction__top-body-right-link:nth-child(2) {
  border-radius: 0 8px 8px 0;
}

.c-sidebar-prediction__top-body-right-icon {
  width: 48px;
}
.c-sidebar-prediction__top-body-right-icon img {
  width: 100%;
}

.c-sidebar-prediction__top-body-right-link-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
}
.c-sidebar-prediction__top-body-right-link-text .--small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  vertical-align: middle;
}

.breadcrumb {
  padding-block: 20px 20px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    padding-block: 16px 12px;
  }
}

.breadcrumb__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb__items {
    gap: 2px;
  }
}
.breadcrumb__items > li {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  color: #324765;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .breadcrumb__items > li {
    font-size: 12px;
    gap: 4px;
  }
}
.breadcrumb__items > li:after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon-breadcrumb-arrow.svg") no-repeat center center/contain;
  width: 16px;
  height: 16px;
}
.breadcrumb__items > li:last-child:after {
  content: none;
}
.breadcrumb__items > li:not(:has(+ li))::after {
  content: none;
}
.breadcrumb__items > li a {
  display: block;
  color: #0e4988;
}
.c-button-wrapper {
  padding-block: 8px;
}
.c-button-wrapper:has(.c-button.--small) {
  padding-block: 4px;
}

.c-button {
  display: block;
  min-width: 200px;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #FFFFFF;
  background-color: #0e4988;
  border: 1px solid #0e4988;
  border-radius: 9999px;
  padding: 15px 32px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1215686275));
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
}
.c-button.--wh {
  color: #0e4988;
  background-color: #FFFFFF;
  border: 1px solid #0e4988;
}
.c-button.--small {
  width: min(100%, 145px);
  font-size: 12px;
  padding: 12px;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-form__content {
  padding-top: 32px;
}

.c-form__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #fff;
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .c-form__container {
    gap: 24px;
    padding: 32px 20px;
  }
}

.c-form__item {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .c-form__item {
    flex-direction: column;
    gap: 12px;
  }
}

.c-form__item-label {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 32.3404255319%;
  min-width: 210px;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  padding: 12px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label {
    gap: 8px;
    width: 100%;
    font-size: 12px;
    padding: 0;
  }
}
.c-form__item-label .required {
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #324765;
  border-radius: 4px;
  padding: 2px 8px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label .required {
    font-size: 10px;
  }
}
.c-form__item-label .optional {
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background-color: #e0e6eb;
  border-radius: 4px;
  padding: 2px 8px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label .optional {
    font-size: 10px;
  }
}
.c-form__item-label:not(:has(.required)):not(:has(.optional)) {
  padding-left: 64px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-label:not(:has(.required)):not(:has(.optional)) {
    padding-left: 0;
  }
}

.c-form__item-content {
  max-width: 480px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  align-content: center;
  flex: 1;
}
.c-form__item-content.page-title input {
  border: none;
  padding-left: 0;
  pointer-events: none;
}
.c-form__item-content input,
.c-form__item-content textarea,
.c-form__item-content select {
  width: 100%;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  padding: 14px 12px;
}
.c-form__item-content select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/cf7/icon-form-select-arrow.svg") no-repeat right 16px center/24px 24px;
}

.c-form__item-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .c-form__item-note {
    font-size: 12px;
  }
}

.c-form__notice {
  margin-top: 32px;
}

.c-form__notice-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .c-form__notice-title {
    font-size: 20px;
  }
}
.c-form__notice-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cbd1d9;
  flex: 1;
}

.c-form__notice-list {
  margin-top: 16px;
}

.c-form__notice-list-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 768px) {
  .c-form__notice-list-item {
    font-size: 14px;
  }
}
.c-form__notice-list-item::before {
  content: "・";
}
.c-form__notice-list-item a {
  color: #0e4988;
  text-decoration: underline;
}

.c-form__notice-regal {
  background-color: #e0e6eb;
  padding: 20px;
  margin-top: 32px;
}

.c-form__notice-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-form__notice-text {
    font-size: 14px;
  }
}
.c-form__notice-text a {
  color: #0e4988;
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
}

.c-form__notice-regal .wpcf7-form-control-wrap {
  display: block;
  padding-block: 6px;
  margin-top: 12px;
}
.c-form__notice-regal .wpcf7-form-control-wrap .wpcf7-list-item {
  display: block;
  margin: 0;
}
.c-form__notice-regal .wpcf7-form-control-wrap label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.c-form__notice-regal .wpcf7-form-control-wrap input[type=checkbox] {
  width: 32px;
  height: 32px;
  background-color: #FFF;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.c-form__notice-regal .wpcf7-form-control-wrap input[type=checkbox]:checked {
  background-color: #0e4988;
  border-color: #0e4988;
}
.c-form__notice-regal .wpcf7-form-control-wrap input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 10px;
  height: 16px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
}
.c-form__notice-regal .wpcf7-form-control-wrap .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.c-form__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .c-form__wrap {
    flex-direction: column-reverse;
  }
}

.c-form__notice-recaptcha {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  margin-top: 32px;
}
.c-form__notice-recaptcha a {
  color: #0e4988;
}

.c-form__thanks-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-title {
    font-size: 20px;
  }
}

.c-form__thanks-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-text {
    font-size: 14px;
  }
}

.c-form__thanks-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-note {
    font-size: 12px;
  }
}

.c-form__thanks-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-form__thanks-detail-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}
@media only screen and (max-width: 768px) {
  .c-form__thanks-detail-text {
    font-size: 12px;
  }
}

.c-form__thanks-detail-mail {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #0e4988;
}

.c-form__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .c-form__button {
    margin-top: 20px;
  }
}

.c-text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #0e4988;
  border-bottom: 1px solid #0e4988;
  padding-bottom: 4px;
}
.c-text-link img {
  width: 16px;
}

.c-wp-text-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #0e4988;
  border-bottom: 1px solid #0e4988;
  padding: 0 0 4px 0;
  background: none;
  border-radius: 0;
}
.c-wp-text-link a::after {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: no-repeat center center/contain;
}
.c-wp-text-link.is-internal a::after {
  background-image: url("../img/common/icon-textlink.svg");
}
.c-wp-text-link.is-external a::after {
  background-image: url("../img/common/icon-new-tab.svg");
}

.c-news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 840px;
  margin-inline: auto;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .c-news-list {
    max-width: 480px;
    margin-top: 20px;
  }
}

.c-news-list__item-link {
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-link {
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.c-news-list__item-content {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "text" "time" "tag" "company";
  }
}

.c-news-list__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-header {
    display: contents;
  }
}

.c-news-list__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-title {
    font-size: 18px;
    grid-area: title;
  }
}

.c-news-list__item-time {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #5e6472;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-time {
    grid-area: time;
    margin-top: 12px;
  }
}

.c-news-list__item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-text {
    grid-area: text;
  }
}

.c-news-list__item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-tag {
    grid-area: tag;
  }
}

.c-news-list__item-tag-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background: #e0e6eb;
  border-radius: 2px;
  padding: 4px 8px;
}
.c-news-list__item-tag-item::before {
  content: "#";
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-news-list__item-company {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-company {
    grid-area: company;
  }
}

.c-news-list__item-img {
  width: 35.7142857143%;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-img {
    width: 100%;
  }
}
.c-news-list__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 300/169;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .c-news-list__item-img img {
    border-radius: 4px;
  }
}

.c-news-list__item-none {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  margin-top: 40px;
}

.c-related-news__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #cbd1d9;
  padding-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .c-related-news__headline {
    padding-bottom: 12px;
  }
}

.c-related-news__title {
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .c-related-news__title {
    font-size: 20px;
  }
}

.c-related-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .c-related-news__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    margin-top: 20px;
  }
}
.c-related-news__list.top-related-news__list {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .c-related-news__list.top-related-news__list {
    margin-top: -20px;
    border-top: 1px solid #cbd1d9;
    border-bottom: 1px solid #cbd1d9;
  }
  .c-related-news__list.top-related-news__list > *:nth-child(n+5) {
    display: none;
  }
}

.c-related-news__item {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .c-related-news__item {
    padding-block: 20px;
  }
  .c-related-news__item + .c-related-news__item {
    border-top: 1px solid #cbd1d9;
  }
  .c-related-news__item:last-child {
    border-bottom: 1px solid #cbd1d9;
  }
}

.c-related-news__item-body {
  display: flex;
}

.c-related-news__item-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .c-related-news__item-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
}

.c-related-news__item-link {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .c-related-news__item-img {
    width: 29.8507462687%;
    flex-shrink: 0;
  }
}
.c-related-news__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 258/145;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.c-related-news__item-content {
  padding-top: 12px;
  margin-top: auto;
}

.c-related-news__item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
}
@media only screen and (max-width: 768px) {
  .c-related-news__item-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.c-related-news__item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .c-related-news__item-text {
    font-size: 12px;
  }
}

.c-related-news__item-time {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #5e6472;
  margin-top: 12px;
}

.c-related-news__item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.c-related-news__item-tag-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background: #e0e6eb;
  border-radius: 2px;
  padding: 4px 8px;
}
.c-related-news__item-tag-item::before {
  content: "#";
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.c-related-news__item-company {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  margin-top: 12px;
}

.c-related-news__button {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .c-related-news__button {
    margin-top: 20px;
  }
}

/* 追加直後の初期状態 */
.c-related-news__item.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

/* フェードイン開始 */
.c-related-news__item.js-show {
  opacity: 1;
  transform: translateY(0);
}

.c-farmer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list {
    gap: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .c-farmer-list__item {
    padding-block: 12px;
  }
}

.c-farmer-list__item-body {
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list__item-body {
    display: grid;
    grid-template-columns: min(35.8208955224%, 200px) 1fr;
    grid-template-areas: "image title" "image text" "sns sns";
    gap: 0px 8px;
  }
}

.c-farmer-list__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list__item-img {
    width: 100%;
    max-width: 200px;
    height: -moz-fit-content;
    height: fit-content;
    grid-area: image;
  }
}

@media only screen and (max-width: 768px) {
  .c-farmer-list__item-content {
    display: contents;
  }
}

.c-farmer-list__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  color: #2E3139;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list__item-title {
    font-size: 16px;
    grid-area: title;
  }
}

.c-farmer-list__item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5E6472;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list__item-text {
    font-size: 12px;
    grid-area: text;
    margin-top: 4px;
  }
}

.c-farmer-list__item-sns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list__item-sns {
    grid-area: sns;
    justify-content: center;
    margin-top: 8px;
  }
}

.c-farmer-list__item-sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 768px) {
  .c-farmer-list__item-sns-link {
    width: 40px;
  }
}
.c-farmer-list__item-sns-link img {
  width: 100%;
}

.c-company-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media only screen and (max-width: 768px) {
  .c-company-list {
    gap: 20px;
  }
}

.c-company-list__item-body {
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .c-company-list__item-body {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.c-company-list__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100%;
  aspect-ratio: 200/100;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .c-company-list__item-img {
    width: 240px;
  }
}

.c-company-list__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.c-company-list__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .c-company-list__item-title {
    font-size: 18px;
  }
}

.c-company-list__item-tag {
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background-color: #E0E6EB;
  border-radius: 9999px;
  padding: 6px 12px;
}

.c-company-list__item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.c-company-list__item-link {
  display: flex;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .c-company-list__item-link {
    display: flex;
    justify-content: center;
  }
}

.c-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #CBD1D9;
  padding-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .c-headline {
    align-items: flex-end;
    padding-bottom: 12px;
  }
}

.c-headline__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media only screen and (max-width: 768px) {
  .c-headline__content {
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 12px;
  }
}

.c-headline__sub {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.08em;
  color: #5e6472;
}
@media only screen and (max-width: 768px) {
  .c-headline__sub {
    font-size: 12px;
  }
}

.c-headline__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .c-headline__title {
    font-size: 24px;
  }
}
.c-headline__title .hash {
  margin-right: 8px;
}

.c-headline__button {
  display: flex;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .c-headline__button {
    display: none;
  }
}

.c-headline__count {
  flex-shrink: 0;
}

.c-headline__count-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5E6472;
}
@media only screen and (max-width: 768px) {
  .c-headline__count-text {
    font-size: 14px;
  }
}

.c-content {
  padding-block: 60px 100px;
}
@media only screen and (max-width: 768px) {
  .c-content {
    padding-block: 40px 40px;
  }
}

.c-paginations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-block: 32px;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .c-paginations {
    gap: 16px;
    padding-block: 24px;
    margin-top: 20px;
  }
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #0E4988;
}
.c-pagination.current {
  color: #FFFFFF;
  background-color: #324765;
}
.c-pagination span,
.c-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  width: 40px;
  aspect-ratio: 1;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: Italic;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .c-pagination span,
  .c-pagination a {
    width: 32px;
  }
}

.c-pagination__prev {
  margin-right: 12px;
}
@media only screen and (max-width: 768px) {
  .c-pagination__prev {
    margin-right: 0px;
  }
}

.c-pagination__next {
  rotate: 180deg;
  margin-left: 12px;
}
@media only screen and (max-width: 768px) {
  .c-pagination__next {
    margin-left: 0px;
  }
}

.page__headline {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .page__headline {
    font-size: 24px;
  }
}

.single__body.page__body {
  padding-top: 32px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 768px) {
  .single__body.page__body {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .top-partner {
    max-width: 480px;
    margin-inline: auto;
  }
}

.top-partner__headline {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .top-partner__headline {
    font-size: 20px;
    margin-top: 20px;
  }
}

.top-partner-company-campaign {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .top-partner-company-campaign {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-partner-company-campaign__item {
  height: -moz-fit-content;
  height: fit-content;
  background-color: #ffffff;
  border-radius: 2px 20px 2px 20px;
  padding: 12px 16px;
}

.top-partner-company-campaign__logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-partner-company-campaign__logo-link {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-partner-company-campaign__body {
  display: block;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  padding: 12px;
}

.top-partner-company-campaign__tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  background-color: #e0e6eb;
  border-radius: 9999px;
  padding: 6px 12px;
}

.top-partner-company-campaign__content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.top-partner-company-campaign__content-img {
  width: 28.2485875706%;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .top-partner-company-campaign__content-img {
    width: 36.1010830325%;
  }
}
.top-partner-company-campaign__content-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 100/57;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-partner-company-campaign__content-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.top-partner-company-list__wrap {
  overflow: hidden;
  margin-top: 20px;
  margin-right: -10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-partner-company-list__wrap {
    margin-right: -20px;
  }
}
.top-partner-company-list__wrap::before {
  content: "";
  display: block;
  width: 180px;
  height: 282px;
  background: linear-gradient(90deg, rgba(235, 239, 245, 0) 0%, #EBEFF5 86.54%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .top-partner-company-list__wrap::before {
    display: none;
  }
}

.top-partner-company-list {
  overflow: visible;
  margin: 0;
}
.top-partner-company-list .splide__track {
  overflow: visible;
}

.top-partner-company-list__slide {
  width: 156px;
}

.top-partner-company-list__logo-link {
  height: 86px;
  background-color: #FFFFFF;
  border-radius: 2px 20px 2px 20px;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.top-partner-company-list__logo-link img {
  max-height: 100%;
}
.top-partner-company-list__logo-link + .top-partner-company-list__logo-link {
  margin-top: 12px;
}

.top-partner-company-list__wrap .top-partner-company-list__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 20px;
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .top-partner-company-list__wrap .top-partner-company-list__controls {
    justify-content: center;
    margin-top: 20px;
    margin-right: 0;
  }
}
.top-partner-company-list__wrap .top-partner-company-list__controls-prev,
.top-partner-company-list__wrap .top-partner-company-list__controls-next {
  display: block;
  width: 40px;
  height: 40px;
  position: static;
  margin: 0;
  transition: opacity 0.3s;
  transform: none;
}
@media (any-hover: hover) {
  .top-partner-company-list__wrap .top-partner-company-list__controls-prev:hover,
  .top-partner-company-list__wrap .top-partner-company-list__controls-next:hover {
    opacity: 0.7;
  }
}
.top-partner-company-list__wrap .top-partner-company-list__controls-next {
  rotate: 180deg;
}

.top-partner-farmer {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .top-partner-farmer {
    margin-top: 20px;
  }
}

.top-partner-farmer-list {
  margin-top: 20px;
  gap: 20px;
}

.top-partner-farmer__button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.top-partner-farmer__button.is-fix-sp {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .top-partner-farmer__button.is-fix-sp {
    display: flex !important;
  }
}

.single__content {
  margin-top: 60px;
}

.single__time {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 4%;
  color: #5e6472;
}

.single__headline {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .single__headline {
    font-size: 24px;
  }
}

.single__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  margin-top: 16px;
}

.single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.single__tag {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background: #e0e6eb;
  border-radius: 2px;
  padding: 4px 8px;
}
.single__tag::before {
  content: "#";
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.single__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media only screen and (max-width: 1080px) {
  .single__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.single__share {
  display: flex;
  align-items: center;
  gap: 20px;
}

.single__share-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.single__sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__sns-link {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 768px) {
  .single__cta-top {
    margin-inline: auto;
  }
}

.single__toc {
  margin-top: 20px;
}

.single__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .single__body {
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 100px;
  }
}
.single__body h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  background-color: #ebeff5;
  border-left: 4px solid #324765;
  padding: 16px 20px;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .single__body h2 {
    font-size: 20px;
    padding: 12px 20px;
  }
}
.single__body h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background-color: #f0f3f5;
  border-top: 1px solid #324765;
  border-bottom: 1px solid #324765;
  padding: 16px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .single__body h3 {
    font-size: 18px;
    padding: 12px 16px;
  }
}
.single__body h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #324765;
  padding: 24px 16px 8px;
}
@media only screen and (max-width: 768px) {
  .single__body h4 {
    font-size: 18px;
    padding: 20px 16px 8px;
  }
}
.single__body h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  background-image: linear-gradient(to right, #324765 3px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: bottom left;
  padding: 24px 16px 8px;
}
@media only screen and (max-width: 768px) {
  .single__body h5 {
    font-size: 16px;
    padding: 20px 16px 8px;
  }
}
.single__body h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  border-left: 4px solid #324765;
  padding: 4px 12px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .single__body h6 {
    font-size: 16px;
    padding: 4px 16px;
    margin-top: 20px;
  }
}
.single__body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .single__body p {
    font-size: 14px;
  }
}
.single__body p strong {
  font-weight: 700;
}
.single__body p a {
  color: #0e4988;
  text-decoration: underline;
}
.single__body .wp-block-image {
  max-width: 640px;
  margin-inline: auto;
}
.single__body .wp-block-image .wp-element-caption {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #5e6472;
  margin-top: 8px;
  margin-bottom: 0;
}
.single__body .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .single__body .wp-block-column {
    gap: 20px;
  }
}
.single__body .single-note {
  max-width: 840px;
  margin-inline: auto;
}
.single__body .single-note p {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 20px 40px;
  background-color: #e0e6eb;
}
@media only screen and (max-width: 768px) {
  .single__body .single-note p {
    font-size: 12px;
    padding: 20px;
  }
}
.single__body ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media only screen and (max-width: 768px) {
  .single__body ul li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.single__body ul li::before {
  content: "・";
  margin-inline: 4px;
}
@media only screen and (max-width: 768px) {
  .single__body ul li::before {
    margin-inline: 2px;
  }
}
.single__body ul li ul {
  padding-left: 1.5em;
}
.single__body ol {
  counter-reset: item;
}
.single__body ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media only screen and (max-width: 768px) {
  .single__body ol li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.single__body ol li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-inline: 4px;
}
@media only screen and (max-width: 768px) {
  .single__body ol li::before {
    margin-inline: 2px;
  }
}
.single__body ol li ul {
  counter-reset: alpha;
  padding-left: 1.5em;
}
.single__body ol li ul li::before {
  content: counter(alpha, lower-alpha) ". ";
  counter-increment: alpha;
}
.single__body .wp-block-flexible-table-block-table figcaption {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #5e6472;
  margin-top: 8px;
}
.single__body .wp-block-flexible-table-block-table.is-scroll-on-pc {
  overflow-x: auto;
}
.single__body .wp-block-flexible-table-block-table.is-scroll-on-pc table {
  width: 840px;
  max-width: none;
}
.single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: #f0f3f5;
}
.single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  font-weight: 400;
  font-size: 14px;
  border-color: #cbd1d9;
}
@media only screen and (max-width: 768px) {
  .single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    font-size: 12px;
  }
}
.single__body .wp-block-separator {
  width: 100%;
  margin-block: 0;
}
.single__body .wp-block-embed-youtube iframe {
  display: block;
  max-width: 640px;
  width: 100%;
  height: 100%;
  aspect-ratio: 500/281;
  margin-inline: auto;
}
.single__body blockquote {
  max-width: 840px;
  margin-inline: auto;
  position: relative;
  padding-block: 40px;
}
.single__body blockquote::before {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/common/icon-quote_left.svg") no-repeat center center/contain;
}
.single__body blockquote::after {
  content: "";
  width: calc(100% - 76px);
  height: 1px;
  background-color: #5e6472;
  position: absolute;
  top: 20px;
  left: 52px;
}
@media only screen and (max-width: 768px) {
  .single__body blockquote::after {
    width: calc(100% - 64px);
    left: 40px;
  }
}
.single__body blockquote p {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 24px 48px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .single__body blockquote p {
    font-size: 14px;
    padding: 24px 18px;
  }
}
.single__body blockquote p::before {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../img/common/icon-quote_right.svg") no-repeat center center/contain;
  translate: 0 100%;
}
.single__body blockquote p::after {
  content: "";
  width: calc(100% - 76px);
  height: 1px;
  background-color: #5e6472;
  position: absolute;
  bottom: -20px;
  right: 52px;
}
@media only screen and (max-width: 768px) {
  .single__body blockquote p::after {
    width: calc(100% - 64px);
    right: 40px;
  }
}
@media (min-width: 769px) {
  .single__body .is-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .single__body .is-pc {
    display: none !important;
  }
}

.single-cta {
  display: flex;
  justify-content: center;
}

.single-author {
  padding-block: 20px;
}

.single-author__container {
  background-color: #ebeff5;
  padding: 32px 40px 40px;
}
@media only screen and (max-width: 768px) {
  .single-author__container {
    padding: 32px 20px;
  }
}

.single-author__headline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .single-author__headline {
    font-size: 20px;
  }
}
.single-author__headline::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cbd1d9;
  flex: 1;
}

.single-author__body {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .single-author__body {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.single-author__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .single-author__img {
    width: 200px;
    height: 100px;
  }
}
.single-author__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-author__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.single-author__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.single-author__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 12px;
}

.single-author__link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.single-author-campaign {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #e0e6eb;
  padding: 16px 32px;
  margin-top: 24px;
}
@media only screen and (max-width: 1080px) {
  .single-author-campaign {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .single-author-campaign {
    background: none;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
  }
}

.single-author-campaign__headline {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .single-author-campaign__headline {
    font-size: 16px;
  }
}

.single-author-campaign__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-author-campaign__item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .single-author-campaign__item-link {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0px;
    padding: 0;
  }
}

.single-author-campaign__item-img {
  width: 34.0425531915%;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .single-author-campaign__item-img {
    width: 100%;
  }
}
.single-author-campaign__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 160/86;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .single-author-campaign__item-body {
    padding: 20px 12px;
  }
}

.single-author-campaign__item-tag {
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background-color: #e0e6eb;
  border-radius: 9999px;
  padding: 6px 12px;
}

.single-author-campaign__item-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  padding-block: 16px;
}
@media only screen and (max-width: 768px) {
  .single-author-campaign__item-title {
    padding-block: 24px 8px;
  }
}

.single-article__related {
  margin-top: 60px;
}

.single-company__content {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .single-company__content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.single-company__time {
  display: none;
}
@media only screen and (max-width: 768px) {
  .single-company__time {
    display: block;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #5e6472;
  }
}

.single-company__headline {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .single-company__headline {
    font-size: 24px;
    margin-top: 16px;
  }
}

.single-company__wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .single-company__wrap {
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: 16px;
  }
}

.single-company__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.single-company__logo {
  display: block;
  width: 200px;
  aspect-ratio: 200/100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  flex-shrink: 0;
}

.single-company__button {
  display: flex;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .single-company__button {
    justify-content: center;
  }
}

.single-company__hero {
  max-width: 640px;
  margin: 32px auto 0;
}
@media only screen and (max-width: 768px) {
  .single-company__hero {
    max-width: 480px;
    margin: 20px auto 0;
  }
}

.single-company__campaign {
  max-width: 840px;
  background-color: #ebeff5;
  padding: 32px 40px;
  margin-top: 32px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .single-company__campaign {
    padding: 32px 20px;
    margin-top: 20px;
  }
}

.single-company__campaign-headline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}
@media only screen and (max-width: 768px) {
  .single-company__campaign-headline {
    font-size: 20px;
  }
}
.single-company__campaign-headline::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cbd1d9;
  flex: 1;
}

.single-company__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.single-company__item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #cbd1d9;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .single-company__item-link {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0px;
    padding: 0;
  }
}

.single-company__item-img {
  width: 22.2841225627%;
  max-height: 86px;
  aspect-ratio: 160/86;
  flex-shrink: 0;
  background-color: #ebeff5;
}
@media only screen and (max-width: 768px) {
  .single-company__item-img {
    width: 100%;
    max-height: 100%;
  }
}
.single-company__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .single-company__item-body {
    padding: 20px 12px;
  }
}

.single-company__item-tag {
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background-color: #e0e6eb;
  border-radius: 9999px;
  padding: 6px 12px;
}

.single-company__item-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  padding-block: 18px;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .single-company__item-title {
    padding-block: 16px 8px;
    margin-top: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .single-company__item-event-link {
    flex-direction: column;
    border-radius: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .single-company__item-event-body {
    padding: 16px 20px 24px;
  }
}

.single-company__item-event-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.single-company__item-event-time {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .single-company__item-event-time {
    border-top: 1px solid #cbd1d9;
    padding-top: 12px;
    margin-top: 16px;
  }
}

.single-company__item-event-online {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
  border: 1px solid #324765;
  border-radius: 2px;
  padding: 4px 8px;
  margin-top: 16px;
}

.single-company__related {
  margin-top: 72px;
}
@media only screen and (max-width: 768px) {
  .single-company__related {
    margin-top: 80px;
  }
}

.single-campaign__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .single-campaign__wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.single-campaign__headline {
  margin-top: 10px;
}

.single-campaign__deadline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5E6472;
  margin-top: 16px;
}

.single-campaign__top-cta {
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .single-campaign__top-cta {
    display: flex;
    justify-content: center;
  }
}

.single-event__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .single-event__wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.single-event__headline {
  margin-top: 10px;
}

.single-event__name-wrap {
  margin-top: 16px;
}

.single-event__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #324765;
}

.single-event__deadline {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
  margin-top: 16px;
}

.single-event__top-cta {
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .single-event__top-cta {
    display: flex;
    justify-content: center;
  }
}

.top-fv-slider {
  background-color: #ebeff5;
  padding-block: 32px 32px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-fv-slider {
    padding-block: 20px 20px;
  }
}
.top-fv-slider .splide__track {
  overflow: visible;
}

.top-fv-slider__item {
  display: flex;
  width: 480px !important;
  height: auto;
  border-radius: 0px 48px 0px 48px;
  box-shadow: 4px 4px 6px 0px rgba(8, 44, 72, 0.2);
}
@media only screen and (max-width: 768px) {
  .top-fv-slider__item {
    width: 308px !important;
  }
}
@media (max-width: 375px) {
  .top-fv-slider__item {
    width: 82.1333333333vw !important;
  }
}

.top-fv-slider .top-fv-slider__controls {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.top-fv-slider .top-fv-slider__controls .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .top-fv-slider .top-fv-slider__controls .splide__arrows {
    gap: 20px;
    margin-top: 16px;
  }
}
.top-fv-slider .top-fv-slider__controls .splide__play-pause {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: -80px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .top-fv-slider .top-fv-slider__controls .splide__play-pause:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 768px) {
  .top-fv-slider .top-fv-slider__controls .splide__play-pause {
    width: 32px;
    height: 32px;
    left: -64px;
  }
}
.top-fv-slider .top-fv-slider__controls-prev,
.top-fv-slider .top-fv-slider__controls-next {
  display: block;
  width: 40px;
  height: 40px;
  position: static;
  margin: 0;
  transition: opacity 0.3s;
  transform: none;
}
@media only screen and (max-width: 768px) {
  .top-fv-slider .top-fv-slider__controls-prev,
  .top-fv-slider .top-fv-slider__controls-next {
    width: 32px;
    height: 32px;
  }
}
@media (any-hover: hover) {
  .top-fv-slider .top-fv-slider__controls-prev:hover,
  .top-fv-slider .top-fv-slider__controls-next:hover {
    opacity: 0.7;
  }
}
.top-fv-slider .top-fv-slider__controls-next {
  rotate: 180deg;
}
.top-fv-slider .top-fv-slider__controls-pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  position: static;
}
.top-fv-slider .top-fv-slider__controls-pagination .splide__pagination__page {
  width: 10px;
  height: 10px;
  background-color: #cbd1d9;
  opacity: 1;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .top-fv-slider .top-fv-slider__controls-pagination .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}
.top-fv-slider .top-fv-slider__controls-pagination .splide__pagination__page.is-active {
  background-color: #5e6472;
  transform: scale(1);
}

.top-news {
  background-color: #e0e6eb;
  padding: 16px 12px;
}

.top-news__headline {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #324765;
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.top-news__item {
  background: #ffffff;
}

.top-news__item-link {
  display: block;
  padding: 8px 16px;
}

.top-news__item-date {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #5e6472;
}

.top-news__item-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  margin-top: 4px;
}

.top-news-card {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 0px 48px 0px 48px;
  overflow: hidden;
}

.top-news-card__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.top-news-card__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 480/270;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-news-card__item-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  padding: 20px 32px 24px;
}

.top-news-card__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.top-news-card__item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
  margin-top: auto;
}

.top-news-card__item-tag-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #2e3139;
  background: #e0e6eb;
  border-radius: 2px;
  padding: 4px 8px;
}
.top-news-card__item-tag-item::before {
  content: "#";
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #5e6472;
}

.top-news-list__button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.top-news-list__button.is-fix-sp {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .top-news-list__button.is-fix-sp {
    display: flex !important;
  }
}

.top-side-content {
  display: none;
  padding-top: 20px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .top-side-content {
    display: block;
    max-width: 480px;
    padding-bottom: 20px;
    margin-inline: auto;
  }
}/*# sourceMappingURL=style.css.map */