@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

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

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1200px;
  --u-content-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 1000px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white:#FFFFFF;
  --color-grey:#F4F4F4;
  --color-text:#282828;
  --color-main:#282828;
  --color-accent:#FD4511;
  --font-main:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴシック", "メイリオ", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 16px;
    --content-negative-space: -16px;
    --content-width: 100%;
    --u-content-width: 92%;
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  min-width: 1200px;
}

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

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

.sp {
  display: none !important;
}

.no-mt {
  margin-top: 0 !important;
}

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header -------------------------------------- */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.l-header__top {
  background-color: var(--color-white);
}

.l-header__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 12px 24px 4px 8px;
}

.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__logo img {
  width: 200px;
  height: auto;
}

.l-header__catch {
  color: var(--color-text);
  line-height: 1.5;
  margin-left: 4px;
}

.l-header__catch-main {
  font-size: 14px;
  font-size: 1.4rem;
}

.l-header__catch-sub {
  font-size: 12px;
  font-size: 1.2rem;
}

.l-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-left: auto;
}

.l-header__contact-label {
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color-text);
  font-weight: 500;
}

.l-header__tel {
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header__tel:hover {
  opacity: 0.7;
}

.l-header__tel-img {
  width: auto;
  height: 47px;
}

.l-header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.l-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
.l-header__link:hover {
  opacity: 0.7;
}

.l-header__link-img {
  width: 29px;
  height: 29px;
}

.l-header__nav {
  background-color: var(--color-white);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.l-header__nav-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.l-header__gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-header__gnav-item {
  position: relative;
}
.l-header__gnav-item:hover .l-header__gnav-sub {
  display: block;
}
.l-header__gnav-item.is-open .l-header__gnav-sub {
  display: block;
}
.l-header__gnav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 14px;
  background-color: #282828;
}

.l-header__gnav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0px 40px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.l-header__gnav-link:hover {
  background-color: var(--color-grey);
}
.l-header__gnav-link.js-gnav-sub-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.l-header__gnav-arrow {
  width: 12px;
  height: 12px;
}

.l-header__gnav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 10;
}

.l-header__gnav-sub-link {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.l-header__gnav-sub-link:hover {
  background-color: var(--color-grey);
}

.l-header__hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  padding: 0;
  background-color: #2268B3;
  border: none;
  cursor: pointer;
  z-index: 200;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header__hamburger:hover {
  opacity: 0.8;
}

.l-header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.l-header__sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 150;
  overflow-y: auto;
  padding-top: 64px;
}
.l-header__sp-menu.is-open {
  display: block;
}
.l-header__sp-menu .top-cta {
  margin: 0;
}

.l-header__sp-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 160;
}

.l-header__sp-menu-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 64px;
  padding: 0 16px;
}
.l-header__sp-menu-logo img {
  display: block;
  width: 200px;
  height: auto;
}

.l-header__sp-menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #2268B3;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header__sp-menu-close:hover {
  opacity: 0.8;
}

.l-header__sp-menu-close-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}
.l-header__sp-menu-close-icon::before, .l-header__sp-menu-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
}
.l-header__sp-menu-close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__sp-menu-close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header__sp-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.l-header__sp-nav-item {
  border-bottom: 1px solid #e5e5e5;
}

.l-header__sp-nav-link {
  display: block;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.l-header__sp-nav-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.l-header__sp-nav-trigger-arrow {
  width: 12px;
  height: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__sp-nav-trigger.is-open .l-header__sp-nav-trigger-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-header__sp-nav-sub {
  display: none;
  list-style: none;
  padding: 0 0 16px 16px;
  margin: 0;
}

.l-header__sp-nav-sub.is-open {
  display: block;
}

.l-header__sp-nav-sub-item {
  border-bottom: none;
}

.l-header__sp-nav-sub-link {
  display: block;
  padding: 4px 16px;
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
}

.l-header__sp-contact {
  text-align: center;
}

.l-header__sp-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 8px;
}

.l-header__sp-tel-icon {
  width: 24px;
  height: 24px;
}

.l-header__sp-tel-number {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-text);
}

.l-header__sp-tel-note {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.l-header__sp-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1150px) {
  .l-header__catch {
    display: none;
  }
  .l-header__contact {
    display: none;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header__top-inner {
    padding: 0 16px;
    min-height: 64px;
    padding: 6px 24px 4px 8px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__top {
    min-height: 64px;
  }
  .l-header__top-inner {
    padding: 0 16px;
    min-height: 64px;
  }
  .l-header__logo img {
    width: 200px;
  }
}
/* 追従ボタン -------------------------------------- */
.l-fix-btns {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.l-fix-btns__link {
  display: block;
}

.l-fix-btns__img-wrap {
  position: relative;
  display: block;
  width: 55px;
}

.l-fix-btns__img {
  display: block;
  width: 55px;
  height: auto;
}
.l-fix-btns__img--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-fix-btns__link:hover .l-fix-btns__img--hover {
  opacity: 1;
}

.fix-side {
  position: fixed;
  width: 64px;
  right: -300px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99999;
  -webkit-transition: 0.3s right;
  transition: 0.3s right;
}
.fix-side.active {
  right: 0;
}
.fix-side a {
  display: block;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fix-side a:hover {
  opacity: 0.9;
}
.fix-side a img {
  display: block;
  width: 64px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* footer -------------------------------------- */
.l-footer {
  background-color: var(--color-text);
  padding-bottom: 40px;
}

.l-footer__main {
  padding: 28px 0 8px;
}
.l-footer__main .inner {
  width: var(--content-width);
  max-width: 993px;
  margin: 0 auto;
  padding: 0;
}

.l-footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}

.l-footer__company {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 280px;
}

.l-footer__company-name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 16px;
}

.l-footer__company-address {
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 8px;
}

.l-footer__company-map {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-white);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: relative;
  margin-top: 4px;
}
.l-footer__company-map:hover {
  text-decoration: underline;
}
.l-footer__company-map img {
  position: relative;
  top: 2px;
}

.l-footer__company-tel {
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 20px;
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}

.l-footer__sns-link {
  display: block;
}

.l-footer__sns-icon {
  width: 32px;
  height: 32px;
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.l-footer__nav-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.l-footer__nav-item {
  margin-bottom: 16px;
}
.l-footer__nav-item .l-footer__nav-link.no-link {
  pointer-events: none;
}

.l-footer__nav-item:last-child {
  margin-bottom: 0;
}

.l-footer__nav-link {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--color-white);
  text-decoration: none;
}
.l-footer__nav-link:hover {
  text-decoration: underline;
}

.l-footer__nav-sub {
  list-style: none;
  padding-left: 0px;
  margin: 0;
}

.l-footer__nav-sub-item {
  margin-bottom: 4px;
}

.l-footer__nav-sub-link {
  font-size: 16px;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--color-white);
}
.l-footer__nav-sub-link::before {
  content: "－";
  margin-right: 4px;
}
.l-footer__nav-sub-link:hover {
  text-decoration: underline;
}

.l-footer__bottom {
  padding: 0 0;
  background-color: var(--color-text);
}
.l-footer__bottom .inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-space);
}

.l-footer__copyright {
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 30px;
}

.l-footer__logos {
  max-width: 993px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
}

.l-footer__logos-img {
  height: 143px;
  width: auto;
}

.l-footer__logos-link {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-footer__logos-link:hover {
  opacity: 0.7;
}

.ftr-fix {
  display: none;
}

#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 64px;
  height: 128px;
  z-index: 9998;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

#page_top a {
  display: block;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#page_top a:hover {
  opacity: 0.9;
}

#page_top a img {
  display: block;
  width: 64px;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .l-footer__main {
    display: none;
  }
  .l-footer__nav {
    display: none;
  }
  .l-footer__bottom {
    padding: 24px 16px 20px;
  }
  .l-footer__bottom .inner {
    width: 100%;
    padding: 0;
  }
  .l-footer__copyright {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .l-footer__logos {
    gap: 12px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-inline: auto;
  }
  .l-footer__logos-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__logos-img {
    width: 100%;
    height: auto;
  }
  .ftr-fix {
    width: 100%;
    position: sticky;
    bottom: -200px;
    z-index: 40;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .ftr-fix.active {
    bottom: 0px;
  }
  .ftr-fix a {
    display: block;
    width: 50%;
  }
  .ftr-fix a img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  margin: 0 20px;
  padding: 14px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--color-white);
}
ol.breadcrumbs li {
  list-style: none;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 10px;
  padding: 0 5px;
}
ol.breadcrumbs li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-main);
}
ol.breadcrumbs li span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    width: 100%;
    margin: 0;
    padding: 7px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li a {
    font-size: 12px;
    font-size: 1.2rem;
    color: var(--color-main);
  }
  ol.breadcrumbs li span {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
/*ハンバーガー */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  position: fixed;
  width: 85px;
  height: 85px;
  cursor: pointer;
  background: var(--color-dark);
  border-radius: 43px;
  z-index: 99999;
  right: 58px;
  top: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  padding: 0;
}
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 1px;
  background-color: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 30px;
  width: 50%;
}
.openbtn span:nth-of-type(2) {
  top: 40px;
  width: 30%;
}
.openbtn span.menu {
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  background-color: transparent;
}
.openbtn:hover {
  background-color: var(--color-dark);
}
.openbtn.hide {
  right: 28px;
  top: 7px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 28px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 42px;
  left: 28px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 9000;
  top: 0;
  right: -200%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0.2;
  overflow: auto;
}

