/*
Theme Name: NON NAME HERO
Description: NON NAME HERO WP theme
Version: 0.1.0
*/

@charset "utf-8";

/* ---------------------------------------
   ルート変数
--------------------------------------- */
:root {
  /* 色 */
  --color-text: #fff;
  --color-text-b: #000;
  --color-muted: #000;
  --color-border: #fff;
  --color-primary: #003487;
  --color-primary-contrast: #fff;
  --color-link: var(--color-primary);
  --color-link-hover: #0a56ba;
  --color-focus: #154ae0;
  --color-surface: #f8fafc;

  /* タイポグラフィ */
  --ff-base: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "メイリオ", "MS PGothic", "Osaka", Arial, Helvetica, sans-serif;
  --ff-serif: "Hina Mincho", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  --ff-display: "Gulzar", "Hina Mincho", serif;
  --ff-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* ベースサイズ（10px=1rem） */
  --fz-root: 62.5%;
  --fz-body: 1.6rem;

  /* 角丸 */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --radius-full: 50%;

  /* レイアウト */
  --container-max: 1028px;
  --container-pad: 20px;
}


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

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: var(--fz-root);
  -webkit-text-size-adjust: 100%;
}

body {
  background: #0A0B0B;
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: var(--fz-body);
  line-height: 1;
  text-rendering: optimizeLegibility;
}

/* 画像・メディアのデフォルト */
img,
svg,
video,
canvas,
audio,
iframe {
  display: block;
  max-width: 100%;
}

/* 強調 */
b,
strong {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* リンク */
a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

/* ---------------------------------------
   フォーム & インタラクティブ
--------------------------------------- */
button,
input,
select,
textarea {
  font-family: var(--ff-base);
  font-weight: 400;
  color: inherit;
  border: none;
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-muted);
}

/* 無効 */
:disabled {
  cursor: not-allowed;
  opacity: .6;
}

/* フォーカス可視リング（アクセシビリティ） */
:focus {
  outline: none;
}

/* ---------------------------------------
   レイアウト
--------------------------------------- */
.l-container {
  width: var(--container-max);
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    padding: 0 20px;
  }
}

.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
    font-size: 1.8rem;
  }
}

/*-------------- footerを画面下部に固定 -------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  flex: 1;
}

/*-------------- WordPress -------------*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  text-align: center;
}

.wp-caption-text {
  margin-top: 0;
}

/* --------- title ----------- */
.section-title {
  padding-bottom: 20px;
  position: relative;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: #F5F3F3;
  text-align: center;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .section-title {
    padding-bottom: 15px;
    font-size: 1.8rem;
  }
}

.section-title::after {
  content: "";
  width: 38px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}

.section-title-ja {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .section-title-ja {
    font-size: 1.7rem;
  }
}

.section-title+.section-title-ja {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .section-title+.section-title-ja {
    margin-top: 18px;
  }
}

/* --------- button ----------- */
.button {
  padding: 7px 12.5px;
  background: var(--color-primary);
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.3;
  text-align: center;
  border: solid 1px var(--color-primary);
  cursor: pointer;
  transition: .3s;
}

.button:hover {
  background: #0845A6;
  text-decoration: none;
}

/* --------- slider ----------- */
.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
  align-items: flex-start;
}

/* ---------------------------------------
   header
--------------------------------------- */
.header {
  padding: 17px 20px;
  background: #000;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 15px 10px;
  }
}

.header-container {
  max-width: 1312px;
  margin-inline: auto;
  position: relative;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.heder-bland {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .heder-bland {
    flex-direction: column-reverse;
    gap: 8px;
    padding-top: 3px;
    text-align: center;
  }
}

.header-logo {
  width: 153px;
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 140px;
  }
}

.header-logo img {
  width: 100%;
  height: auto;
}

