@charset "UTF-8";
.background-gray {
  background-color: #7B7B9D;
}

.background-gray h2 {
  color: #fff;
}

.background-gray span {
  color: #fff;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Serif JP", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.l-inner {
  padding-inline: 26px;
  max-width: 1200px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding-inline: 18px;
  }
}
p {
  line-height: 180%;
  letter-spacing: 0.05em;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp {
    display: block !important;
  }
}
.u-pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}
.u-pc02 {
  display: block;
}

.u-sp02 {
  display: none !important;
}

@media screen and (max-width: 1038px) {
  .u-sp02 {
    display: inline-flex !important;
  }
}
.u-pc03 {
  display: block;
}

@media screen and (max-width: 1040px) {
  .u-pc03 {
    display: none !important;
  }
}
.u-sp03 {
  display: none !important;
}

@media screen and (max-width: 1038px) {
  .u-sp03 {
    display: block !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ベース（aに表示用を持たせる） */
.performance__area.button__area {
  display: inline-block;
  text-decoration: none;
}

/* ラベル本体 */
.button__area span {
  border: 1px solid currentColor;
  text-align: center;
  color: #333;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  padding: 2px 0.6rem 2px 0.1rem;
  border-radius: 4px;
  letter-spacing: 0.16em;
  background: #fff;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  width: 100%;
  max-width: 160px;
}

/* 矢印（三角） */
.button__area span::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid #555; /* 初期色 */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: border-left-color 0.25s ease;
}

/* ホバー時：色反転 */
.button__area:hover span,
.button__area:focus-visible span {
  background-color: #7B7B9D;
  color: #fff;
  border-color: #fff;
}

/* 矢印も白に */
.button__area:hover span::before,
.button__area:focus-visible span::before {
  border-left-color: #fff;
}

.button__area02 {
  background-color: #27273F !important;
  max-width: 240px !important;
  width: 100%;
  padding: 23px 24px 23px 7px;
  color: #fff;
  position: relative;
  border-radius: 10px;
  display: inline-block;
  transition: background-color 0.25s ease, outline-color 0.25s ease;
}

.button__area02 .--backBlack {
  background-color: #27273F !important;
}

/* hover時の色変更 */
.button__area02:hover,
.button__area02:focus-visible {
  background-color: #8E7E6D;
  color: #fff; /* 念のため保持 */
  outline: 3px solid #fff;
}

/* 矢印がある場合（:beforeなど）の色変更 */
.button__area02:hover::before,
.button__area02:focus-visible::before {
  border-left-color: #fff;
}

@media screen and (max-width: 768px) {
  .button__area02 {
    padding: 8px 18px 8px 18px;
  }
}
.button__area02 span {
  color: #fff;
}

.button__area02 > span:before {
  content: none;
}

/* 横線 */
.button__area02::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: white;
}

/* 折れて上に行く矢印先端 */
.button__area02::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(50% - 5px);
  width: 8px;
  height: 10px;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.button__area03 {
  background-color: #fff;
  max-width: 312px !important;
  width: 100%;
  padding: 20px 8px 20px 8px;
  color: #27273F;
  position: relative;
  border-radius: 10px;
  outline: 2px solid #27273F;
  display: inline-block;
  text-align: center;
  font-size: 20px;
}
.button__area03:hover {
  outline: 3px solid #fff;
  background-color: #7B7B9D;
}
.button__area03:hover::before {
  background-color: #fff;
}
.button__area03:hover::after {
  border-top-color: #fff;
}
.button__area03:hover a {
  color: #fff;
}

.button__area03 span {
  border: none;
}

@media screen and (max-width: 768px) {
  .button__area03 {
    padding: 8px 18px 8px 18px;
    max-width: 100%;
    display: inline-block;
    line-height: 150%;
  }
}
/* 横線 */
.button__area03::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #27273F;
}

/* 折れて上に行く矢印先端 */
.button__area03::after {
  content: "";
  position: absolute;
  right: 26px;
  top: calc(50% - 5px);
  width: 8px;
  height: 10px;
  border-top: 1px solid #27273F;
  transform: rotate(40deg);
}

.button__area03 > span:before {
  content: none;
}

.button__area02 span {
  border: none;
}

.button__area {
  max-width: 312px;
  width: 100%;
  font-size: 20px;
}

.button__area a {
  color: #333;
}

.archive-btn {
  border: 1px solid #333;
  padding: 6px 3rem 6px 2rem;
  position: relative;
  align-self: center;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.archive-btn:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #333;
  transition: border-left-color 0.25s ease;
}

/* hover時の色変更 */
.archive-btn:hover,
.archive-btn:focus-visible {
  background-color: #7B7B9D;
  color: #fff;
  border-color: #fff;
}

.archive-btn:hover:before,
.archive-btn:focus-visible:before {
  border-left-color: #fff;
}

.button__area04 {
  background-color: #fff;
  width: 100%;
  padding: 20px 8px 20px 8px;
  color: #27273F;
  position: relative;
  border-radius: 10px;
  outline: 2px solid #27273F;
  display: inline-block;
  text-align: center;
}
.button__area04:hover {
  outline: 3px solid #fff;
  color: #fff;
  background-color: #7B7B9D;
}
.button__area04:hover::before {
  background-color: #fff;
}
.button__area04:hover::after {
  border-top-color: #fff;
}
.button__area04:hover a {
  color: #fff;
}

.button__area04 span:before {
  display: none;
}

.button__area04 span {
  border: none;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .button__area04 span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .button__area04 {
    padding: 8px 18px 8px 18px;
    display: inline-block;
    line-height: 150%;
  }
}
/* 横線 */
.button__area04::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #27273F;
}

/* 折れて上に行く矢印先端 */
.button__area04::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: 1px solid #27273F;
  transform: rotate(45deg);
}

.button__area05 {
  background-color: #27273F;
}
.button__area05 .button__area05::after {
  background-color: #fff;
}
.button__area05 .button__area04::after {
  color: #fff;
}

.page-linkBtnArea {
  text-align: center;
  margin-top: 64px;
  font-weight: 300;
}

.page-linkBtnArea a {
  border: 1px solid #27273F;
  padding: 20px 74px 20px 52px;
  max-width: 420px;
  width: 100%;
  position: relative;
  vertical-align: middle;
  background-color: #fff;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.page-linkBtnArea a span {
  color: #333;
}

@media screen and (max-width: 768px) {
  .page-linkBtnArea a {
    max-width: 320px;
    padding: 10px 30px 10px 10px;
  }
}
.page-linkBtnArea a:hover {
  background-color: #27273F;
}

.page-linkBtnArea a:hover span {
  color: #fff;
}

/* アイコンの矢印などの擬似要素も、hover時に色が合うように対応 */
.page-linkBtnArea a::after {
  content: "";
  width: 0.5rem;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 10px;
  box-sizing: border-box;
  background: #27273F;
}

.page-linkBtnArea a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #27273F;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 0.01em;
  right: 10px;
  transition: background-color 0.3s ease;
}

/* 固定ヘッダーが80pxなら */
:root {
  --header-height: 80px;
}

/* id付きの要素に適用 */
[id] {
  scroll-margin-top: var(--header-height);
}

.top-achievement {
  margin-top: 180px;
}

@media screen and (max-width: 1000px) {
  .top-achievement {
    margin-top: 64px;
  }
}
/* スライダーのラッパー */
.top-achievement__body {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .top-achievement__body {
    gap: 0;
    justify-content: unset;
  }
}
.top-achievement__inner {
  padding-bottom: 30px;
  margin-top: 100px !important;
}
@media screen and (max-width: 768px) {
  .top-achievement__inner {
    margin-top: 60px !important;
  }
}

.top-achievement__button {
  text-align: center;
  margin-top: 24px;
}

.top__slider {
  height: 100% !important;
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top__slider {
    width: 90%;
    padding-inline: 0;
  }
}
/* カードの設定 */
.top__slider .swiper-slide {
  max-height: 420px;
  flex-shrink: 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  width: auto;
}
@media screen and (max-width: 768px) {
  .top__slider .swiper-slide {
    max-height: 390px;
  }
}

/* カード本体 */
.support-card {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

/* 画像エリア */
.support-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.support-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 340/290;
  height: auto;
  min-height: 294px;
}

@media screen and (max-width: 768px) {
  .support-card__image img {
    aspect-ratio: 300/170;
  }
}
/* オーバーレイ */
.support-card__overlay {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  background: rgba(20, 25, 55, 0.85);
  color: #fff;
  padding: 16px 10px 0.6rem 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .support-card__overlay {
    padding: 16px 10px 16px 10px;
  }
}
.support-card__label {
  font-size: 16px;
  border: 1px solid #fff;
  display: inline-block;
  padding: 2px 6px;
  margin-bottom: 5px;
}

.support-card__thema {
  font-size: 24px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 情報エリア */
.support-card__info {
  padding: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.support-card__info p {
  font-size: 1rem;
  color: #000;
  line-height: 1.4;
}

.support-card__company {
  font-weight: bold;
  margin-bottom: 4px;
}

.top-achievement__wrapper {
  max-width: 1200px;
  margin: auto;
  padding-inline: 25px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* General styling */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #27273F;
}

.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header__title {
  margin: 0;
  font-size: 24px;
  max-width: 111px;
  align-self: baseline;
}

.header__navs {
  align-items: center;
  background-color: #27273F;
  height: -moz-max-content;
  height: max-content;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .header__navs {
    padding-right: 5px;
  }
}
.header__nav {
  display: flex;
  margin-left: 2.7vw;
}

.header__menu {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: clamp(30px, 4vw, 40px);
}

.header__menu-02 {
  gap: 7px;
  display: none;
}

@media screen and (max-width: 767px) {
  .header__menu-02 {
    display: flex;
  }
  .header__menu-02--item a img {
    max-width: 30px;
    margin: auto;
  }
}
.header__menu-02 li a {
  background-color: #fff;
  display: flex;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
}
.header__menu-02 li a:hover {
  opacity: 1;
}

@media screen and (max-width: 1040px) {
  .header__menu-02 li a {
    width: 56px;
    height: 56px;
  }
}
.header__menu-02 li:nth-child(1) a img {
  max-width: 44px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .header__menu-02 li:nth-child(1) a img {
    max-width: 36px;
  }
}
.header__menu-02 li {
  padding: 12px 6px 3px 6px;
}

@media screen and (max-width: 768px) {
  .header__menu-02 li {
    padding: 7px 6px 3px 0;
  }
}
.header__menu li {
  align-self: center;
  height: 100%;
}

.header__menu li:nth-of-type(8) {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  height: 60px;
}

.header__menu li:nth-of-type(7) {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  max-width: 60px;
  height: 60px;
  position: relative;
  z-index: 20;
  margin-right: -24px;
}

/* Mobile menu hidden by default */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0; /* 位置は右寄せに固定 */
  height: 100%;
  width: min(480px, 55%);
  background-color: #27273F;
  transform: translateX(100%); /* ← 初期状態は画面外 */
  transition: transform 0.3s ease-in-out;
  z-index: 20;
  padding: 18px;
  overflow: hidden;
  will-change: transform; /* GPU最適化 */
}

/* 表示時 */
.mobile-menu.active {
  transform: translateX(0); /* ← 画面内へ */
  overflow: scroll;
  height: 100%;
}

/* 768px以下：全画面表示 */
@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
  }
}
/* 768px以上：右半分だけ表示 */
@media (min-width: 768px) {
  .mobile-menu.active {
    right: 0; /* 半分だけ表示 */
    width: min(480px, 55%);
  }
}
.mobile-menu__items {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.mobile-menu__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__items li {
  margin-bottom: 15px;
}

.mobile-menu__items li a {
  display: inline-block;
  padding: 6px 26px 6px 4rem;
}

.mobile__title {
  color: #fff;
  font-size: 24px;
}

.mobile__title span a {
  color: white;
}

.mobile-menu__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 90%;
  padding-bottom: 150px;
  height: 100%;
}

.mobile-menu__items01 {
  background-color: #fff;
}

.mobile-menu__items01 li a {
  color: #333;
  font-size: 20px;
  position: relative;
}

.mobile-menu__items01 li a:before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  left: 15px;
  top: 16px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

.mobile-menu__items02 li a {
  color: #fff;
  font-size: 18px;
  position: relative;
}

.mobile-menu__items02 li a:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 15px;
  top: 50%;
  background-color: #fff;
  border-radius: 50%;
}

.header__navs {
  display: flex;
  gap: clamp(1.5rem, 7vw, 60px);
  flex: 2;
  align-items: center;
  justify-content: end;
}

/* Hamburger icon */
.header__hamburger {
  cursor: pointer;
  z-index: 99;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33px;
  height: 50px;
  width: 32px;
  height: 35px;
  background-image: url("<?php echo get_template_directory_uri(); ?>/images/svg/menu-open.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
  position: relative;
  z-index: 30;
}

#hamburger-icon02 {
  height: auto;
  width: 70px;
}

/* 開いたときの状態 */
.hamburger-icon.is-open {
  background-image: url("<?php echo get_template_directory_uri(); ?>/images/svg/menu-out.svg");
  position: relative;
  z-index: 30;
}

.hamburger-icon.menu-active span {
  color: #fff;
}

.hamburger-icon span:nth-child(4) {
  font-size: 10px;
}

.hamburger-icon .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: 0.3s;
}

/* X mark transformation */
.hamburger-icon.menu-active .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  background-color: #fff;
  width: 35px;
}

.hamburger-icon.menu-active .bar:nth-child(2) {
  opacity: 0;
  width: 35px;
}

.hamburger-icon.menu-active .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  width: 35px;
  background-color: #fff;
}