.mm-menu.active {
  top: 0;
  right: 0;
  opacity: 1;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  pointer-events: none;
}
.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー */
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    position: fixed;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: var(--color-dark);
    border-radius: 43px;
    z-index: 99999;
    right: 15px;
    top: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none;
  }
  .openbtn.hide {
    right: 10px;
    top: 10px;
  }
  .sp-tel {
    position: fixed;
    z-index: 99999;
    top: 10px;
    right: 85px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    line-height: 1;
    color: var(--color-dark);
  }
  .sp-tel img {
    margin: 14px auto 0;
  }
  .sp-tel span {
    position: absolute;
    bottom: 9px;
    left: 20px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 1px;
    background-color: #fff;
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }
  .openbtn span:nth-of-type(2) {
    top: 28px;
    width: 30%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 19px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 19px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn span.menu {
    padding-top: 6px;
    font-size: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: transparent;
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fbfbfb;
    z-index: 9000;
    right: -200%;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    opacity: 0.2;
    overflow-y: scroll;
    padding: 90px 0 40px;
    top: 0;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
.sp-menu-link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1200px;
  overflow: auto;
}
.sp-menu-link .inner {
  width: 1080px;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sp-menu-link .inner .sp-menu-data {
  border-right: 1px solid #d3cbc6;
}
.sp-menu-link .inner .sp-menu-data .sp-menu-logo {
  width: 380px;
}
.sp-menu-link .inner .sp-menu-data p.addr {
  margin-top: 15px;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.sp-menu-link .inner .sp-menu-data .outlink {
  margin-top: 50px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank {
  margin-top: 25px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a {
  text-decoration: none;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.sp-menu-link .inner .sidemenu-link {
  width: 660px;
}
.sp-menu-link .inner .sidemenu-link nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sp-menu-link .inner .sidemenu-link nav ul {
  width: 50%;
}
.sp-menu-link .inner .sidemenu-link nav ul li {
  margin-bottom: 20px;
  margin-left: 0;
  list-style-type: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
.sp-menu-link .inner .sidemenu-link nav ul li a {
  text-decoration: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link .bnr {
  margin-top: 75px;
}
.sp-menu-link .inner .sidemenu-link .bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 486px;
  height: 100px;
  border-radius: 50px;
  background-color: #aaa;
  padding-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sp-menu-link .inner .sidemenu-link .bnr a:hover {
  opacity: 0.7;
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .sp-menu-link {
    min-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .sp-menu-link .inner {
    display: block;
    width: 90%;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 100%;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo img {
    zoom: 0.5;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 12px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: #d3cbc6;
    line-height: 1.3;
    margin-right: 5px;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-text);
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 172px 0 32px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  position: relative;
  text-align: center;
}
.c-heading-lv2::before,
:where(.u-editor) h2:where(:not(.is-reset-wp-block))::before {
  content: url(../img/page/icon-h2.png);
  position: absolute;
  top: -68px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 72px 0 26px;
  font-size: 24px;
  font-size: 2.4rem;
  border-bottom: 2px solid #8F8F8F;
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
}
.c-heading-lv3::before,
:where(.u-editor) h3:where(:not(.is-reset-wp-block))::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #FD4511;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 10;
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 64px 0 16px;
  font-size: 20px;
  font-size: 2rem;
  border-left: 2px solid #FD4511;
  line-height: 1.5;
  padding: 0 16px;
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: red;
}

.c-heading-lv6,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 22px;
    font-size: 2.2rem;
    margin: 97px 0 16px;
  }
  .c-heading-lv2::before,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block))::before {
    top: -40px;
  }
  .single-works .c-heading-lv2,
  .single-works :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    margin-top: 97px;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    margin: 52px 0 16px;
    font-size: 20px;
    font-size: 2rem;
    padding-bottom: 5px;
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    margin: 40px 0 16px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    margin: 32px 0 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.c-section-head__title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}

.c-section-head__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
  margin-inline: auto;
}

.c-section-head__title {
  position: relative;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  z-index: 10;
  margin-bottom: 24px;
}

.c-section-head__title-wrap .c-section-head__title {
  margin-bottom: 0;
}

.c-section-head__title-underline {
  position: relative;
}

.c-section-head__title-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 302px;
  height: auto;
  z-index: 0;
}

.c-section-head__subtitle {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.c-section-head__subtitle::before,
.c-section-head__subtitle::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--color-text);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  translate: 0px 8px;
}

.c-section-head__subtitle-accent {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--color-accent);
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .c-section-head {
    margin-bottom: 20px;
  }
  .c-section-head__icon {
    width: 20px;
    height: 20px;
    margin-bottom: 12px;
    margin-inline: auto;
  }
  .c-section-head__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .c-section-head__subtitle {
    font-size: 22px;
    display: block;
  }
  .c-section-head__subtitle::before,
  .c-section-head__subtitle::after {
    display: none;
  }
  .c-section-head__subtitle-accent {
    font-size: 26px;
    padding-bottom: 0;
  }
  .c-section-head__title-line {
    width: 200px;
    top: 28px;
    left: -10px;
  }
}
.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 10px;
    line-height: 2;
  }
}
.c-unordered-list,
:where(.u-editor) ul.wp-block-list:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  padding: 0;
}
.c-unordered-list li,
:where(.u-editor) ul.wp-block-list:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 16px;
  line-height: 1.5;
}
.c-unordered-list li:before,
:where(.u-editor) ul.wp-block-list:where(:not(.is-reset-wp-block)) li:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/page/icon-list.png) no-repeat center/contain;
}

.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
  padding: 0;
}
.c-order-list li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  margin-bottom: 16px;
  line-height: 1.5;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.c-order-list li a,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
.c-order-list li:before,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: #00B7C7;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

dt,
dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul.wp-block-list:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-unordered-list li,
  :where(.u-editor) ul.wp-block-list:where(:not(.is-reset-wp-block)) li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  .c-unordered-list li::before,
  :where(.u-editor) ul.wp-block-list:where(:not(.is-reset-wp-block)) li::before {
    width: 18px;
    height: 24px;
    background: url(../img/page/icon-list-sp.svg) no-repeat center/contain;
  }
  .c-order-list,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  .c-order-list li,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
    margin-bottom: 8px;
    line-height: 1.5;
    text-indent: -2.5rem;
    margin-left: 2.5rem;
  }
  .c-order-list li a,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
}
.c-rainbow-btn {
  width: 100%;
  display: block;
  position: relative;
  padding: 20px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-white);
  background-color: transparent;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.3s ease;
  transition: transform 0.15s ease, opacity 0.3s ease, -webkit-transform 0.15s ease;
}
.c-rainbow-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-text);
  border-radius: 4px;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.c-rainbow-btn::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 4px;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, #FE904E 1.6%, #FEEBB2 48.07%, #00B7C7 101.46%);
  border-radius: 5px;
  z-index: 5;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.c-rainbow-btn:hover {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}
.c-rainbow-btn:hover::after {
  -webkit-transform: translate(-4px, -4px);
          transform: translate(-4px, -4px);
}

.c-rainbow-btn__text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.03em;
  width: 100%;
  z-index: 30;
  gap: 12px;
}

.c-rainbow-btn__icon {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .c-rainbow-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 0;
    min-height: 64px;
    font-size: 16px;
    text-align: center;
  }
  .c-rainbow-btn__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.03em;
  }
}
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  display: inline-block;
}

.c-for-list .a-wrap,
.wp-block-button {
  position: relative;
  display: inline-block;
}
.c-for-list .a-wrap a,
.wp-block-button a {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  z-index: 1;
  display: inline-block;
  padding: 20px 62px 20px 32px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  background-image: url(../img/top/icon-arrow-white.svg);
  background-size: 20px 20px;
  background-position: right 20px center;
  background-repeat: no-repeat;
}
.c-for-list .a-wrap a:hover,
.wp-block-button a:hover {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}
.c-for-list .a-wrap::after,
.wp-block-button::after {
  content: "";
  position: absolute;
  inset: 4px -4px -4px 4px; /* 上 右 下 左 */
  background: linear-gradient(95deg, #FE904E 1.6%, #FEEBB2 48.07%, #00B7C7 101.46%);
  border-radius: 6px;
  z-index: 0;
}

.c-for-list {
  margin: 40px auto 0;
  text-align: center;
}

:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .c-rainbow-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 0;
    min-height: 64px;
    font-size: 16px;
    text-align: center;
  }
  .c-rainbow-btn__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.03em;
  }
}
.c-link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-link-arrow:hover {
  opacity: 0.7;
}

.c-link-arrow__icon {
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 767px) {
  .c-link-arrow {
    font-size: 16px;
  }
  .c-link-arrow__icon {
    width: 24px;
    height: 24px;
  }
}
.c-blockquote,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px 80px 64px;
  position: relative;
  border: 1px solid #000;
  border-radius: 10px;
}
.c-blockquote p,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) p {
  margin-top: 0;
}
.c-blockquote cite,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  font-style: normal;
}
.c-blockquote::before,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
  content: url(../img/page/icon-blockquote.svg);
  position: absolute;
  top: 16px;
  left: 24px;
}
.c-blockquote::after,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
  content: url(../img/page/icon-blockquote-end.svg);
  position: absolute;
  bottom: 16px;
  right: 24px;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 90%;
    margin: 40px auto 0;
    line-height: 2;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 48px 36px;
    position: relative;
  }
  .c-blockquote::before,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
    top: 10px;
    left: 12px;
  }
  .c-blockquote::after,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
    bottom: 10px;
    right: 12px;
    line-height: 1;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-image,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
.c-image img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
.c-image figcaption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 16px;
  line-height: 1.4;
}