.heder-bland span {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .heder-bland span {
    font-size: 1rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 235px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header-actions {
    gap: 20px;
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
    /*padding-right: 15px;*/
  }
}

@media screen and (max-width: 767px) {
  .header-search-box {
    flex-grow: 1;
  }
}

.header-search-field {
  width: 180px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header-search-field {
    flex-grow: 1;
    width: auto;
  }
}

.header-search-field::before {
  content: "";
  width: 17.5px;
  height: 17.5px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: url(assets/img/icon_search.svg) no-repeat;
  background-size: contain;
}

.header-search-input {
  width: 100%;
  padding: 4px 20px 5px 44px;
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-b);
  border-radius: var(--radius-pill);
}

.header-link {
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  white-space: nowrap;
}

.header-cta {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-color: var(--color-border);
}

@media screen and (max-width: 767px) {
  .header-cta {
    top: 0;
    transform: translateY(0);
    padding-inline: 20px;
  }
}

.cat-nav {
  display: none;
  width: 597px;
  padding: 20px 28px 24px;
  position: absolute;
  top: 43px;
  left: -205px;
  background: rgb(27 27 27 / 60%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .cat-nav {
    width: 100%;
    top: 41px;
    left: 0;
  }
}

.cat-nav-head {
  padding-bottom: 12px;
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  text-align: center;
  border-bottom: solid 1px #fff;
}

.cat-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 26px;
}

.cat-nav-item {
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
}

.cat-nav-item a {
  color: #fff;
}

/* ---------------------------------------
   home
--------------------------------------- */
/* --------- hero ----------- */
.hero-section {
  position: relative;
  z-index: 0;
}

.hero-slider-group {
  position: relative;
  z-index: 1;
}

.hero-item {
  color: #fff;
}

.hero-item:hover {
  text-decoration: none;
}

.hero-image {
  display: grid;
  width: 100%;
  height: 886px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .hero-image {
    height: auto;
  }
}

.hero-image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 0) 0%, rgba(100 100 100 / 40%) 71%, rgba(0 0 0 / 60%) 100%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero-inner {
  width: 625px;
  padding: 110px 20px 50px 98px;
  position: absolute;
  top: 275px;
  left: 0;
  background: rgb(0 0 0 / 87%);
}

@media screen and (max-width: 767px) {
  .hero-inner {
    width: 100%;
    padding: 60px 20px 40px;
    position: relative;
    top: 0;
  }
}