.header__menu {
  opacity: 0;
  visibility: hidden;
}

.header__title img {
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -5px;
}

@media (min-width: 768px) {
  .header__title img {
    margin-top: 0;
  }
  .hamburger-icon {
    display: none;
  }
  .header__title {
    max-width: 170px;
  }
  .header__menu {
    opacity: 1;
    visibility: visible;
  }
  .hamburger-icon.menu-active .bar:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    background-color: #fff;
    width: 35px;
    right: 0px;
  }
  .hamburger-icon.menu-active .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
    background-color: #fff;
    width: 35px;
    right: 0px;
  }
}
.mobile-menu.menu-active {
  right: 0;
}

.header__hamburger {
  display: block;
  position: absolute;
  top: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.header .header {
  padding: 15px 36px 10px 18px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header .header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header__titleArea {
  display: flex;
  align-items: center;
  z-index: 10;
  padding-left: 1.65rem;
  background-color: #fff;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
  padding-right: min(1.3vw, 4.3rem);
}

@media screen and (max-width: 500px) {
  .header__titleArea {
    max-width: 230px;
    align-self: end;
    padding-left: 0.6rem;
    background-color: #fff;
    padding-bottom: 0.3rem;
    padding-right: 0.3rem;
  }
}
.header .header__title {
  margin: 0;
  font-size: 24px;
  max-width: 111px;
  align-self: baseline;
}

.header__titleLogo {
  display: flex;
  align-items: center;
  z-index: 10;
  max-width: 270px;
}

.header__titleLogo img {
  max-width: 353px;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header .header__title {
    display: none;
  }
  .header__titleLogo {
    width: 100%;
    height: auto;
  }
}
.header__menu {
  display: flex;
  gap: clamp(0.5rem, 3.3vw, 3.4vw);
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: clamp(30px, 4vw, 40px);
}

.header__menu li a {
  text-decoration: none;
  font-size: clamp(1rem, 1.25vw, 20px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  transition: 0.6s;
  letter-spacing: 0.08em;
  font-weight: 300;
  height: 100%;
  display: flex;
  align-items: center;
}

.header__menu li a:hover {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header .mobile-menu__items li a:hover {
  background: linear-gradient(45deg, #DAAF08, #debf50, #B67B03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header .header__navs {
  display: flex;
  gap: clamp(1.5rem, 7vw, 60px);
  position: relative;
  justify-content: end;
}

.header .header__hamburger {
  cursor: pointer;
  z-index: 0;
}

.header .hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33px;
  height: 50px;
  color: #fff;
}

.header .hamburger-icon.menu-active span {
  color: #fff;
}

.header .hamburger-icon span:nth-child(4) {
  font-size: 10px;
}

.header .hamburger-icon .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}

.header .hamburger-icon.menu-active .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  background-color: #fff;
  width: 35px;
}

.header .hamburger-icon.menu-active .bar:nth-child(2) {
  opacity: 0;
  width: 35px;
}

.header .hamburger-icon.menu-active .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  width: 35px;
  background-color: #fff;
}

.header .header__menu {
  opacity: 0;
  visibility: hidden;
}

.header .header__title img {
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: -5px;
}

@media (min-width: 768px) {
  .header .header__title img {
    margin-top: 0;
  }
  .header .hamburger-icon {
    display: none;
  }
  .header .header__title {
    max-width: 170px;
  }
  .header .header__menu {
    opacity: 1;
    visibility: visible;
    margin-right: 0;
  }
  .header .hamburger-icon.menu-active .bar:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    background-color: #fff;
    width: 35px;
    right: 0px;
  }
  .header .hamburger-icon.menu-active .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
    background-color: #fff;
    width: 35px;
    right: 0px;
  }
}
.header .mobile-menu.menu-active {
  right: 0;
}

.header .header__hamburger {
  display: block;
  position: absolute;
  bottom: 0;
  top: unset;
}

@media (max-width: 1200px) {
  .header .header__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }
  .header__menu li:not(:nth-child(7)):not(:nth-child(8)) {
    display: none;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.footer-section {
  background-color: #27273F;
  padding: 74px 10px 70px;
}

.footer-section__inner {
  max-width: 1100px;
  margin: auto;
}

.footer-section__coopyRight,
.footer-section__item {
  color: #fff;
}

.footer-section__wrapper {
  display: flex;
  word-break: break-all;
  justify-content: space-between;
}

.footer-section__logo {
  max-width: 265px;
  width: 100%;
}

.footer-section__info {
  margin-top: 24px;
}

.footer-section__coopyRight {
  margin-top: 32px;
}

.footer-section__item {
  margin-top: 7px;
  letter-spacing: 0.08em;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 0.026em;
}

.p-footer__navItem a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-section__item {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer-section__items {
    margin-top: 36px;
  }
}
.footer-section__menu li {
  position: relative;
}

.footer-section__menu li:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  top: 12px;
}

@media screen and (max-width: 768px) {
  .footer-section__menu li:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    top: unset;
    bottom: 0;
    background: #fff;
    display: inline-block;
    transform: translateY(-50%);
  }
}
.footer-section__menu li a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  transition: 0.6s;
  position: relative;
  padding-left: 32px;
  font-weight: 200;
  display: inline-block;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .footer-section__menu li a {
    width: 100%;
    display: inline-block;
    padding-bottom: 10px;
  }
  .footer-section__menu li a:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: #fff;
  }
  .footer-section__menu li a:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 1px;
    right: 9px;
    top: 43%;
    background-color: #fff;
    transform: rotate(25deg) translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .footer-section__menu li a {
    font-size: 1rem;
    padding-left: 0;
  }
}
.footer-section__menu li a:hover {
  color: #333;
  background-color: #fff;
}
.footer-section__menu li a:hover:before {
  border-top: #333;
}
.footer-section__menu li a:hover:after {
  border-top: #333;
}

.footer-section__menu li:nth-child(n+2) {
  margin-top: 30px;
}

.footer-section__nav {
  display: flex;
  gap: clamp(40px, 4.5vw + 5rem, 78px);
}

.footer-section__nav div a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  transition: 0.6s;
  font-family: "Wallpoet", "cursive";
}

.footer-section__item a {
  color: #fff;
}

.footer-section__item a:hover {
  opacity: 0.7;
}

.footer-section__coopyRight,
.footer-section__coopyRight--link {
  font-size: 10px;
  color: #BEBEBE;
}

.footer-section__snsItem a img {
  width: 35px;
  height: 35px;
}

.footer-section__sns {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.footer-section__bodyMenu {
  margin-top: 168px;
}

@media (max-width: 850px) {
  .footer-section {
    padding: 0 20px 34px;
  }
  .footer-section__nav {
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer-section__body {
    margin-top: 60px;
  }
  .footer-section__logo {
    max-width: 220px;
  }
  .footer-section__info {
    margin-top: 1rem;
  }
  .footer-section__coopyRight {
    margin-top: 1rem;
  }
  .footer-section__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: auto;
    gap: 0;
  }
  .footer-section__body {
    order: 1; /* 後に表示 */
  }
  .footer-section__bodyMenu {
    order: 2; /* 先に表示 */
    margin-top: 44px;
  }
}
.footer-section__container {
  display: flex;
  justify-content: space-between;
  margin-top: 86px;
}

@media screen and (max-width: 768px) {
  .footer-section__container {
    margin-top: 90px;
    flex-direction: column;
  }
}
.footer-section__copy {
  color: #fff;
  margin-top: 125px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer-section__copy {
    margin-top: 40px;
  }
}
/* ---------- footer--------------------------- */
.contact-section {
  background-image: url(../images/top/footer-image.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 60px 10px 66px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 18px 10px 30px;
  }
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* ←暗さの調整はここ！ */
  z-index: 1;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .contact-section:before {
    width: 100%;
  }
}
.contact-section:after {
  content: "";
  display: inline-block;
  border: 1px solid #fff;
  width: 98%;
  height: 98%;
  width: 99%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.contact-section__body {
  margin-top: 36px;
}

.contact-section__title {
  font-size: 24px;
  margin-top: 10px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .contact-section__title {
    font-size: 20px;
  }
}
.contact-section__title,
.contact-section__text,
.contact-section__textArea {
  color: #fff;
  text-align: center;
}

.contact-section__textArea {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  .contact-section__textArea {
    font-size: 13px;
  }
}
.contact-button {
  gap: 1.25rem;
  display: grid;
  justify-content: center;
  grid-template-columns: 378px 378px;
}

@media screen and (max-width: 768px) {
  .contact-button {
    margin-top: 14px;
    margin: auto;
    grid-template-columns: 250px;
  }
}
.contact-button__email {
  background-color: #7B7B9D;
  color: #fff;
  position: relative;
  z-index: 10;
  transition: 0.8s;
  border: 1px solid #fff;
}
.contact-button__email::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 100%;
  background-image: url(../images/svg/email-logoSvg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 44px;
  transform: translateY(-38%);
}
@media screen and (max-width: 767px) {
  .contact-button__email::before {
    transform: translateY(-45%);
    left: 15px;
  }
}
.contact-button__email:hover {
  background-color: #fff;
  opacity: 1;
}
.contact-button__email:hover span {
  color: #7B7B9D;
}
.contact-button__email:hover p {
  color: #7B7B9D;
}

.contact-button__tell {
  background-color: #fff;
  padding: 8px 14px;
  z-index: 10;
  position: relative;
  transition: 0.8s;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact-button__tell:hover {
  background-color: #7B7B9D;
  color: #fff;
}

.contact-button__tell:hover ~ .contact-button__subText {
  color: #fff;
}

.contact-button__tell > .contact-button__title {
  color: #333;
}

.contact-button__tell:hover > .contact-button__title {
  color: #ffffff;
}

.contact-button__tell:hover .contact-button__subText {
  color: #fff;
}

.contact-section__information {
  max-width: 777px;
  margin: 36px auto 0;
}

.contact-section__information p {
  text-align: left;
  font-size: max(1rem, 20px);
}

@media screen and (max-width: 768px) {
  .contact-section__information p {
    font-size: 1rem;
  }
}
.footer-section__textArea {
  font-size: clamp(1rem, 0.75rem + 0.75vw, 24px);
}

.footer-section__text {
  font-size: 13px;
}

.contact-button__title {
  font-size: 28px;
  font-weight: bold;
  font-weight: 600; /* または 400 */
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .contact-button__title {
    font-size: 20px;
  }
}
.contact-button__text {
  font-size: 13px;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
}

@media screen and (max-width: 768px) {
  .contact-button__title {
    text-align: center !important;
  }
  .contact-button__text {
    font-size: 10px;
  }
}
.contact-button__email {
  max-width: 378px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
  transition: 0.8s;
  padding: 14px 8px 14px 5rem !important;
  border: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  .contact-button__email {
    padding: 5px 8px 5px 2rem !important;
  }
}
.contact-button__tell > .contact-button__text {
  font-size: 12px;
}

.contact-button__textSize {
  font-size: 1rem;
}

.contact-button__subText {
  font-size: 12px;
  color: #333;
  font-family: "Inter", sans-serif;
}

@media screen and (max-width: 768px) {
  .contact-button__subText {
    font-size: 8px !important;
  }
}
.contact-button {
  gap: 1.25rem;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}

.contact-button__email,
.contact-button__tell {
  text-align: center;
}

.buttonall {
  font-weight: bold;
  color: #333;
  opacity: 0.8;
  font-size: 15px;
}

.contact__wrapper--text {
  margin-top: 60px;
}

.contact__wrapper--infoTitle {
  margin-top: 40px;
}

.contact__titleArea.section-title {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .contact__titleArea {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact__titleArea h1 {
    text-align: center;
    font-size: 2rem;
  }
}
.contact__titleArea h1 span {
  font-size: 1rem;
}

.contact__message {
  font-size: 34px;
  padding-bottom: 66px;
  letter-spacing: 1.28px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact__message {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
.contact__message:before {
  position: absolute;
  content: "";
  width: 55px;
  height: 1px;
  left: 50%;
  top: 74px;
  background-color: #8E7E6D;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .contact__message:before {
    display: none;
  }
}
.contact__container {
  padding-top: 74px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contact__container {
    padding-top: 30px;
  }
}
.contact__container:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: #9794AA;
  opacity: 15%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .contact__container:before {
    height: 89%;
  }
}
.contact__inner {
  max-width: 1160px;
}

@media screen and (max-width: 768px) {
  .contact__inner.l-inner {
    padding-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .required,
  .optional {
    margin-left: 40px !important;
  }
}
/* ---------- contact--------------------------- */
.contact__complete__backHom {
  margin-top: 42px;
  text-align: center;
}

.p-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.p-card a {
  width: 100%;
  display: inline-block;
}

.p-card a {
  height: auto;
  width: 100%;
}

.p-card a img {
  height: 100%;
  width: 100%;
  aspect-ratio: 300/300;
}

.p-categories {
  display: flex;
}

.p-nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-nowrap {
    white-space: wrap;
  }
}

.flow-messageArea {
  margin-top: 208px;
}

.flow-messageArea__inner {
  max-width: 1230px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-messageArea__inner {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .flow-messageArea {
    margin-top: 44px;
  }
}
.flow-messageArea__message {
  text-align: center;
  line-height: 1.67;
  font-size: 24px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .flow-messageArea__message {
    font-size: 1rem;
    text-align: left;
  }
}
.flow-messageArea__message span {
  display: inline-block;
  margin-top: 58px;
}

.flow-messageArea__message span {
  margin-top: 52px;
}

.case-posts__inner {
  max-width: 1166px;
  margin: auto;
  padding-inline: 20px;
}

.case-posts__list {
  gap: 52px;
  margin-top: 60px;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .case-posts__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.case-post__thumb {
  overflow: hidden; /* ←これが重要！ */
  height: auto;
}

.case-post__thumb img {
  aspect-ratio: 1.5;
  height: auto;
}

.case-post__thumb img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease; /* アニメーション時間とイージング */
}

.case-post:hover .case-post__thumb img {
  transform: scale(1.1); /* hover時に10%拡大 */
}

.case-post__title {
  margin-top: 10px;
  background-color: #7B7B9D;
  color: #fff;
  font-size: 1rem;
  padding: 0.6rem;
  text-align: left;
}

.case-post__content {
  font-size: 1rem;
  color: #27273F;
  margin-top: 6px;
  text-align: left;
}

.case-post__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示する最大行数 */
  overflow: hidden;
}

.case-post__date {
  font-size: 14px;
  color: #7B7B9D;
  text-align: right;
}

.case-post__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

.case-post__body time {
  font-size: 12px;
  color: #27273F;
}

.case-post {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .case-post {
    max-width: 500px;
    margin: auto;
  }
}
.case-post a {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.case-post__pagination {
  margin-top: 60px;
}

.results {
  grid-column: 1/3;
}

.top-reason__inner {
  max-width: 612px;
  padding: 0 20px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .top-reason__inner {
    padding-inline: 14px;
  }
}

.top-reason__textArea {
  margin-top: 98px;
}

@media screen and (max-width: 1000px) {
  .top-reason__textArea {
    margin-top: 52px;
  }
}
.p-consulting {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-consulting {
    padding: 40 0;
  }
}

.p-consulting__inner {
  margin-inline: auto;
  max-width: 1440px;
}
@media screen and (max-width: 768px) {
  .p-consulting__inner {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}

.p-consulting__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .p-consulting__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.p-consulting__card {
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 0 40px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-consulting__card {
    padding: 30px 20px;
  }
}

.p-consulting__title {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-consulting__title {
    margin-bottom: 20px;
  }
}

.p-consulting__title-main {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.p-consulting__title-sub {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.p-consulting__title-note {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.p-consulting__list {
  list-style: none;
  padding: 0;
  margin-top: 56px;
  margin-right: auto;
  margin-left: auto;
  max-width: 300px;
}
.p-consulting__list.--02 {
  margin-top: 130px;
  max-width: 200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-consulting__list.--02 {
    margin-top: 60px;
  }
}

.p-consulting__list-item {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  text-align: left;
}
.p-consulting__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #000;
}

.p-consulting__fee {
  margin-top: 56px;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}
.p-consulting__fee.--03 {
  margin-top: 68px;
}
@media screen and (max-width: 768px) {
  .p-consulting__fee {
    margin-top: 32px;
  }
}

.p-consulting__btn {
  margin-top: 64px;
}

.p-consulting__fee-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-consulting__fee-title {
    margin-bottom: 15px;
  }
}

.p-consulting__fee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.p-consulting__fee-item {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-consulting__fee-item {
    font-size: 14px;
    padding-left: 25px;
  }
}
.p-consulting__fee-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7B7B9D;
  font-weight: 700;
  font-size: 18px;
}

.process-item {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.process-item:nth-child(n+2) {
  margin-top: 9px;
}

.process-item img {
  position: relative;
  width: 70px;
  height: 70px;
  padding: 8px;
  position: relative;
  z-index: 1;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.process-item img::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .process-item img {
    width: 60px;
    height: 60px;
  }
}
.contract {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .contract {
    margin-top: 80px;
  }
}
.contract02 {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  .contract02 {
    padding-top: 0;
    margin-top: 70px;
  }
}
.contract03 {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .contract03 {
    margin-top: 54px;
  }
}
.contract:nth-child(3n) {
  padding-bottom: 136px;
}

@media screen and (max-width: 768px) {
  .contract:nth-child(3n) {
    padding-bottom: 34px;
  }
}
.contract__container {
  margin-top: 42px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contract__container {
    margin-top: 70px;
    text-align: left;
  }
}
.contract__container p {
  font-size: 18px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .contract__container p {
    font-size: 1rem;
  }
}
.contract__container p:nth-child(n+2) {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .contract__container p:nth-child(n+2) {
    margin-top: 24px;
  }
}
.contract__wrapper {
  max-width: 1120px;
  margin: auto;
  display: grid;
  justify-content: center;
  gap: 78px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  position: relative;
}

@media screen and (max-width: 768px) {
  .contract__wrapper {
    gap: 60px;
    grid-template-columns: 1fr;
  }
}
.contract__wrapper:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 560px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -38%);
  background: url(../images/svg/lline.svg);
  z-index: 99;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 777px) {
  .contract__wrapper:before {
    display: none;
  }
}
.contract__wrapper03:after {
  height: 135vh !important;
}

.contract__wrapper:after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 140vh;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  background: #7B7B9D;
  opacity: 0.14;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .contract__wrapper:after {
    display: none;
  }
}
.contract__titleArea {
  padding-top: 1rem !important;
  position: relative;
}

.contract__titleArea .section-title {
  padding-top: 0;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .contract__titleArea {
    padding-top: 40px;
  }
}
.contract__formArea h3,
.contract__priceArea h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #27273F;
}

@media screen and (max-width: 768px) {
  .contract__formArea h3,
  .contract__priceArea h3 {
    font-size: 20px;
  }
}
.contract__btn {
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .contract__btn {
    margin-top: 24px;
  }
}
.contract__items {
  margin-top: 78px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contract__items {
    margin-top: 74px;
  }
  .contract__items03:before {
    height: 128% !important;
  }
}
@media screen and (max-width: 739px) {
  .contract__items:before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 455px;
    left: 0;
    top: -40px;
    background: #7B7B9D;
    opacity: 0.14;
    z-index: -1;
    margin-left: calc(50% - 50vw);
  }
  .contract__items02:before {
    height: 150%;
  }
}
.post-title {
  font-size: 36px;
  position: relative;
  padding-left: 1rem;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .post-title {
    margin-top: 1rem !important;
    font-size: 24px;
  }
}
.post-title:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  left: 0;
  bottom: 0;
  background-color: #333;
}

.post-title:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 20px;
  left: 0;
  bottom: 0;
  background-color: #8E7E6D;
}