.wp-block-columns,
.is-type-video {
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .c-image,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-image img,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 12px;
    line-height: 1.4;
  }
  .wp-block-columns {
    gap: 6.5em;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

.u-editor {
  --table-border-color: #8B8B8B;
  --table-bg-color: #FFF7DD;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-editor table {
  margin-top: 40px;
  border-collapse: collapse;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.5;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 16px 40px;
  text-align: left;
  border-color: var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor table tr th {
  padding: 16px 40px;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-editor table thead th {
  background-color: var(--table-bg-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-editor table tbody th {
  background-color: var(--table-bg-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-editor table tbody td {
  padding: 16px 32px;
}

@media screen and (max-width: 767px) {
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout:not(.is-stacked-on-mobile) {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-editor table {
    margin-top: 40px;
    border-collapse: collapse;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr th,
  .u-editor table tr td {
    line-height: 1.5;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 16px;
    text-align: left;
    border-color: var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr td {
    border-top: transparent;
    padding: 16px;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  .u-editor table thead th {
    background-color: var(--table-bg-color);
    padding: 20px 16px;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  .u-editor table tbody th {
    background-color: var(--table-bg-color);
    border-top: none;
    padding: 16px;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  .u-editor table tbody td {
    padding: 16px;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody tr:nth-of-type(1) th,
  .u-editor table tbody tr:nth-of-type(1) th {
    border-top: 1px solid var(--table-border-color);
  }
}
.wp-block-media-text {
  gap: 36px;
  margin: 80px 0 0;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .wp-block-media-text {
    gap: 18px;
    margin: 60px 0 0;
  }
}
.wp-block-gallery.has-nested-images.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 0;
}

.wp-block-gallery > .wp-block-image {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .wp-block-gallery.has-nested-images.is-layout-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 0;
  }
}
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 88px auto 0;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  margin: 0;
  padding: 10px;
  line-height: 2;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  border: none !important;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  padding: 0;
}
.wp-pagenavi .pages {
  border: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a {
  min-width: 44px;
  padding: 5px 5px !important;
  border-radius: 22px;
}
.wp-pagenavi a {
  border: 1px solid var(--color-main);
}
.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  padding: 16px 0 !important;
}
.wp-pagenavi a.nextpostslink {
  background-image: url(../img/page/icon-navi-right.svg);
}
.wp-pagenavi a.nextpostslink:hover {
  opacity: 0.7;
  background-color: transparent;
}
.wp-pagenavi a.previouspostslink {
  background-image: url(../img/page/icon-navi-left.svg);
}
.wp-pagenavi a.previouspostslink:hover {
  opacity: 0.7;
  background-color: transparent;
}

.next-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 2;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 70px auto 0;
    text-align: center;
    gap: 4px;
  }
  .wp-pagenavi span.current,
  .wp-pagenavi a {
    padding: 3px 5px !important;
    min-width: 35px;
    margin: 0 !important;
  }
  .wp-pagenavi span.current.last, .wp-pagenavi span.current.first,
  .wp-pagenavi a.last,
  .wp-pagenavi a.first {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .wp-pagenavi .pages {
    width: 100%;
  }
  .next-prev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 590px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url(../img/common/icon-slider-play01.png);
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url(../img/common/icon-slider-stop01.png);
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 153px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  /* Safari用のハードウェアアクセラレーション */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}
.c-slider02__thumbnail .splide__slide.is-active {
  opacity: 1;
}

.c-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
  margin: 40px 0 0;
  padding: 0;
}
.c-card-wrap > li {
  list-style: none;
  padding: 0;
}
.c-card-wrap > li::before {
  display: none;
}
.c-card-wrap > .c-card {
  margin: 0;
}

.c-card-wrap.c-card-wrap--columns3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  margin-top: 50px;
}

.c-card__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.c-card__type:hover .c-card__img {
  opacity: 0.6;
}
.c-card__type > :first-child {
  margin-top: 0 !important;
}
.c-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-card__type.c-card__type--horizon {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}

.c-card__img {
  aspect-ratio: 317/220;
  overflow: hidden;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
:where(.c-card__type--horizon) > .c-card__img {
  width: 317px;
}
.c-card__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.c-card__prop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
:where(.c-card__type--horizon > .c-card__detail) > .c-card__prop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-card__date {
  line-height: 1.5;
  color: var(--color-main);
  font-size: 1.4rem;
}

.c-card__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.c-card__category-wrap > li {
  list-style: none;
}

.c-card__category {
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-grey);
}
.c-card__category.c-card__category--tag {
  color: var(--color-white);
  background-color: var(--color-main);
}

.c-card__title {
  line-height: 1.5;
  font-size: 1.6rem;
}

.c-card__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-card__tag-wrap > li {
  list-style: none;
}

.c-card__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
}

.c-simple-posts__item {
  list-style: none;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
}

.c-simple-posts__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  text-decoration: none;
}

.c-simple-posts__prop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
}

.c-simple-posts__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey);
}

.c-simple-posts__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.c-simple-posts__category {
  display: inline-block;
  color: var(--color-grey);
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
}

.c-simple-posts__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-simple-posts__tag-wrap > li {
  list-style: none;
}

.c-simple-posts__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts__title {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
}
.c-simple-posts__item-link:hover .c-simple-posts__title {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 55vw;
  }
  .c-slider--sp .splide__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    /* Safari用のハードウェアアクセラレーション */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
  }
  .c-card-wrap,
  .c-card-wrap.c-card-wrap--columns3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  :where(.c-card__type--horizon) > .c-card__img {
    width: 50%;
  }
  .c-card__prop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
  .c-card__category-wrap {
    gap: 4px;
  }
  .c-card__category {
    font-size: 1.4rem;
  }
}
.c-qa-layout-wrap > .wp-block-group__inner-container > .c-qa-layout:first-child {
  margin-top: 72px;
}

.c-qa-layout {
  margin-top: 48px;
  padding-bottom: 48px;
}

.c-qa-layout + .c-qa-layout {
  margin-top: 48px;
}

.c-qa-layout__head,
.c-qa-layout__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding-left: 16px;
}

.c-qa-layout__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-qa-layout__body {
  margin-top: 10px;
}

.c-qa-layout__head__pref,
.c-qa-layout__body__pref {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 32px;
  height: 28px;
  text-align: center;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  overflow: hidden;
  text-indent: -9999px;
}

.c-qa-layout__head__pref {
  background: url(../img/page/icon-faq.png) center center no-repeat;
  background-size: cover;
}

.c-qa-layout__body__pref {
  top: 8px;
  background: url(../img/page/icon-ans.png) center center no-repeat;
}

.c-qa-layout__title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.c-qa-layout__detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-qa-layout__detail p {
  padding-top: 5px;
}
.c-qa-layout__detail > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin: 50px 0 0;
  padding: 30px;
  background-color: var(--color-grey);
}

.c-box__head > :first-child,
.c-box__detail > :first-child {
  margin-top: 0 !important;
}
.c-box__head > :last-child,
.c-box__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box__title {
  font-size: 2rem;
  font-weight: 700;
}

.just-bet {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .c-box {
    margin: 30px 0 0;
    padding: 16px;
  }
  .c-box__title {
    font-size: 1.8rem;
  }
  .c-qa-layout-wrap > .wp-block-group__inner-container > .c-qa-layout:first-child {
    margin-top: 42px;
  }
  .c-qa-layout + .c-qa-layout {
    margin-top: 0;
  }
  .c-qa-layout__head,
  .c-qa-layout__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding-left: 8px;
  }
  .c-qa-layout__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .is-provider-youtube {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .is-provider-youtube iframe {
    width: 100%;
    height: 100%;
  }
  .c-qa-layout {
    padding-bottom: 24px;
  }
}
.c-flow-list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin: 50px 0 0;
}
.c-flow-list > li {
  margin: 0;
  padding: 30px 15px;
  text-indent: 0;
}

.c-flow-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
  background-color: var(--color-light-base);
  border: 1px solid var(--color-main);
}
.c-flow-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.3rem;
  margin: 0;
  width: 1rem;
  height: 1.5rem;
  font-size: inherit;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-main);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.c-flow-list__item:first-child::before {
  display: none;
}

.c-flow-list__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-cta-section {
  margin: 60px 0 0;
  padding: 30px;
  background-color: var(--color-grey);
}
.c-cta-section > :first-child {
  margin-top: 0 !important;
}
.c-cta-section > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-section__title {
  margin: 30px auto 15px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0 0;
}

.c-cta-card {
  margin: 0;
  padding: 0;
}

.c-cta-card__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 15px;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-cta-card__type:hover {
  opacity: 0.7;
}
.c-cta-card__type > :first-child {
  margin-top: 0 !important;
}
.c-cta-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.c-cta-card__heading__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
}

.c-cta-card__heading__title {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: 700;
}

.c-cta-card__heading__title--tel {
  font-size: 4rem;
}

.c-cta-card__text {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card__lead {
  margin-top: 5px;
  line-height: 1.2;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}

.c-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-lightbox.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.c-lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}
.c-lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: default;
}
.c-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.c-lightbox__close span {
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
}
.c-lightbox__close span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-lightbox__close span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

[data-lightbox] {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.c-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 75px 0 0;
  padding: 0;
}
.c-sns-list > li {
  list-style: none;
}

.c-sns-list--contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-sns__type {
  display: block;
}

#main-content div#ez-toc-container {
  margin-top: 50px;
  width: 100%;
  font-size: 2rem;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#main-content div#ez-toc-container .ez-toc-btn {
  display: none;
}

#main-content div#ez-toc-container .ez-toc-title-container {
  background: #F4F4F4;
  margin-bottom: 15px;
  padding: 4px 16px 6px;
}

#main-content div#ez-toc-container .ez-toc-title-container .ez-toc-title {
  position: relative;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 16px;
  font-size: 1.6rem;
}

#main-content div#ez-toc-container .ez-toc-title-container .ez-toc-title::before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 2px);
  right: -22px;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s, -webkit-transform 0.2s;
  transition: top 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, top 0.2s;
  transition: transform 0.2s, top 0.2s, -webkit-transform 0.2s;
}

#main-content div#ez-toc-container .ez-toc-title-container.hide .ez-toc-title::before {
  top: calc(50% - 6px);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#main-content #ez-toc-container ul li {
  text-indent: 0em;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}

#main-content #ez-toc-container ul li a {
  font-size: 16px;
  font-size: 1.6rem;
}

#ez-toc-container ul li::before {
  content: none;
}

#main-content div#ez-toc-container ul.ez-toc-list a:visited,
#main-content #ez-toc-container ul li .ez-toc-link {
  color: #000;
}

#main-content div#ez-toc-container .ez-toc-heading-level-2 {
  border-bottom: 1px solid #8F8F8F;
  padding: 5px 0 5px 40px;
  position: relative;
}

#main-content div#ez-toc-container .ez-toc-heading-level-2:not(:has(ul)) {
  padding: 7px 16px;
}
#main-content div#ez-toc-container .ez-toc-heading-level-2:not(:has(ul))::before {
  display: none;
}

#main-content div#ez-toc-container .ez-toc-heading-level-2::before {
  content: "";
  position: absolute;
  display: block;
  top: 1em;
  left: 17px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #00B7C7;
  border-right: 2px solid #00B7C7;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s, -webkit-transform 0.2s;
  transition: top 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, top 0.2s;
  transition: transform 0.2s, top 0.2s, -webkit-transform 0.2s;
  background: none;
}

#main-content div#ez-toc-container .ez-toc-heading-level-2.hide::before {
  top: calc(1em - 6px);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#main-content div#ez-toc-container .ez-toc-list-level-3 {
  margin-top: 3px;
  padding-left: 10px;
}

#main-content div#ez-toc-container .ez-toc-list-level-3 > li + li {
  margin-top: 3px;
}

#main-content div#ez-toc-container ul ul {
  margin-left: 0;
}

#main-content div#ez-toc-container li > ul {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .c-flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-inline: auto;
    padding-right: 20px;
  }
  .c-flow-list > li {
    padding: 15px;
  }
  .c-flow-list__item::before {
    left: calc(100% + 12px);
    width: 10px;
    height: 15px;
  }
  .c-flow-list__item:first-child::before {
    display: block;
  }
  .c-flow-list__item:last-child::before {
    display: none;
  }
  .c-flow-list__text {
    font-size: 1.6rem;
  }
  .c-cta-card-wrap {
    grid-template-columns: 1fr;
  }
  .c-cta-card__type {
    padding: 15px 10px;
    min-height: 100px;
  }
  .c-cta-card__heading__icon {
    width: 30px;
  }
  .c-cta-card__heading__title {
    font-size: 2rem;
  }
  .c-cta-card__heading__title--tel {
    font-size: 3rem;
  }
  .c-cta-card__text {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }
  .c-cta-card__lead {
    font-size: 2.2rem;
  }
}
/*
 * pages
 */