.hero-inner::before {
  content: "";
  width: 116px;
  height: 18px;
  position: absolute;
  top: 24px;
  left: 50px;
  background: url(assets/img/hero_pickup_item.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .hero-inner::before {
    left: 20px;
  }
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: 3.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-info {
  margin-top: 62px;
  padding-left: 24px;
  border-left: solid 3px var(--color-border);
}

@media screen and (max-width: 767px) {
  .hero-info {
    margin-top: 30px;
    padding-left: 16px;
  }
}

.hero-info span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .hero-info span {
    font-size: 1.4rem;
  }
}

.hero-view-other {
  position: absolute;
  bottom: 143px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 2rem;
  color: #F5F3F3;
  letter-spacing: 0.05em;
  filter: drop-shadow(0px 4px 4px rgb(0 0 0 / 25%));
  z-index: 2;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .hero-view-other {
    display: none;
  }
}

.hero-view-other:hover {
  color: #464646;
  text-decoration: none;
}

.hero-view-other::after {
  content: "";
  width: 1px;
  height: 78px;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transform-origin: top;
  animation: lineMove 2.5s cubic-bezier(.36, 0, .18, 1) infinite;
}

@keyframes lineMove {
  0% {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  40% {
    transform-origin: top;
    transform: scaleY(1);
    opacity: 1;
  }

  55% {
    transform-origin: top;
    transform: scaleY(1);
    opacity: 1;
  }

  56% {
    transform-origin: bottom;
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
    opacity: 0;
  }
}


/* --------- logo ----------- */
.logo-slider-wrap {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  align-items: center;
  height: 190px;
}

@media screen and (max-width: 767px) {
  .logo-slider {
    height: 120px;
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  padding: 0 35px;
}

@media screen and (max-width: 767px) {
  .logo-item {
    height: 70px;
    padding: 0 20px;
  }
}

.logo-item img {
  max-height: 100%;
  width: auto;
  display: block;
}


/* --------- intro ----------- */
.intro-section {
  padding: 214px 0 400px;
  position: relative;
  background: url(assets/img/intro_bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .intro-section {
    padding: 80px 0 50px;
  }
}

.intro-deco {
  width: 100%;
  position: absolute;
  top: 5px;
  left: 50%;
  font-family: var(--ff-serif);
  transform: translateX(-50%);
  font-size: 8.2rem;
  color: rgb(255 255 255 / 25%);
  letter-spacing: 0.15em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .intro-deco {
    font-size: 2.4rem;
  }
}

.intro-inner {
  width: 60%;
  margin-left: auto;
  font-family: var(--ff-serif);
}

@media screen and (max-width: 767px) {
  .intro-inner {
    width: 100%;
  }
}

.intro-title {
  font-size: 2.7rem;
}

@media screen and (max-width: 767px) {
  .intro-title {
    font-size: 1.9rem;
  }
}

.intro-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .intro-group {
    gap: 15px;
    margin-top: 30px;
  }
}

.intro-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .intro-text {
    font-size: 1.4rem;
  }
}

/* --------- pickup ----------- */
.pickup-section {
  margin-top: -70px;
}

@media screen and (max-width: 767px) {
  .pickup-section {
    margin-top: -10px;
  }
}

.pickup-container {
  max-width: 1068px;
  margin-inline: auto;
  padding: 104px 20px 66px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .pickup-container {
    padding: 90px 20px 20px;
  }
}

.pickup-inner {
  position: relative;
}

.pickup-title-wrap {
  position: absolute;
  top: -89px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .pickup-title-wrap {
    top: -40px;
  }
}

.pickup-title-sub {
  padding-left: 10px;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: #003487;
}

@media screen and (max-width: 767px) {
  .pickup-title-sub {
    padding-left: 5px;
    font-size: 1.4rem;
  }
}

.pickup-title {
  width: 666px;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .pickup-title {
    width: 200px;
    margin-top: 10px;
  }
}

.pickup-image {
  aspect-ratio: 1 / 1;
  width: 35.7%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(assets/img/noimage.png) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pickup-image {
    width: 34%;
  }
}

.pickup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-link {
  display: block;
  width: 85%;
  padding: 46px 220px 34px 56px;
  background: #fff;
  color: #000;
}

@media screen and (max-width: 767px) {
  .pickup-link {
    padding: 24px 20px 26px;
  }
}

.pickup-link:hover {
  text-decoration: none;
}

.pickup-inner-title {
  font-family: var(--ff-serif);
  font-size: 3.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .pickup-inner-title {
    padding-right: 70px;
    font-size: 2rem;
  }
}

.pickup-info {
  margin-top: 30px;
  font-size: 2rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .pickup-info {
    margin-top: 24px;
    font-size: 1.5rem;
  }
}

.pickup-info span:nth-child(2) {
  margin-left: 15px;
}

.pickup-meta {
  margin-top: 7px;
}

.pickup-date {
  display: inline-block;
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .pickup-date {
    font-size: 1.4rem;
  }
}

.pickup-cat {
  display: inline-block;
  margin-left: 12px;
  padding: 5px 10px;
  background: #000;
  font-size: 1.5rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pickup-cat {
    font-size: 1.3rem;
  }
}

/* --------- search ----------- */
.search {
  width: 970px;
  margin: 130px auto 0;
  padding: 40px 100px 50px;
  background: rgb(27 27 27 / 60%);
}

@media screen and (max-width: 767px) {
  .search {
    width: 100%;
    margin-top: 60px;
    padding: 34px 20px 14px;
  }
}

.search-field {
  width: 270px;
  margin: 18px auto 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .search-field {
    width: 100%;
  }
}

.search-field::before {
  content: "";
  width: 23.5px;
  height: 23.5px;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  background: url(assets/img/icon_search.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .search-field::before {
    width: 18px;
    height: 18px;
    left: 15px;
  }
}

.search-input {
  width: 100%;
  padding: 10px 20px 11px 64px;
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-b);
  border-radius: var(--radius-pill);
}

@media screen and (max-width: 767px) {
  .search-input {
    padding-left: 44px;
    font-size: 1.3rem;
  }
}

.search-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .search-categories {
    margin-top: 30px;
    flex-direction: column;
  }
}

.search-categories-label {
  margin-right: 26px;
  font-size: 1.4rem;
  font-weight: var(--fw-medium);
}

@media screen and (max-width: 767px) {
  .search-categories-label {
    margin-right: 0;
    font-size: 1.3rem;
  }
}

.search-categories-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  padding: 9px 32px;
  border-left: solid 1px #fff;
}