.card {
  display: grid;
  background-color: #fff;
  border: 1px solid #AAB7C4;
  align-items: center;
  grid-template-columns: 100px 1fr; /* デフォルト: 左100px + 右は自動 */
  gap: 18px;
  padding: 34px; /* 任意 */
  cursor: pointer;
}
.card:hover {
  outline: 2px solid #7B7B9D;
}

@media screen and (max-width: 768px) {
  .card {
    padding: 15px 10px;
  }
}
.card:nth-child(n+2) {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .card:nth-child(n+2) {
    margin-top: 22px;
  }
}
.card p {
  font-size: 18px;
  line-height: 150%;
}

.card-items {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .card-items {
    grid-template-columns: 1fr;
  }
}
.l-blog {
  position: relative;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .l-post {
    margin-top: 40px !important;
  }
}
.form-row {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  align-items: flex-start;
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
    border-bottom: unset;
  }
}
.form-row label {
  font-weight: bold;
  display: grid;
  grid-template-columns: 208px 1fr;
}

@media screen and (max-width: 768px) {
  .form-row label {
    display: inline-block;
    font-size: 18px;
  }
}
.form-row p {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .form-row p {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }
  .form-row p span {
    display: inline-block;
  }
}
.form-row01 {
  grid-row: 2/2;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .form-row01 {
    display: block !important;
  }
}
.form-row:nth-of-type(3) p label {
  margin-top: 10px;
}

.form-row:nth-of-type(4) p label {
  margin-top: 10px;
}

.form-row__body {
  background-color: #fff;
  padding-bottom: 90px;
  padding-top: 90px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .form-row__body {
    padding-bottom: 2rem;
    padding-top: 0;
  }
  .form-row__company {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .form-row__company span {
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
  }
}
.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkbox-group label {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 8px;
}

.required {
  color: #fff;
  background-color: #27273F;
  padding: 2px 10px;
  font-size: 1rem;
  border-radius: 2px;
  margin-left: 8px;
}

.optional {
  color: #fff;
  margin-left: 8px;
  background-color: #AAB7C4;
  padding: 2px 12px;
  font-size: 1rem;
}

.form-submit {
  text-align: center;
  max-width: 360px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .form-submit {
    max-width: 314px;
  }
}
.submit-button {
  background-color: #a69bc7;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  max-width: 360px;
  width: 100%;
  transition: 0.6s;
}
.submit-button:hover {
  background-color: #27273F;
}

/* チェックボックスを非表示にしてカスタム表示を作成 */
input[type=checkbox].custom-checkbox {
  display: none;
}

.wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  margin: 8px 20px 8px 0;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  padding-left: 28px;
}

/* 四角枠の表示 */
.wpcf7-list-item label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #D1DAE1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}

.wpcf7-form-control-wrap {
  max-width: 380px;
}

.wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .wpcf7-checkbox {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
.wpcf7-list-item-label a {
  color: #333;
}

.checkbox-row p {
  margin: auto;
}

.checkbox-row {
  border-bottom: unset;
  justify-content: center;
}

/* チェックがついたときにレ点表示 */
input[type=checkbox]:checked + span::after {
  content: "✔";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #333;
}

.form-table {
  padding-top: 66px;
  background-color: #fff;
  border-radius: 8px;
  padding-inline: 10%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .form-table {
    padding-inline: 1rem;
  }
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc; /* 明るいグレー。#999 〜 #ddd あたりで調整可 */
  opacity: 1; /* Safari対応のため追加 */
}
input::placeholder,
textarea::placeholder {
  color: #ccc; /* 明るいグレー。#999 〜 #ddd あたりで調整可 */
  opacity: 1; /* Safari対応のため追加 */
}

.scroll-to-top {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 50px;
  height: 50px;
  z-index: 1000;
  cursor: pointer;
  transition: color 0.3s, opacity 0.4s;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #7B7B9D;
  line-height: 3.9;
  font-size: 14px;
  opacity: 0;
  display: none;
}

.scroll-to-top::before {
  content: "";
  position: absolute;
  top: -83%;
  left: 42%;
  width: 8px;
  height: 5px;
  border-top: 1px solid #7B7B9D;
  transform: translate(-50%, -50%) rotate(55deg);
  transition: border-color 0.3s;
}

.scroll-to-top::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  width: 10px;
  height: 32px;
  border-left: 1px solid #7B7B9D;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s;
}

@media screen and (max-width: 768px) {
  .scroll-to-top {
    margin-right: -20px;
    display: block;
  }
}
/* フェード表示 */
.scroll-to-top.is-visible {
  display: block;
  opacity: 1;
}

/* 白色に切り替え */
.scroll-to-top.is-white {
  color: #fff;
}

.scroll-to-top.is-white::before,
.scroll-to-top.is-white::after {
  border-color: #fff;
}

.top-404 {
  padding: 80px;
}

.page-titleArea {
  padding-bottom: 80px;
}

.blog-archive {
  margin-top: 48px;
  margin-bottom: 60px;
}

.blog-card__content {
  color: #333;
  margin-top: 0.5rem;
}

.blog-card__excerpt {
  margin-top: 1rem;
}

.blog-card__thumb img {
  height: 100%;
}

.performance {
  margin-top: 196px;
}

@media screen and (max-width: 768px) {
  .performance {
    margin-top: 68px;
  }
}
.performance__wrapper {
  position: relative;
}

@media screen and (max-width: 768px) {
  .performance__wrapper {
    margin-top: 52PX;
    padding-top: 24px;
    border-top: none;
  }
  .performance__wrapper:before {
    position: absolute;
    content: "";
    width: 90%;
    height: 1px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #333;
  }
}
.performance__items {
  max-width: 1170px;
  margin: auto;
}

.performance__item {
  display: grid;
  grid-template-columns: min(35vw, 550px) 1fr;
  gap: min(92px, 4vw);
  padding-inline: 11px;
  position: relative;
}

.performance__item:nth-child(n+2) {
  margin-top: 42px;
  padding-top: 40px;
}
.performance__item:nth-child(n+2):before {
  position: absolute;
  content: "";
  width: 95%;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #333;
}

@media screen and (max-width: 768px) {
  .performance__item {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    border-top: none;
  }
  .performance__item:nth-child(n+2):before {
    width: 90%;
  }
}
.performance__inner {
  padding-bottom: 100px;
}