.blog .top-news,
.archive .top-news {
  margin-top: 60px;
}

.c-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
}
.c-tag-list > li {
  list-style: none;
}

.c-tag {
  font-size: 1.8rem;
}

.c-tag__type {
  text-decoration: none;
}
.c-tag__type:hover {
  text-decoration: underline;
}

.cat-area {
  width: var(--u-content-width);
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cat-area p.date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 26px;
}
.cat-area .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cat-area .cat a {
  display: inline-block;
  padding: 8px 10px;
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #f4f4f4;
  border: 1px solid #282828;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cat-area .cat a:hover {
  background-color: var(--color-accent);
  color: #fff;
}
.cat-area .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cat-area .tag a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cat-area .tag a:hover {
  color: var(--color-accent);
}
.cat-area ul.cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
  padding: 0;
}
.cat-area ul.cat li {
  list-style: none;
  text-indent: 0;
  margin-left: 0;
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: #fff;
  color: var(--color-main);
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}
.cat-area ul.cat li a:hover {
  background-color: var(--color-main);
  color: #fff;
}
.cat-area ul.cat li span.current {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: var(--color-main);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}

.no-posts {
  margin-top: 60px;
  text-align: center;
  font-size: 2rem;
}

.tax-works_cat .h1-wrap h1 span,
.tax-works_cat02 .h1-wrap h1 span {
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .cat-area {
    width: 100%;
    margin: 10px auto 0;
    display: block;
  }
  .cat-area p.date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    color: #8B8B8B;
  }
  .cat-area .cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 8px 14px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .cat-area .cat a:hover {
    background-color: #fff;
    color: #000;
  }
  .cat-area .cat span {
    margin-top: 12px;
  }
  .cat-area ul.cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 10px;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .cat-area ul.cat li a:active {
    background-color: var(--color-main);
    color: #fff;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  .cat-area ul.cat li span.current {
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .tax-works_cat .h1-wrap h1 span,
  .tax-works_cat02 .h1-wrap h1 span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.archive .top-news .top-news__list,
.blog .top-news .top-news__list {
  grid-template-columns: 1fr;
}

.post-type-archive-info .top-news .top-news__meta,
.tax-info-cat .top-news .top-news__meta {
  display: block;
}

.blog .top-news__body,
.home .top-news__body,
.category .top-news__body {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}

.single .u-l-main {
  background-image: url(../img/page/single-main-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 100px;
}

.single-main {
  width: var(--u-content-width);
  margin: 40px auto 0;
  padding: 0 0 40px;
  text-align: center;
}
.single-main .cat-area a {
  font-size: 16px;
  font-size: 1.6rem;
}
.single-main h1 {
  font-size: 34px;
  font-size: 3.4rem;
  text-align: left;
  line-height: 1.5;
  margin-top: 24px;
}

.p-works__description {
  font-size: 1.8rem;
}

.p-works-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-point-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-point-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-point__image {
  position: relative;
}

.p-works-point__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 22px;
  left: 35px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 30px;
}

.p-works-point__description {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-gallery-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__before-after {
  --gap: 36px;
  --gap-half: calc(var(--gap) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  margin: 50px 0 0;
}

.p-works-gallery-grid__ba {
  position: relative;
}
.p-works-gallery-grid__ba > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__ba > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__ba--before {
  width: calc(30% - var(--gap-half));
}

.p-works-gallery-grid__ba--after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  width: calc(70% - var(--gap-half));
}

.p-works-gallery-grid__ba__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 0;
  left: 0;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--color-main);
}

.p-works-gallery-grid__ba__badge--before,
.p-works-gallery-grid__ba__badge--after {
  text-transform: uppercase;
}

.p-works-gallery__image__caption {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-about__data {
  --border-color: var(--color-dark);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.p-works-about__data__dl {
  display: grid;
  grid-template-columns: 30% 70%;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.p-works-about__data__dl__title {
  padding: 10px 15px;
  font-weight: 700;
  background-color: var(--color-grey);
}

.p-works-about__data__dl__detail {
  border-left: 1px solid var(--border-color);
  padding: 10px 15px;
}

.p-vice-mv {
  margin: 100px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .single .u-l-main {
    margin-top: 64px;
    background-image: url(../img/page/single-sp-main-bg.png);
  }
  .single-main {
    text-align: center;
    padding-top: 40px;
    text-align: left;
    padding: 0;
  }
  .single-main h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    font-size: 2.2rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.5;
    margin-top: 12px;
  }
  .p-works-point-grid {
    grid-template-columns: 1fr;
  }
  .p-works-point__badge {
    top: 10px;
    left: 10px;
    font-size: 1.6rem;
  }
  .p-works-gallery-grid__ba__badge {
    font-size: 1.6rem;
  }
  .p-works-about__data {
    grid-template-columns: 1fr;
  }
}
.u-l-main {
  background-image: url(../img/page/u-main-bg.png);
  background-repeat: repeat-x;
  margin-top: 100px;
  padding-top: 16px;
}

.u-main {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 75px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-main .h1-wrap {
  text-align: center;
}
.u-main .h1-wrap h1 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 10px;
}

.wp-block-yoast-faq-block {
  margin-top: 50px;
}
.wp-block-yoast-faq-block .schema-faq-question {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  padding: 9px 0 10px 68px;
}
.wp-block-yoast-faq-block .schema-faq-question::before {
  content: url(../img/page/icon-faq.png);
  position: absolute;
  left: 16px;
  top: 8px;
}
.wp-block-yoast-faq-block p.schema-faq-answer {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 68px;
  position: relative;
}
.wp-block-yoast-faq-block p.schema-faq-answer::before {
  content: url(../img/page/icon-ans.png);
  position: absolute;
  left: 16px;
  top: 8px;
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .u-l-main {
    background-image: url(../img/page/u-main-bg-sp.png);
    background-size: contain;
    padding-top: 0;
    margin-top: 64px;
    background-position: left 40px;
  }
  .u-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 0 100px;
  }
  .u-main .h1-wrap {
    text-align: center;
  }
  .u-main .h1-wrap .en {
    font-size: 20px;
    font-size: 2rem;
    font-family: "Outfit";
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1;
  }
  .u-main .h1-wrap h1 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
}
.top-fv-sp {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding-top: 16vw;
}

.top-fv-sp__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.top-fv-sp__bg--top {
  top: 0;
  scale: 1.4;
}

.top-fv-sp__bg--bottom {
  bottom: -60px;
  scale: 1.3;
}

.top-fv-sp__hexagon-area {
  position: relative;
  width: 90%;
  z-index: 1;
  margin-inline: auto;
}

.top-fv-sp__hexagon-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 4.27vw;
}

.top-fv-sp__hexagon-img--b {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.top-fv-sp__hexagon-img--a {
  -webkit-animation: fv-hexagon-fade 8s ease-in-out infinite;
          animation: fv-hexagon-fade 8s ease-in-out infinite;
}

.top-fv-sp__hexagon-img--b {
  -webkit-animation: fv-hexagon-fade-alt 8s ease-in-out infinite;
          animation: fv-hexagon-fade-alt 8s ease-in-out infinite;
}

.top-fv-sp__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1vw;
  margin-bottom: 0.2vw;
}

.top-fv-sp__copy {
  font-size: 4.8vw;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 4vw;
}

.top-fv-sp__catch {
  font-size: 7vw;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 4vw;
}

.top-fv-sp__catch-accent {
  color: var(--color-accent);
  font-size: 7vw;
}

.top-fv-sp__result-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2vw;
}

.top-fv-sp__result-dec {
  width: 7vw;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-fv-sp__result-content {
  text-align: center;
}

.top-fv-sp__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.13vw;
  margin-bottom: 2.13vw;
}

.top-fv-sp__result-text {
  font-size: 3vw;
  font-weight: bold;
  color: var(--color-text);
}

.top-fv-sp__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.53vw;
}

.top-fv-sp__count-num {
  font-size: 8.53vw;
  font-weight: bold;
  line-height: 1;
}

.top-fv-sp__count-unit {
  font-size: 3.73vw;
  font-weight: bold;
  color: var(--color-text);
}

.top-fv-sp__count-text {
  font-size: 3.73vw;
  font-weight: bold;
  color: var(--color-text);
}

.top-fv-sp__service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4vw;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-fv-sp__service-item {
  font-size: 2vw;
  font-weight: bold;
  color: var(--color-text);
  padding: 1vw 1.2vw;
  border: 1px solid var(--color-text);
  white-space: nowrap;
  border-radius: 4px;
}

.top-fv-sp__google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.07vw 2.13vw;
  font-size: 3.2vw;
  color: var(--color-text);
}

.top-fv-sp__google-label {
  font-weight: bold;
}

.top-fv-sp__google-score {
  font-weight: bold;
  font-size: 4.27vw;
}

.top-fv-sp__google-stars {
  color: #FFC107;
  font-size: 3.73vw;
}

.top-fv-sp__google-count {
  font-weight: normal;
}

.top-fv-sp__google-count-num {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top-fv-sp {
    display: block;
  }
}
.top-fv {
  position: relative;
  width: 100%;
  min-height: 40.63vw;
  overflow: hidden;
  background-color: #fff;
  padding: 10vw 0 1.56vw;
}