@media screen and (max-width: 767px) {
  .search-categories-list {
    gap: 8px 16px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 10px;
    border-left: none;
    border-top: solid 1px #fff;
  }
}

.search-categories-item {
  font-size: 1.4rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .search-categories-item {
    font-size: 1.3rem;
  }
}

.search-categories-item a {
  color: var(--color-text);
}

.no-result-message {
  margin-block: 30px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}

/* --------- posts ----------- */
.posts-section {
  padding: 110px 0 130px;
}

@media screen and (max-width: 767px) {
  .posts-section {
    padding: 60px 0;
  }
}

.home .posts-section {
  padding: 65px 0 130px;
  background: #0A0B0B;
}

@media screen and (max-width: 767px) {
  .home .posts-section {
    padding: 40px 0 60px;
  }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 58px;
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
  }
}

.posts-card {
  background: #fff;
}

.posts-slider.no-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 58px;
}

@media screen and (max-width: 767px) {
  .posts-slider.no-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
  }
}

.posts-card-link {
  color: var(--color-text-b);
}

.posts-card-link:hover {
  text-decoration: none;
}

.posts-card-image {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.posts-card-image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 0) 0%, rgba(100 100 100 / 40%) 71%, rgba(0 0 0 / 60%) 100%);
  z-index: 1;
}

.posts-card-link:hover .posts-card-image::after {
  background: transparent;
}

.posts-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.posts-card-link:hover .posts-card-image img {
  filter: grayscale(0%);
}

.posts-card-body {
  padding: 12px 19px 13px;
}

@media screen and (max-width: 767px) {
  .posts-card-body {
    padding: 10px 12px 12px;
  }
}

.posts-card-title {
  font-family: var(--ff-serif);
  font-size: 2rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .posts-card-title {
    font-size: 1.3rem;
  }
}

.posts-card-info {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .posts-card-info {
    margin-top: 6px;
  }
}

.posts-card-info span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .posts-card-info span {
    font-size: 1rem;
  }
}

.posts-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.posts-card-date {
  font-size: 1rem;
}

.posts-card-cat {
  padding: 3px 7px;
  background: #0A0B0B;
  font-size: .9rem;
  color: var(--color-text);
}

.posts-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 67px;
}

@media screen and (max-width: 767px) {
  .posts-footer {
    margin-top: 38px;
  }
}

.more-button {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 14.5px 86.5px 8.5px;
  background: #0A0B0B;
  font-family: var(--ff-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text);
  border: solid 1px var(--color-border);
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .more-button {
    padding: 14.5px 50px 8.5px;
    font-size: 1.8rem;
  }
}

.more-button:hover {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.8) 0%, rgba(93, 93, 93, 0.8) 49%, rgba(5, 5, 5, 0.8) 100%);
  text-decoration: none;
}

.card-slider-wrap {
  margin-top: 55px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .card-slider-wrap {
    margin-top: 34px;
    padding: 0 20px;
  }
}

.js-card-slider .posts-card {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .js-card-slider .posts-card {
    margin-bottom: 20px;
  }
}

.posts-slider.no-slider .posts-card {
  margin-bottom: 0;
}