.performance__title {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .performance__title {
    font-size: 20px;
  }
}
.performance__subTitle {
  background-color: #27273F;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 18px;
  border-radius: 4px;
  font-size: 16px;
  align-self: center;
}
.performance__subTitle.--noRadius {
  border-radius: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .performance__textArea {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .seo-desc {
    margin-top: 24px;
  }
}
.performance_text {
  font-size: 1rem;
}

.performance__item02 figure img {
  height: auto;
}

@media screen and (max-width: 768px) {
  .performance__item02 {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .performance__item02 figure img {
    height: auto;
  }
}
.performance__body {
  display: flex;
  gap: 30px;
}

.performance__body dl {
  display: flex;
  gap: 10px;
}

.performance__body dl dd {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .performance__body dl dd {
    font-size: 1rem;
  }
}
.performance__body dl dd span {
  font-size: 1rem;
}

.performance__container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.performance__container p {
  margin-top: 20px;
}

.performance__item01 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.performance__btn {
  margin-top: 44px;
  text-align: center;
}

.performance__pagination {
  margin: 25px auto 0;
}

.wp-block-heading {
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .wp-block-heading {
    margin-top: 24px;
    padding-left: 15px;
  }
}
.wp-block-list {
  list-style: disc;
  padding-left: 18px;
  margin-top: 24px;
}

.service-info {
  position: relative;
  margin-top: 112px;
  padding-top: 140px;
}

@media screen and (max-width: 768px) {
  .service-info {
    margin-top: 0;
    padding-top: 40px;
  }
}
.service-info:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #9794AA;
  opacity: 15%;
  z-index: -1;
}

@media screen and (max-width: 1040px) {
  .service-info {
    margin-top: 0;
    padding-top: 40px;
  }
  .service-info__inner {
    padding-inline: 15px !important;
  }
  .service-info:before {
    top: 280px;
  }
}
.post-categories {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .post-categories {
    display: none;
  }
}

.post-categories span {
  margin-right: 10px;
}

.post-categories li {
  font-size: 14px;
}

.post-categories li a {
  background-color: #D9D9D9;
  border-radius: 20px;
  padding: 2px 16px;
  color: #333;
}

.sidebar-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

@media screen and (max-width: 768px) {
  .sidebar-section {
    padding-top: 24px;
  }
}
.sidebar-section h2 {
  font-size: 24px;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.sidebar-section h2:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #27273F;
}

.sidebar-section:nth-child(n+2) {
  margin-top: 24px;
}

.sidebar-logoSection__body {
  gap: 1.25rem;
  display: flex;
  justify-self: center;
  flex-direction: column;
  align-self: center;
}

.sidebar-logoSection__body a:before {
  left: 5% !important;
}

.sidebar-logoSection__body > .contact-button__email {
  padding-top: 10px;
  padding-bottom: 10px;
}

.sidebar-logoSection__body > .contact-button__tell {
  padding: min(10px, 2vw) min(8px, 1vw) min(10px, 2vw) 8px;
}

.sidebar-logoSection__body > .contact-button__tell a {
  font-size: 20px;
  font-weight: bold;
}

.sidebar-section__image img {
  height: 100%;
  max-width: 180px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sidebar-section__image img {
    max-width: 276px;
  }
}
.sidebar-section__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 42px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sidebar-section__links {
    gap: 24px;
    margin-top: 24px;
  }
}
.sidebar-section__item--link a {
  border: 2px solid rgba(51, 51, 51, 0.2);
  padding: 6px 24px;
  border-radius: 16px;
  max-width: 180px;
  width: 100%;
  display: inline-block;
  color: #333;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .sidebar-section__item--link a {
    max-width: 250px;
    font-size: 18px;
  }
}
.sidebar-section__title span:first-letter {
  color: #8E7E6D; /* 好きな色に変更 */
}

.sidebar-section__subText {
  font-size: 8px;
}
.sidebar-section__subText a {
  color: #333;
}

.sidebar-section__textSize {
  font-size: 20px;
  color: #333;
}

.contact-button__email {
  padding: 8px 8px 8px 5rem;
  border: 2px solid #fff;
}

.sidebar-section__body .contact-button__email {
  z-index: 1 !important;
}

.sidebar-section__tell {
  color: #333;
  background-color: #fff;
  padding: 8px;
  text-align: center;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.sidebar-section__text {
  font-size: 13.38px;
}

.sidebar-section__text02 {
  font-size: 12px;
}

.sidebar-section__textSize {
  font-size: 13.36px;
}

.sidebar-section__title {
  font-size: 28.8px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
}

.sidebar-section__title02 {
  font-size: 20px;
  color: #000;
  letter-spacing: 0.035em;
}

.sidebar-section__body {
  max-width: 240px;
  margin: auto;
}

.sidebar-section__sectionTitle span {
  color: #8E7E6D;
}

.sidebar-section__body > .contact-button__email {
  padding: 8px 8px 8px 3rem !important;
  font-family: "Poppins", sans-serif;
}

.sidebar-section__body > .contact-button__email:before {
  left: 5px !important;
}

.type-card {
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  align-self: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}
.type-card h3,
.type-card span {
  color: #333;
  transition: color 0.3s ease;
}
.type-card:hover h3,
.type-card:hover span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .type-card {
    min-height: 110px;
    align-items: center;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .type-card__title {
    display: flex;
    gap: 15px;
  }
}
.type-card:hover ~ .type-card h3 {
  color: #fff;
}

.type-card:hover::before {
  background-color: #55456E; /* ← $gray の出力色 */
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .type-card:nth-child(n+2) {
    margin-top: 20px;
  }
}
.type-card003 a {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .type-card003 a {
    flex-direction: row;
  }
}
.type-card003 a h3 {
  align-content: space-around;
  height: 100%;
}

.type-card span {
  font-size: 20px;
}

.type-card p {
  color: #7B7B9D;
}

.type-card h3 {
  color: #333;
  font-size: 24px;
  line-height: 150%;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .type-card h3 {
    text-align: left;
    align-self: center;
    font-size: 18px;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .type-card span {
    align-self: center;
    font-size: 28px;
    margin-right: 14px;
  }
}
.service-tabs {
  padding-block: 60px;
  overflow: hidden;
}

.service-tabs__inner {
  width: min(1160px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.service-tabs__item {
  padding: 14px 27px;
  border-radius: 12px 12px 0px 0px;
  background: #D9D9D9;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
.service-tabs__item[aria-selected=true] {
  background: #7B7B9D;
  color: #fff;
  pointer-events: none;
}
.service-tabs__item[aria-selected=false] {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .service-tabs__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.service-tabs__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-tabs__content p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.service-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.service-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.meta__tag,
.meta__category {
  background-color: #7B7B9D;
  color: #fff;
  padding: 2px 6px;
  border-radius: 40px;
}

@media screen and (max-width: 768px) {
  .post-content {
    margin-top: 30px;
  }
}
.post-content p {
  margin-top: 36px;
  color: #282828;
}

@media screen and (max-width: 768px) {
  .post-content p {
    margin-top: 20px;
  }
}
.post-content h2 {
  position: relative;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 2rem;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .post-content h2 {
    font-size: 21px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
  }
}
.post-content h2:before {
  content: "";
  display: inline-block;
  background-color: #7B7B9D;
  opacity: 15%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.post-content h2:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #27273F;
  display: inline-block;
}

.post-content h3 {
  position: relative;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 2rem;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .post-content h3 {
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.post-content h3:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #27273F;
  display: inline-block;
}

.post-content h4 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .post-content h4 {
    font-size: 24px;
  }
}
.post-content__btn {
  margin-top: 40px;
  text-align: center;
}

.post-content figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  aspect-ratio: 808/600;
}

@media screen and (max-width: 768px) {
  .post-content figure img {
    aspect-ratio: 370/277;
  }
}
.contact-sidebar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .contact-sidebar {
    display: none;
  }
}
.contact-sidebar > .contact-button {
  grid-template-columns: 1fr;
}

.top {
  position: relative;
}

@media screen and (max-width: 768px) {
  .top__title {
    font-size: 24px;
    text-align: center;
  }
}
.top__titleArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.top__titleArea h1,
.top__titleArea span {
  color: #fff;
}

.top__titleArea h1 {
  font-size: 50px;
  letter-spacing: 0.33em;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .top__titleArea {
    width: 100%;
  }
  .top__titleArea h1 {
    font-size: 2rem;
    letter-spacing: 0.005em;
  }
}
.top__titleArea span {
  font-size: 2rem;
  letter-spacing: 0.18em;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 0.75;
  display: inline-block;
}

.top__visual {
  display: inline-block;
  height: 250px;
  width: 100%;
  filter: brightness(70%);
}

.top__visual img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 400px) {
  .top__titleArea span {
    font-size: 24px;
  }
}
.text-content:nth-child(n+2) {
  margin-top: 104px;
}

@media screen and (max-width: 1000px) {
  .text-content:nth-child(n+2) {
    margin-top: 52px;
  }
}
.text-content span {
  font-size: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
}

.text-content span span {
  font-size: 2rem;
}

.text-content span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #7B7B9D;
}

.text-content h3 {
  margin-top: 10px;
  font-size: 2rem;
  color: #27273F;
}

@media screen and (max-width: 1000px) {
  .text-content h3 {
    font-size: 24px;
  }
}
.text-content p {
  margin-top: 44px;
  line-height: 2;
  letter-spacing: 0;
}

.top-view {
  position: relative;
  z-index: 0;
}

.top-view__textArea {
  position: absolute;
  bottom: 90px;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, 41px);
  color: #fff;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .top-view__textArea {
    left: 53%;
  }
}
.top-view__textArea02 {
  margin-top: 234px;
  text-align: center;
}

.top-view__textArea h1 {
  font-size: 2rem;
  text-align: center;
  position: relative;
  color: #000; /* 黒文字 */
  font-size: 2rem;
  text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #fff, 0 0 16px #fff, 0 0 20px #fff;
  font-weight: 900;
}

@media screen and (max-width: 1000px) {
  .top-view__textArea h2 {
    font-size: 28px;
  }
}
.top-view__textArea h1 span {
  color: #8b8a83;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 4px #ffffff, 0 0 8px #ffffff, 0 0 12px #ffffff, 0 0 20px #ffffff, 0 0 30px rgba(255, 255, 255, 0.9);
}

.top-view__textArea h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.3;
  transform: scale(1.02); /* 少し広げてぼかしを自然に */
}

.serviceInfo-card__text {
  padding-top: 44px;
  padding-bottom: 32px;
  padding-left: 88px;
  font-size: 24px;
  position: relative;
  max-width: 870px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .serviceInfo-card__text {
    padding: 1rem;
  }
  .serviceInfo-card__wrapper-dl02 {
    padding: 0 12px;
  }
}
.serviceInfo-card__wrapper-dl02--mt {
  margin-top: -18px !important;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper-dl02--mt {
    margin-top: 10px !important;
  }
}
.serviceInfo-card__wrapper-dl02--mt02 {
  margin-top: 32px;
}

.serviceInfo-card__wrapper-dl02--mt03 {
  margin-top: -30px !important;
}

@media screen and (max-width: 1041px) {
  .serviceInfo-card__wrapper-dl02--mt03 {
    margin-top: 1.6rem !important;
  }
}
.serviceInfo-card__text:before {
  position: absolute;
  content: "";
  width: 92%;
  border-bottom: 1px solid;
  bottom: 0;
  left: 42px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__text {
    font-size: 18px;
    line-height: 150%;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 1rem;
    letter-spacing: 0.005em;
  }
}
@media screen and (max-width: 1040px) {
  .serviceInfo-card__text:before {
    width: 90%;
    left: 15px;
  }
}
.serviceInfo-card__wrapper {
  margin-top: 44px;
  grid-row: 1/span 2;
  padding-inline: 50px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper {
    padding-inline: 15px;
    margin-top: 32px;
    position: relative;
  }
  .serviceInfo-card__wrapper.--backImg:before {
    content: "";
    background-image: url(../images/service/service-card-item-11.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -5px;
    right: 0;
    min-width: 110px;
    min-height: 130px;
  }
}
@media screen and (max-width: 1040px) and (max-width: 767px) {
  .serviceInfo-card__wrapper.--backImg:before {
    min-width: 70px;
    min-height: 100px;
  }
}
.serviceInfo-card__wrapper-mgt34 {
  margin-top: 32px;
}

.serviceInfo-card {
  position: relative;
}

.serviceInfo-card:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 30px;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card:before {
    top: 10px;
  }
  .serviceInfo__textArea {
    max-width: 150px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}
.serviceInfo__textArea {
  margin-top: 14px;
  max-width: 300px;
  width: 100%;
  margin: 16px auto 0;
}

.serviceInfo__textArea h4 {
  text-align: left;
  font-size: 24px;
  font-weight: 300;
}

.serviceInfo__textArea p {
  margin-left: 70px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo__textArea h4 {
    margin-bottom: -10px;
  }
  .serviceInfo__textArea h4,
  .serviceInfo__textArea h4 span {
    font-size: 10px;
  }
  .serviceInfo__textArea p {
    margin-left: 0;
    font-size: 6px;
    display: inline;
  }
}
.serviceInfo__textArea span {
  display: inline-block;
  margin-left: 70px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo__textArea span {
    margin-left: 0;
  }
}
.serviceInfo-card__wrapper02 {
  align-self: end;
  margin-top: 330px;
  grid-row: 1/2;
  margin-left: -15%;
  width: -moz-fit-content;
  width: fit-content;
}

.serviceInfo-card__wrapper02 figure img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__wrapper02 figure img {
    max-width: 260px;
    margin: auto;
  }
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper02 {
    margin-top: 38px;
    margin: 38px auto 0;
    max-width: 330px;
    width: 100%;
  }
}
.serviceInfo-card__icon {
  background-color: #27273F;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  line-height: 1.7;
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper dt dd {
    padding-left: 30px;
  }
  .serviceInfo-card__icon {
    width: 20px;
    height: 20px;
    line-height: 1.1;
  }
}
.serviceInfo-card__wrapper dt dd {
  padding-left: 50px;
}