.top-fv__bg {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.top-fv__bg--left {
  left: -11.41vw;
  top: 3.07vw;
  width: 41.46vw;
}

.top-fv__bg--right {
  right: -4.32vw;
  top: -4.22vw;
  width: 36.88vw;
}

.top-fv__inner {
  position: relative;
  min-height: 26.04vw;
  width: 62.5vw;
  margin: 0 auto;
  padding: 0 0.83vw;
  z-index: 2;
}

.top-fv__hexagon {
  position: absolute;
}

.top-fv__hexagon--1 {
  left: -12.3vw;
  top: -2vw;
}

.top-fv__hexagon--2 {
  left: -9vw;
  bottom: -4.6vw;
}

.top-fv__hexagon--3 {
  right: -16.5vw;
  top: 3.6vw;
}

.top-fv__hexagon-img {
  display: block;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.top-fv__hexagon--1 .top-fv__hexagon-img {
  width: 20vw;
  height: auto;
}

.top-fv__hexagon--2 .top-fv__hexagon-img {
  width: 20.31vw;
  height: auto;
}

.top-fv__hexagon--3 .top-fv__hexagon-img {
  width: 27.08vw;
  height: auto;
}

.top-fv__hexagon .top-fv__hexagon-img--b {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

@-webkit-keyframes fv-hexagon-fade {
  0%, 40% {
    opacity: 1;
  }
  50%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fv-hexagon-fade {
  0%, 40% {
    opacity: 1;
  }
  50%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fv-hexagon-fade-alt {
  0%, 40% {
    opacity: 0;
  }
  50%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fv-hexagon-fade-alt {
  0%, 40% {
    opacity: 0;
  }
  50%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.top-fv__hexagon-img--a {
  -webkit-animation: fv-hexagon-fade 8s ease-in-out infinite;
          animation: fv-hexagon-fade 8s ease-in-out infinite;
}

.top-fv__hexagon-img--b {
  -webkit-animation: fv-hexagon-fade-alt 8s ease-in-out infinite;
          animation: fv-hexagon-fade-alt 8s ease-in-out infinite;
}

.top-fv__center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 100%;
  padding: 0 0.83vw;
}

.top-fv__copy {
  font-size: 1.56vw;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.8vw;
  letter-spacing: 0.2em;
}

.top-fv__copy-highlight {
  position: relative;
  display: inline-block;
}

.top-fv__copy-line {
  position: absolute;
  left: 50%;
  bottom: -0.21vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: auto;
}

.top-fv__catch {
  font-size: 2.45vw;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 2.08vw;
  letter-spacing: 0.04em;
}

.top-fv__catch-accent {
  color: #FE6B35;
}

.top-fv__result-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.04vw;
  margin-bottom: 0.42vw;
}

.top-fv__result-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-fv__result-side--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.top-fv__result-side--right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.top-fv__result-dec {
  width: 2.5vw;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-fv__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  gap: 0.52vw;
  margin-bottom: 0.42vw;
}

.top-fv__result-text {
  font-size: 1.04vw;
  color: var(--color-text);
  letter-spacing: 0.1em;
}

.top-fv__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-fv__count-num {
  font-size: 2.71vw;
  line-height: 1;
}

.top-fv__count-unit {
  font-size: 1.25vw;
  font-weight: 900;
  color: var(--color-text);
  margin-left: 0.1vw;
}

.top-fv__count-text {
  font-size: 1.25vw;
  font-weight: 900;
  color: var(--color-text);
  margin-left: 0.21vw;
}

.top-fv__service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.63vw;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 0.83vw;
}

.top-fv__service-item {
  font-size: 0.73vw;
  padding: 0.21vw 0.42vw;
  border: 1px solid var(--color-text);
  border-radius: 4px;
  white-space: nowrap;
  background-color: var(--color-white);
}

.top-fv__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.42vw;
}

.top-fv__services--left {
  margin-right: 0.42vw;
}

.top-fv__services--right {
  margin-left: 0.42vw;
}

.top-fv__service-btn {
  font-size: 0.73vw;
  font-weight: bold;
  color: var(--color-text);
  background-color: #fff;
  border: 1px solid var(--color-text);
  padding: 0.42vw 0.83vw;
  white-space: nowrap;
}

.top-fv__google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.42vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-fv__google-label {
  font-size: 0.73vw;
  font-weight: bold;
  color: var(--color-text);
}

.top-fv__google-score {
  font-size: 1.04vw;
  font-weight: 900;
  color: var(--color-text);
}

.top-fv__google-stars {
  font-size: 0.83vw;
  color: #FFC107;
}

.top-fv__google-count {
  font-size: 0.73vw;
  color: #666;
}

.top-fv__google-count-num {
  font-weight: bold;
}

.top-reason {
  position: relative;
  padding: 56px 0 56px;
  background-color: var(--color-white);
  overflow: hidden;
}
.top-reason .top-reason__deco-right {
  position: absolute;
  top: 543px;
  right: -50px;
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-reason .inner {
  position: relative;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  z-index: 1;
}
.top-reason .top-reason__lead {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 56px;
  padding: 0 16px;
}
.top-reason .top-reason__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
}
.top-reason .top-reason__card-img {
  width: 168px;
  height: auto;
}
.top-reason .top-reason__card-img--pc {
  display: block;
}
.top-reason .top-reason__card-img--sp {
  display: none;
}
.top-reason .top-reason__pentagon {
  position: relative;
  margin-bottom: 56px;
  max-width: 1000px;
  margin-inline: auto;
}
.top-reason .top-reason__pentagon-left {
  position: absolute;
  left: -332px;
  bottom: -200px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 140px;
  height: auto;
  z-index: 1;
}
.top-reason .top-reason__pentagon-center {
  width: 100%;
  height: auto;
  z-index: 2;
}
.top-reason .top-reason__catch {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.top-reason .top-reason__btn {
  max-width: 400px;
  margin-inline: auto;
}

.top-service {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}
.top-service .top-service__deco-left {
  position: absolute;
  top: 200px;
  left: -50px;
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-service .top-service__deco-right {
  position: absolute;
  top: 600px;
  right: -50px;
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-service .inner {
  position: relative;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  z-index: 1;
}
.top-service .top-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  margin-bottom: 56px;
}
.top-service .top-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-service .top-service__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 540px;
}
.top-service .top-service__img-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.top-service .top-service__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.top-service .top-service__btn {
  max-width: 336px;
  margin-inline: 0;
  margin-left: auto;
}
.top-service .top-service__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.5;
}
.top-service .top-service__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 24px;
}
.top-service .top-service__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.top-service .top-service__tag {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-service .top-service__tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../img/top/list-diamond.svg");
  background-size: contain;
  background-repeat: no-repeat;
  translate: 0px 2px;
}
.top-service .top-service__tag--last::before {
  display: none;
}
.top-service .top-service__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-service a.top-service__logo:hover img {
  opacity: 0.7;
}
.top-service .top-service__logo-img {
  height: 50px;
  width: auto;
}
.top-service .top-service__logo-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
}
.top-service .top-service__owner {
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 56px;
}
.top-service .top-service__owner-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
}
.top-service .top-service__owner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-service .top-service__owner-images {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 500px;
}
.top-service .top-service__owner-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.top-service .top-service__owner-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-service .top-service__owner-text {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
}

