@charset "UTF-8";
/* ==========================================================================
  foundation
========================================================================== */
:root {
  interpolate-size: allow-keywords;
  --header-height: 40px;
}
@media (min-width: 1024px) {
  :root {
    --header-height: 80px;
  }
}
:root {
  --color-link: #2E37A5;
  --color-hover: #4D68FF;
  --color-white: #FFFFFF;
  --color-peach: #FEEBE8;
  --color-mint: #D2E6E6;
  --color-navy: #35495E;
  --color-teal: #3C918D;
  --color-coral: #DC564A;
  --color-text: #333333;
  --color-gray: #707070;
  --color-gray-light: #F7F7F7;
  --color-gradient-title: transparent linear-gradient(268deg, #2C2CAA 0%, #41323E 100%) 0% 0% no-repeat padding-box;
  --color-gradient-bg: transparent linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  --color-gradient-heading: transparent linear-gradient(95deg, #FFEDF4 0%, #F3DDFF 51%, #D9F8FF 100%) 0 0 no-repeat padding-box;
  --color-gradient-button: transparent linear-gradient(98deg, #7E7EFF 0%, #4A97FF 100%) 0 0 no-repeat padding-box;
  --color-gradient-button-hover: transparent linear-gradient(98deg, #FFFFFF 0%, #A8CDFF 100%) 0 0 no-repeat padding-box;
  --font-base: "Noto Sans JP",
  "ヒラギノ角ゴシック Pro",
  "Hiragino Kaku Gothic Pro",
  "游ゴシック Medium",
  "Yu Gothic Medium",
  "游ゴシック体",
  YuGothic,
  "メイリオ";
  --font-roboto: 'Roboto',
  sans-serif;
  --font-bold: 700;
  --font-mid: 500;
  --font-normal: 400;
  --container-large: 1600px;
  --container-middle: 1440px;
  --container-default: 1210px;
  --container-small: 960px;
}

* {
  box-sizing: border-box;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  outline: none;
  -webkit-touch-callout: none;
}

a:focus,
*:focus {
  outline: none;
}

a {
  color: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: top;
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

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

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* form */
button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=email],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

textarea {
  display: block;
  overflow: auto;
}

fieldset {
  margin: 0;
  padding: 0.35em 0.75em 0.625em;
  border: none;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

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

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
  color: var(--color-text);
  font-family: var(--font-base), sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.625;
}

p {
  margin-block: 1em;
  line-height: 1.875;
}

a {
  color: var(--color-text);
  transition: color 0.5s, -webkit-text-decoration 0.5s;
  transition: color 0.5s, text-decoration 0.5s;
  transition: color 0.5s, text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
a:hover {
  color: var(--color-hover);
}
a:hover img {
  opacity: 0.65;
}

b,
strong {
  font-weight: bolder;
}

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

h1 {
  font-size: calc(20 / 375 * 100vw);
}
@media (min-width: 782px) {
  h1 {
    font-size: min(35px, 35 / 960 * 100vw);
  }
}

h2 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: calc(18 / 375 * 100vw);
}
@media (min-width: 782px) {
  h2 {
    font-size: min(32px, 32 / 960 * 100vw);
  }
}

h3 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: calc(18 / 375 * 100vw);
}
@media (min-width: 782px) {
  h3 {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

h4 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
}

h5,
h6 {
  font-size: 1rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content ul,
.content ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.content ul {
  list-style: disc;
}
.content ul > li::marker {
  color: var(--color-font);
  font-size: 1.25em;
}
.content dl {
  width: 100%;
  margin-bottom: 1.5em;
}

table {
  width: 100%;
  margin-bottom: 4.5em;
}
table th,
table td {
  text-align: left;
  border: 1px solid var(--color-gray);
  padding: 1em;
}
table th {
  background-color: var(--color-lightgray);
  word-break: keep-all;
}
table td {
  background-color: var(--color-white);
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

@media not all and (min-width: 782px) {
  :root {
    --wp--preset--font-size--large: 24px;
    --wp--preset--font-size--xlarge: 28px;
    --wp--preset--font-size--huge: 32px;
  }
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  height: 100%;
  overflow: hidden;
}
body.is-open {
  overflow: hidden;
}
body:has(.p-top-issue__popup:popover-open) {
  overflow: hidden;
}

/* ==========================================================================
  layout
========================================================================== */
.l-archive {
  padding: 60px 0 90px;
}

.l-archive-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .l-archive-articles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .l-archive-articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
  }
}

.l-article__meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 40px;
}

.l-article__title {
  font-size: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 60px;
}

.l-article__date {
  font-size: 19px;
}

.l-article__footer {
  margin-top: 60px;
  margin-bottom: 85px;
}

.l-article-share {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 60px;
}

.l-article-share-title {
  font-weight: 400;
  margin: 0;
}

.l-breadcrumb {
  padding-block: calc(10 / 375 * 100vw) calc(15 / 375 * 100vw);
}
.l-breadcrumb .post {
  padding: 0;
}
@media (min-width: 782px) {
  .l-breadcrumb {
    padding-block: 1em 0;
  }
}
.l-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 0.3em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: calc(10 / 375 * 100vw);
}
@media (min-width: 782px) {
  .l-breadcrumb li {
    font-size: min(12px, 12 / 960 * 100vw);
  }
}
.l-breadcrumb li + li::before {
  content: ">";
  margin-inline: 0.5em;
  color: var(--color-gray);
}
.l-breadcrumb a {
  color: var(--color-text);
}
.l-breadcrumb a:hover {
  color: var(--color-teal);
  text-decoration: none;
}
.l-breadcrumb .current-item span {
  color: #8B8D8B;
}

.l-container {
  --container-size: var(--container-default);
  --m: max(15 / 375 * 100vw, 50vw - (var(--container-size) / 2));
  margin-inline: var(--m);
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.l-container.is-large {
  --container-size: var(--container-large);
}
.l-container.is-middle {
  --container-size: var(--container-middle);
}
.l-container.is-small {
  --container-size: var(--container-small);
}

.l-contents {
  margin-inline: auto;
}

.l-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer a {
  color: var(--color-text);
  text-decoration: none;
}
.l-footer a:hover {
  text-decoration: underline;
}
.l-footer .copyright {
  margin: 0;
  text-align: center;
}
@media (min-width: 782px) {
  .l-footer .copyright {
    text-align: right;
  }
}

.l-footer-primary {
  background-color: var(--color-gray-light);
  padding-top: calc(40 / 375 * 100vw);
  padding-bottom: calc(20 / 375 * 100vw);
}
@media (min-width: 782px) {
  .l-footer-primary {
    padding-top: min(60px, 60 / 960 * 100vw);
    padding-bottom: min(90px, 90 / 960 * 100vw);
  }
}

.l-footer-services__heading {
  font-size: calc(18 / 375 * 100vw);
  font-weight: var(--font-normal);
  margin: 0;
}
@media (min-width: 782px) {
  .l-footer-services__heading {
    font-size: min(22px, 22 / 960 * 100vw);
  }
}

.l-footer-services__grid {
  display: flex;
  flex-direction: column;
  margin-top: calc(15 / 375 * 100vw);
}
@media (min-width: 782px) {
  .l-footer-services__grid {
    flex-direction: row;
    justify-content: space-between;
    margin-top: min(35px, 35 / 960 * 100vw);
    gap: 1em;
  }
}

.l-footer-services__item {
  border-top: 1px solid var(--color-text);
  margin-inline: calc(var(--m) * -1);
  padding-inline: var(--m);
  padding-block: 20px;
}
@media (min-width: 782px) {
  .l-footer-services__item {
    border-top: none;
    margin-inline: 0;
    padding: 0;
  }
}

.l-footer-services__button {
  background: none;
  border: none;
  color: var(--color-text);
  display: flex;
  gap: 1em;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-base), sans-serif;
  padding: 0;
  width: 100%;
}
.l-footer-services__button::after {
  -webkit-mask-image: url("../images/icon/icon-arrow-single.svg");
          mask-image: url("../images/icon/icon-arrow-single.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: calc(20 / 375 * 100vw);
  height: calc(10 / 375 * 100vw);
  background-color: var(--color-text);
  content: "";
  display: block;
  transition: rotate 0.3s ease;
}
.is-active .l-footer-services__button::after {
  rotate: 180deg;
}
@media (min-width: 782px) {
  .l-footer-services__button {
    display: contents;
    gap: unset;
  }
  .l-footer-services__button::after {
    content: none;
  }
}

.l-footer-services__title {
  font-size: calc(14 / 375 * 100vw);
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
}
.l-footer-services__title::before {
  font-size: 0.5em;
  content: "■";
  line-height: 1;
}
@media (min-width: 782px) {
  .l-footer-services__title {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

.l-footer-services__sub-title {
  font-size: calc(12 / 375 * 100vw);
  margin: 0;
  text-align: left;
}
@media (min-width: 782px) {
  .l-footer-services__sub-title {
    font-size: min(16px, 16 / 960 * 100vw);
  }
}

.l-footer-services__list {
  height: 0;
  visibility: hidden;
  transition: height 0.3s ease, visibility 0s ease 0s;
}
.is-active .l-footer-services__list {
  margin-top: 1em;
  height: auto;
  visibility: visible;
  transition: height 0.3s ease, visibility 0s ease 0.15s;
}
.l-footer-services__list .menu-item {
  font-size: calc(12 / 375 * 100vw);
  line-height: 2;
}
@media (min-width: 782px) {
  .l-footer-services__list {
    margin-top: 1.3em;
    height: auto;
    visibility: visible;
  }
  .l-footer-services__list .menu-item {
    font-size: min(16px, 16 / 960 * 100vw);
  }
}

.l-footer-secondary {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding-top: 40px;
  padding-bottom: 25px;
}
.l-footer-secondary a {
  color: var(--color-white);
}
@media (min-width: 782px) {
  .l-footer-secondary {
    padding-top: 120px;
    padding-bottom: 20px;
  }
}

.l-footer-secondary__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 782px) {
  .l-footer-secondary__inner {
    flex-direction: row;
    padding-bottom: 120px;
  }
}

.l-footer-info,
.l-footer-nav {
  margin-inline: calc(var(--m) * -1);
  padding-inline: var(--m);
}
@media (min-width: 782px) {
  .l-footer-info,
  .l-footer-nav {
    margin-inline: 0;
    padding-inline: 0;
  }
}

.l-footer-info {
  border-top: 1px solid var(--color-white);
  padding-block: 50px;
  order: 2;
}
@media (min-width: 782px) {
  .l-footer-info {
    order: unset;
    border: none;
    padding-block: 0;
    min-width: min(400px, 400 / 960 * 100vw);
  }
}

.l-footer-nav {
  padding-bottom: 30px;
  order: 1;
}
@media (min-width: 782px) {
  .l-footer-nav {
    padding-bottom: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    order: unset;
  }
}
.l-footer-nav .widget_nav_menu .menu {
  font-size: calc(14 / 375 * 100vw);
}
.l-footer-nav .widget_nav_menu .menu li {
  line-height: 2;
}
.l-footer-nav .widget_nav_menu .sub-menu {
  font-size: calc(12 / 375 * 100vw);
}
.l-footer-nav .widget_nav_menu .sub-menu a {
  display: flex;
  gap: 0.5em;
}
.l-footer-nav .widget_nav_menu .sub-menu a::before {
  content: "-";
  display: block;
}
@media (min-width: 782px) {
  .l-footer-nav .widget_nav_menu .menu {
    font-size: min(16px, 16 / 960 * 100vw);
  }
  .l-footer-nav .widget_nav_menu .sub-menu {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}

@media (min-width: 1024px) {
  .l-gnav {
    height: 100%;
  }
}

.l-gnav__wrapper {
  visibility: hidden;
  opacity: 0;
  background-color: var(--color-white);
  height: calc(100svh - var(--header-height));
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.is-open .l-gnav__wrapper {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: unset;
}
@media (min-width: 1024px) {
  .l-gnav__wrapper {
    display: flex;
    align-items: center;
    gap: min(28px, 28 / 960 * 100vw);
    opacity: 1;
    overflow-y: unset;
    height: 100%;
    position: static;
    visibility: visible;
    transform: unset;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .l-gnav__wrapper {
    gap: min(20px, 20 / 960 * 100vw);
  }
}

.l-gnav__list a {
  display: block;
  text-decoration: none;
}
.l-gnav__list a:hover, .l-gnav__list a:focus, .l-gnav__list a:active {
  color: var(--color-teal);
}
@media not all and (min-width: 1024px) {
  .l-gnav__list > .menu-item {
    border-bottom: 1px solid #e4e4e4;
  }
  .l-gnav__list > .menu-item > a {
    padding: 1em;
  }
  .l-gnav__list .menu-item-has-children > a {
    position: relative;
  }
  .l-gnav__list .menu-item-has-children > a::before, .l-gnav__list .menu-item-has-children > a::after {
    border-top: 1px solid var(--color-gray);
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    content: "";
    height: 0;
    width: 1em;
    transition: transform 0.3s;
  }
  .l-gnav__list .menu-item-has-children > a::before {
    transform: translateY(-50%) rotate(90deg);
  }
  .l-gnav__list .menu-item-has-children.is-active > a::before {
    transform: translateY(-50%) rotate(-180deg);
  }
  .l-gnav__list .sub-menu {
    background-color: var(--color-gray-light);
    height: 0;
    display: grid;
    visibility: hidden;
    padding-inline: 1em;
    padding-block: 0;
    gap: 0.5em;
    grid-template-columns: repeat(2, 1fr);
    transition: padding 0.3s ease, height 0.3s ease;
  }
  .l-gnav__list .sub-menu a {
    background-color: var(--color-white);
    font-size: 0.8em;
    padding: 1em;
  }
  .l-gnav__list .menu-item-has-children.is-active .sub-menu {
    height: auto;
    display: grid;
    padding-block: 1em;
    visibility: visible;
  }
}
@media (min-width: 1024px) {
  .l-gnav__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: min(25px, 25 / 960 * 100vw);
    row-gap: 0.3em;
    justify-content: flex-end;
  }
  .l-gnav__list > .menu-item > a {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 10.1em;
    line-height: 1.4;
  }
  .l-gnav__list .menu-item-has-children {
    position: relative;
  }
  .l-gnav__list .menu-item-has-children > a {
    gap: 0.5em;
  }
  .l-gnav__list .menu-item-has-children > a::after {
    -webkit-mask-image: url("../images/icon/icon-triangle.svg");
            mask-image: url("../images/icon/icon-triangle.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    width: 0.8em;
    height: 0.5em;
    background-color: var(--color-teal);
    content: "";
    display: block;
    flex-shrink: 0;
  }
  .l-gnav__list .menu-item-has-children .sub-menu {
    background-color: var(--color-white);
    border: 1px solid var(--color-teal);
    border-radius: 0 0 4px 4px;
    padding: 1em;
    display: none;
    white-space: nowrap;
    position: absolute;
    top: calc(100% + 1em);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .l-gnav__list .menu-item-has-children .sub-menu a {
    font-size: min(16px, 16 / 960 * 100vw);
    line-height: 2;
  }
  .l-gnav__list .menu-item-has-children.is-active .sub-menu {
    display: block;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .l-gnav__list {
    font-size: min(14px, 14 / 960 * 100vw);
    column-gap: min(18px, 18 / 960 * 100vw);
  }
  .l-gnav__list .menu-item.is-home {
    display: none;
  }
}

.l-gnav__inner {
  padding: 40px 28px;
}
@media (min-width: 1024px) {
  .l-gnav__inner {
    height: 100%;
    padding: 0;
  }
}

.l-gnav__cta-list {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  gap: 20px;
}
@media (min-width: 1024px) {
  .l-gnav__cta-list {
    height: 100%;
    flex-direction: row;
    gap: 2px;
    padding: 0;
  }
}

.l-gnav__sub-list {
  font-size: min(14 / 375 * 100vw, 14px);
  display: grid;
  grid-template-columns: repeat(3, auto);
}
.l-gnav__sub-list a {
  display: block;
  line-height: 1;
  padding-inline: 1em;
  text-align: center;
  text-decoration: none;
}
.l-gnav__sub-list li:first-child a {
  border-right: 1px solid var(--color-gray);
  padding-left: 0;
  text-align: left;
}
.l-gnav__sub-list li:last-child a {
  border-left: 1px solid var(--color-gray);
  padding-right: 0;
  text-align: right;
}
@media (min-width: 1024px) {
  .l-gnav__sub-list {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  height: 40px;
  z-index: 10;
}
@media (min-width: 1024px) {
  .site-header {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .admin-bar .site-header {
    top: 32px;
  }
}

.site-logo {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  width: 80px;
}
.site-logo a {
  display: block;
}
@media (min-width: 1024px) {
  .site-logo {
    width: min(180px, 180 / 960 * 100vw);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .site-logo {
    width: min(150px, 150 / 960 * 100vw);
  }
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  height: 100%;
  padding-inline: 15px;
  position: relative;
}
@media (min-width: 1024px) {
  .l-header-inner {
    padding-left: 30px;
    padding-right: 0;
  }
}

.columns {
  display: grid;
  grid-gap: 20px;
  margin-bottom: 80px;
}
@media (min-width: 600px) {
  .columns {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}

@media (min-width: 600px) {
  .columns--left-wide {
    grid-template-columns: repeat(3, 1fr);
  }
  .columns--left-wide .column:first-child {
    grid-area: 1/1/2/3;
  }
  .columns--left-wide .column:nth-child(2) {
    grid-area: 1/3/2/4;
  }
}

@media not all and (min-width: 600px) {
  .columns--reverse .column:first-child {
    order: 2;
  }
}

.column-full {
  margin-bottom: 60px;
}

@media (min-width: 782px) {
  .columns--three {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
}

@media (min-width: 782px) {
  .columns--four {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

.column > ul, .column > ol, .column > dl, .column > table {
  margin-bottom: 1.5em;
}

/* ==========================================================================
  project
========================================================================== */
.p-home-kv {
  padding-top: 40px;
}
@media not all and (min-width: 1024px) {
  .p-home-kv {
    background-image: url("../images/home-kv-bg-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-home-kv .wp-block-cover__image-background {
    display: none;
  }
}
@media not all and (min-width: 1280px) {
  .p-home-kv .wp-block-columns.is-layout-flex {
    gap: 20px;
  }
}
@media not all and (min-width: 1280px) {
  .p-home-kv .wp-block-columns.is-layout-flex .wp-block-column:first-child {
    flex-basis: 50% !important;
  }
}
@media not all and (min-width: 1024px) {
  .p-home-kv .wp-block-columns.is-layout-flex .wp-block-column:first-child {
    flex-basis: 100% !important;
  }
}
.p-home-kv .wp-block-image {
  margin-bottom: 0;
}
@media not all and (min-width: 1024px) {
  .p-home-kv p {
    font-size: clamp(14px, 3vw, 18px);
    text-align: center;
    margin-bottom: 30px;
  }
}
@media not all and (min-width: 1024px) {
  .p-home-kv .wp-block-heading {
    font-size: clamp(22px, 5.5vw, 28px);
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .p-home-kv .wp-block-buttons.is-content-justification-center {
    margin-top: 40px !important;
    justify-content: flex-start;
  }
}

.p-home-logos {
  padding: 20px;
  display: flex;
  contain: paint;
}
@media not all and (min-width: 782px) {
  .p-home-logos {
    padding: 10px;
  }
}
.p-home-logos .wp-block-gallery.p-home-logos__slider-inner {
  overflow: hidden;
  display: block !important;
  white-space: nowrap;
  width: max-content;
}
.p-home-logos .wp-block-gallery.p-home-logos__slider-inner .wp-block-image {
  display: inline-block !important;
  width: auto !important;
  height: 48px;
  padding: 10px;
  vertical-align: middle;
}
@media (min-width: 782px) {
  .p-home-logos .wp-block-gallery.p-home-logos__slider-inner .wp-block-image {
    height: 72px;
    margin-right: 10px !important;
  }
}
.p-home-logos .wp-block-gallery.p-home-logos__slider-inner .wp-block-image img {
  max-height: 100%;
  height: 100%;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

@media not all and (min-width: 1024px) {
  .p-home-section-banners.is-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-home-section-can-solve {
  background-image: url("../images/home-can-solve-bg.jpg");
  background-repeat: no-repeat;
}
@media not all and (min-width: 782px) {
  .p-home-section-can-solve {
    background-position: left center;
    background-size: 80% auto;
  }
}
@media (min-width: 782px) {
  .p-home-section-can-solve {
    background-position: left bottom;
  }
}
@media not all and (min-width: 782px) {
  .p-home-section-can-solve .is-layout-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 782px) {
  .p-home-section-can-solve .p-home-section-can-solve__box {
    position: relative;
    margin-left: 16px;
  }
}
.p-home-section-can-solve .p-home-section-can-solve__box h3 {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
}
@media not all and (min-width: 782px) {
  .p-home-section-can-solve .p-home-section-can-solve__box h3 {
    padding: 10px;
    width: calc(100% + 48px);
    transform: translateX(-24px);
    margin: -24px auto 1em;
  }
}
@media (min-width: 782px) {
  .p-home-section-can-solve .p-home-section-can-solve__box h3 {
    line-height: 1.2;
    padding: 10px 20px;
    position: absolute;
    left: -16px;
    top: -32px;
  }
  .p-home-section-can-solve .p-home-section-can-solve__box h3 mark {
    display: block;
  }
  .p-home-section-can-solve .p-home-section-can-solve__box h3 mark:first-child {
    font-size: 12px;
  }
  .p-home-section-can-solve .p-home-section-can-solve__box h3 mark:last-child {
    font-size: 32px;
  }
}
@media not all and (min-width: 782px) {
  .p-home-section-can-solve .p-home-section-can-solve__box h4 {
    text-align: center;
  }
}
@media (min-width: 782px) {
  .p-home-section-can-solve .p-home-section-can-solve__box h4 {
    margin-top: 12px;
    padding-left: 60px;
  }
}
.p-home-section-can-solve .p-home-section-can-solve__more {
  margin-bottom: 0;
  text-decoration: none;
}
@media not all and (min-width: 782px) {
  .p-home-section-can-solve .p-home-section-can-solve__more {
    text-align: center;
  }
}
.p-home-section-can-solve:hover h3,
.p-home-section-can-solve:hover .p-home-section-can-solve__more a {
  text-decoration: none !important;
}

.p-home-section .is-style-has-shadow {
  border-radius: 4px;
}
.p-home-section .p-home-section__button {
  margin: 30px auto 40px;
}
@media (min-width: 782px) {
  .p-home-section .p-home-section__inner {
    position: relative;
  }
  .p-home-section .p-home-section__inner.container {
    padding-inline: 0;
  }
  .p-home-section .p-home-section__inner .p-home-section__button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    margin: 0;
  }
}

.p-home-seminars {
  padding: 40px 20px;
  background-image: url("../images/home-seminars-bg.jpg");
  background-repeat: no-repeat;
}
@media not all and (min-width: 782px) {
  .p-home-seminars {
    background-position: right center;
    background-size: 80% auto;
  }
}
@media (min-width: 782px) {
  .p-home-seminars {
    background-position: right bottom;
  }
}
.p-home-seminars .l-archive-articles {
  gap: 40px;
}
@media (min-width: 782px) {
  .p-home-seminars .l-archive-articles {
    margin-bottom: 30px;
  }
}
@media not all and (min-width: 782px) {
  .p-home-seminars .p-home-section__inner .p-home-section__button {
    right: 20px;
  }
}

.p-home-cases {
  padding: 40px 20px 60px;
  margin-top: 60px;
  background-color: #F5F9FA;
  box-shadow: 0 -20px 30px rgba(0, 0, 0, 0.1019607843);
}
.p-home-cases .l-archive-articles {
  gap: 40px;
}
@media (min-width: 782px) {
  .p-home-cases .l-archive-articles {
    margin-bottom: 30px;
  }
}

.p-home-news {
  padding-bottom: 40px;
}
.p-home-news .p-home-news__list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 60px;
}
.p-home-news .p-home-news__list .p-home-news__link {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-lightgray);
  padding: 10px;
  transition: background-color 0.5s;
}
.p-home-news .p-home-news__list .p-home-news__link .p-home-news__meta {
  padding-left: 10px;
}
@media (min-width: 782px) {
  .p-home-news .p-home-news__list .p-home-news__link .p-home-news__meta {
    font-size: 18px;
  }
}
.p-home-news .p-home-news__list .p-home-news__link .p-home-news__label {
  margin-left: 16px;
}
.p-home-news .p-home-news__list .p-home-news__link .p-home-news__title {
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}
@media (min-width: 782px) {
  .p-home-news .p-home-news__list .p-home-news__link .p-home-news__title {
    font-size: 20px;
  }
}
.p-home-news .p-home-news__list .p-home-news__link:hover {
  background-color: #f9f9f9;
}
.p-home-news .p-home-news__list .p-home-news__link:hover .p-home-news__title {
  text-decoration: underline;
}

.p-home-seminars .container,
.p-home-cases .container,
.p-home-news .container {
  padding-inline: 0;
}

.error404 .content {
  padding-bottom: 60px;
}
.error404 .content .error404__content {
  margin-bottom: 40px;
}

.p-contact {
  background-color: var(--color-gray-light);
  border-bottom: 10px solid var(--color-white);
}

.p-contact-body .wp-block-columns.is-layout-flex {
  gap: 0;
}
.p-contact-body .wp-block-column {
  padding-top: calc(40 / 375 * 100vw);
  padding-bottom: calc(40 / 375 * 100vw);
}
@media (min-width: 782px) {
  .p-contact-body .wp-block-column {
    padding-top: min(135px, 135 / 1210 * 100vw);
    padding-bottom: min(155px, 155 / 1210 * 100vw);
  }
}
@media (min-width: 782px) {
  .p-contact-body .wp-block-column:first-child {
    padding-right: min(80px, 80 / 1210 * 100vw);
  }
}
@media (min-width: 782px) {
  .p-contact-body .wp-block-column:last-child {
    padding-left: min(80px, 80 / 1210 * 100vw);
  }
}
.p-contact-body .wp-block-column:has(.snow-monkey-form) {
  padding: 0;
}
.p-contact-body h1.wp-block-heading {
  font-weight: var(--font-normal);
}
.p-contact-body .wp-block-image img {
  border-radius: 10px;
}
.p-contact-body .snow-monkey-form {
  background: var(--color-white);
  margin-inline: calc(var(--m) * -1);
  padding-inline: var(--m);
  padding-top: calc(40 / 375 * 100vw);
  padding-bottom: calc(40 / 375 * 100vw);
  height: 100%;
}
@media (min-width: 782px) {
  .p-contact-body .snow-monkey-form {
    margin-left: 0;
    padding-top: min(135px, 135 / 1210 * 100vw);
    padding-bottom: min(155px, 155 / 1210 * 100vw);
    padding-left: min(80px, 80 / 1210 * 100vw);
  }
}

/* ==========================================================================
  component
========================================================================== */
.c-box.is-gray {
  background-color: var(--color-gray-light);
}

.c-icon-arrow {
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  width: 1em;
}
.c-icon-arrow::after {
  -webkit-mask-image: url("../images/icon/icon-arrow.svg");
          mask-image: url("../images/icon/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 0.6em;
  height: 0.5em;
  background-color: var(--color-white);
  content: "";
  display: block;
}
.c-button:hover .c-icon-arrow {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
}
.c-button:hover .c-icon-arrow::after {
  background-color: var(--color-white);
}
.is-outline .c-icon-arrow {
  border-color: var(--color-teal);
  background-color: var(--color-teal);
}
.c-button.is-outline:hover .c-icon-arrow {
  background-color: var(--color-white);
  border-color: var(--color-white);
}
.c-button.is-outline:hover .c-icon-arrow::after {
  background-color: var(--color-teal);
}

@media (min-width: 782px) {
  .c-button-wrapper.is-small {
    width: min(264px, 264 / 960 * 100vw);
  }
}
.c-button-wrapper.is-center {
  margin-inline: auto;
}

.c-button {
  display: block;
  text-decoration: none;
}
.c-button.is-primary, .c-button.is-outline {
  background-color: var(--color-teal);
  border: 1px solid var(--color-teal);
  color: var(--color-white);
  font-size: calc(16 / 375 * 100vw);
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border-radius: 5px;
}
@media (min-width: 782px) {
  .c-button.is-primary, .c-button.is-outline {
    font-size: min(16px, 16 / 960 * 100vw);
  }
}
.c-button.is-primary .c-icon-arrow, .c-button.is-outline .c-icon-arrow {
  background-color: var(--color-teal);
}
.c-button.is-primary:hover, .c-button.is-outline:hover {
  background-color: var(--color-white);
  color: var(--color-teal);
}
.c-button.is-primary:hover .c-icon-arrow, .c-button.is-outline:hover .c-icon-arrow {
  background-color: var(--color-white);
}
.c-button.is-primary:hover .c-icon-arrow::after, .c-button.is-outline:hover .c-icon-arrow::after {
  background-color: var(--color-teal);
}
.c-button.is-outline {
  background-color: var(--color-white);
  color: var(--color-teal);
}
.c-button.is-outline:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
}
.c-button.is-header-download, .c-button.is-header-inquiry {
  background-color: var(--color-bg);
  border-radius: 10px;
  color: var(--color-white);
  display: flex;
  column-gap: 0.5em;
  row-gap: 0.2em;
  align-items: center;
  justify-content: center;
  padding: 1em;
  position: relative;
  white-space: nowrap;
  transition: background 0.3s;
}
.c-button.is-header-download::before, .c-button.is-header-inquiry::before {
  content: "";
  display: block;
  flex-shrink: 0;
}
.c-button.is-header-download .c-icon-arrow, .c-button.is-header-inquiry .c-icon-arrow {
  background-color: var(--color-bg);
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}
.c-button.is-header-download:hover, .c-button.is-header-inquiry:hover {
  background-color: color-mix(in srgb, var(--color-bg), black 10%);
}
.c-button.is-header-download {
  --color-bg: var(--color-teal);
}
.c-button.is-header-download::before {
  -webkit-mask-image: url("../images/icon/icon-docs.svg");
          mask-image: url("../images/icon/icon-docs.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 1.2em;
  height: 1.2em;
  background-color: var(--color-white);
}
.c-button.is-header-inquiry {
  --color-bg: var(--color-coral);
}
.c-button.is-header-inquiry::before {
  -webkit-mask-image: url("../images/icon/icon-mail.svg");
          mask-image: url("../images/icon/icon-mail.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 1.2em;
  height: 1.2em;
  background-color: var(--color-white);
}
@media (min-width: 1024px) {
  .c-button.is-header-download, .c-button.is-header-inquiry {
    border-radius: unset;
    padding: 1.688em 1.5em;
    height: 100%;
  }
  .c-button.is-header-download .c-icon-arrow, .c-button.is-header-inquiry .c-icon-arrow {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .c-button.is-header-download, .c-button.is-header-inquiry {
    font-size: min(15px, 15 / 960 * 100vw);
    flex-direction: column;
  }
}

.c-button-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.3em;
  padding: 0;
}
.c-button-toggle .c-button-toggle__text {
  color: var(--color-teal);
  font-size: 10px;
  display: none;
}
.is-open .c-button-toggle .c-button-toggle__text {
  display: block;
}
.c-button-toggle .c-button-toggle__icon {
  border-top: 1px solid var(--color-teal);
  border-bottom: 1px solid var(--color-teal);
  display: flex;
  align-items: center;
  width: 24px;
  height: 12px;
}
.c-button-toggle .c-button-toggle__icon::before, .c-button-toggle .c-button-toggle__icon::after {
  content: "";
  display: block;
  border-top: 1px solid var(--color-teal);
  width: 100%;
  height: 0;
}
.c-button-toggle .c-button-toggle__icon::after {
  content: none;
}
.is-open .c-button-toggle .c-button-toggle__icon {
  border: 1px solid var(--color-teal);
  border-radius: 2px;
  display: block;
  position: relative;
  height: 1.5em;
  width: 1.5em;
}
.is-open .c-button-toggle .c-button-toggle__icon::before, .is-open .c-button-toggle .c-button-toggle__icon::after {
  position: absolute;
  left: 1.5px;
  top: 50%;
  width: 80%;
  transform: rotate(45deg);
}
.is-open .c-button-toggle .c-button-toggle__icon::after {
  content: "";
  left: unset;
  right: 1.5px;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  .c-button-toggle {
    display: none;
  }
}

.c-button-more, .c-button-back {
  cursor: pointer;
  display: inline-flex;
  font-size: calc(16 / 375 * 100vw);
  align-items: center;
  gap: 0.5em;
  color: var(--color-teal);
  text-decoration: none;
  appearance: none;
  background: none;
  border: none;
}
@media (min-width: 782px) {
  .c-button-more, .c-button-back {
    font-size: min(22px, 22 / 960 * 100vw);
  }
}
.c-button-more.is-small, .is-small.c-button-back {
  font-size: calc(14 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-button-more.is-small, .is-small.c-button-back {
    font-size: min(16px, 16 / 960 * 100vw);
  }
}
.c-button-more .c-icon-arrow, .c-button-back .c-icon-arrow {
  border-color: var(--color-teal);
  font-size: calc(24 / 375 * 100vw);
  height: calc(24 / 375 * 100vw);
  width: calc(24 / 375 * 100vw);
}
.c-button-more .c-icon-arrow::after, .c-button-back .c-icon-arrow::after {
  background-color: var(--color-teal);
}
@media (min-width: 782px) {
  .c-button-more .c-icon-arrow, .c-button-back .c-icon-arrow {
    font-size: min(32px, 32 / 960 * 100vw);
    height: min(32px, 32 / 960 * 100vw);
    width: min(32px, 32 / 960 * 100vw);
  }
}
.c-button-more .c-icon-arrow.is-small, .c-button-back .c-icon-arrow.is-small {
  font-size: calc(18 / 375 * 100vw);
  height: calc(18 / 375 * 100vw);
  width: calc(18 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-button-more .c-icon-arrow.is-small, .c-button-back .c-icon-arrow.is-small {
    font-size: min(24px, 24 / 960 * 100vw);
    height: min(24px, 24 / 960 * 100vw);
    width: min(24px, 24 / 960 * 100vw);
  }
}
.c-button-more:hover, .c-button-back:hover {
  color: var(--color-teal);
}
.c-button-more:hover .c-icon-arrow, .c-button-back:hover .c-icon-arrow {
  background-color: var(--color-teal);
}
.c-button-more:hover .c-icon-arrow::after, .c-button-back:hover .c-icon-arrow::after {
  background-color: var(--color-white);
}

.c-button-back .c-icon-arrow {
  transform: scale(-1, 1);
}

.c-button-cta {
  background-color: var(--color-teal);
  border-radius: 5px;
  color: var(--color-white);
  display: grid;
  font-size: calc(14 / 375 * 100vw);
  font-weight: var(--font-mid);
  grid-template-columns: auto 1fr auto;
  margin: 0;
  padding: 1em;
  text-decoration: none;
  width: 100%;
  transition: background 0.3s;
}
@media (min-width: 1024px) {
  .c-button-cta {
    font-size: min(22px, 22 / 960 * 100vw);
  }
}
.c-button-cta .c-button-cta__label {
  background-color: var(--color-white);
  border-radius: 50vw;
  color: var(--color-teal);
  font-size: calc(14 / 375 * 100vw);
  align-self: center;
  line-height: 1;
  padding: 0.2em 0.5em;
}
@media (min-width: 1024px) {
  .c-button-cta .c-button-cta__label {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}
.c-button-cta .c-button-cta__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.c-button-cta .c-button-cta__text::before {
  content: "";
  display: block;
  background-color: var(--color-white);
  height: calc(22 / 375 * 100vw);
  width: calc(22 / 375 * 100vw);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (min-width: 1024px) {
  .c-button-cta .c-button-cta__text::before {
    height: min(30px, 30 / 960 * 100vw);
    width: min(30px, 30 / 960 * 100vw);
  }
}
.c-button-cta.is-download .c-button-cta__text::before {
  -webkit-mask-image: url("../images/icon/icon-docs.svg");
          mask-image: url("../images/icon/icon-docs.svg");
}
.c-button-cta.is-inquiry .c-button-cta__text::before {
  -webkit-mask-image: url("../images/icon/icon-mail.svg");
          mask-image: url("../images/icon/icon-mail.svg");
}
.c-button-cta::after {
  -webkit-mask-image: url("../images/icon/icon-arrow-border.svg");
          mask-image: url("../images/icon/icon-arrow-border.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: calc(20 / 375 * 100vw);
  height: calc(20 / 375 * 100vw);
  background-color: var(--color-white);
  content: "";
  display: block;
  align-self: center;
}
@media (min-width: 1024px) {
  .c-button-cta::after {
    height: min(36px, 36 / 960 * 100vw);
    width: min(36px, 36 / 960 * 100vw);
  }
}
.c-button-cta:hover {
  background-color: color-mix(in srgb, var(--color-teal), black 10%);
  color: var(--color-white);
}

.c-button-close {
  appearance: none;
  background: none;
  border: 1px solid var(--color-teal);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: calc(18 / 375 * 100vw);
  width: calc(18 / 375 * 100vw);
}
.c-button-close::after {
  -webkit-mask-image: url("../images/icon/icon-cross.svg");
          mask-image: url("../images/icon/icon-cross.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: calc(10 / 375 * 100vw);
  height: calc(10 / 375 * 100vw);
  background-color: var(--color-teal);
  content: "";
  display: block;
}
@media (min-width: 782px) {
  .c-button-close {
    height: min(32px, 32 / 960 * 100vw);
    width: min(32px, 32 / 960 * 100vw);
  }
  .c-button-close::after {
    height: min(16px, 16 / 960 * 100vw);
    width: min(16px, 16 / 960 * 100vw);
  }
}

.c-card-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(15 / 375 * 100vw);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 782px) {
  .c-card-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: min(40px, 40 / 960 * 100vw);
    row-gap: min(40px, 40 / 960 * 100vw);
  }
}

@media (min-width: 782px) {
  .c-card-list__item {
    display: contents;
  }
}

.c-card {
  background-color: var(--color-white);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 0;
  text-decoration: none;
  position: relative;
}
.c-card::after {
  content: "";
  display: block;
  height: 4px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-teal);
  transition: width 0.3s ease;
}
@media (min-width: 782px) {
  .c-card {
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
}
.c-card:hover {
  color: var(--color-text);
}
.c-card:hover::after {
  width: 100%;
}

@media (min-width: 782px) {
  .c-card.is-no-text {
    grid-row: span 3;
  }
}
@media (min-width: 782px) {
  .c-card.is-no-text .c-card__body {
    grid-row: span 2;
  }
}

.c-card__thumbnail {
  aspect-ratio: 2/1;
  overflow: hidden;
}
.c-card__thumbnail img {
  object-fit: cover;
  display: block;
  height: 100%;
  width: 100%;
  transition: scale 0.3s;
}

.c-card:hover .c-card__thumbnail img {
  scale: 1.1;
  opacity: 1;
}

.c-card__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: calc(20 / 375 * 100vw) calc(15 / 375 * 100vw) calc(10 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-card__body {
    grid-row: span 3;
    grid-template-rows: subgrid;
    padding: min(15px, 15 / 960 * 100vw) min(12px, 12 / 960 * 100vw);
  }
}

.c-card__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 782px) {
  .c-card__meta {
    margin-bottom: 0;
    padding-bottom: 10px;
  }
}

.c-card__date {
  color: var(--color-text);
  font-size: calc(12 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-card__date {
    font-size: min(12px, 12 / 960 * 100vw);
  }
}

.c-card__title {
  font-size: calc(16 / 375 * 100vw);
  font-weight: var(--font-normal);
  line-height: 1.5;
  margin: 0;
  margin-top: 1em;
}
@media (min-width: 782px) {
  .c-card__title {
    font-size: min(16px, 16 / 960 * 100vw);
    font-weight: var(--font-mid);
    margin-top: 0.5em;
  }
}

.c-card__text {
  color: var(--color-coral);
  font-size: calc(12 / 375 * 100vw);
  text-transform: uppercase;
  margin: 0;
  margin-top: 1em;
}
@media (min-width: 782px) {
  .c-card__text {
    font-size: min(12px, 12 / 960 * 100vw);
  }
}

.c-card__excerpt {
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.8;
  margin: 1em 0 0;
}
@media (min-width: 782px) {
  .c-card__excerpt {
    font-size: min(14px, 14 / 960 * 100vw);
    margin-top: 0.5em;
  }
}

.c-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  list-style: none;
  margin: 0.8em 0 0;
  padding: 0;
}

@media (min-width: 782px) {
  .c-card.is-case {
    grid-row: span 3;
  }
}
@media (min-width: 782px) {
  .c-card.is-case .c-card__body {
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
}
.c-card.is-case .c-card__title {
  margin-top: 0;
}

@media (min-width: 782px) {
  .c-card.is-event {
    grid-row: span 3;
  }
  .c-card.is-event:has(.c-card__thumbnail) {
    grid-row: span 4;
  }
  .c-card.is-event:not(:has(.c-card__tags)) {
    grid-row: span 2;
  }
  .c-card.is-event:not(:has(.c-card__tags)):has(.c-card__thumbnail) {
    grid-row: span 3;
  }
  .c-card.is-event:not(:has(.c-card__tags)) .c-card__body {
    grid-row: span 2;
  }
}
@media (min-width: 782px) {
  .c-card.is-event .c-card__body {
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}
.c-card.is-event .c-card__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 0.4em;
}
.c-card.is-event .c-card__meta:not(:has(.c-card__date)) {
  justify-content: flex-end;
}
.c-card.is-event .c-card__meta .c-card__labels {
  display: flex;
  gap: 0.3em;
  flex-shrink: 0;
}

.c-category-label {
  color: var(--color-red);
  background-color: var(--color-pink);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding: 3px 8px;
}
.c-category-label a {
  color: var(--color-red);
  text-decoration: none;
}
.c-category-label a:hover {
  color: inherit;
}
.c-category-label.c-category-label--release {
  background-color: var(--color-beige);
  color: var(--color-brown);
}
.c-category-label.c-category-label--release a {
  color: var(--color-brown);
}
.c-category-label.c-category-label--media {
  background-color: var(--color-lightgreen);
  color: var(--color-green);
}
.c-category-label.c-category-label--media a {
  color: var(--color-green);
}

.c-category-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: calc(15 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-category-nav-wrapper {
    flex-direction: row;
    gap: min(20px, 20 / 960 * 100vw);
  }
  .c-category-nav-wrapper .c-category-nav {
    flex: 1;
    gap: min(20px, 20 / 960 * 100vw);
  }
  .c-category-nav-wrapper .c-category-nav__title {
    flex: 1;
    width: auto;
  }
}

.c-category-nav {
  align-items: center;
  background-color: var(--color-mint);
  border-radius: 8px;
  display: flex;
  gap: 1em;
  padding: calc(8 / 375 * 100vw);
  padding-left: calc(10 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-category-nav {
    padding: min(15px, 15 / 960 * 100vw) min(20px, 20 / 960 * 100vw);
    gap: min(40px, 40 / 960 * 100vw);
  }
}

.c-category-nav__title {
  flex-shrink: 0;
  font-size: calc(12 / 375 * 100vw);
  font-weight: var(--font-mid);
  margin: 0;
  width: min(375px, 375 / 960 * 100vw);
}
@media (min-width: 782px) {
  .c-category-nav__title {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

.c-category-nav__body {
  flex: 1;
  position: relative;
}

.c-category-nav__trigger {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  font-size: calc(14 / 375 * 100vw);
  justify-content: space-between;
  padding: 0.5em 1em;
  width: 100%;
}
.c-category-nav__trigger::after {
  -webkit-mask-image: url("../images/icon/icon-triangle.svg");
          mask-image: url("../images/icon/icon-triangle.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 0.65em;
  height: 0.4em;
  background-color: var(--color-gray);
  content: "";
  display: block;
  flex-shrink: 0;
  transition: rotate 0.3s ease;
}
.c-category-nav__trigger[aria-expanded=true]::after {
  rotate: 180deg;
}
@media (min-width: 782px) {
  .c-category-nav__trigger {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

.c-category-nav__inner {
  height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  transition: height 0.3s ease;
  z-index: 10;
}
.c-category-nav__inner.is-open {
  height: auto;
}

.c-category-nav__list {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-category-nav__link {
  color: var(--color-text);
  display: block;
  font-size: calc(14 / 375 * 100vw);
  padding: 0.5em 1em;
  text-decoration: none;
}
.c-category-nav__link:hover, .c-category-nav__link:focus, .c-category-nav__link.is-active {
  background-color: var(--color-gray-light);
  color: var(--color-teal);
}
.c-category-nav__link.is-active {
  font-weight: var(--font-mid);
}
@media (min-width: 782px) {
  .c-category-nav__link {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

.js-clickable .wp-block-image {
  contain: paint;
}
.js-clickable .wp-block-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.js-clickable:hover p,
.js-clickable:hover .wp-block-heading {
  text-decoration: underline;
}
.js-clickable:hover .wp-block-image img {
  opacity: 0.8;
  transform: scale(1.05);
}

.c-cta {
  --m: max(15 / 375 * 100vw, 50vw - (var(--container-default) / 2));
  background-color: var(--color-teal);
  margin: 0 !important;
}
.c-cta .wp-block-columns {
  margin: 0 !important;
  gap: calc(40 / 375 * 100vw) !important;
  flex-direction: column;
  max-width: unset !important;
}
@media (min-width: 1024px) {
  .c-cta .wp-block-columns {
    gap: 0 !important;
    display: grid;
    grid-template-columns: 40vw 60vw;
  }
}
.c-cta .wp-block-image {
  height: 100%;
  width: 100%;
}
.c-cta .wp-block-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.c-cta .wp-block-heading {
  color: var(--color-white);
  font-size: calc(18 / 375 * 100vw);
  font-weight: var(--font-mid);
  text-align: center;
}
@media (min-width: 1024px) {
  .c-cta .wp-block-heading {
    font-size: min(36px, 36 / 960 * 100vw);
    text-align: left;
  }
}
.c-cta .wp-block-heading + .wp-block-paragraph {
  font-size: calc(16 / 375 * 100vw);
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .c-cta .wp-block-heading + .wp-block-paragraph {
    font-size: min(20px, 20 / 960 * 100vw);
    text-align: left;
  }
}
.c-cta .wp-block-heading + .wp-block-paragraph + .wp-block-paragraph {
  font-size: calc(16 / 375 * 100vw);
  margin-top: 0.7em;
  text-align: center;
}
@media (min-width: 1024px) {
  .c-cta .wp-block-heading + .wp-block-paragraph + .wp-block-paragraph {
    font-size: min(22px, 22 / 960 * 100vw);
    text-align: left;
  }
}
.c-cta .wp-block-paragraph {
  color: var(--color-white);
}
.c-cta .wp-block-column:not(:has(.wp-block-image)) {
  padding-inline: var(--m);
  padding-bottom: calc(40 / 375 * 100vw);
}
@media (min-width: 1024px) {
  .c-cta .wp-block-column:not(:has(.wp-block-image)) {
    padding-left: min(210px, 210 / 1210 * 100vw);
    padding-right: var(--m);
    padding-block: min(120px, 120 / 1210 * 100vw);
  }
}
@media (min-width: 1920px) {
  .c-cta .wp-block-column:not(:has(.wp-block-image)) {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .c-cta .wp-block-column:not(:has(.wp-block-image)) {
    padding-left: var(--m);
  }
}
@media (min-width: 1920px) {
  .c-cta .wp-block-group:has(.wp-block-group) {
    margin-inline: auto;
    max-width: 584px;
  }
}
.c-cta .wp-block-group:not(:has(.wp-block-group)) {
  background-color: #E7EAE9;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-block: calc(20 / 375 * 100vw);
  padding: calc(5 / 375 * 100vw) calc(20 / 375 * 100vw) calc(15 / 375 * 100vw);
}
@media (min-width: 1024px) {
  .c-cta .wp-block-group:not(:has(.wp-block-group)) {
    margin-block: min(30px, 30 / 960 * 100vw);
    padding: min(20px, 20 / 960 * 100vw) min(55px, 55 / 960 * 100vw) min(30px, 30 / 960 * 100vw);
  }
}
.c-cta .wp-block-group:not(:has(.wp-block-group)) .wp-block-paragraph {
  color: var(--color-text);
  font-size: calc(16 / 375 * 100vw);
  text-align: center;
}
@media (min-width: 1024px) {
  .c-cta .wp-block-group:not(:has(.wp-block-group)) .wp-block-paragraph {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

div#ez-toc-container {
  background-color: var(--color-gray-light);
  border: none;
  border-radius: 10px;
  margin-block: calc(30 / 375 * 100vw);
  margin-inline: auto;
  padding: calc(20 / 375 * 100vw);
  width: 100%;
}
@media (min-width: 782px) {
  div#ez-toc-container {
    margin-block: min(90px, 90 / 960 * 100vw) min(75px, 75 / 960 * 100vw);
    padding: min(40px, 40 / 960 * 100vw) min(60px, 60 / 960 * 100vw);
  }
}

.ez-toc-title-container {
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 0.5em;
}

div#ez-toc-container p.ez-toc-title {
  color: var(--color-text);
  font-size: calc(20 / 375 * 100vw);
}
@media (min-width: 782px) {
  div#ez-toc-container p.ez-toc-title {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

#ez-toc-container ul.ez-toc-list {
  margin-top: 1em;
}

.ez-toc-list .ez-toc-heading-level-2 > a {
  align-items: flex-start;
  gap: 0.5em;
}
.ez-toc-list .ez-toc-heading-level-2 > a::before {
  content: "●";
  display: inline-block;
  text-decoration: none;
}

div#ez-toc-container ul.ez-toc-list a {
  color: var(--color-teal);
  display: flex;
  line-height: 2;
}

div#ez-toc-container ul li,
div#ez-toc-container ul li a {
  font-weight: var(--font-normal);
  font-size: calc(16 / 375 * 100vw);
}
@media (min-width: 782px) {
  div#ez-toc-container ul li,
  div#ez-toc-container ul li a {
    font-size: min(18px, 18 / 960 * 100vw);
  }
}

.c-label-round {
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  display: inline-block;
  font-size: calc(14 / 375 * 100vw);
  line-height: 1;
  margin: 0;
  padding: 0.4em 0.8em;
}
@media (min-width: 782px) {
  .c-label-round {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}

.c-label-square {
  background-color: var(--color-gray-light);
  display: inline-block;
  font-size: calc(14 / 375 * 100vw);
  line-height: 1;
  margin: 0;
  padding: 0.4em 0.8em;
}
@media (min-width: 782px) {
  .c-label-square {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}
.c-label-square.is-teal {
  background-color: var(--color-teal);
  color: var(--color-white);
}
.c-label-square.is-red {
  background-color: var(--color-coral);
  color: var(--color-white);
}

a.c-link {
  font-size: 12px;
  color: var(--color-text);
}
a.c-link:hover {
  color: var(--color-hover);
}

.c-link-button {
  display: block;
  text-decoration: none;
  padding: 12px 32px;
  transition: color 0.5s, background-color 0.5s;
}
.c-link-button:hover {
  color: var(--color-hover);
}
.c-link-button.c-link-button--search, .c-link-button.c-link-button--seminar {
  color: var(--color-accent);
  border: 4px solid var(--color-accent);
  background-color: var(--color-white);
}
.c-link-button.c-link-button--search:hover, .c-link-button.c-link-button--seminar:hover {
  background-color: var(--color-lightblue);
}

.pagination {
  margin-top: calc(50 / 375 * 100vw);
}
@media (min-width: 782px) {
  .pagination {
    margin-top: min(90px, 90 / 960 * 100vw);
  }
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: center;
}

.page-numbers {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-teal);
  border-radius: 4px;
  color: var(--color-teal);
  display: flex;
  font-size: calc(16 / 375 * 100vw);
  justify-content: center;
  height: calc(32 / 375 * 100vw);
  width: calc(32 / 375 * 100vw);
  padding: 0.5em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 782px) {
  .page-numbers {
    font-size: min(20px, 20 / 960 * 100vw);
    height: min(40px, 40 / 960 * 100vw);
    width: min(40px, 40 / 960 * 100vw);
  }
}
.page-numbers.current {
  background-color: var(--color-teal);
  color: var(--color-white);
}
.page-numbers.dots {
  border: none;
  min-width: auto;
  width: auto;
  padding-inline: 0;
}

a.page-numbers:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.prev.page-numbers::before,
.next.page-numbers::before {
  -webkit-mask-image: url("../images/icon/icon-arrow-double.svg");
          mask-image: url("../images/icon/icon-arrow-double.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 1em;
  height: 1em;
  background-color: var(--color-teal);
  content: "";
  display: block;
  transition: background-color 0.2s ease;
}
.prev.page-numbers:hover::before,
.next.page-numbers:hover::before {
  background-color: var(--color-white);
}

.prev.page-numbers::before {
  rotate: 180deg;
}

.post,
.news,
.members,
.event {
  padding-bottom: calc(35 / 375 * 100vw);
}
@media (min-width: 782px) {
  .post,
  .news,
  .members,
  .event {
    padding-bottom: 90px;
  }
}

.c-page-header {
  background-color: var(--color-gray-light);
  padding-block: 30px;
  overflow: hidden;
  position: relative;
}
.c-page-header::before, .c-page-header::after {
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  mix-blend-mode: multiply;
  z-index: 0;
}
.c-page-header::after {
  background-image: url("../images/bg/bg-line-e.png");
  background-size: 100%;
  height: 23.4666666667vw;
  width: 100vw;
  opacity: 0.75;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
}
.has-thumbnail .c-page-header {
  padding-bottom: calc(26.6666666667vw + 30px);
}
.has-thumbnail .c-page-header::before {
  background-image: url("../images/bg/bg-line-j.png");
  background-size: 100%;
  height: 65.3333333333vw;
  width: 84vw;
  top: 3.4666666667vw;
  left: -23.4666666667vw;
}
.has-thumbnail .c-page-header::after {
  background-image: url("../images/bg/bg-line-i.png");
  height: 53.3333333333vw;
  width: 154.6666666667vw;
  top: -16vw;
  left: 40vw;
  transform: none;
  opacity: 1;
}
@media (min-width: 1280px) {
  .c-page-header {
    --container-size: var(--container-small);
    --m: max(15 / 375 * 100vw, 50vw - (var(--container-size) / 2));
    padding-block: min(120px, 120 / 960 * 100vw);
  }
  .c-page-header::after {
    height: 35.9375vw;
    right: calc((var(--m) + 21.875vw) * -1);
    left: unset;
  }
  .has-thumbnail .c-page-header {
    padding-bottom: calc(min(300px, 300 / 960 * 100vw) + min(60px, 60 / 960 * 100vw));
  }
  .has-thumbnail .c-page-header::before {
    height: 44.2708333333vw;
    width: 57.2916666667vw;
    top: -7.2916666667vw;
    left: -11.9791666667vw;
  }
  .has-thumbnail .c-page-header::after {
    height: 35.4166666667vw;
    width: 100vw;
    top: -9.375vw;
    left: unset;
    right: -55.2083333333vw;
    transform: none;
  }
}

.c-page-title {
  font-size: calc(18 / 375 * 100vw);
  font-weight: var(--font-normal);
  margin: 0;
}
@media (min-width: 1024px) {
  .c-page-title {
    font-size: min(36px, 36 / 960 * 100vw);
  }
}

.c-page-thumbnail-wrapper {
  margin-top: -26.6666666667vw;
  position: relative;
  z-index: 2;
}
@media (min-width: 1280px) {
  .c-page-thumbnail-wrapper {
    margin-top: calc(min(300px, 300 / 960 * 100vw) * -1);
  }
}

.c-page-thumbnail {
  width: 100%;
}
.c-page-thumbnail .wp-post-image {
  display: block;
  width: 100%;
}

.c-page-body {
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 50px;
  position: relative;
}
.c-page-body::after {
  background: url("../images/bg/bg-line-b.png") center center no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  height: calc(320 / 375 * 100vw);
  width: calc(405 / 375 * 100vw);
  opacity: 0.5;
  position: absolute;
  top: calc(410 / 375 * 100vw);
  right: calc(30 / 375 * 100vw * -1);
  transform: scaleX(-1);
  z-index: -1;
}
@media (min-width: 782px) {
  .c-page-body {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .c-page-body::after {
    height: 40.8854166667vw;
    width: 51.5625vw;
    top: 0;
    right: -4.1666666667vw;
  }
}
.page-template-page-simple .c-page-body::after {
  content: none;
}

.c-page-content {
  position: relative;
  z-index: 1;
}
.c-page-content h1 {
  margin-bottom: 1.5em;
}
.c-page-content :not(:first-child) h1 {
  margin-top: 1.8em;
}

.c-page-entries:not(:first-child) {
  margin-top: calc(20 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-page-entries:not(:first-child) {
    margin-top: min(70px, 70 / 960 * 100vw);
  }
}

.c-page-meta {
  margin-top: calc(20 / 375 * 100vw);
  overflow: hidden;
}
@media (min-width: 782px) {
  .c-page-meta {
    margin-top: 16px;
  }
}

.c-page-meta__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media (min-width: 782px) {
  .c-page-meta__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.c-page-meta__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(15 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-page-meta__body {
    gap: 20px;
  }
}

.c-page-publish {
  font-size: calc(14 / 375 * 100vw);
  color: var(--color-text);
  margin: 0;
}
@media (min-width: 782px) {
  .c-page-publish {
    font-size: 14px;
  }
}

.c-page-footer {
  overflow: hidden;
}

.c-page-footer__inner {
  display: flex;
  justify-content: flex-end;
}

.c-page-meta__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(4 / 375 * 100vw);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 782px) {
  .c-page-meta__categories {
    gap: min(4px, 4 / 960 * 100vw);
  }
}

.c-page-meta__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(8 / 375 * 100vw);
  width: 100%;
}
@media (min-width: 782px) {
  .c-page-meta__detail {
    gap: min(8px, 8 / 960 * 100vw);
  }
}

.c-page-meta__labels {
  display: flex;
  gap: calc(4 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-page-meta__labels {
    gap: min(4px, 4 / 960 * 100vw);
  }
}

.c-page-info {
  margin: 0 0 calc(30 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-page-info {
    margin-bottom: min(40px, 40 / 960 * 100vw);
  }
}
.c-page-info__row {
  display: flex;
  gap: calc(16 / 375 * 100vw);
  padding: calc(12 / 375 * 100vw) 0;
}
@media (min-width: 782px) {
  .c-page-info__row {
    gap: min(24px, 24 / 960 * 100vw);
    padding: min(14px, 14 / 960 * 100vw) 0;
  }
}
.c-page-info__row dt {
  flex-shrink: 0;
  font-weight: bold;
  width: calc(120 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-page-info__row dt {
    width: min(140px, 140 / 960 * 100vw);
  }
}
.c-page-info__row dd {
  flex: 1;
  margin: 0;
}

.c-page-apply {
  margin-top: calc(20 / 375 * 100vw);
  margin-bottom: calc(40 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-page-apply {
    margin-top: min(24px, 24 / 960 * 100vw);
    margin-bottom: min(50px, 50 / 960 * 100vw);
  }
}

.c-post-nav {
  margin-top: calc(50 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-post-nav {
    margin-top: min(100px, 100 / 960 * 100vw);
  }
}

.c-post-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1em;
}

.c-post-nav__item--prev {
  justify-self: start;
}
.c-post-nav__item--archive {
  justify-self: center;
}
.c-post-nav__item--next {
  justify-self: end;
  text-align: right;
}

.c-post-nav__icon {
  border: 1px solid var(--color-teal);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(24 / 375 * 100vw);
  width: calc(24 / 375 * 100vw);
}
.c-post-nav__icon::before {
  -webkit-mask-image: url("../images/icon/icon-arrow.svg");
          mask-image: url("../images/icon/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 0.935em;
  height: 0.75em;
  background-color: var(--color-teal);
  content: "";
  display: block;
}
.is-prev .c-post-nav__icon::before {
  transform: scale(-1, 1);
}
@media (min-width: 782px) {
  .c-post-nav__icon {
    height: 24px;
    width: 24px;
  }
}
.is-archive .c-post-nav__icon {
  border-color: var(--color-white);
  border-width: 2px;
  height: calc(25 / 375 * 100vw);
  width: calc(25 / 375 * 100vw);
}
.is-archive .c-post-nav__icon::before {
  -webkit-mask-image: url("../images/icon/icon-index.svg");
          mask-image: url("../images/icon/icon-index.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 100%;
  height: 100%;
  background-color: var(--color-teal);
  content: "";
  display: block;
}
@media (min-width: 782px) {
  .is-archive .c-post-nav__icon {
    height: 25px;
    width: 25px;
  }
}

.c-post-nav__link {
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  text-decoration: none;
}
.c-post-nav__link.is-archive {
  align-items: center;
}
.c-post-nav__link.is-next {
  flex-direction: column-reverse;
  align-items: flex-end;
}
.c-post-nav__link:hover .c-post-nav__icon {
  background-color: var(--color-teal);
}
.c-post-nav__link:hover .c-post-nav__icon::before {
  background-color: var(--color-white);
}
.c-post-nav__link:hover.is-archive .c-post-nav__icon {
  border-color: var(--color-teal);
}
@media (min-width: 782px) {
  .c-post-nav__link {
    flex-direction: row;
    gap: 1em;
    align-items: center;
  }
  .c-post-nav__link.is-next {
    flex-direction: row;
  }
}

.c-post-nav__direction {
  color: var(--color-teal);
  font-size: calc(12 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-post-nav__direction {
    font-size: min(16px, 16 / 960 * 100vw);
  }
}

.c-rel-section {
  overflow: hidden;
  padding-block: calc(40 / 375 * 100vw);
  position: relative;
}
@media (min-width: 782px) {
  .c-rel-section {
    padding-block: min(85px, 85 / 960 * 100vw) min(110px, 110 / 960 * 100vw);
  }
}
.c-rel-section.is-gray {
  background-color: var(--color-gray-light);
}
.c-rel-section.is-overflow .c-rel-section__inner {
  margin-inline: calc(var(--m) * -1);
  padding-inline: var(--m);
}
.c-rel-section::after {
  background: url("../images/bg/bg-line-b.png") center center no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  height: calc(270 / 375 * 100vw);
  width: calc(340 / 375 * 100vw);
  mix-blend-mode: multiply;
  opacity: 0.5;
  position: absolute;
  bottom: calc(30 / 375 * 100vw * -1);
  right: calc(30 / 375 * 100vw * -1);
  transform: scaleX(-1);
  z-index: 1;
}
@media (min-width: 782px) {
  .c-rel-section::after {
    height: 41.1458333333vw;
    width: 51.5625vw;
    bottom: -1.5625vw;
    right: -1.5625vw;
  }
}

.c-section-title,
.c-rel-section-title {
  font-size: calc(18 / 375 * 100vw);
  font-weight: var(--font-normal);
  margin: 0;
}
@media (min-width: 782px) {
  .c-section-title,
  .c-rel-section-title {
    font-size: min(36px, 36 / 960 * 100vw);
  }
}

.c-section__body,
.c-rel-section__body {
  margin-top: calc(25 / 375 * 100vw);
  position: relative;
  z-index: 2;
}
@media (min-width: 782px) {
  .c-section__body,
  .c-rel-section__body {
    margin-top: min(75px, 75 / 960 * 100vw);
  }
}

.c-section__foot,
.c-rel-section__foot {
  margin-top: calc(35 / 375 * 100vw);
}
@media (min-width: 782px) {
  .c-section__foot,
  .c-rel-section__foot {
    margin-top: min(65px, 65 / 960 * 100vw);
  }
}

.smf-form:not([class*=smf-form--]) {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.smf-form:not([class*=smf-form--]) .smf-item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.smf-form:not([class*=smf-form--]) .smf-item:has([data-validations*=required]) .smf-item__label__text::after {
  content: "必須";
}
.smf-form:not([class*=smf-form--]) .smf-item__label__text {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.smf-form:not([class*=smf-form--]) .smf-item__label__text::before {
  content: "●";
  display: block;
}
.smf-form:not([class*=smf-form--]) .smf-item__label__text::after {
  background-color: var(--color-coral);
  border-radius: 3px;
  color: var(--color-white);
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-left: 0.5em;
  padding: 0.2em 0.5em;
}
@media (min-width: 782px) {
  .smf-form:not([class*=smf-form--]) .smf-item__label__text::after {
    font-size: min(12px, 12 / 960 * 100vw);
  }
}
.smf-form:not([class*=smf-form--]) .smf-item__label__text:empty {
  display: none;
}
@media (min-width: 782px) {
  .smf-form:not([class*=smf-form--]) .smf-item__label__text {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}
.smf-form:not([class*=smf-form--]) .smf-text-control__control {
  width: 100%;
}
.smf-form:not([class*=smf-form--]) .smf-checkbox-control__label {
  font-size: 14px;
}
@media (min-width: 782px) {
  .smf-form:not([class*=smf-form--]) .smf-checkbox-control__label {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}
.smf-form:not([class*=smf-form--]) .smf-textarea-control__control {
  height: 264px;
}
.smf-form:not([class*=smf-form--]) .smf-item__description {
  font-size: 14px;
  margin-top: 0;
}
@media (min-width: 782px) {
  .smf-form:not([class*=smf-form--]) .smf-item__description {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}
.smf-form:not([class*=smf-form--]) .smf-error-messages {
  font-size: 14px;
}
@media (min-width: 782px) {
  .smf-form:not([class*=smf-form--]) .smf-error-messages {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}

.snow-monkey-form .smf-action {
  margin-top: calc(35 / 375 * 100vw);
}
@media (min-width: 782px) {
  .snow-monkey-form .smf-action {
    margin-top: min(35px, 35 / 960 * 100vw);
  }
}
.snow-monkey-form .smf-button-control__control {
  background: var(--color-teal);
  border-radius: 10px;
  border: none;
  color: var(--color-white);
  font-size: 22px;
  letter-spacing: 0.5em;
  padding: 0.5em 1em;
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 782px) {
  .snow-monkey-form .smf-button-control__control {
    font-size: min(22px, 22 / 960 * 100vw);
  }
}
.snow-monkey-form .smf-sending {
  border: 1px solid var(--color-white);
  border-radius: 5px;
  height: 1em;
  width: 1em;
  position: static !important;
  transform: unset !important;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.snow-monkey-form .smf-sending::before {
  -webkit-mask-image: url("../images/icon/icon-arrow.svg");
          mask-image: url("../images/icon/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 0.8em;
  height: 0.8em;
  background-color: var(--color-white);
  display: block;
  content: "";
  animation: none;
}

.c-sns-share__list {
  display: flex;
  align-items: center;
  gap: calc(10 / 375 * 100vw);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 782px) {
  .c-sns-share__list {
    gap: 10px;
  }
}

.c-sns-share__item {
  position: relative;
}

.c-sns-share__copymsg {
  background-color: var(--color-text);
  border-radius: 4px;
  bottom: calc(100% + 8px);
  color: var(--color-white);
  font-size: calc(10 / 375 * 100vw);
  left: 50%;
  opacity: 0;
  padding: 0.3em 0.6em;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity 0.6s ease;
  white-space: nowrap;
}
.c-sns-share__copymsg.is-visible {
  opacity: 1;
}
.c-sns-share__item:last-child .c-sns-share__copymsg {
  left: auto;
  right: 0;
  transform: none;
}
@media (min-width: 782px) {
  .c-sns-share__copymsg {
    font-size: 12px;
  }
}

.c-sns-share__link {
  border: none;
  background: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  height: calc(24 / 375 * 100vw);
  width: calc(24 / 375 * 100vw);
  transition: opacity 0.3s;
}
.c-sns-share__link--facebook {
  background-image: url("../images/icon/icon-fb.svg");
}
.c-sns-share__link--x {
  background-image: url("../images/icon/icon-x.svg");
}
.c-sns-share__link--instagram {
  background-image: url("../images/icon/icon-insta.svg");
}
.c-sns-share__link--note {
  background-image: url("../images/icon/icon-n.svg");
}
.c-sns-share__link--link, .c-sns-share__link--copy {
  background-image: url("../images/icon/icon-link.svg");
}
.c-sns-share__link:hover {
  opacity: 0.5;
}
@media (min-width: 782px) {
  .c-sns-share__link {
    height: 24px;
    width: 24px;
  }
}

.c-social-buttons {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}
@media not all and (min-width: 600px) {
  .c-social-buttons {
    justify-content: center;
  }
}

.c-social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.c-social-button img {
  width: 24px;
  height: auto;
}

.c-tag-label {
  color: var(--color-accent);
  border-radius: 24px;
  border: 1px solid var(--color-accent);
  background-color: var(--color-white);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding: 6px 16px;
  white-space: nowrap;
}
.c-tag-label a {
  color: var(--color-accent);
  text-decoration: none;
}
.c-tag-label a:hover {
  color: inherit;
}

.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container {
  background-color: var(--color-lightgray);
  padding: 24px;
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li > a {
  color: var(--color-text);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li > a:hover {
  color: var(--color-hover);
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li .eb-toc__list {
  margin-top: 0;
  background-color: transparent;
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li .eb-toc__list li a {
  color: var(--color-link);
  font-size: 16px;
  text-decoration: underline;
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li .eb-toc__list li a::before {
  content: "";
  display: inline-block;
  background: url("../images/icon-arrow-gradient.svg") no-repeat;
  width: 18px;
  height: 16px;
  margin-top: 6px;
  margin-right: 4px;
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li .eb-toc__list li a:hover {
  color: var(--color-hover);
}
.wp-block-essential-blocks-table-of-contents .eb-parent-wrapper > .eb-toc-container > .eb-toc-wrapper > .eb-toc__list-wrap > .eb-toc__list > li + li {
  margin-top: 10px;
}

.c-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: none;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 10px;
  font-weight: bold;
}
.c-toggle .c-toggle__icon,
.c-toggle .c-toggle__icon::before,
.c-toggle .c-toggle__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 25px;
  background-color: var(--color-text);
  transition: all 0.5s ease-in-out;
}
.c-toggle .c-toggle__icon {
  transform: translate3d(-50%, -8px, 0);
}
.c-toggle .c-toggle__icon::before {
  transform: translate3d(-50%, -10px, 0);
}
.c-toggle .c-toggle__icon::after {
  transform: translate3d(-50%, 6px, 0);
}
.c-toggle .c-toggle__text {
  position: relative;
  top: 14px;
}
.c-toggle[aria-expanded=true] .c-toggle__icon {
  background-color: transparent;
}
.c-toggle[aria-expanded=true] .c-toggle__icon::before {
  transform: translateX(-50%) rotate(45deg);
  top: 2px;
}
.c-toggle[aria-expanded=true] .c-toggle__icon::after {
  transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 12px;
}

/* ==========================================================================
  blocks
========================================================================== */
.wp-block-button__link {
  border-radius: 0;
  padding: 0.75em 2em;
  color: var(--color-white);
  transition: opacity 0.5s;
}
.wp-block-button__link:hover {
  color: var(--color-white);
  opacity: 0.6;
}

.is-style-icon-arrow-gradient .wp-block-button__link {
  color: var(--color-white);
  background: var(--color-gradient-button);
  position: relative;
  z-index: 1;
  transition: color 0.5s, background-color 0.5s, opacity 0s;
}
.is-style-icon-arrow-gradient .wp-block-button__link::after {
  content: "";
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  vertical-align: middle;
}
.is-style-icon-arrow-gradient .wp-block-button__link::before {
  content: "";
  background: var(--color-gradient-button-hover);
  border: 1px solid transparent;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: width 0.5s;
  width: 0;
}
.is-style-icon-arrow-gradient .wp-block-button__link:hover {
  opacity: 1;
  color: #2E37A5;
}
.is-style-icon-arrow-gradient .wp-block-button__link:hover::after {
  color: #2E37A5;
}
.is-style-icon-arrow-gradient .wp-block-button__link:hover::before {
  width: 100%;
  border-color: #B7BDFF;
}
.is-style-icon-arrow-gradient .wp-block-button__link {
  padding: 0.75em 3em 0.75em 2.5em;
}
.is-style-icon-arrow-gradient .wp-block-button__link::after {
  position: absolute;
  top: 50%;
  right: 12px;
  height: 8px;
  width: 8px;
  -webkit-mask-image: url("../images/icon-arrow-right.svg");
          mask-image: url("../images/icon-arrow-right.svg");
  transform: translateY(-50%);
}

.is-style-icon-download-gradient .wp-block-button__link {
  color: var(--color-white);
  background: var(--color-gradient-button);
  position: relative;
  z-index: 1;
  transition: color 0.5s, background-color 0.5s, opacity 0s;
}
.is-style-icon-download-gradient .wp-block-button__link::before {
  content: "";
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  vertical-align: middle;
}
.is-style-icon-download-gradient .wp-block-button__link::after {
  content: "";
  background: var(--color-gradient-button-hover);
  border: 1px solid transparent;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: width 0.5s;
  width: 0;
}
.is-style-icon-download-gradient .wp-block-button__link:hover {
  opacity: 1;
  color: var(--color-link);
}
.is-style-icon-download-gradient .wp-block-button__link:hover::before {
  color: var(--color-link);
}
.is-style-icon-download-gradient .wp-block-button__link:hover::after {
  width: 100%;
  border-color: #B7BDFF;
}
.is-style-icon-download-gradient .wp-block-button__link::before {
  height: 1em;
  width: 1em;
  margin-right: 10px;
  -webkit-mask-image: url("../images/icon-download.svg");
          mask-image: url("../images/icon-download.svg");
  transform: translateY(-3px);
}

.is-style-icon-download-outline .wp-block-button__link {
  color: var(--color-accent);
  border: 3px solid var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 35px rgba(5, 5, 167, 0.2509803922);
  transition: background-color 0.5s, box-shadow 0.5s;
}
.is-style-icon-download-outline .wp-block-button__link:hover {
  background-color: var(--color-lightblue);
  opacity: 1;
  box-shadow: 0 0 5px rgba(5, 5, 167, 0.2509803922);
}
.is-style-icon-download-outline .wp-block-button__link::before {
  content: "";
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  vertical-align: middle;
  height: 1em;
  width: 1em;
  margin-right: 10px;
  -webkit-mask-image: url("../images/icon-download.svg");
          mask-image: url("../images/icon-download.svg");
  transform: translateY(-3px);
}

.is-style-icon-arrow-outline .wp-block-button__link {
  color: var(--color-accent);
  border: 3px solid var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 35px rgba(5, 5, 167, 0.2509803922);
  transition: background-color 0.5s, box-shadow 0.5s;
}
.is-style-icon-arrow-outline .wp-block-button__link:hover {
  background-color: var(--color-lightblue);
  opacity: 1;
  box-shadow: 0 0 5px rgba(5, 5, 167, 0.2509803922);
}
.is-style-icon-arrow-outline .wp-block-button__link {
  padding: 0.75em 3em 0.75em 2.5em;
  position: relative;
}
.is-style-icon-arrow-outline .wp-block-button__link::after {
  content: "";
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 12px;
  height: 8px;
  width: 8px;
  -webkit-mask-image: url("../images/icon-arrow-right.svg");
          mask-image: url("../images/icon-arrow-right.svg");
  transform: translateY(-50%);
}

.is-style-icon-modal-outline .wp-block-button__link {
  color: var(--color-accent);
  border: 3px solid var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 35px rgba(5, 5, 167, 0.2509803922);
  transition: background-color 0.5s, box-shadow 0.5s;
}
.is-style-icon-modal-outline .wp-block-button__link:hover {
  background-color: var(--color-lightblue);
  opacity: 1;
  box-shadow: 0 0 5px rgba(5, 5, 167, 0.2509803922);
}
.is-style-icon-modal-outline .wp-block-button__link {
  padding: 10px 50px 10px 30px;
  border-radius: 8px;
  border: 2px solid var(--color-blue);
  box-shadow: 2px 2px 8px 0 rgba(155, 164, 175, 0.1490196078);
  color: var(--color-blue);
  position: relative;
  font-size: 12px;
}
@media not all and (min-width: 1024px) {
  .is-style-icon-modal-outline .wp-block-button__link {
    width: 100%;
  }
}
@media (min-width: 782px) {
  .is-style-icon-modal-outline .wp-block-button__link {
    font-size: 15px;
  }
}
.is-style-icon-modal-outline .wp-block-button__link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("../images/icon-popup.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.is-style-with-image-circle {
  width: 100%;
  position: relative;
}
.is-style-with-image-circle::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg) translateY(-50%);
  transition: border-color 0.5s;
}
.is-style-with-image-circle:hover::after {
  border-color: var(--color-accent);
}
.is-style-with-image-circle .wp-block-button__link {
  height: 100px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 10px;
  padding: 0.75em;
  text-align: left;
  color: var(--color-blue);
  background-color: var(--color-white);
  box-shadow: 0 0 35px rgba(155, 164, 175, 0.1490196078);
  transition: background-color 0.5s, box-shadow 0.5s;
  position: relative;
}
@media (min-width: 1280px) {
  .is-style-with-image-circle .wp-block-button__link {
    height: 120px;
    grid-template-columns: 125px 1fr;
  }
}
.is-style-with-image-circle .wp-block-button__link::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 36px;
  background: linear-gradient(180deg, #7E7EFF 0%, #4A97FF 100%) 0 0 no-repeat;
  transition: opacity 0.5s;
}
.is-style-with-image-circle .wp-block-button__link::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 36px;
  background-color: var(--color-white);
  opacity: 0;
  transition: opacity 0.5s;
}
.is-style-with-image-circle .wp-block-button__link sup {
  grid-area: 1/1/3/2;
}
.is-style-with-image-circle .wp-block-button__link sup img {
  transform: translateY(-25px);
}
.is-style-with-image-circle .wp-block-button__link strong {
  grid-area: 1/2/2/3;
  font-size: 22px;
  line-height: 1.2;
  place-content: end;
}
@media (min-width: 1024px) {
  .is-style-with-image-circle .wp-block-button__link strong {
    font-size: 28px;
  }
}
.is-style-with-image-circle .wp-block-button__link em {
  grid-area: 2/2/3/3;
  font-style: normal;
  line-height: 2;
}
.is-style-with-image-circle .wp-block-button__link:hover {
  background-color: var(--color-lightblue);
  opacity: 1;
  box-shadow: 0 0 5px rgba(5, 5, 167, 0.2509803922);
}
.is-style-with-image-circle .wp-block-button__link:hover::before {
  opacity: 0;
}
.is-style-with-image-circle .wp-block-button__link:hover::after {
  opacity: 1;
}
.is-style-with-image-circle .wp-block-button__link:hover img {
  opacity: 1;
}

@media (min-width: 782px) {
  .wp-block-columns.is-layout-flex {
    gap: 45px;
  }
}
@media not all and (min-width: 782px) {
  .wp-block-columns.is-style-reverse {
    flex-direction: column-reverse;
  }
}

.l-footer-nav .wp-block-columns {
  gap: 0;
}
@media (min-width: 782px) {
  .l-footer-nav .wp-block-columns {
    gap: 1em;
    justify-content: space-between;
  }
}

.wp-block-simple-definition-list-blocks-list .wp-block-simple-definition-list-blocks-div {
  display: flex;
}
.wp-block-simple-definition-list-blocks-list .wp-block-simple-definition-list-blocks-term {
  font-weight: var(--font-weight-bold);
  flex-basis: 6.5rem;
}

.wp-block-gallery.is-style-customer-logos {
  justify-content: center;
  margin-bottom: 40px;
}
.wp-block-gallery.is-style-customer-logos > .wp-block-image {
  padding: 0 1rem;
  flex-grow: 0 !important;
  margin: auto 0 !important;
  width: calc(33.3333333333% - 16px) !important;
  min-height: 70px;
}
@media (min-width: 600px) {
  .wp-block-gallery.is-style-customer-logos > .wp-block-image {
    width: calc(25% - 16px) !important;
  }
}
@media (min-width: 782px) {
  .wp-block-gallery.is-style-customer-logos > .wp-block-image {
    width: calc(16.6666666667% - 16px) !important;
  }
}
@media (min-width: 1024px) {
  .wp-block-gallery.is-style-customer-logos > .wp-block-image {
    width: calc(11.1111111111% - 16px) !important;
  }
}

.is-layout-grid {
  gap: 20px;
}

.wp-block-group {
  margin-bottom: 40px;
}
.wp-block-group .is-style-has-gradient-bg {
  margin: 0;
}
@media (min-width: 1024px) {
  .wp-block-group .is-layout-grid {
    grid-gap: 40px;
  }
}
@media not all and (min-width: 782px) {
  .wp-block-group .is-layout-grid {
    grid-template-columns: 1fr;
  }
}

.is-style-has-shadow {
  background-color: var(--color-white);
  box-shadow: 0 0 36px rgba(155, 164, 175, 0.1490196078);
  padding: 24px;
}

.is-style-has-gray-bg {
  background-color: var(--color-lightgray);
  padding: 24px;
}

.is-style-size-l {
  font-size: calc(36 / 375 * 100vw);
  font-weight: var(--font-normal);
}
@media (min-width: 782px) {
  .is-style-size-l {
    font-size: min(36px, 36 / 960 * 100vw);
  }
}

.is-style-size-m {
  font-size: calc(32 / 375 * 100vw);
  font-weight: var(--font-normal);
}
@media (min-width: 782px) {
  .is-style-size-m {
    font-size: min(32px, 32 / 960 * 100vw);
  }
}

.is-style-size-s {
  font-size: calc(22 / 375 * 100vw);
  font-weight: var(--font-normal);
}
@media (min-width: 782px) {
  .is-style-size-s {
    font-size: min(22px, 22 / 960 * 100vw);
  }
}

.is-style-center-line {
  background: url("../images/bg/bg-heading-line.svg") no-repeat center bottom;
  background-size: 100% min(6px, 6 / 960 * 100vw);
  font-weight: var(--font-mid);
  text-align: center;
  padding-bottom: 0.2em;
}

.is-style-center-line-red {
  background: url("../images/bg/bg-heading-line-red.svg") no-repeat center bottom;
  background-size: 100% min(6px, 6 / 960 * 100vw);
  font-weight: var(--font-mid);
  text-align: center;
  padding-bottom: 0.2em;
}

.is-style-left-border {
  padding-left: 0.75em;
  border-left: min(9px, 9 / 960 * 100vw) solid var(--color-teal);
  font-weight: var(--font-mid);
  text-align: left;
}

.is-style-left-square-bottom-border {
  border-bottom: 1px solid var(--color-gray);
  font-size: min(20px, 20 / 960 * 100vw);
  font-weight: var(--font-normal);
  margin: 0;
  display: flex;
  gap: 1em;
  align-items: center;
  padding-bottom: 0.2em;
  width: fit-content;
}
.is-style-left-square-bottom-border::before {
  content: "■";
  display: block;
  font-size: 0.5em;
}

.is-style-gradient-pb {
  padding: 12px 20px;
  background: var(--color-gradient-heading);
}

.is-style-underline-gradient {
  position: relative;
  z-index: 1;
}
.is-style-underline-gradient::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: -1;
  width: 50%;
  max-width: 440px;
  height: 20px;
  background: transparent linear-gradient(90deg, #7E7EFF 0%, #608CFF 51%, rgba(74, 151, 255, 0) 100%) 0 0 no-repeat;
  opacity: 0.4;
  transform: translateX(100%);
}
@media (min-width: 782px) {
  .is-style-underline-gradient::after {
    bottom: -10px;
    height: 40px;
  }
}

.is-style-left-gradient {
  position: relative;
  z-index: 1;
  padding-left: 0.8em;
}
.is-style-left-gradient::before {
  content: "";
  position: absolute;
  left: 0;
  top: -28px;
  z-index: -1;
  width: 72px;
  height: 60px;
  background: transparent linear-gradient(90deg, #7E7EFF 0%, #608CFF 51%, rgba(74, 151, 255, 0) 100%) 0 0 no-repeat;
  opacity: 0.4;
}
@media not all and (min-width: 782px) {
  .is-style-left-gradient {
    text-align: center;
  }
  .is-style-left-gradient::before {
    width: 60px;
    height: 45px;
    left: auto;
    top: -20px;
    transform: translateX(-50%);
  }
}

.wp-block-image {
  margin-bottom: 40px;
}
.wp-block-image .wp-element-caption {
  color: var(--color-text);
  text-align: left;
  font-size: 16px;
}

.is-style-photo-frame {
  margin-right: 10px;
}
.is-style-photo-frame img {
  box-shadow: 10px 10px 0 var(--color-lightblue);
}

.is-style-background-color-white {
  background-color: var(--color-white);
}

.l-footer-info .wp-block-image {
  margin-inline: auto;
  width: 192px;
}
@media (min-width: 782px) {
  .l-footer-info .wp-block-image {
    margin-inline: 0;
    width: min(245px, 245 / 960 * 100vw);
  }
}

.wp-block-list {
  list-style: disc;
  margin-top: 1em;
  padding-left: 1.5em;
}
.wp-block-list:is([class*=is-style-sme-]) {
  list-style: none;
}

.is-style-teal {
  color: var(--color-teal);
}
.is-style-teal ::marker {
  color: var(--color-teal);
}

.is-style-square {
  list-style: square;
}

.is-style-decimal {
  list-style: none;
  counter-reset: list-counter;
  padding-left: 0;
}
.is-style-decimal li {
  counter-increment: list-counter;
  display: flex;
  gap: 1em;
}
.is-style-decimal li:not(:first-child) {
  margin-top: 1em;
}
.is-style-decimal li::before {
  font-size: 1.5em;
  content: counter(list-counter) ".";
  display: block;
  color: var(--color-teal);
  align-items: flex-start;
  line-height: 1;
}

.is-style-dash {
  list-style: none;
  padding-left: 0;
}
.is-style-dash .wp-block-list {
  padding-left: 0.5em;
}
.is-style-dash .wp-block-list li {
  display: flex;
  gap: 0.5em;
}
.is-style-dash .wp-block-list li::before {
  font-size: 1em;
  content: "-";
  display: block;
  align-items: flex-start;
}

.is-style-inline-label-color,
.is-style-inline-label-outline {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
  padding-left: 0;
}
.is-style-inline-label-color li,
.is-style-inline-label-outline li {
  font-size: calc(14 / 375 * 100vw);
  line-height: 1;
  padding: 0.4em 0.8em;
}
@media (min-width: 782px) {
  .is-style-inline-label-color li,
  .is-style-inline-label-outline li {
    font-size: min(14px, 14 / 960 * 100vw);
  }
}

.is-style-inline-label-color li:nth-child(3n+1) {
  background-color: #F5E1DA;
}
.is-style-inline-label-color li:nth-child(3n+2) {
  background-color: #F1F1F1;
}
.is-style-inline-label-color li:nth-child(3n) {
  background-color: #E3F2F1;
}

.is-style-inline-label-outline {
  gap: 0.5em;
}
.is-style-inline-label-outline li {
  border: 1px solid var(--color-gray);
  border-radius: 5px;
}

.is-style-button-coming-soon {
  font-size: 12px;
  color: #848484;
  border: 2px solid #BEBEBE;
  background-color: var(--color-white);
  padding: 8px 16px 8px 24px;
  border-radius: 8px;
  box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
@media not all and (min-width: 1024px) {
  .is-style-button-coming-soon {
    flex-basis: 100%;
    text-align: center;
  }
}
@media (min-width: 782px) {
  .is-style-button-coming-soon {
    font-size: 15px;
  }
}
.is-style-button-coming-soon mark {
  text-align: center;
  flex-grow: 1;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .is-style-button-coming-soon mark {
    padding-left: 86px;
  }
}
.is-style-button-coming-soon::after {
  content: "coming soon";
  display: inline-block;
  vertical-align: text-top;
  font-size: 9px;
  color: var(--color-text);
  background-color: #BEBEBE;
  border-radius: 30px;
  padding: 4px 16px;
  margin-left: 2em;
  white-space: nowrap;
}

.l-footer-info p {
  font-size: calc(14 / 375 * 100vw);
}
@media (min-width: 782px) {
  .l-footer-info p {
    font-size: min(16px, 16 / 960 * 100vw);
  }
}

.l-footer-nav p {
  font-size: calc(14 / 375 * 100vw);
}
@media (min-width: 782px) {
  .l-footer-nav p {
    font-size: min(20px, 20 / 960 * 100vw);
  }
}

.wp-block-table {
  width: 100%;
}
.wp-block-table thead {
  border: none;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-gray);
}
.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--color-gray);
  padding: 0.75em;
  text-align: left;
}
.wp-block-table th {
  background-color: var(--color-gray-light);
  font-weight: var(--font-normal);
}
.wp-block-table.is-style-center-all th, .wp-block-table.is-style-center-all td {
  text-align: center;
}
.wp-block-table.is-style-center-th th {
  text-align: center;
}
.wp-block-table.is-style-center-td td {
  text-align: center;
}

.l-footer-info .wp-block-social-links .wp-social-link-facebook,
.l-footer-info .wp-block-social-links .wp-social-link-x,
.l-footer-info .wp-block-social-links .wp-social-link-youtube,
.l-footer-info .wp-block-social-links .wp-social-link-note {
  color: var(--color-white);
}
.l-footer-info .wp-block-social-links .wp-social-link-note svg {
  width: 100%;
}

/* ==========================================================================
  utility
========================================================================== */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Alignment Classes ------------------------- */
/* Full */
.alignfull {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

/* Wide */
.alignwide {
  position: relative;
  width: 100%;
}

.alignleft {
  max-width: 100%;
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  max-width: 100%;
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.5em;
  max-width: 100%;
}
.aligncenter img {
  margin-inline: auto;
  display: block;
}

/* Entry Media ------------------------------- */
.alignfull > figcaption,
.alignfull > .wp-caption-text {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 40px);
}

@media (min-width: 600px) {
  .hide-over-xs {
    display: none !important;
  }
}

@media not all and (min-width: 600px) {
  .hide-under-xs {
    display: none !important;
  }
}

@media (min-width: 782px) {
  .hide-over-sm {
    display: none !important;
  }
}

@media not all and (min-width: 782px) {
  .hide-under-sm {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-over-md {
    display: none !important;
  }
}

@media not all and (min-width: 1024px) {
  .hide-under-md {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .hide-over-lg {
    display: none !important;
  }
}

@media not all and (min-width: 1280px) {
  .hide-under-lg {
    display: none !important;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/*# sourceMappingURL=style.css.map */