.serviceInfo-card__wrapper dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  white-space: nowrap;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper dt {
    white-space: unset;
    align-items: baseline;
    font-size: 1rem;
  }
  .serviceInfo-card__point {
    margin-top: 1rem !important;
  }
}
@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper dd {
    margin-top: 1rem !important;
  }
}
.serviceInfo-card__body02 dd {
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 768px) {
  .serviceInfo-card__body.serviceInfo-card__point {
    padding-left: 2rem;
  }
}
.serviceInfo-card__wrapper dl:nth-child(n+2) {
  margin-top: 32px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper dl:nth-child(n+2) {
    margin-top: 28px;
  }
}
.serviceInfo-card__wrapper dd:nth-child(n+2) {
  margin-top: 18px;
  padding-right: 8px;
  margin-left: 3.3rem;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper dd:nth-child(n+2) {
    font-size: 13px;
    margin-left: 2rem;
  }
  .serviceInfo-card__wrapper dd {
    display: flex;
    flex-direction: column;
  }
}
.serviceInfo-card__contents {
  display: grid;
  padding-inline: 50px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__contents {
    grid-template-columns: 1fr;
    padding-inline: 12px;
    display: block;
  }
}
.serviceInfo-card__contents > .serviceInfo-card__wrapper {
  padding-inline: 0;
}

.serviceInfo-card__contents__02 > .serviceInfo-card__wrapper02 {
  margin-top: 70px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__contents__02 {
    display: block;
  }
  .serviceInfo-card__contents__02 > .serviceInfo-card__wrapper02 {
    margin: auto;
    margin-top: 42px;
    max-width: 100%;
  }
}
.serviceInfo-card__contents__03 {
  grid-template-columns: 1fr 1f;
}

.serviceInfo-card__contents__03.serviceInfo-card__wrapper {
  grid-row: 1/1;
}

.serviceInfo-card__wrapper__dt-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card {
    padding-bottom: 24px;
    max-width: 670px;
    margin: 102px auto 0;
  }
}
.serviceInfo-card:nth-child(n+2) {
  margin-top: 165px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card:nth-child(n+2) {
    margin-top: 102px;
  }
}
.serviceInfo-card__lists {
  background-color: #27273F;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.875;
  display: inline-block;
  padding-right: 24px;
  text-align: left;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__lists {
    padding: 0.8rem 2rem 0.8rem 0.5rem;
  }
  .serviceInfo-card__lists dd {
    font-size: 14px;
  }
}
.serviceInfo-card__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
}

@media screen and (max-width: 768px) {
  .serviceInfo-card__container {
    display: block;
  }
}
.serviceInfo-card__point--accent01 {
  background-color: #27273F;
  color: #fff;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.serviceInfo-card__point--accent01.--fzFormal {
  font-size: 18px !important;
}
.serviceInfo-card__point--accent01.--fzbBig {
  font-size: 24px !important;
  padding: 1rem;
}
.serviceInfo-card__point--accent01.--wrap {
  white-space: nowrap !important;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__point--accent01.--wrap {
    margin-right: auto !important;
    white-space: wrap !important;
  }
}

.serviceInfo-card__point--accent01--wide {
  padding: 1rem 1rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 18px;
}

.serviceInfo-card__wrapper-card04 > .serviceInfo-card__point--accent01 {
  width: auto;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__point--accent01--wide {
    padding: 0.5rem;
    font-size: 13px;
    margin-top: 0;
  }
}
.serviceInfo-card__point--accent02 {
  background-color: #D9D9D9;
  color: #27273F;
  letter-spacing: 0.1em;
}
.serviceInfo-card__point--accent02.--fzFormal {
  font-size: 18px !important;
  margin-left: 0 !important;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__point--accent01.--fzbBig {
    padding: 0.5rem 0.8rem;
  }
  .serviceInfo-card__wrapper-card04 > .serviceInfo-card__point--accent02 {
    font-size: 10px !important;
  }
  .serviceInfo-card__point--accent02.--fzFormal {
    font-size: 10px !important;
  }
  .serviceInfo-card__point--accent01.--fzbBig {
    font-size: 13px !important;
  }
}
.serviceInfo-card__point {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
.serviceInfo-card__point--pl32 {
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__point .serviceInfo-card__point {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .serviceInfo-card__body.serviceInfo-card__point {
    margin-top: 0;
    padding-left: 2rem;
  }
}
.serviceInfo-card__point-mgt {
  margin-top: -20px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__point {
    margin-left: 0 !important;
    gap: 18px;
    justify-content: center;
    width: 90%;
    flex-direction: column;
    align-items: unset;
    margin-left: 0 !important;
  }
}
.serviceInfo-card__body {
  display: flex;
  justify-content: space-between;
  max-width: 940px;
  margin: auto;
  align-items: end;
  margin-bottom: 60px;
  margin-top: -46px;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__body {
    max-width: 100%;
  }
}

.serviceInfo-card__point figure {
  margin-left: 8rem;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__point figure {
    margin-top: 0;
    margin-left: 38px !important;
    max-width: 260px;
  }
}
.serviceInfo-card__point p {
  padding: 1rem 30px;
  font-size: 18px;
  padding: 15px 8px;
  border-radius: 4px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__point p {
    font-size: 13px;
    padding: 0.8rem 0.3rem;
    white-space: nowrap;
  }
}
.serviceInfo-card__body02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  padding-left: 3rem;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

@media screen and (max-width: 1100px) {
  .serviceInfo-card__body02 {
    margin-top: 18px;
    gap: 12px;
    display: block;
    padding-left: 1.6rem;
  }
}
.serviceInfo-card__body02 dd {
  white-space: nowrap;
  font-size: 14px !important;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__body02 dd {
    margin-left: 0 !important;
    white-space: unset;
  }
}
.serviceInfo-card__body02 dd span {
  padding: 8px 1rem;
  display: inline-block;
  border-radius: 4px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__body02 dd span {
    padding: 0.6rem;
    font-size: 13px;
  }
}
.serviceInfo-card__body02 dd:nth-of-type(1) {
  grid-row: 1/1;
  grid-column: 1/1;
}

.serviceInfo-card__body02 dd:nth-of-type(2) {
  grid-row: 2/2;
  grid-column: 1/1;
}

.serviceInfo-card__body02 dd:last-child {
  grid-row: 3/3;
  margin-left: 0;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__body02 dd:last-child {
    margin-left: 0;
    margin-left: 55px;
  }
}
@media screen and (max-width: 1036px) {
  .serviceInfo-card__wrapper {
    margin-top: 1rem !important;
  }
  .serviceInfo-card__wrapper-dl02 .serviceInfo-card__point {
    justify-content: flex-start;
    align-items: baseline;
    padding-left: 1.6rem;
  }
}
.serviceInfo-card__wrapper-card04 {
  display: grid;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 20px;
  margin-top: 12px;
  max-width: 814px;
  margin-left: 55px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper-card04 {
    margin-left: 0;
    gap: 9px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
.serviceInfo-card__wrapper-card04 dd:nth-of-type(1),
.serviceInfo-card__wrapper-card04 dd:nth-of-type(2),
.serviceInfo-card__wrapper-card04 dd:nth-of-type(3) {
  padding: 40px 10px;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper-card04 dd:nth-of-type(1),
  .serviceInfo-card__wrapper-card04 dd:nth-of-type(2),
  .serviceInfo-card__wrapper-card04 dd:nth-of-type(3) {
    padding: 0.8px 0.5px;
    justify-content: center;
  }
}
.serviceInfo-card__wrapper-card04 dd {
  margin-left: 0 !important;
  margin-top: 0 !important;
  text-align: center;
  font-size: 18px;
  line-height: 1.6666666667;
  border-radius: 4px;
  min-height: 140px;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__wrapper-card04 dd {
    min-height: 70px;
  }
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper-card04 dd {
    font-size: 8px;
    display: flex;
    align-items: center;
  }
}
.serviceInfo-card__wrapper-card04 dd:first-child {
  grid-row: 1/1;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__wrapper-card04 dd:first-child {
    grid-row: 1/3;
  }
}

.serviceInfo-card__wrapper-card04 dd:nth-of-type(2) {
  grid-row: 1/2;
}

.serviceInfo-card__wrapper-card04 dd:last-child {
  max-width: 100vw;
  text-align: center;
  font-size: 18px;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper-card04 dd:last-child {
    text-align: center;
    justify-content: center;
    font-size: 10px;
  }
}
.serviceInfo-card__wrapper05 {
  display: flex;
  flex-direction: column;
}

.serviceInfo-card__wrapper05 dd {
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper05 {
    gap: 0;
    margin-top: 0 !important;
  }
  .serviceInfo-card__wrapper05 dd:nth-child {
    margin-top: 40px;
  }
  .serviceInfo-card__wrapper05 dd:nth-of-type(1) {
    margin-top: 0;
  }
}
.serviceInfo-card__wrapper05 dd:nth-of-type(1) {
  margin-top: 1.2rem;
}

@media screen and (max-width: 480px) {
  .serviceInfo-card__wrapper05 dd:nth-child(n+2) span {
    white-space: unset;
  }
}
@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper05 dd:nth-child(n+2) span {
    font-size: 13px;
    padding: 0.5rem;
  }
}
.serviceInfo-card__wrapper03 {
  max-width: 292px;
  justify-items: flex-end;
  margin-top: 44px;
  grid-row: 2/1;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper03 {
    margin: 20px auto 0;
  }
  .serviceInfo-card__wrapper03 figure {
    max-width: 88px;
    width: 100%;
    height: 76px;
  }
  .serviceInfo-card__wrapper03 figure img {
    width: 100%;
    height: 100%;
  }
}
.serviceInfo-card__wrapper04 {
  align-self: end;
  margin-top: 240px;
  grid-row: 1/2;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__wrapper04 {
    margin-top: 0px;
  }
}
.service-card__wrapper-imageArea {
  margin-top: 2rem;
  max-width: 642px;
  width: 100vw;
  grid-column: 1/3;
  margin: 20px auto 0;
}

@media screen and (max-width: 1040px) {
  .service-card__wrapper-imageArea {
    width: 100%;
    margin: 18px auto 0;
    text-align: center;
  }
}
.serviceInfo-card__btn {
  margin-top: 180px;
  padding-bottom: 120px;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card__btn {
    margin-top: 60px;
    padding-bottom: 40px;
  }
}
.serviceInfo-card01 {
  position: relative;
}

.serviceInfo-card01:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -168px;
  background-image: url(../images/service/service-background-01.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  max-width: 49.5vw;
  filter: grayscale(100%);
  height: 500px;
  background-attachment: fixed;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card01:after {
    max-width: 280px;
    height: 206px;
    top: -90px;
  }
}
.serviceInfo-card02 {
  position: relative;
}

.serviceInfo-card02:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -180px;
  background-image: url(../images/service/service-background-02.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  height: 500px;
  max-width: 49.5vw;
  filter: grayscale(100%);
  background-attachment: fixed;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card02:after {
    max-width: 280px;
    height: 206px;
    top: -90px;
  }
}
.serviceInfo-card03 {
  position: relative;
}

.serviceInfo-card03:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -180px;
  background-image: url(../images/service/service-background-03.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  max-width: 49.5vw;
  filter: grayscale(100%);
  height: 500px;
  background-attachment: fixed;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card03:after {
    height: 206px;
    max-width: 280px;
    top: -90px;
  }
}
.serviceInfo-card04 {
  position: relative;
}

.serviceInfo-card04:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -180px;
  background-image: url(../images/service/service-background-04.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  max-width: 49.5vw;
  filter: grayscale(100%);
  height: 500px;
  background-attachment: fixed;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card04:after {
    height: 206px;
    max-width: 280px;
    top: -90px;
  }
}
.serviceInfo-card05 {
  position: relative;
}

.serviceInfo-card05:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -180px;
  background-image: url(../images/service/service-background-05.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  max-width: 49.5vw;
  filter: grayscale(100%);
  height: 500px;
  background-attachment: fixed;
}

.serviceInfo-card.is-nofixed::after {
  background-attachment: scroll; /* ← fixedを無効化 */
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card05:after {
    height: 206px;
    max-width: 280px;
    top: -90px;
  }
}
.serviceInfo-card05__sticky {
  position: sticky;
  top: 0; /* 画面上端で止まる */
  height: 500px;
  margin-top: -180px;
  background: url(../images/service/service-background-05.webp) right top/cover no-repeat;
  z-index: -2;
}

/* 親：クリップ＆スタッキング確保 */
.serviceInfo-card06 {
  position: relative;
}

.serviceInfo-card06:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -180px;
  background-image: url(../images/service/service-background-06.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  max-width: 49.5vw;
  filter: grayscale(100%);
  height: 500px;
  background-attachment: fixed;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card06:after {
    height: 206px;
    max-width: 280px;
    top: -90px;
  }
}
.serviceInfo-card07 {
  position: relative;
}

.serviceInfo-card07:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: calc(50% - 50vw);
  top: -180px;
  background-image: url(../images/service/service-background-07.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  max-width: 49.5vw;
  filter: grayscale(100%);
  height: 500px;
  background-attachment: fixed;
}

@media screen and (max-width: 1040px) {
  .serviceInfo-card07:after {
    height: 206px;
    max-width: 280px;
    top: -90px;
  }
}
.serviceInfo__picture02 {
  display: inline-block;
  margin: auto;
}

.serviceInfo-card__wrapperBox {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__wrapperBox {
    text-align: center;
  }
}

.serviceInfo-card__textArea {
  display: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__textArea {
    text-align: right;
    padding: 0 2rem;
    max-width: 310px;
    margin: auto;
  }
}

.serviceInfo-card__textArea p {
  margin-left: -9rem;
  font-size: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__textArea p {
    font-size: 0.75rem;
    margin-left: 0;
  }
}

.serviceInfo-card__textArea p:nth-child(2) {
  margin-top: 0px;
  margin-left: 2rem;
  font-size: 1.125rem;
}
.serviceInfo-card__textArea p:nth-child(2) span {
  display: inline-block;
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__textArea p:nth-child(2) {
    font-size: 0.75rem;
    margin-left: 0;
  }
}

.serviceInfo-card__textArea p span {
  display: inline-block;
  margin-left: 13rem;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__textArea p span {
    margin-left: 0;
  }
}

.serviceInfo-card__wrapper .serviceInfo-card__dd {
  margin-top: -10px !important;
}
@media screen and (max-width: 768px) {
  .serviceInfo-card__wrapper .serviceInfo-card__dd {
    margin-top: 5px !important;
    margin-left: 1.3rem !important;
  }
}

@media screen and (max-width: 768px) {
  .Instagram-section {
    margin-top: 66px !important;
    max-width: 100%;
  }
}
.Instagram-section iframe {
  width: 100% !important;
  min-width: auto !important;
  margin: 1rem auto !important;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Instagram-section iframe {
    max-width: 100% !important;
  }
}
.flow-process {
  position: relative;
  padding-bottom: 186px !important;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .flow-process {
    padding-bottom: 52px !important;
  }
}
.flow-process__items {
  max-width: 1150px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .flow-process__items {
    margin-top: 1rem;
  }
}
.flow-process:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #9794AA;
  opacity: 0.15;
}

.flow-process {
  background-color: #f9f9f9;
}
.flow-process .flow-process__inner {
  position: relative;
}

@media screen and (max-width: 768px) {
  .flow-process__inner {
    padding-inline: 12px;
  }
}
@media screen and (max-width: 768px) {
  .flow-process {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 28px;
    padding-bottom: 0;
  }
}
.profile__titleArea {
  text-align: left !important;
}

@media screen and (max-width: 768px) {
  .profile__titleArea {
    text-align: center !important;
  }
}
.profile__content figure {
  width: auto;
  height: auto;
}

.profile__content figure img {
  height: auto;
}

@media screen and (max-width: 768px) {
  .profile__content p {
    font-size: 18px;
    line-height: 150%;
    text-align: left;
  }
  .profile__content figure img {
    aspect-ratio: 343/244;
    height: auto;
  }
  .profile__content figure {
    margin-top: 1rem;
  }
}
.profile__content p:nth-of-type(1) {
  font-size: 2rem;
  line-height: 150%;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .profile__content p:nth-of-type(1) {
    margin-top: 40px;
    font-size: 18px;
    text-align: left;
  }
}
.profile__content p:nth-of-type(2) {
  font-size: 2rem !important;
}

@media screen and (max-width: 768px) {
  .profile__content p:nth-of-type(2) {
    font-size: 18px !important;
  }
}
.profile__content p:nth-of-type(n + 2) {
  margin-top: 42px;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .profile__content p:nth-of-type(n + 2) {
    margin-top: 24px;
    text-align: left;
    font-size: 16px;
  }
}
.profile__content p:nth-of-type(3) {
  margin-top: 98px;
}

@media screen and (max-width: 768px) {
  .profile__content p:nth-of-type(3) {
    margin-top: 40px;
  }
}
.profile__content p:nth-of-type(5) {
  margin-right: 148px;
  text-align: right;
  letter-spacing: 0.128em;
  text-align: right;
  font-size: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .profile__content p:nth-of-type(5) {
    margin-right: 0;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    margin-top: 42px;
  }
}
.profile__content p:nth-of-type(5) span {
  font-size: 15.8px;
  margin-left: 40px;
  display: inline-block;
}

.profile__text--span {
  border-bottom: 1px solid red;
}

@media screen and (max-width: 768px) {
  .profile__text {
    font-size: 1rem !important;
  }
  .profile__content p:nth-of-type(5) span {
    font-size: 13px;
  }
}
.type {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .type {
    margin-top: 60px;
  }
}
.type__message {
  text-align: center;
  margin-top: 80px !important;
  font-size: 2rem;
  max-width: 760px;
  margin: auto;
  color: #27273F;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .type__message {
    font-size: 1rem;
    margin-top: 0 !important;
  }
}
.type__wrapper {
  max-width: 1120px;
  margin: auto;
}

.type__plan {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .type__plan {
    margin-top: 40px;
  }
}

.type__plan__inner {
  max-width: 1330px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.type__plan--items {
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.type__plan__item {
  box-shadow: 0 0 40px 1px rgba(0, 0, 0, 0.1);
}

.type__plan--title,
.type__plan--subTitle {
  font-size: clamp(1rem, 1.5vw, 22px);
  font-weight: 500;
}

.type__plan--body {
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .type__plan--body {
    margin-top: 32px;
  }
}

.type__plan--bodyItems {
  margin-top: 10px;
}
.type__plan--bodyItems.--02 {
  position: relative;
  padding-left: 24px;
}
.type__plan--bodyItems.--02:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 11px;
  border-top: 1px soli #7B7B9D;
  border-right: 1px soli #7B7B9D;
}

.type__plan--bodyItem {
  color: #262626;
}

.type__plan--bodyTitle {
  border-bottom: 1px solid;
}

.type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 38px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .type-cards {
    gap: 24px;
    width: 100%;
    grid-template-columns: 1fr;
    max-width: 315px;
    width: 100%;
    margin: 40px auto 0;
  }
}
.process-items {
  list-style: none;
  padding: 0;
}

.process-item__textArea span {
  align-items: center;
}

.process-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  background-color: #fff;
  max-width: 1100px;
  justify-content: flex-start;
  padding: 24px 34px;
  cursor: pointer;
  margin-left: 18px;
}
.process-item:last-child {
  margin-bottom: 0;
}
.process-item:hover {
  outline: 3px solid #7B7B9D;
}
.process-item .process-item__textArea {
  margin-left: 20px;
}
.process-item .process-item__textArea h3 {
  font-size: 24px;
  font-weight: bold;
  color: #27273F;
  letter-spacing: 0.05em;
}
.process-item .process-item__textArea span {
  font-size: 16px;
  color: #8E7E6D;
  margin-right: 6px;
  align-self: center;
}