.top-cta {
  background-image: url("../img/top/bg-rainbow.svg");
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  padding: 48px 0 36px;
  max-width: 1200px;
  margin-inline: auto;
}
.top-cta .top-cta__inner {
  position: relative;
  padding-top: 100px;
  background-color: var(--color-white);
  max-width: 1112px;
  margin-inline: auto;
  padding-bottom: 48px;
}
.top-cta .top-cta__header {
  text-align: center;
  border-radius: 16px 16px 0 0;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.top-cta .top-cta__header-text {
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  background-color: var(--color-text);
  color: #fff;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  padding: 12px 20px;
}
.top-cta .top-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 991px;
  margin-inline: auto;
  margin-bottom: 32px;
  padding: 0;
}
.top-cta .top-cta__tel {
  text-align: center;
}
.top-cta .top-cta__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-cta .top-cta__tel-link:hover {
  opacity: 0.7;
}
.top-cta .top-cta__tel-icon {
  width: 36px;
  height: 36px;
}
.top-cta .top-cta__tel-number {
  margin-bottom: 12px;
}
.top-cta .top-cta__tel-img {
  width: auto;
  width: 334px;
}
.top-cta .top-cta__tel-note {
  font-size: 20px;
  font-size: 2rem;
  color: var(--color-text);
}
.top-cta .top-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.top-cta .top-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: 2px solid var(--color-text);
  text-decoration: none;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 16px 28px;
  border-radius: 4px;
  width: 260px;
}
.top-cta .top-cta__btn:hover span {
  color: #fff;
}
.top-cta .top-cta__btn:nth-of-type(1):hover {
  background-color: #1A73B4;
  border-color: #1A73B4;
}
.top-cta .top-cta__btn:nth-of-type(2):hover {
  background-color: #3ACC00;
  border-color: #3ACC00;
}
.top-cta .top-cta__btn-icon-wrap {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
}
.top-cta .top-cta__btn-icon {
  width: 48px;
  height: 48px;
}
.top-cta .top-cta__btn-icon--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-cta .top-cta__btn:hover .top-cta__btn-icon--hover {
  opacity: 1;
}
.top-cta .top-cta__btn-arrow-wrap {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}
.top-cta .top-cta__btn-arrow--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-cta .top-cta__btn:hover .top-cta__btn-arrow--hover {
  opacity: 1;
}
.top-cta .top-cta__btn-text {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.2;
}
.top-cta .top-cta__btn-text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.top-cta .top-cta__btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
}
.top-cta .top-cta__banners {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 991px;
  margin-inline: auto;
}
.top-cta .top-cta__banner-wrap {
  position: relative;
}
.top-cta .top-cta__banner-shadow {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 8px;
}
.top-cta .top-cta__banner-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  height: 130px;
  padding: 16px 20px 20px 105px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-white);
  position: relative;
  border: 1px solid var(--color-text);
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.top-cta .top-cta__banner-wrap:hover .top-cta__banner-link {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}
.top-cta .top-cta__banner-link--orange {
  background-color: #ff5e32;
  border: 2px solid #d04a22;
}
.top-cta .top-cta__banner-link--green {
  background-color: #008829;
  border: 2px solid #006b1f;
}
.top-cta .top-cta__banner-illust {
  position: absolute;
  bottom: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top-cta .top-cta__banner-link--orange .top-cta__banner-illust {
  left: 17px;
}
.top-cta .top-cta__banner-link--orange .top-cta__banner-illust-img {
  width: 75px;
  height: auto;
}
.top-cta .top-cta__banner-link--green .top-cta__banner-illust {
  left: 33px;
  bottom: 21px;
}
.top-cta .top-cta__banner-link--green .top-cta__banner-illust-img {
  width: 76px;
  height: auto;
}
.top-cta .top-cta__banner-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.top-cta .top-cta__banner-lead {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.top-cta .top-cta__banner-lead strong {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
}
.top-cta .top-cta__banner-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  translate: 0px 4px;
}
.top-cta .top-cta__banner-free {
  width: 48px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-cta .top-cta__banner-keyword {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0px 8px;
  background-color: var(--color-white);
  color: var(--color-text);
  border-radius: 4px;
}
.top-cta .top-cta__banner-link--orange .top-cta__banner-keyword {
  color: #FF5E32;
}
.top-cta .top-cta__banner-link--green .top-cta__banner-keyword {
  color: #008829;
}
.top-cta .top-cta__banner-arrow {
  width: 41px;
  height: 41px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-voice {
  position: relative;
  padding: 112px 0 56px;
  background-color: var(--color-white);
  overflow: hidden;
}
.top-voice .top-voice__deco-right {
  position: absolute;
  top: 400px;
  right: -40px;
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-voice .top-voice__deco-left {
  position: absolute;
  bottom: 200px;
  left: -20px;
  width: 80px;
  height: auto;
  opacity: 0.6;
}
.top-voice .inner {
  position: relative;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  z-index: 1;
}
.top-voice .top-voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  row-gap: 32px;
}
.top-voice .top-voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-white);
  padding: 24px;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}
.top-voice .top-voice__hidden-wrap {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease, -ms-grid-rows 0.4s ease;
}
.top-voice .top-voice__hidden-wrap.is-open {
  grid-template-rows: 1fr;
}
.top-voice .top-voice__hidden-inner {
  overflow: hidden;
  margin: 0 -12px -12px;
  padding: 0 12px 12px;
}
.top-voice .top-voice__hidden-inner .top-voice__list {
  padding-top: 32px;
}
.top-voice .top-voice__img {
  width: 100%;
  height: 193px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}
.top-voice .top-voice__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-voice .top-voice__category {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 6px;
}
.top-voice .top-voice__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.top-voice .top-voice__area {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
}
.top-voice .top-voice__name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
}
.top-voice .top-voice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
.top-voice .top-voice__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
}
.top-voice .top-voice__works-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  margin-top: auto;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid var(--color-text);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  padding-bottom: 4px;
}
.top-voice .top-voice__works-link:hover {
  opacity: 0.7;
}
.top-voice .top-voice__works-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-text);
}
.top-voice .top-voice__works-icon {
  width: 32px;
  height: 32px;
}
.top-voice .top-voice__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.top-voice .top-voice__accordion-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-voice .top-voice__accordion-btn:hover {
  opacity: 0.7;
}
.top-voice .top-voice__accordion-btn[aria-expanded=true] .top-voice__accordion-text--open {
  display: none;
}
.top-voice .top-voice__accordion-btn[aria-expanded=true] .top-voice__accordion-text--close {
  display: block;
}
.top-voice .top-voice__accordion-btn[aria-expanded=true] .top-voice__accordion-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.top-voice .top-voice__accordion-text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
}
.top-voice .top-voice__accordion-text--close {
  display: none;
}
.top-voice .top-voice__accordion-icon {
  width: 32px;
  height: 32px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-voice .top-voice__accordion-line {
  width: 350px;
  height: auto;
  margin-top: -16px;
}
.top-voice .top-voice__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 46px;
  margin-top: 56px;
}
.top-voice .top-voice__more-illust {
  width: 551px;
  height: auto;
}
.top-voice .top-voice__more-content {
  text-align: center;
}
.top-voice .top-voice__more-text {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.top-case {
  position: relative;
  padding: 56px 0 112px;
  background-color: var(--color-white);
  overflow: hidden;
}
.top-case .top-case__deco-right {
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-case .inner {
  position: relative;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  z-index: 1;
}
.top-case .top-case__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.top-case .top-case__item {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-case .top-case__item:hover {
  opacity: 0.8;
}
.top-case .top-case__link {
  display: block;
  text-decoration: none;
}
.top-case .top-case__img {
  width: 100%;
  height: auto;
  aspect-ratio: 379/263;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.top-case .top-case__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.top-case .top-case__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.top-case .top-case__category {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--color-text);
  background-color: var(--color-grey);
  border: 1px solid var(--color-text);
  padding: 8px 10px;
  line-height: 1;
}
.top-case .top-case__name {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.6;
}
.top-case .top-case__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.top-case .top-case__tag {
  font-size: 12px;
  font-size: 1.2rem;
  color: #808080;
}
.top-case .top-case__btn {
  max-width: 400px;
  margin-inline: auto;
}

.top-guide {
  position: relative;
  padding-top: 56px;
  margin-top: 56px;
  overflow: hidden;
}
.top-guide .top-guide__deco-left {
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-guide .inner {
  position: relative;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  background-color: var(--color-grey);
  padding: 56px 16px;
  z-index: 1;
}
.top-guide .top-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
  row-gap: 56px;
  max-width: 1000px;
  margin-inline: auto;
}
.top-guide .c-rainbow-btn {
  color: var(--color-text);
}
.top-guide .c-rainbow-btn::before {
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
}
.top-guide .c-rainbow-btn.top-guide__card {
  padding: 20px 24px;
}
.top-guide .top-guide__card-icon {
  width: 75px;
  height: 75px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-guide .top-guide__card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.top-guide .top-guide__card-label {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 4px;
}
.top-guide .top-guide__card-title {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.2;
}
.top-guide .top-guide__card-text {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.5;
  text-align: center;
}
.top-guide .top-guide__card-text strong {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
}
.top-guide .top-guide__card-arrow {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-guide .c-rainbow-btn.top-guide__faq {
  padding: 16px 20px;
}
.top-guide .top-guide__faq-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-guide .top-guide__faq-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.top-guide .top-guide__faq-img {
  width: 100%;
  height: auto;
  max-width: 406px;
  margin-inline: auto;
}
.top-guide .top-guide__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.top-guide .top-guide__column-head {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.top-guide .top-guide__column-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.top-guide .top-guide__column-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background-color: transparent;
  text-decoration: none;
  position: relative;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.top-guide .top-guide__column-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: 5px;
  z-index: 10;
}
.top-guide .top-guide__column-item::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 4px;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, #FE904E 1.6%, #FEEBB2 48.07%, #00B7C7 101.46%);
  border-radius: 5px;
  z-index: 5;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.top-guide .top-guide__column-item:hover {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}
.top-guide .top-guide__column-item:hover::after {
  -webkit-transform: translate(-4px, -4px);
          transform: translate(-4px, -4px);
}
.top-guide .top-guide__column-icon {
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 30;
}
.top-guide .top-guide__column-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 30;
}
.top-guide .top-guide__column-text strong {
  font-weight: 900;
}
.top-guide .top-guide__column-arrow {
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 30;
}
.top-guide .top-guide__column-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 4px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-guide .top-guide__column-more:hover {
  opacity: 0.7;
}
.top-guide .top-guide__column-more-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-text);
}
.top-guide .top-guide__column-more-icon {
  width: 30px;
  height: 30px;
}
.top-guide .c-rainbow-btn.top-guide__banner-link {
  padding: 8px 24px;
}
.top-guide .top-guide__banner-inner {
  gap: 0px;
}
.top-guide .top-guide__banner-thumb {
  width: 96px;
  height: 127px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-guide .top-guide__banner-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  color: inherit;
  line-height: 1.6;
}
.top-guide .top-guide__banner-text strong {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
}
.top-guide .top-guide__banner-arrow {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-company {
  position: relative;
  padding: 56px 0;
  background-color: var(--color-white);
  overflow: hidden;
}
.top-company .top-company__deco-right {
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 156px;
  height: auto;
  opacity: 0.6;
}
.top-company .inner {
  position: relative;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  z-index: 1;
}
.top-company .top-company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}
.top-company .top-company__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-company .top-company__section-title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 16px;
}
.top-company .top-company__logo-img {
  width: 350px;
  height: auto;
}
.top-company .top-company__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-company .top-company__text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 20px;
}
.top-company .top-company__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.top-company .top-company__area-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a1a1a;
}
.top-company .top-company__area-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-company .top-company__area-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a1a1a;
}
.top-company .top-company__area-icon {
  width: 12px;
  height: 10px;
}
.top-company .top-company__note {
  font-size: 16px;
  font-size: 1.6rem;
  color: #1a1a1a;
}
.top-company .top-company__btn {
  max-width: 336px;
  margin-left: auto;
}

.top-staff-news {
  margin-bottom: 128px;
}
.top-staff-news .inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.top-staff {
  margin-bottom: 56px;
}
.top-staff .top-staff__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 24px;
}
.top-staff .top-staff__banner {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-staff .top-staff__banner:hover {
  opacity: 0.7;
}
.top-staff .top-staff__banner-img {
  width: 100%;
  height: auto;
}
.top-staff .top-staff__banner-img--pc {
  display: block;
}
.top-staff .top-staff__banner-img--sp {
  display: none;
}

.top-news .top-news__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.4;
}
.top-news .top-news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.top-news .top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-news .top-news__link:hover {
  opacity: 0.7;
}
.top-news .top-news__img-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  height: 123px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f0f0f0;
}
.top-news .top-news__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news .top-news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-news .top-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.top-news .top-news__date {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-text);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news .top-news__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  line-height: 1.2;
}
.top-news .top-news__category {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 8px 10px;
  line-height: 1;
  background-color: var(--color-grey);
  border: 1px solid var(--color-text);
  margin-right: 10px;
}
.top-news .top-news__name {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 1em;
}
.top-news .top-news__btn {
  max-width: 400px;
  margin-inline: auto;
}