.js-card-slider .slick-slide {
  margin-bottom: -40px;
  padding: 0 29px;
}

@media screen and (max-width: 767px) {
  .js-card-slider .slick-slide {
    margin-bottom: -20px;
    padding: 0 10px;
  }
}

.js-card-slider .slick-list {
  margin: 0 -29px;
}

@media screen and (max-width: 767px) {
  .js-card-slider .slick-list {
    margin: 0 -10px;
  }
}

.card-slider-arrow {
  width: 20px;
  height: 27px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.card-slider-prev {
  left: -80px;
  background: url(assets/img/arrow_prev.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .card-slider-prev {
    left: -10px;
  }
}

.card-slider-next {
  right: -80px;
  background: url(assets/img/arrow_next.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .card-slider-next {
    right: -10px;
  }
}

/* --------- another ----------- */
.another-section {
  padding: 126px 0 140px;
  background: #303131;
}

@media screen and (max-width: 767px) {
  .another-section {
    padding: 60px 0;
  }
}

.another-title {
  margin-bottom: 24px;
  padding-bottom: 26px;
  position: relative;
  text-align: center;
}

.another-title::after {
  content: "";
  width: 38px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}

.another-title img {
  display: block;
  width: 314px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .another-title img {
    width: 240px;
  }
}

.another-title span {
  display: block;
  margin-top: 10px;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .another-title span {
    font-size: 1.2rem;
  }
}

/* --------- contact ----------- */
.contact-section {
  padding: 65px 0 140px;
  background: linear-gradient(180deg, #9A9A9A 0%, #0A0B0B 100%);
}

@media screen and (max-width: 767px) {
  .contact-section {
    padding: 40px 0 70px;
  }
}

.contact {
  width: 827px;
  margin: 55px auto 0;
  background: rgb(255 255 255 / 35%);
}

@media screen and (max-width: 767px) {
  .contact {
    width: 100%;
    margin-top: 40px;
  }
}

.contact-notice {
  padding: 24px 20px;
  background: #0A0B0B;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-notice {
    padding-block: 18px;
    text-align: left;
  }
}

.contact-notice p {
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .contact-notice p {
    font-size: 1.3rem;
  }
}

.contact-notice p span {
  font-weight: var(--fw-black);
}

.contact-form {
  padding: 60px 130px 40px;
}

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 40px 20px 30px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-inline: 10px;
  gap: 13px;
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-b);
}

@media screen and (max-width: 767px) {
  .form-label {
    font-size: 1.3rem;
  }
}

.form-label.required::after {
  content: "必須";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 15px;
  background: var(--color-primary);
  font-size: .9rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.form-label span {
  font-size: 1rem;
  font-weight: var(--fw-regular);
}

.form-control {
  width: 100%;
  margin-top: 12px;
  color: var(--color-text-b);
}

.form-input {
  width: 100%;
  padding: 9px 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .form-input {
    font-size: 1.3rem;
  }
}

.form-textarea {
  width: 100%;
  min-height: 156px;
  padding: 9px 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .form-textarea {
    font-size: 1.3rem;
  }
}

.reason .form-textarea {
  height: 78px;
}

.form-consent {
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .form-consent {
    margin-top: 30px;
    font-size: 1.1rem;
  }
}

.form-consent a {
  color: #fff;
  text-decoration: underline;
}

.form-consent a:hover {
  text-decoration: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  position: relative;
}

.form-button {
  padding-inline: 45.5px;
}

/* contact form 7 */
.wpcf7-not-valid-tip {
  margin-top: 8px;
  padding-inline: 10px;
  font-weight: var(--fw-bold);
}

.wpcf7 form .wpcf7-response-output {
  padding: 18px 10px;
  background: #fff;
  color: #000;
  line-height: 1.3;
  text-align: center;
  border-width: 3px;
}

.wpcf7-spinner {
  display: block;
  margin: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

/* --------- partners ----------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 970px;
  margin: 106px auto 0;
  padding: 46px 20px 35px 0;
  background: #494949;
}

@media screen and (max-width: 767px) {
  .partners {
    width: 100%;
    flex-direction: column;
    margin-top: 80px;
    padding: 20px 20px 30px;
  }
}

.partners-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 240px;
  min-height: 152px;
  margin-right: 70px;
  font-family: var(--ff-serif);
  font-size: 2rem;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .partners-head {
    width: 100%;
    min-height: auto;
    margin-right: 0;
    padding-bottom: 20px;
    font-size: 1.8rem;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

.partners-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}

@media screen and (max-width: 767px) {
  .partners-list {
    margin: 30px 0 0;
    flex-direction: column;
  }
}

.partners-item img {
  max-width: 300px;
  height: auto;
}


/* --------- breadcrumb ----------- */
.breadcrumb {
  padding-inline: 16px;
}

.breadcrumb-list {
  font-size: 0;
}

.breadcrumb-item {
  display: inline;
  margin: 0 36px 0 0;
  position: relative;
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: #fff;
}

.breadcrumb-item:last-child {
  margin-right: 0;
}

.breadcrumb-item::after {
  content: "＞";
  display: block;
  position: absolute;
  top: -2px;
  right: -25px;
}

.breadcrumb-item:last-child::after {
  content: none;
}

.breadcrumb-item a {
  color: #fff;
}

/* ---------------------------------------
   article
--------------------------------------- */
.article {
  margin-top: 10px;
  padding: 0 45px 42px;
  background: rgb(255 255 255 / 80%);
  color: #000;
}

@media screen and (max-width: 767px) {
  .article {
    padding: 0 20px 42px;
  }
}

.article-thumb {
  width: calc(100% + 90px);
  margin-left: -45px;
}

@media screen and (max-width: 767px) {
  .article-thumb {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

.article-thumb img {
  width: 100%;
  height: auto;
}

.article-header {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .article-header {
    margin-top: 28px
  }
}

.article-title {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .article-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.article-info {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .article-info {
    margin-top: 20px;
  }
}

.article-info span {
  display: block;
  font-size: 1.3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .article-info span {
    font-size: 1.2rem;
  }
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 6px;
}

.article-date {
  font-size: 1rem;
}

.article-view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
}

.article-view::before {
  content: "";
  width: 11px;
  height: 7.5px;
  background: url(assets/img/icon_view.svg) no-repeat;
  background-size: contain;
}

.article-cat {
  padding: 4px 6px;
  background: #000;
  font-size: .9rem;
  color: #fff;
}

.article-body {
  margin-top: 22px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.article-body h2 {
  margin: 2.5em 0 1.8em;
  padding: 10px 24px;
  background: rgb(0 0 0 / 87%);
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  line-height: 1.4;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .article-body h2 {
    padding: 10px 14px;
  }
}

.article-body h3 {
  margin: 2.5em 0 .8em;
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

.article-body h4 {
  margin: 2.5em 0 .8em;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

.article-body p {
  margin: 1.2em 0;
}

.article-body img {
  display: block;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 2.5em;
}

.article-body ul {
  margin: 1.2em 0;
  list-style-type: disc;
  padding-left: 1.5em;
}

.article-body ol {
  margin: 1.2em 0;
  list-style-type: decimal;
  padding-left: 1.2em;
}

.article-body table th {
  font-weight: var(--fw-bold);
}

.article-body .wp-block-button__link {
  font-size: 1.2rem;
}

.article-body>*:last-child {
  margin-bottom: 0;
}

.article-box-colum {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.article-box {
  padding: 28px 50px 40px;
  background: #B4B4B4;
}

@media screen and (max-width: 767px) {
  .article-box {
    padding: 24px 20px 28px;
  }
}

.article-box-title {
  padding-bottom: 16px;
  position: relative;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .article-box-title {
    font-size: 1.6rem;
  }
}

.article-box-title::after {
  content: "";
  width: 38px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}

.article-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .article-profile {
    flex-direction: column-reverse;
  }
}

.article-profile-body {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .article-profile-body {
    width: 100%;
  }
}

.article-profile-info {
  padding: 15px 10px 8px;
  border-bottom: solid 1px #000;
}

@media screen and (max-width: 767px) {
  .article-profile-info {
    padding-top: 0;
  }
}

.article-profile-info span {
  display: block;
  font-size: 1.3rem;
  line-height: 1.7;
}

.article-profile-info span:nth-child(2) {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .article-profile-info span {
    font-size: 1.2rem;
  }

  .article-profile-info span:nth-child(2) {
    font-size: 1.4rem;
  }
}

.article-profile-text {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.article-profile-thumb {
  width: 170px;
}

@media screen and (max-width: 767px) {
  .article-profile-thumb {
    margin-inline: auto;
  }
}

.article-profile-thumb img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.article-company-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  table-layout: fixed;
}

@media (max-width: 768px) {
  .article-company-table {
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .article-company-table tr {
    display: flex;
    flex-wrap: wrap;
  }
}

.article-company-table th,
.article-company-table td {
  padding: 12px 16px;
  font-size: 1rem;
  vertical-align: middle;
}

.article-company-table th {
  width: 78px;
  padding-inline: 0;
  background: #4D4D4C;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border: solid 1px #B4B4B4;
}

@media (max-width: 768px) {
  .article-company-table th {
    width: 20%;
    border: none;
    border-bottom: solid 1px #B4B4B4;
  }
}

.article-company-table td {
  background: #fff;
  border: solid 1px #9A9A9A;
}

@media (max-width: 768px) {
  .article-company-table td {
    width: 80%;
    border: none;
    border-bottom: solid 1px #9A9A9A;
  }

  .article-company-table tr:last-child td:last-child {
    border-bottom-color: #B4B4B4;
  }
}

.article-company-table td a {
  color: #000;
  text-decoration: none;
}

.article-company-grid {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 78px minmax(0, 1fr);
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .article-company-grid {
    grid-template-columns: 78px 1fr;
  }
}

.article-company-grid .left {
  padding: 12px 0;
  background: #4D4D4C;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-right: solid 1px #B4B4B4;
  border-bottom: solid 1px #B4B4B4;
}

.article-company-grid .right {
  padding: 12px 10px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.3;
  border-right: solid 1px #9A9A9A;
  border-bottom: solid 1px #9A9A9A;
}

.article-company-grid a {
  color: #000;
}

.article-book {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 17px;
}

.article-book-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .article-book-item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
  }
}

.article-book-info {
  width: 312px;
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .article-book-info {
    width: 100%;
    margin: 0;
  }
}

.article-book-text {
  padding: 0 10px;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .article-book-text {
    font-size: 1.2rem;
  }
}

.article-book-title {
  padding: 0 10px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .article-book-title {
    font-size: 1.4rem;
  }
}

.article-book-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8em;
  margin: 5px 0 0;
  padding: 10px 10px 0;
  font-size: 1rem;
  border-top: 1px solid #000;
}

.article-book-image {
  width: 169px;
}

@media screen and (max-width: 767px) {
  .article-book-image {
    width: 60%;
  }
}

.article-book-image img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

/* ---------------------------------------
   page
--------------------------------------- */
.page-content {
  padding: 62px 0 142px;
  background: linear-gradient(180deg, #3C3E3E 0%, #7F7F7F 35%, #7F7F7F 65%, #0A0B0B 100%);
}

@media screen and (max-width: 767px) {
  .page-content {
    padding: 30px 0 120px;
  }
}

.article-page {
  padding-bottom: 0;
}

.l-main {
  max-width: 709px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .l-main {
    width: 94%;
  }
}

.page-article {
  background: rgb(255 255 255 / 80%);
}

.page-title {
  padding: 26.5px 20px;
  background: rgb(0 0 0 / 87%);
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 1.8rem;
  }
}

.page-body {
  padding: 40px 45px 74px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #000;
}

@media screen and (max-width: 767px) {
  .page-body {
    padding: 28px 24px 40px;
  }
}

.page-body h2 {
  margin: 2.5em 0 1em;
  padding-left: 28px;
  position: relative;
  font-size: 1.7rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

.page-body h2::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgb(0 0 0 / 87%);
}

.page-body h3 {
  margin: 2.5em 0 .8em;
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

.page-body h4 {
  margin: 2.5em 0 .8em;
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

.page-body p {
  margin: 1em 0 1.3em;
}

.page-body a {
  color: #000;
  text-decoration: underline;
}

.page-body a:hover {
  text-decoration: none;
}

.page-body img {
  display: block;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 2.5em;
}

.page-body ul {
  margin: 1em 0 1.3em;
  padding-left: .8em;
}

.page-body ul li {
  padding-left: 1em;
  position: relative;
}

.page-body ul li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.page-body ol {
  margin: 1em 0 1.3em;
  list-style-type: decimal;
  padding-left: 1.2em;
}

.page-bodytable th {
  font-weight: var(--fw-bold);
}

.page-body .wp-block-button__link {
  font-size: 1.2rem;
}

.page-body>*:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------
  company
--------------------------------------- */
.company-main {
  width: 1184px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .company-main {
    width: 94%;
  }
}

.company {
  padding: 55px 128px 98px;
  background: rgb(255 255 255 / 80%);
  color: #000;
}

@media screen and (max-width: 767px) {
  .company {
    padding: 34px 20px 24px;
  }
}

.company-title {
  padding-bottom: 22px;
  position: relative;
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .company-title {
    font-size: 2rem;
  }
}

.company-title::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
}

.company-body {
  margin-top: 36px;
  overflow: scroll;
}

.company-body table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.company-body table th,
.company-body table td {
  padding: 14px 10px;
  font-size: 1.5rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {

  .company-body table th,
  .company-body table td {
    font-size: 1.3rem;
  }
}

.company-body table th,
.company-body table td:first-child {
  width: 214px;
  background: #4D4D4C;
  text-align: center;
  color: #fff;
  border: solid 0.3px #9A9A9A;
  border-right: none;
}

@media screen and (max-width: 767px) {

  .company-body table th,
  .company-body table td:first-child {
    width: 110px;
  }
}

.company-body table td {
  background: #fff;
  border: solid 0.3px #9A9A9A;
}

.company-body table td a {
  color: #000;
}

/*------------------------------------
  ページトップボタン
-------------------------------------*/
#page-top {
  visibility: hidden;
  cursor: pointer;
  transition: .3s;
}

.page-top-button {
  display: block;
  width: 56px;
  height: 56px;
  position: fixed;
  right: 100px;
  background: url(assets/img/pagetop.svg) no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 1;
  z-index: 9999;
}

@media (max-width: 768px) {
  .page-top-button {
    right: 15px;
    bottom: 15px;
    width: 44px;
    height: 44px;
  }
}

/* ---------------------------------------
   footer
--------------------------------------- */
.footer {
  padding: 58px 0 40px;
  position: relative;
  background: #0A0B0B;
  border-top: solid 1px #fff;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 30px;
  }
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 1209px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    width: 100%;
  }
}

.footer-bland {
  width: 263px;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .footer-bland {
    width: 180px;
    margin-inline: auto;
  }
}

.footer-bland img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    margin-top: 34px;
  }
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
}

@media screen and (max-width: 767px) {
  .footer-nav-list {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-nav-item {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: -0.06em;
}

@media screen and (max-width: 767px) {
  .footer-nav-item {
    font-size: 1.2rem;
  }
}

.footer-nav-item::after {
  content: "｜";
  display: block;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}

.footer-nav-item:last-child::after {
  content: none;
}

@media screen and (max-width: 767px) {
  .footer-nav-item::after {
    content: none;
  }
}

.footer-nav-item a {
  color: var(--color-text);
}

.footer-copy {
  display: block;
  margin-top: 85px;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer-copy {
    margin-top: 60px;
    font-size: 1rem;
  }
}