.process-item__textArea p {
  margin-top: 6px;
  font-size: 15px;
  line-height: 180%;
  color: #333;
  padding-left: 30px;
  letter-spacing: 0.12em;
}

.process-item__textArea h3 {
  display: flex;
}

@media screen and (max-width: 768px) {
  .process-item__textArea {
    margin-left: 10px !important;
  }
  .process-item {
    padding: 8px;
    margin-left: 0 !important;
  }
  .process-item h3 {
    font-size: 18px !important;
  }
  .process-item__textArea h3 span {
    font-size: 20px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 768px) {
  .process-item p {
    padding-left: 0;
    font-size: 14px;
  }
}
.process-item figure:not(:last-child)::before {
  position: absolute;
  content: "";
  height: 100%;
  background-color: #7B7B9D;
  width: 3px;
  height: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -147px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .process-item figure:not(:last-child)::before {
    height: 193px;
    bottom: -280px;
    width: 3px;
  }
}
.process-item:last-child figure::before {
  content: none;
}

.type__titleArea {
  text-align: center;
}
.type__titleArea h2.section-title__gold {
  color: #c1a875;
  font-weight: 300;
}
.type__titleArea p {
  margin-top: -5px;
  font-size: 16px;
  color: #555;
}

@media screen and (max-width: 768px) {
  .type__titleArea {
    font-size: 14px;
  }
  h2 {
    font-size: 2rem;
  }
}
.process-item figure {
  background-color: #7B7B9D;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  align-self: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .process-item figure {
    width: 40px;
    height: 40px;
    align-self: flex-start;
    flex-shrink: 0;
  }
}
.post-wrapper {
  padding-bottom: 82px;
}

@media screen and (max-width: 768px) {
  .post-wrapper {
    padding-bottom: 0;
  }
}
.post-wrapper__body {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .post-wrapper__body {
    margin-top: 0;
  }
}
.post-wrapper__right {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .post-wrapper__right {
    grid-row: 3/3;
    margin-top: 44px;
  }
}
.l-sidebar:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1700px;
  left: 0;
  top: 0;
  background-color: #7B7B9D;
  opacity: 15%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .l-sidebar:before {
    height: 444px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.post-wrapper__container {
  display: grid;
  grid-template-columns: min(808px, 58vw) min(320px, 30vw);
  gap: min(54px, 8vw);
}

@media screen and (max-width: 768px) {
  .post-wrapper__container {
    gap: 0;
  }
}
.post-wrapper__inner {
  max-width: 1224px;
  margin: auto;
  padding: 0 1rem;
}

@media screen and (max-width: 800px) {
  .post-wrapper__container {
    grid-template-columns: 1fr;
  }
}
.post-sidebar {
  margin-top: 40px;
}

.sidebar-section__image {
  margin-top: 20px;
}

.post-wrapper__meta {
  font-size: 12px;
  color: #687282;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .post-wrapper__meta {
    margin-top: 10px;
  }
}
.post-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .post-nav {
    flex-direction: column;
  }
}
.service__container {
  text-align: center;
  margin-top: 64px;
}

@media screen and (max-width: 1040px) {
  .service__container {
    margin-top: 68px;
  }
}
.service__container h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (max-width: 1040px) {
  .service__container h2 {
    font-size: 24px;
  }
}
.service__container p {
  font-size: 18px;
  line-height: 180%;
  margin-top: 102px;
}

@media screen and (max-width: 1040px) {
  .service__container p {
    margin-top: 30px;
    font-size: 1rem;
    text-align: left;
  }
}
.service__space {
  display: inline-block;
  width: 20px;
}

.l-policy {
  padding-bottom: 60px;
}

.privacy__body {
  margin-top: 60px;
}

.privacy__bodyTitle {
  font-weight: bold;
}

.privacy__bodyText {
  margin-top: 2rem;
}

.privacy__body {
  margin-top: 40px;
}

.privacy__bodyText {
  margin-top: 1rem;
}

.post-tags {
  display: flex;
  gap: 10px;
}

.post-tags li a {
  background-color: #D9D9D9;
  border-radius: 40px;
  color: #333;
  padding: 0 8px;
  font-size: 14px;
}

.history {
  color: #8E7E6D;
  padding-bottom: 164px;
}

@media screen and (max-width: 768px) {
  .history {
    margin-top: 52px;
    padding-bottom: 74px;
  }
}
.history__title {
  font-size: 18px;
  color: #8E7E6D;
  padding-right: 64px;
  position: relative;
  max-width: 580px;
}

@media screen and (max-width: 768px) {
  .history__title {
    font-size: 24px;
  }
}
.history__title span {
  display: inline-block;
  margin-left: 24px;
}

.history__title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 384px;
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #D1DAE1;
}

@media screen and (max-width: 768px) {
  .history__title:before {
    max-width: 40%;
  }
  .history__container01 h3:nth-of-type(1)::before,
  .history__container02 h3:nth-of-type(1)::before {
    max-width: 70%;
  }
}
.history__contents {
  color: #333;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .history__container:nth-child(n+2) {
    margin-top: 42px;
  }
}
.history__contents p {
  letter-spacing: 0.005em;
}

.history__container03,
.history__container04 {
  max-width: 720px;
  width: 100%;
}

.history__container03 {
  margin-top: 74px;
}

@media screen and (max-width: 768px) {
  .history__container03 {
    margin-top: 44px;
  }
}
.history__container04 {
  margin-top: 82px;
}

@media screen and (max-width: 768px) {
  .history__container04 {
    margin-top: 40px;
  }
}
.history__contents figure {
  margin-top: 34px;
  max-width: 338px;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .history__contents figure {
    max-width: 100%;
  }
}
.history__contents figure img {
  aspect-ratio: 338/206;
  height: auto;
}

@media screen and (max-width: 768px) {
  .history__contents figure img {
    max-width: 100%;
  }
}
.history__contents dl {
  margin-top: 18px;
}

.history__contents dl dd {
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .history__contents dl {
    display: block;
    margin-top: 24px;
  }
}
.history__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .history__wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.history__contents p {
  margin-top: 20px;
  line-height: 180%;
}

.history__btn {
  margin-top: 120px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .history__contents p {
    margin-top: 0.6rem;
  }
  .history__btn {
    margin-top: 70px;
  }
}
.history__dl dt:nth-child(n+2) {
  margin-top: 16px;
}

.mt-space {
  display: inline-block;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .mt-space {
    margin-top: 24px;
  }
}

.top-about {
  margin-top: 146px;
}

@media screen and (max-width: 768px) {
  .top-about {
    margin-top: 98px;
  }
}
.top-about__textArea {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-about__textArea {
    margin-top: 1rem;
  }
  .top-about__textArea p:last-child {
    margin-top: 2rem;
  }
}
.top-about__textArea p:nth-child(1) {
  font-size: 40px;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .top-about__textArea p:nth-child(1) {
    font-size: 20px;
  }
}
.top-about__textArea p:nth-child(2) {
  font-size: 18px;
  line-height: 180%;
  margin-top: 64px;
}

@media screen and (max-width: 1000px) {
  .top-about__textArea p:nth-child(2) {
    font-size: 1rem;
  }
}
.top-about__btn a span {
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  .top-about__btn a span {
    font-size: 1rem;
  }
}
.top-service {
  padding-top: 120px;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  .top-service {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-service {
    padding-bottom: 120px;
  }
}
.top-service:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #27273F;
  opacity: 0.1;
}

.instagram-media {
  max-width: 180px;
  width: 100%;
  min-width: auto;
}

.Header.HeaderCta {
  display: none;
}

.p-category__item {
  border: 1px solid;
  padding: 6px 0.5rem;
}

.p-category__item a.is-current {
  color: red; /* テキストを赤色にする */
}

:root {
  --brand:#6f6b8a;
  --panel:#1f2230;
  --gap:clamp(12px,1.6vw,24px);
}