.top-footer-cta {
  padding: 20px 0;
  background-image: url("../img/top/bg-rainbow.svg");
  background-size: 120%;
  background-position: center;
}
.top-footer-cta .inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
}
.top-footer-cta .top-footer-cta__grid {
  display: grid;
  grid-template-columns: 555px 305px 305px;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-footer-cta .top-footer-cta__card {
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 24px;
  text-align: center;
}
.top-footer-cta .top-footer-cta__card--contact {
  padding: 24px 32px;
}
.top-footer-cta .top-footer-cta__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.top-footer-cta .top-footer-cta__badge-img {
  width: 49px;
  height: auto;
}
.top-footer-cta .top-footer-cta__card-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 2px;
}
.top-footer-cta .top-footer-cta__card-desc {
  font-size: 16px;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 16px;
}
.top-footer-cta .top-footer-cta__tel {
  margin-bottom: 8px;
}
.top-footer-cta .top-footer-cta__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.top-footer-cta .top-footer-cta__tel-icon {
  width: 35px;
  height: auto;
}
.top-footer-cta .top-footer-cta__tel-number {
  height: 50px;
  width: auto;
}
.top-footer-cta .top-footer-cta__tel-note {
  font-size: 20px;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
.top-footer-cta .top-footer-cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.top-footer-cta .top-footer-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: 4px;
  text-decoration: none;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-footer-cta .top-footer-cta__btn:hover .top-footer-cta__btn-text {
  color: #fff;
}
.top-footer-cta .top-footer-cta__btn--mail:hover {
  background-color: #1A73B4;
  border-color: #1A73B4;
}
.top-footer-cta .top-footer-cta__btn--line:hover {
  background-color: #3ACC00;
  border-color: #3ACC00;
}
.top-footer-cta .top-footer-cta__btn-icon-wrap {
  position: relative;
  display: inline-block;
  width: 39px;
  height: 39px;
  overflow: hidden;
}
.top-footer-cta .top-footer-cta__btn-icon {
  width: 39px;
  height: auto;
  display: block;
}
.top-footer-cta .top-footer-cta__btn-icon--hover {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-footer-cta .top-footer-cta__btn:hover .top-footer-cta__btn-icon--hover {
  opacity: 1;
}
.top-footer-cta .top-footer-cta__btn-arrow-wrap {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 18px;
  overflow: hidden;
}
.top-footer-cta .top-footer-cta__btn-arrow {
  width: 14px;
  height: auto;
  display: block;
}
.top-footer-cta .top-footer-cta__btn-arrow--hover {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-footer-cta .top-footer-cta__btn:hover .top-footer-cta__btn-arrow--hover {
  opacity: 1;
}
.top-footer-cta .top-footer-cta__btn-text {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.2;
  text-align: center;
}
.top-footer-cta .top-footer-cta__card-note {
  font-size: 16px;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.4;
}
.top-footer-cta .top-footer-cta__card-img-wrapper {
  margin-bottom: 16px;
}
.top-footer-cta .top-footer-cta__card-img {
  width: 100%;
  height: auto;
  max-width: 256px;
  border-radius: 5px;
}
.top-footer-cta .top-footer-cta__card-desc-small {
  font-size: 16px;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 16px;
}
.top-footer-cta .top-footer-cta__action-wrap {
  position: relative;
  width: 100%;
}
.top-footer-cta .top-footer-cta__action-shadow {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.top-footer-cta .top-footer-cta__action-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--color-text);
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.top-footer-cta .top-footer-cta__action-wrap:hover .top-footer-cta__action-btn {
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}
.top-footer-cta .top-footer-cta__action-btn--orange {
  background-color: #ff5e32;
}
.top-footer-cta .top-footer-cta__action-btn--green {
  background-color: #008829;
}
.top-footer-cta .top-footer-cta__action-arrow {
  width: 24px;
  height: auto;
}

.top-footer-recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  padding: 24px 0;
  background-color: var(--color-grey);
}
.top-footer-recruit .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
}
.top-footer-recruit .top-footer-recruit__head-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.top-footer-recruit .top-footer-recruit__title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
}
.top-footer-recruit .top-footer-recruit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.top-footer-recruit .top-footer-recruit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 28%;
}
.top-footer-recruit .top-footer-recruit__icon {
  width: 100%;
}
.top-footer-recruit .top-footer-recruit__text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
}
.top-footer-recruit .top-footer-recruit__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 212px;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .top-fv {
    min-height: 488px;
    padding: 120px 0 19px;
  }
  .top-fv__bg--left {
    left: -137px;
    top: 37px;
    width: 498px;
  }
  .top-fv__bg--right {
    right: -52px;
    top: -51px;
    width: 443px;
  }
  .top-fv__inner {
    min-height: 312px;
    width: 750px;
    padding: 0 10px;
  }
  .top-fv__hexagon--1 {
    left: -148px;
    top: -24px;
  }
  .top-fv__hexagon--2 {
    left: -108px;
    bottom: -55px;
  }
  .top-fv__hexagon--3 {
    right: -198px;
    top: 43px;
  }
  .top-fv__hexagon--1 .top-fv__hexagon-img {
    width: 240px;
  }
  .top-fv__hexagon--2 .top-fv__hexagon-img {
    width: 244px;
  }
  .top-fv__hexagon--3 .top-fv__hexagon-img {
    width: 325px;
  }
  .top-fv__center {
    padding: 0 10px;
  }
  .top-fv__copy {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .top-fv__copy-line {
    bottom: -3px;
  }
  .top-fv__catch {
    font-size: 29px;
    margin-bottom: 25px;
  }
  .top-fv__result-wrap {
    gap: 12px;
    margin-bottom: 5px;
  }
  .top-fv__result-dec {
    width: 30px;
  }
  .top-fv__result {
    gap: 6px;
    margin-bottom: 5px;
  }
  .top-fv__result-text {
    font-size: 12px;
  }
  .top-fv__count-num {
    font-size: 33px;
  }
  .top-fv__count-unit {
    font-size: 15px;
    margin-left: 1px;
  }
  .top-fv__count-text {
    font-size: 15px;
    margin-left: 3px;
  }
  .top-fv__service-list {
    gap: 8px;
    padding-bottom: 10px;
  }
  .top-fv__service-item {
    font-size: 9px;
    padding: 3px 5px;
  }
  .top-fv__services {
    gap: 5px;
  }
  .top-fv__services--left {
    margin-right: 5px;
  }
  .top-fv__services--right {
    margin-left: 5px;
  }
  .top-fv__service-btn {
    font-size: 9px;
    padding: 5px 10px;
  }
  .top-fv__google {
    gap: 5px;
  }
  .top-fv__google-label {
    font-size: 9px;
  }
  .top-fv__google-score {
    font-size: 12px;
  }
  .top-fv__google-stars {
    font-size: 10px;
  }
  .top-fv__google-count {
    font-size: 9px;
  }
}
@media screen and (max-width: 767px) {
  .top-fv {
    display: none;
  }
  .top-fv__bg--left {
    width: 180px;
    top: -30px;
    left: -40px;
  }
  .top-fv__bg--right {
    width: 160px;
    top: -20px;
    right: -30px;
  }
  .top-fv__inner {
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .top-fv__hexagon {
    position: relative;
    -webkit-transform: none;
            transform: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .top-fv__hexagon--1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .top-fv__hexagon--2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .top-fv__hexagon--3 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .top-fv__hexagon--1 .top-fv__hexagon-img,
  .top-fv__hexagon--2 .top-fv__hexagon-img,
  .top-fv__hexagon--3 .top-fv__hexagon-img {
    width: 260px;
    max-width: 100%;
  }
  .top-fv__hexagon .top-fv__hexagon-img--b {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .top-fv__center {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 16px 0;
    max-width: 100%;
  }
  .top-fv__copy {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .top-fv__copy-line {
    bottom: -2px;
    width: 90%;
  }
  .top-fv__catch {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .top-fv__result {
    margin-bottom: 16px;
  }
  .top-fv__result-text {
    font-size: 14px;
  }
  .top-fv__count-num {
    font-size: 36px;
  }
  .top-fv__count-unit {
    font-size: 18px;
  }
  .top-fv__count-text {
    font-size: 18px;
  }
  .top-fv__service-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .top-fv__service-item {
    font-size: 12px;
    padding: 6px 12px;
  }
  .top-fv__service-item + .top-fv__service-item {
    border-left: 1px solid var(--color-text);
  }
  .top-fv__result-wrap {
    gap: 0;
  }
  .top-fv__result {
    padding: 0;
    margin-bottom: 12px;
  }
  .top-fv__services--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
  }
  .top-fv__service-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  .top-fv__google {
    gap: 6px;
  }
  .top-fv__google-label {
    font-size: 12px;
  }
  .top-fv__google-score {
    font-size: 16px;
  }
  .top-fv__google-stars {
    font-size: 14px;
  }
  .top-fv__google-count {
    font-size: 12px;
  }
  .top-reason {
    padding: 60px 0;
  }
  .top-reason .inner {
    padding: 0 16px;
  }
  .top-reason .top-reason__lead {
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 26px;
    padding: 0;
  }
  .top-reason .top-reason__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .top-reason .top-reason__card-img {
    width: 100%;
    height: auto;
  }
  .top-reason .top-reason__card-img--pc {
    display: none;
  }
  .top-reason .top-reason__card-img--sp {
    display: block;
  }
  .top-reason .top-reason__catch {
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.5;
    gap: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 14px;
  }
  .top-reason .top-reason__pentagon {
    margin-bottom: 30px;
  }
  .top-reason .top-reason__pentagon-left,
  .top-reason .top-reason__pentagon-right {
    display: none;
  }
  .top-reason .top-reason__deco-left {
    display: none;
  }
  .top-reason .top-reason__deco-right {
    display: none;
  }
  .top-reason .top-reason__btn {
    max-width: 89%;
  }
  .top-service {
    padding: 0 16px 0;
  }
  .top-service .top-service__deco-left,
  .top-service .top-service__deco-right {
    display: none;
  }
  .top-service .top-service__list {
    gap: 30px;
    margin-bottom: 40px;
  }
  .top-service .top-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .top-service .top-service__img {
    width: 100%;
  }
  .top-service .top-service__title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .top-service .top-service__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .top-service .top-service__tags {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 4px;
    margin-bottom: 16px;
  }
  .top-service .br-sp {
    width: 100%;
  }
  .top-service .top-service__tag {
    font-size: 16px;
  }
  .top-service .top-service__logo {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
  }
  .top-service .top-service__logo-img {
    height: 46px;
  }
  .top-service .top-service__logo-text {
    font-size: 14px;
  }
  .top-service .top-service__owner {
    padding: 20px 12px;
    margin-bottom: 60px;
  }
  .top-service .top-service__owner-catch {
    font-size: 20px;
    margin-bottom: 10px;
    gap: 8px;
    line-height: 1.5;
  }
  .top-service .top-service__owner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .top-service .top-service__owner-images {
    width: 100%;
  }
  .top-service .top-service__owner-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .top-service .top-service__btn {
    max-width: 95%;
    margin-inline: auto;
  }
  .top-cta {
    padding: 32px 12px 24px;
    background-size: 300%;
    margin: 0 16px;
  }
  .top-cta .top-cta__inner {
    padding-top: 40px;
    padding-bottom: 24px;
    border-radius: 4px;
  }
  .top-cta .top-cta__header {
    padding: 0;
    top: -16px;
  }
  .top-cta .top-cta__header-text {
    font-size: 3.5vw;
    padding: 8px 12px;
  }
  .top-cta .top-cta__body {
    padding: 16px 4px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .top-cta .top-cta__tel {
    margin-bottom: 20px;
    margin-inline: auto;
  }
  .top-cta .top-cta__tel-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top-cta .top-cta__tel-icon {
    width: 32px;
    height: 32px;
  }
  .top-cta .top-cta__tel-number {
    margin-bottom: 4px;
  }
  .top-cta .top-cta__tel-img {
    width: auto;
    height: 36px;
  }
  .top-cta .top-cta__tel-note {
    font-size: 14px;
  }
  .top-cta .top-cta__buttons {
    width: 100%;
    gap: 4px;
  }
  .top-cta .top-cta__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6px 1%;
    border-radius: 6px;
    gap: 8px;
  }
  .top-cta .top-cta__btn-icon-wrap {
    padding: inherit;
    width: auto;
    height: auto;
  }
  .top-cta .top-cta__btn-icon {
    width: 34px;
    height: 34px;
  }
  .top-cta .top-cta__btn-text {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 14px;
    text-align: center;
  }
  .top-cta .top-cta__btn-text-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .top-cta .top-cta__banners {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 4px;
  }
  .top-cta .top-cta__banner-wrap {
    overflow: visible;
  }
  .top-cta .top-cta__banner-link {
    height: auto;
    min-height: 80px;
    padding: 12px 36px 12px 60px;
    gap: 8px;
  }
  .top-cta .top-cta__banner-link--orange .top-cta__banner-illust {
    left: 10px;
  }
  .top-cta .top-cta__banner-link--orange .top-cta__banner-illust-img {
    width: 44px;
  }
  .top-cta .top-cta__banner-link--green .top-cta__banner-illust {
    left: 16px;
    bottom: 13px;
  }
  .top-cta .top-cta__banner-link--green .top-cta__banner-illust-img {
    width: 44px;
  }
  .top-cta .top-cta__banner-lead {
    font-size: 13px;
    line-height: 1.3;
  }
  .top-cta .top-cta__banner-lead strong {
    font-size: 3.5vw;
  }
  .top-cta .top-cta__banner-body {
    gap: 8px;
  }
  .top-cta .top-cta__banner-detail {
    font-size: 12px;
    gap: 4px;
  }
  .top-cta .top-cta__banner-free {
    width: 34px;
  }
  .top-cta .top-cta__banner-keyword {
    font-size: 4vw;
    padding: 1px 6px;
  }
  .top-cta .top-cta__banner-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 23px;
    height: 23px;
  }
  .top-voice {
    padding-top: 60px;
  }
  .top-voice .top-voice__deco-right,
  .top-voice .top-voice__deco-left {
    display: none;
  }
  .top-voice .top-voice__list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  .top-voice .top-voice__hidden-inner .top-voice__list {
    padding-top: 20px;
  }
  .top-voice .top-voice__item {
    padding: 14px;
  }
  .top-voice .top-voice__img {
    height: 128px;
    margin-bottom: 16px;
  }
  .top-voice .top-voice__category {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .top-voice .top-voice__meta {
    gap: 12px;
    margin-bottom: 8px;
  }
  .top-voice .top-voice__area {
    font-size: 14px;
  }
  .top-voice .top-voice__name {
    font-size: 14px;
  }
  .top-voice .top-voice__text {
    font-size: 16px;
    line-height: 1.5;
  }
  .top-voice .top-voice__works-text {
    font-size: 16px;
  }
  .top-voice .top-voice__works-icon {
    width: 32px;
    height: 32px;
  }
  .top-voice .top-voice__accordion {
    margin-top: 24px;
  }
  .top-voice .top-voice__accordion-btn {
    gap: 16px;
  }
  .top-voice .top-voice__accordion-text {
    font-size: 16px;
  }
  .top-voice .top-voice__accordion-icon {
    width: 28px;
    height: 28px;
  }
  .top-voice .top-voice__accordion-line {
    width: 280px;
    margin-top: -12px;
  }
  .top-voice .top-voice__more {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
  }
  .top-voice .top-voice__more-illust {
    width: 100%;
    max-width: 320px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .top-voice .top-voice__more-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-voice .top-voice__more-text {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .top-case {
    padding: 0 0 60px;
  }
  .top-case .top-case__deco-right {
    display: none;
  }
  .top-case .top-case__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .top-case .top-case__img {
    margin-bottom: 12px;
  }
  .top-case .top-case__body {
    gap: 12px;
  }
  .top-case .top-case__categories {
    gap: 12px;
  }
  .top-case .top-case__category {
    font-size: 12px;
    padding: 8px;
  }
  .top-case .top-case__name {
    font-size: 18px;
  }
  .top-case .top-case__tags {
    gap: 16px;
  }
  .top-case .top-case__btn {
    max-width: 89%;
  }
  .top-guide {
    padding: 0 0 60px;
  }
  .top-guide .top-guide__deco-left {
    display: none;
  }
  .top-guide .top-guide__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top-guide .c-rainbow-btn.top-guide__card {
    padding: 16px;
  }
  .top-guide .c-rainbow-btn .c-rainbow-btn__text {
    gap: 12px;
  }
  .top-guide .top-guide__card-icon {
    width: 50px;
    height: 50px;
  }
  .top-guide .top-guide__card-label {
    font-size: 16px;
  }
  .top-guide .top-guide__card-title {
    font-size: 24px;
  }
  .top-guide .top-guide__card-text {
    font-size: 16px;
    text-align: left;
  }
  .top-guide .top-guide__card-text strong {
    font-size: 16px;
  }
  .top-guide .top-guide__card-arrow {
    width: 24px;
    height: 24px;
  }
  .top-guide .c-rainbow-btn.top-guide__faq {
    padding: 16px;
  }
  .top-guide .top-guide__faq-head {
    gap: 0px;
  }
  .top-guide .top-guide__column {
    gap: 12px;
  }
  .top-guide .top-guide__column-head {
    gap: 12px;
    padding: 0;
  }
  .top-guide .top-guide__column-list {
    gap: 20px;
  }
  .top-guide .top-guide__column-item {
    padding: 12px 16px;
    gap: 8px;
  }
  .top-guide .top-guide__column-icon {
    width: 28px;
    height: 28px;
  }
  .top-guide .top-guide__column-text {
    font-size: 14px;
    text-align: center;
  }
  .top-guide .top-guide__column-text strong {
    font-size: 16px;
  }
  .top-guide .top-guide__column-arrow {
    width: 12px;
    height: 12px;
  }
  .top-guide .top-guide__column-more-text {
    font-size: 14px;
  }
  .top-guide .top-guide__column-more-icon {
    width: 26px;
    height: 26px;
  }
  .top-guide .top-guide__faq-img {
    margin-top: 12px;
  }
  .top-guide .c-rainbow-btn.top-guide__banner-link {
    padding: 12px 16px;
  }
  .top-guide .top-guide__banner-inner {
    gap: 12px;
  }
  .top-guide .top-guide__banner-thumb {
    width: 76px;
    height: 102px;
  }
  .top-guide .top-guide__banner-text {
    font-size: 16px;
  }
  .top-guide .top-guide__banner-text strong {
    font-size: 22px;
  }
  .top-guide .top-guide__banner-arrow {
    width: 24px;
    height: 24px;
  }
  .top-company {
    padding: 0 0 60px;
  }
  .top-company .top-company__deco-right {
    display: none;
  }
  .top-company .top-company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    padding: 0 16px;
  }
  .top-company .top-company__logo {
    width: 100%;
  }
  .top-company .top-company__section-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .top-company .top-company__logo-img {
    width: 100%;
    max-width: 90%;
    margin-inline: auto;
  }
  .top-company .top-company__text {
    font-size: 16px;
  }
  .top-company .top-company__area {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
  .top-company .top-company__area-title {
    font-size: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .top-company .top-company__area-list {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 4px;
  }
  .top-company .top-company__area-item {
    font-size: 16px;
  }
  .top-company .top-company__note {
    font-size: 16px;
  }
  .top-company .top-company__btn {
    margin-right: auto;
    max-width: 89%;
  }
  .top-staff-news {
    margin-bottom: 0;
    padding: 0 16px 60px;
  }
  .top-staff {
    margin-bottom: 60px;
  }
  .top-staff .top-staff__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .top-staff .top-staff__banner-img--pc {
    display: none;
  }
  .top-staff .top-staff__banner-img--sp {
    display: block;
  }
  .top-news .top-news__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .top-news .top-news__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .top-news .top-news__link {
    gap: 12px;
  }
  .top-news .top-news__img-wrapper {
    width: 100px;
    height: 100px;
  }
  .top-news .top-news__meta {
    gap: 8px;
    margin-bottom: 0;
  }
  .top-news .top-news__date {
    font-size: 12px;
  }
  .top-news .top-news__category {
    font-size: 12px;
    padding: 8px 8px;
  }
  .top-news .top-news__name {
    margin-top: 10px;
  }
  .top-footer-cta {
    padding: 20px 16px;
    background-size: 570%;
  }
  .top-footer-cta .top-footer-cta__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .top-footer-cta .top-footer-cta__card {
    padding: 20px 16px;
  }
  .top-footer-cta .top-footer-cta__card--contact {
    padding: 24px 12px;
  }
  .top-footer-cta .top-footer-cta__card-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    margin-bottom: 12px;
  }
  .top-footer-cta .top-footer-cta__badge-img {
    width: 40px;
  }
  .top-footer-cta .top-footer-cta__card-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .top-footer-cta .top-footer-cta__card-img-wrapper {
    margin-bottom: 12px;
  }
  .top-footer-cta .top-footer-cta__card-img {
    max-width: 100%;
  }
  .top-footer-cta .top-footer-cta__card-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .top-footer-cta .top-footer-cta__tel-number {
    height: 40px;
  }
  .top-footer-cta .top-footer-cta__tel-note {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .top-footer-cta .top-footer-cta__btns {
    gap: 16px;
  }
  .top-footer-cta .top-footer-cta__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px;
    gap: 6px;
  }
  .top-footer-cta .top-footer-cta__btn-text {
    font-size: 14px;
  }
  .top-footer-cta .top-footer-cta__card-note {
    font-size: 16px;
  }
  .top-footer-cta .top-footer-cta__card-desc-small {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .top-footer-cta .top-footer-cta__action-btn {
    font-size: 18px;
    padding: 10px 20px;
  }
  .top-footer-recruit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 40px 16px;
  }
  .top-footer-recruit .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .top-footer-recruit .top-footer-recruit__head-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 12px;
  }
  .top-footer-recruit .top-footer-recruit__title {
    font-size: 18px;
    text-align: center;
  }
  .top-footer-recruit .top-footer-recruit__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
  .top-footer-recruit .top-footer-recruit__text {
    font-size: 14px;
  }
  .top-footer-recruit__btn {
    width: 70%;
  }
}
.u-oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.u-max-w-420 {
  max-width: 420px !important;
}

.u-max-w-400 {
  max-width: 400px !important;
}

.u-margin-inline-auto {
  margin-inline: auto !important;
}

.u-contents {
  width: var(--u-content-width);
  margin: 0 auto;
  padding: 112px 0 120px;
}
.u-contents > :first-child {
  margin-top: 0 !important;
}
.u-contents > :last-child {
  margin-bottom: 0 !important;
}

.post-type-archive-voices .u-contents {
  padding: 56px 0 120px;
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  .u-contents {
    padding: 90px 0 80px;
  }
}