/* コンテナ：横幅に応じて正方形を確保 */
.service-ring {
  position: relative;
  width: min(1100px, 100%);
  margin: 18rem auto -10rem;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 1200px) {
  .service-ring {
    margin: 18rem auto -18rem;
  }
}
@media (max-width: 1000px) {
  .service-ring {
    margin: 17rem auto -11rem;
  }
}
@media (max-width: 767px) {
  .service-ring {
    margin: 13rem auto -13rem;
  }
}
@media (max-width: 580px) {
  .service-ring {
    margin: 9rem auto -3rem;
  }
}
/* 中央固定＆サイズを1か所で管理 */
.ring {
  position: relative;
  left: 50%;
  top: -50%;
  transform: translate(-14%, -68%);
  /* リングの一辺を1か所で決定（vminで歪み防止） */
  --ring-size: clamp(360px, 62vmin, 700px);
  width: var(--ring-size);
  aspect-ratio: 1/1;
  --count: 7;
  /* 半径はリングサイズからの割合で算出（= 余白が暴れない） */
  --radius: calc(var(--ring-size) * 0.34); /* 0.30〜0.38で微調整 */
}

.ring {
  --ring-size: clamp(350px, 65vw, 700px) !important;
}

@media (max-width: 1200px) {
  .ring {
    transform: translate(-56%, -56%);
    left: 50%;
    width: 100%;
    --ring-size: clamp(360px, 62vmin, 700px);
    aspect-ratio: 1/1;
    /* 半径はリングサイズからの割合で算出（= 余白が暴れない） */
    --radius: calc(var(--ring-size) * 0.38); /* 0.30〜0.38で微調整 */
  }
}
@media (max-width: 1000px) {
  .ring {
    transform: translate(-59%, -58%);
    left: 50%;
    width: 100%;
    --ring-size: clamp(360px, 62vmin, 700px);
    aspect-ratio: 1/1;
    /* 半径はリングサイズからの割合で算出（= 余白が暴れない） */
    --radius: calc(var(--ring-size) * 0.41); /* 0.30〜0.38で微調整 */
  }
}
@media screen and (max-width: 768px) {
  .ring {
    transform: translate(-57%, -54%);
    --radius: calc(var(--ring-size) * 0.4) !important; /* 0.30〜0.38で微調整 */
  }
}
@media (max-width: 900px) {
  .ring {
    /* リングの一辺を1か所で決定（vminで歪み防止） */
    --ring-size: clamp(360px, 62vmin, 700px);
    aspect-ratio: 1/1;
    /* 半径はリングサイズからの割合で算出（= 余白が暴れない） */
    --radius: calc(var(--ring-size) * 0.46); /* 0.30〜0.38で微調整 */
  }
}
@media (max-width: 680px) {
  .ring {
    transform: translate(-57%, -57%);
  }
}
@media (max-width: 560px) {
  .ring {
    transform: translate(-58%, -57%);
  }
}
@media (max-width: 440px) {
  .ring {
    --radius: calc(var(--ring-size) * 0.34) !important;
    --ring-size: clamp(360px, 62vmin, 700px);
    aspect-ratio: 1/1;
    transform: translate(-60%, -60%);
  }
}
/* 円サイズはvw連動だが上下限で安定（sm=~82px, lg=~102px） */
.circle {
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  height: 100%;
}

.circle__text--space {
  display: inline-block;
  margin-left: 10px;
}

/* 小さい円（82pxを最小・上限は102px） */
.circle--sm {
  width: clamp(125px, 14vw, 185px) !important;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1200px) {
  .circle--sm {
    width: clamp(135px, 11.5vw, 160px) !important;
  }
}
@media screen and (max-width: 768px) {
  .circle--sm {
    width: clamp(100px, 9.5vw, 120px) !important;
  }
}
@media screen and (max-width: 400px) {
  .circle--sm {
    width: clamp(85px, 6.5vw, 95px) !important;
  }
}

/* 大きい円（102pxを最小・上限は128pxなど適宜） */
@media screen and (max-width: 768px) {
  .circle--lg {
    width: min(20vw, 120px) !important;
  }
}
@media screen and (max-width: 400px) {
  .circle--lg {
    width: min(22vw, 140px) !important;
  }
}
.circle--lg {
  width: min(22vw, 185px); /* 185pxを超えない */
  aspect-ratio: 1/1;
}

/* 円内テキストは 32 → 24px の範囲で可変 */
.circle span {
  max-width: 88%;
  line-height: 1.55;
  font-weight: 500;
  font-size: clamp(24px, 1.9vw, 32px);
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.1em;
}

/* 中央テキストも同じ基準点で中央へ */
.ring .center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(16px, 2vw, 28px);
  letter-spacing: 0.18em;
  margin: 0; /* 余白でズレないように */
}

/* 円周ノード：中心(50/50)から回転→半径分移動→文字は正立 */
.node {
  --i:0;
  --angle: calc(373deg / var(--count) * var(--i));
  position: absolute;
  left: 0;
  top: 50%;
  cursor: pointer;
  transform: rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
  transform-origin: center;
}
@media screen and (max-width: 1200px) {
  .node {
    --angle: calc(355deg / var(--count) * var(--i));
  }
}

/* 丸（画像なし） */
.circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1200px) {
  .circle {
    --size: clamp(85px, 9vw, 125px);
  }
}
.circle span {
  max-width: 100%;
  font-weight: 200;
  line-height: 1.55;
  font-size: 23.3px !important;
}

@media screen and (max-width: 1200px) {
  .circle span {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 768px) {
  .circle span {
    font-size: 13px !important;
  }
}
/* パネル（方位クラスで外側へ） */
.panel {
  position: absolute;
  min-width: clamp(300px, 25vw, 360px);
  max-width: 380px;
  border-radius: 10px;
  padding: clamp(12px, 1.2vw, 18px);
  opacity: 0;
  transform: translate(0, 0) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
}
.panel h4 {
  white-space: nowrap;
}

.panel01 {
  left: 100% !important;
  top: 10% !important;
}

.panel01:after {
  position: absolute;
  content: "";
  width: 14%;
  height: 1px;
  left: -6%;
  top: 28px;
  background: #333;
  transform: rotate(2deg);
}

@media screen and (max-width: 1200px) {
  .panel01 {
    left: -70% !important;
    bottom: -150%;
  }
  .panel01:after {
    content: "";
    display: none;
  }
  .node01 {
    top: 42%;
    left: 43%;
  }
}
.panel02 {
  left: -228% !important;
  top: 12% !important;
}

.panel02:after {
  position: absolute;
  content: "";
  width: 45%;
  height: 1px;
  left: unset;
  top: 48px;
  background: #333;
  transform: rotate(10deg);
  right: -64px;
}

@media screen and (max-width: 1200px) {
  .panel02:after {
    content: "";
    display: none;
  }
  .node02 {
    top: 39%;
    left: 44%;
  }
}
.panel03 {
  left: unset !important;
  top: -13% !important;
  left: 70% !important;
  bottom: -200%;
}

.panel03:after {
  position: absolute;
  content: "";
  width: 20%;
  height: 1px;
  left: unset;
  top: 57px;
  background: #333;
  transform: rotate(23deg);
  right: -42px;
}

@media screen and (max-width: 1200px) {
  .panel03:after {
    content: "";
    display: none;
  }
  .node03 {
    left: 48% !important;
    top: 36%;
  }
}
.panel03,
.panel04 {
  left: unset !important;
  right: 170px !important;
}

.panel04 {
  top: -90% !important;
}

.panel04:after {
  position: absolute;
  content: "";
  width: 46%;
  height: 1px;
  right: -25%;
  top: 117px;
  background: #333;
  transform: rotate(49deg);
}

@media screen and (max-width: 1300px) {
  .panel04:after {
    width: 46%;
    height: 1px;
    right: -28%;
    top: 117px;
    background: #333;
    transform: rotate(59deg);
  }
}
@media screen and (max-width: 1200px) {
  .panel04:after {
    content: "";
    display: none;
  }
  .node04 {
    top: 41%;
    left: 55%;
  }
}
.panel05 {
  left: 134% !important;
  top: -120% !important;
}

.panel05:after {
  position: absolute;
  content: "";
  width: 76%;
  height: 1px;
  left: -50%;
  top: 143px;
  background: #333;
  transform: rotate(-52deg);
}

@media screen and (max-width: 1300px) {
  .panel05:after {
    transform: rotate(-56deg);
    width: 70%;
  }
}
@media screen and (max-width: 1200px) {
  .panel05 {
    left: -50% !important;
    top: unset !important;
    bottom: -363%;
  }
  .panel05:after {
    content: "";
    display: none;
  }
  .node05 {
    top: 47%;
    left: 57%;
  }
}
.panel06 {
  left: 92% !important;
  top: -160px !important;
}

.panel06:after {
  position: absolute;
  content: "";
  width: 34%;
  height: 1px;
  left: -85px;
  background: #333;
  transform: rotate(-57deg);
  top: 43%;
}

@media screen and (max-width: 1400px) {
  .panel06:after {
    width: 45%;
    height: 1px;
    left: -95px;
    background: #333;
    transform: rotate(-59deg);
    top: 56%;
  }
}
@media screen and (max-width: 1200px) {
  .panel06:after {
    content: "";
    display: none;
  }
  .node06 {
    left: 54%;
    top: 52%;
  }
}
.panel07 {
  top: -150px !important;
  left: 92% !important;
}

.panel07:after {
  position: absolute;
  content: "";
  width: 44%;
  height: 1px;
  left: -27%;
  top: 116px;
  background: #333;
  transform: rotate(-50deg);
}

@media screen and (max-width: 1300px) {
  .panel07:after {
    transform: rotate(-64deg);
  }
}
@media screen and (max-width: 1200px) {
  .panel07:after {
    content: "";
    display: none;
  }
  .node07 {
    left: 46%;
    top: 54%;
  }
  .node03 {
    right: 108px;
    left: unset;
  }
  .node04 {
    right: unset;
    left: 54%;
    top: 39%;
  }
}
.panel h4 {
  margin: 0 0 0.5em;
  font-size: clamp(20px, 1.7vw, 2rem);
  background: #27273F;
  border-radius: 6px;
  padding: 0.35em 0.5em;
  color: #fff;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.panel p {
  margin: 0.6em 0 0;
  font-size: clamp(1rem, 1.3vw, 24px);
  line-height: 1.7;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 0.8em;
  text-decoration: underline;
  color: #fff;
}

/* 方位オフセット */
.q-n {
  left: 50%;
  top: 0;
  transform: translate(-50%, calc(-100% - var(--gap))) scale(0.98);
}

.q-ne {
  left: 100%;
  top: 0;
  transform: translate(var(--gap), calc(-100% - var(--gap))) scale(0.98);
}

.q-e {
  left: 100%;
  top: 50%;
  transform: translate(var(--gap), -50%) scale(0.98);
}

.q-se {
  left: 100%;
  top: 100%;
  transform: translate(var(--gap), var(--gap)) scale(0.98);
}

.q-s {
  left: 50%;
  top: 100%;
  transform: translate(-50%, var(--gap)) scale(0.98);
}

.q-sw {
  left: 0;
  top: 100%;
  transform: translate(calc(-100% - var(--gap)), var(--gap)) scale(0.98);
}

.q-w {
  left: 0;
  top: 50%;
  transform: translate(calc(-100% - var(--gap)), -50%) scale(0.98);
}

/* 表示トリガー */
.node:hover .panel,
.node:focus-within .panel {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1200px) {
  .panel01 {
    top: 119% !important;
    left: -102% !important;
  }
  .panel02 {
    top: 118% !important;
    left: 28% !important;
  }
  .panel03 {
    top: 217% !important;
    left: 38% !important;
  }
  .panel04 {
    top: 318% !important;
    left: 58% !important;
  }
  .panel05 {
    top: 346% !important;
  }
  .panel06 {
    top: 301% !important;
    left: -169% !important;
  }
  .panel07 {
    top: 192% !important;
    left: -182% !important;
  }
}
@media (max-width: 1000px) {
  .panel01 {
    top: 125% !important;
    left: -111% !important;
  }
  .panel02 {
    top: 121% !important;
    left: 23% !important;
  }
  .panel03 {
    top: 215% !important;
    left: 44% !important;
  }
  .panel04 {
    top: 321% !important;
    left: 60% !important;
  }
  .panel05 {
    top: 356% !important;
    left: -43% !important;
  }
  .panel06 {
    top: 315% !important;
    left: -163% !important;
  }
  .panel07 {
    top: 208% !important;
    left: -182% !important;
  }
}
@media (max-width: 900px) {
  .panel01 {
    top: 123% !important;
    left: -104% !important;
  }
  .panel02 {
    top: 118% !important;
    left: 23% !important;
  }
  .panel03 {
    top: 212% !important;
    left: 52% !important;
  }
  .panel04 {
    top: 320% !important;
    left: 68% !important;
  }
  .panel05 {
    top: 360% !important;
    left: -36% !important;
  }
  .panel06 {
    top: 322% !important;
    left: -142% !important;
  }
  .panel07 {
    top: 214% !important;
    left: -179% !important;
  }
}
@media (max-width: 800px) {
  .panel01 {
    top: 113% !important;
    left: -95% !important;
  }
  .panel02 {
    top: 108% !important;
    left: 14% !important;
  }
  .panel03 {
    top: 196% !important;
    left: 52% !important;
  }
  .panel04 {
    top: 297% !important;
    left: 55% !important;
  }
  .panel05 {
    top: 335% !important;
    left: -41% !important;
  }
  .panel06 {
    top: 299% !important;
    left: -160% !important;
  }
  .panel07 {
    top: 199% !important;
    left: -185% !important;
  }
}
@media screen and (max-width: 768px) {
  .panel01 {
    left: -165px !important;
    bottom: -150px !important;
    top: 114% !important;
  }
  .panel02 {
    top: calc(17vh - 100%) !important;
    left: -1% !important;
  }
  .panel03 {
    top: 220% !important;
    left: 34% !important;
  }
  .panel04 {
    top: 341% !important;
    left: 41% !important;
  }
  .panel05 {
    left: -81% !important;
    bottom: 0 !important;
    top: 380% !important;
  }
  .panel06 {
    top: calc(30vh - 39%) !important;
    left: -186% !important;
    width: 80%;
  }
  .panel07 {
    top: 205% !important;
    left: -246% !important;
  }
}
@media (max-width: 700px) {
  .panel01 {
    top: 126% !important;
    left: -136% !important;
  }
  .panel02 {
    top: calc(18vh - 100%) !important;
    left: -14% !important;
  }
  .panel03 {
    top: 222% !important;
    left: 30% !important;
  }
  .panel04 {
    top: 333% !important;
    left: 24% !important;
  }
  .panel05 {
    left: -86% !important;
    bottom: 0 !important;
    top: 369% !important;
  }
  .panel06 {
    top: calc(30vh - 47%) !important;
    left: -192% !important;
    width: 80%;
  }
  .panel07 {
    top: 211% !important;
    left: -218% !important;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .panel01 {
    top: 120% !important;
    left: -136% !important;
  }
  .panel02 {
    top: 116% !important;
    left: -19% !important;
  }
  .panel03 {
    top: 212% !important;
    left: 30% !important;
  }
  .panel04 {
    top: 318% !important;
    left: 18% !important;
  }
  .panel05 {
    left: -86% !important;
    bottom: 0 !important;
    top: 353% !important;
  }
  .panel06 {
    top: 312% !important;
    left: -187% !important;
  }
  .panel07 {
    top: 202% !important;
    left: -211% !important;
  }
}
@media (max-width: 500px) {
  .panel01 {
    left: -158px !important;
    top: 122% !important;
  }
  .panel02 {
    top: 116% !important;
    left: -50% !important;
  }
  .panel03 {
    top: 208% !important;
    left: 18% !important;
  }
  .panel04 {
    top: 312% !important;
    left: -5% !important;
  }
  .panel05 {
    left: -102% !important;
    bottom: 0 !important;
    top: 350% !important;
  }
  .panel06 {
    top: 310% !important;
    left: -200% !important;
  }
  .panel07 {
    top: 206% !important;
    left: -231% !important;
  }
}
@media (max-width: 470px) {
  .panel01 {
    left: -160px !important;
    top: 122% !important;
  }
  .panel02 {
    top: 116% !important;
    left: -50% !important;
  }
  .panel03 {
    top: 208% !important;
    left: 18% !important;
  }
  .panel04 {
    top: 328% !important;
    left: -5% !important;
  }
  .panel05 {
    left: -110% !important;
    bottom: 0 !important;
    top: 365% !important;
  }
  .panel06 {
    top: 325% !important;
    left: -217% !important;
  }
  .panel07 {
    top: 216% !important;
    left: -249% !important;
  }
}
@media screen and (max-width: 400px) {
  .panel01 {
    left: -156px !important;
    bottom: -150px !important;
    top: 145% !important;
  }
  .panel02 {
    top: 139% !important;
    left: -71% !important;
  }
  .panel03 {
    top: 191px !important;
    left: 2% !important;
  }
  .panel04 {
    left: -21% !important;
    top: 280px !important;
  }
  .panel05 {
    left: calc(50% - 60vw + 100%) !important;
    top: 316px !important;
  }
  .panel06 {
    top: 287px !important;
    left: -229% !important;
  }
  .panel07 {
    top: 241% !important;
    left: -263% !important;
  }
}
/* 1) デフォルトはクリックを拾わない（下層への被り防止） */
.panel {
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 0) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* 2) 円（node）に乗ったらパネルを有効化。パネル上に入っても維持 */
.node:hover .panel,
.node:focus-within .panel,
.panel:hover {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

.panel::before {
  content: "";
  position: absolute;
  background: transparent;
}

/* 右側に出るタイプ */
.panel01::before, .panel06::before, .panel07::before {
  width: 120px;
  height: 90px;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
}

/* 左側に出るタイプ */
.panel02::before {
  width: 140px;
  height: 100px;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
}

/* 右上・右（近い） */
.panel03::before, .panel04::before {
  width: 110px;
  height: 110px;
  right: 60px;
  top: 20%;
  transform: translateY(-50%);
}

/* 右上・右上遠め */
.panel05::before {
  width: 180px;
  height: 140px;
  left: -160px;
  top: 70%;
  transform: translateY(-50%);
}

/* 4) キーボード操作でも閉じないように（a,buttonにフォーカスが入った時） */
.node:focus-within .panel {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

/* 5) パネル内のリンクの操作性を上げる（任意） */
.panel .btn {
  display: inline-block;
  padding: 0.6em 1em;
  border-radius: 6px;
  text-decoration: none;
  background: #304ffe;
  color: #fff;
}

.panel .btn:hover {
  filter: brightness(1.08);
}

.top-service__contents h3 {
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .top-service__contents h3 {
    font-size: 13px;
  }
}

.p-yearCard {
  display: flex;
}

.p-yearCard li {
  border: 1px solid;
  padding: 6px 0.5rem;
}

.c-year li a[aria-current=page] {
  color: red; /* テキストを赤色にする */
}

.top-message {
  margin-top: 185px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1000px) {
  .top-message {
    margin-top: 40px;
    padding-bottom: 70px;
  }
}
.top-message__inner {
  max-width: 1170px;
  margin: auto;
  padding-inline: 20px;
}

.top-message__main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex-wrap: wrap; /* スマホ対応も視野に */
}

.top-message__list {
  display: flex;
  gap: 12px;
  font-size: 12px;
  padding-left: 20px;
  position: relative;
  margin-top: 20px;
}

.top-message__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000; /* リストの左側の線 */
}

.top-message__list:not(:last-child):after {
  position: absolute;
  content: "";
  width: 1.8px;
  height: 22px;
  left: 4.5px;
  top: 10px;
  background: #000;
}

.top-message__list:nth-child(n+2) {
  margin-top: 1rem;
}

.top-message__content {
  display: grid;
  grid-template-columns: 598px 1fr;
}

@media screen and (max-width: 1000px) {
  .top-message__content {
    display: block;
    margin-top: 24px;
    padding-top: 0;
  }
}
.top-message__content p {
  grid-row: 2/2;
  grid-column: 1/2;
  margin-top: -230px;
}

@media screen and (max-width: 1000px) {
  .top-message__content p {
    margin-top: 0;
    grid-row: 4/4;
    margin-top: 40px;
  }
}
.top-message__titleArea {
  text-align: center;
}

.top-message__textStraight {
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  .top-message__textStraight {
    white-space: unset;
  }
}
.top-message__textArea {
  grid-row: 1/1;
  height: -moz-fit-content;
  height: fit-content;
}

.top-message__textArea p {
  margin-top: 64px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.top-message__textArea h3 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .top-message__textArea h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .top-message__textArea02 {
    margin-top: 44px;
  }
}
.top-message__name {
  margin-top: 60px;
  font-weight: bold;
}

.top-message__imageArea img {
  width: auto;
  margin-left: auto;
  height: auto;
}

@media screen and (max-width: 1000px) {
  .top-message__imageArea {
    max-width: 500px;
    margin: 46px auto 0;
  }
  .top-message__imageArea img {
    height: auto;
  }
}
.top-message__area {
  grid-row: 2/3;
  margin-top: 2rem;
  grid-column: 2/2;
}

@media screen and (max-width: 1000px) {
  .top-message__area {
    grid-row: 2/3;
    margin-top: 2rem;
    grid-column: 2/2;
  }
}
.top-message__career {
  max-width: 310px;
  width: 100%;
  padding: 14px 1.05rem;
  margin-left: auto;
  box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .top-message__career {
    margin-top: 0px;
    margin-left: auto;
  }
}
.top-message__career h4 {
  padding-left: 1rem;
}

.top-message__prestige {
  display: block;
  text-align: right;
  margin-top: 50px;
  padding-right: 7px;
}

@media screen and (max-width: 768px) {
  .top-message__prestige {
    margin-top: 20px;
  }
}
.top-message__button {
  margin-top: 154px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-message__button {
    margin-top: 60px;
  }
}
.table-scroll {
  margin-top: 40px;
  margin-bottom: 40px;
  overflow-x: auto;
  /* 横スクロール */
  -webkit-overflow-scrolling: touch;
  /* iOSでヌルヌル */
  max-width: 100%;
  border: 1px solid #333;
  border-radius: 6px;
}

.pricing-table {
  border-collapse: collapse;
  min-width: 1100px;
  /* 画面が狭い時に横スクロールさせるため */
  width: 100%;
  background: #fff;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #333;
  padding: 14px 16px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.6;
}

.pricing-table thead th {
  background: #d9d9d9;
  text-align: center;
  font-weight: 700;
}

.col-no {
  width: 70px;
}

.col-type {
  width: 320px;
}

.col-detail {
  width: 420px;
}

.col-price {
  width: 420px;
}

.no {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  background: #fff;
}

.type {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}

.type .sub {
  font-weight: 700;
  font-size: 16px;
}

.detail,
.price {
  text-align: left;
  font-weight: 500;
}

/* 文章の開始位置を揃える */
.is-multiline {
  padding-left: 0.9em;
  text-indent: 0.5em;
  /* ぶら下がりインデント */
}

/* 指定セルのみ下線を消す */
.is-multiline {
  border-bottom: none;
}

.nav-links {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  gap: 0.5rem;
  justify-content: center;
  top: 58px;
}

.page-numbers {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: #7B7B9D;
  color: #fff;
  border-radius: 50%;
  margin-right: 14px;
  text-align: center;
  line-height: 1.7;
  font-size: 20px;
  display: flex;
  justify-content: center;
}

.page-numbers:hover {
  background-color: #fff;
  color: #333;
}

.section-title__titleEn {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: -20px;
}

@media screen and (max-width: 1000px) {
  .section-title__titleEn {
    font-size: 2rem;
    margin-bottom: -5px;
  }
}
.section-title__text {
  font-size: 1rem;
}

.section-title__gold {
  color: #8E7E6D;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .section-title__gold {
    font-size: 30px;
    letter-spacing: 0.005em;
  }
  .section-title__gold.--small {
    font-size: 18px;
  }
}
.section-title__gold02 {
  font-size: 32px;
  color: #8E7E6D;
}

@media screen and (max-width: 768px) {
  .section-title__gold02 {
    font-size: 18px;
  }
}
.section-title {
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  padding: 60px 0;
}
.section-title.--bold {
  font-weight: bold;
  font-size: 18px !important;
}

@media screen and (max-width: 1000px) {
  .section-title {
    line-height: 1.3;
  }
}
.section-title p {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .section-title p {
    font-size: 13px;
  }
}
.section-title__text02 {
  font-size: 24px !important;
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 20px !important;
    padding: 25px 0;
  }
  .section-title__text02 {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .section-title h2 span {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .section-title p {
    font-size: 1rem;
    margin-top: 25px !important;
  }
}
.section-title02 {
  font-size: 36px;
  background-color: #27273F;
  color: #fff;
  padding: 30px 52px 30px 97px;
  max-width: 860px;
  width: 100%;
  margin-left: -1rem;
  position: relative;
  font-weight: 300;
  margin-top: 28px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .section-title02 {
    margin-left: -0.5rem;
    letter-spacing: 0;
  }
}
.section-title02:before {
  position: absolute;
  content: "";
  border-style: solid;
  border-color: transparent transparent #27273f transparent;
  border-width: 0px 13.5px 14.19px 13.5px;
  left: 0;
  bottom: -11px;
  transform: rotate(48deg);
  z-index: -2;
}

@media screen and (max-width: 1040px) {
  .section-title02 {
    font-size: 20px;
    padding: 0.5rem 1rem;
  }
}
.section-title03 span {
  font-size: 24px;
  position: relative;
  padding-bottom: 10px;
  color: #27273F;
  font-weight: 700;
}

.section-title03 span:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #27273F;
}

.l-single {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .l-single {
    margin-top: 0;
  }
}
.c-bread-crumb-list {
  margin-top: 17px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .c-bread-crumb-list {
    margin-top: 18px;
  }
}
.c-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1250px;
}

.c-breadcrumbs span {
  color: #333;
  font-size: 12px;
}

.c-breadcrumbs .current-item {
  color: #687282;
}

@media screen and (max-width: 768px) {
  .c-bread-crumb-list span {
    font-size: 12px;
  }
}
.p-breadcrumb {
  display: flex;
  gap: 0.5rem;
}

.p-breadcrumb span {
  font-size: 14px;
}

.profile-bread {
  margin-top: 30px;
}

.home {
  position: relative;
}

.home:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #333;
}

.swiper {
  height: 694px;
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.swiper-slide figure {
  height: 100%;
}

.swiper-slide figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%);
}

.swiper-button-next, .swiper-button-prev {
  width: auto;
  transform: translateY(-50%);
  top: 50%;
  z-index: 10;
  color: #fff;
  font-size: 30px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet {
  background-color: #333333;
}

.swiper-button-prev {
  left: 0px;
}

.swiper-button-next {
  right: 0;
}

main {
  position: relative;
}

.l-main {
  margin-top: 60px;
}

.contact-complete {
  padding-block: 60px;
}

.space {
  display: inline-block;
  margin-top: 2.6rem;
}/*# sourceMappingURL=style.css.map */