@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-base: "Zen Kaku Gothic Antique", sans-serif;
  --font-en: "Volkhov", serif;
  --font-num: "Zen Antique Soft", serif;
  --font-yusei: "Yusei Magic", sans-serif;
  --base-font-size: 18px;
  --color-black: #333;
  --color-white: #fff;
  --color-text: #304266;
  --color-gray: #eaedf2;
  --color-gray2: #fafafa;
  --color-gray3: #f4f6f8;
  --color-blue: #5079b5;
  --color-yellow: #ffe043;
  --color-orange: #f2635f;
  --color-blue-light: #dfe6f2;
  --color-pink: #d91e68;
  --gradient-blue: linear-gradient(
    to right,
    var(--color-blue),
    var(--color-text)
  );
  --gradient-blue-2: linear-gradient(
    to left,
    var(--color-blue),
    var(--color-text)
  );
  --gradient-pink: linear-gradient(to right, #f2635f, #d91e68);
  --gradient-pink-2: linear-gradient(to left, #f2635f, #d91e68);
  --gradient-yellow: linear-gradient(90deg, #f2635f 39.34%, #ffe043 68.65%);
  --gradient-yellow-btn: linear-gradient(
    179deg,
    #ffe043 -43.5%,
    #f2635f 202.04%
  );
  --gradient-yellow-btn-lg: linear-gradient(
    0deg,
    #f2635f -98.39%,
    #ffe043 139.78%
  );
  --gradient-yellow2: linear-gradient(177deg, #ffe043 7.13%, #f2635f 127.96%);
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html.scroll {
  overflow: hidden;
}

body {
  position: relative;
  font-family: var(--font-base);
  font-size: var(--base-font-size);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (max-width: 1366px) {
  body {
    font-size: max(12px, 1.1713030747vw);
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: max(12px, 2.0833333333vw);
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: max(12px, 4.2666666667vw);
  }
}

* {
  min-inline-size: 0;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

button {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
}

@media screen and (min-width: 501px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hide-tab {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .hide-sp {
    display: none !important;
  }
}
.js-animation {
  opacity: 0;
  transform: translateY(0.625rem);
}

.footer {
  padding: 7.5rem;
  color: var(--color-white);
  background: url(../images/home/footerbg_pc.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3.5rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding: 2.5rem 1.5rem 4.375rem;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 70.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 42rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__inner {
    display: block;
    width: 100%;
    max-width: 20.25rem;
  }
}

.footer__left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 500px) {
  .footer__left {
    display: none;
  }
}

.footer__logo {
  display: block;
  width: 21.25rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 14.375rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__logo {
    width: 11.875rem;
    margin-inline: auto;
  }
}

.footer__logo-text {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: max(13px, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__logo-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__logo-text {
    display: none;
  }
}

.bc-footer-logo {
  width: 83px;
  height: 120px;
}
@media screen and (max-width: 500px) {
  .bc-footer-logo {
    width: 56px !important;
    height: 80px !important;
    text-align: center;
    margin-top: 1rem;
  }
}

.footer__right {
  display: flex;
  align-items: flex-start;
  gap: 0 5.5rem;
}
@media screen and (max-width: 768px) {
  .footer__right {
    flex-direction: column;
  }
}

.footer__nav li {
  margin-top: 1.75rem;
}
@media screen and (max-width: 500px) {
  .footer__nav li {
    margin-top: 1rem;
  }
}

.footer__nav > li > a,
.footer__nav > li > .footer__navLabel {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__nav > li > a,
  .footer__nav > li > .footer__navLabel {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__nav > li > a,
  .footer__nav > li > .footer__navLabel {
    font-size: 16px;
    font-weight: 700;
  }
}

.footer__subNav li:not(:first-of-type) {
  margin-top: 1rem;
}

.footer__subNav > li > a {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer__subNav > li > a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__subNav > li > a {
    font-size: 14px;
  }
}

.footer__childNav a {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer__childNav a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__childNav a {
    font-size: 14px;
  }
}

.footer__nav > li > a.current {
  font-weight: 900;
}

.footer__subNav > li > a::before {
  content: "-";
  margin-inline: 0.5rem;
}

.footer__childNav {
  padding-left: 1.75rem;
}

.footer__childNav li:not(:first-of-type) {
  margin-top: 1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 70.375rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    max-width: 42rem;
    margin-top: 4rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__bottom {
    display: block;
    width: 100%;
    max-width: 20.25rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
}

.footer__address {
  font-size: max(10px, 0.875rem);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__address {
    flex-shrink: 0;
    width: 100%;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__address {
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--color-white);
  }
}

@media screen and (max-width: 768px) {
  .footer__links {
    flex-shrink: 0;
    width: 100%;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 500px) {
  .footer__links {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    margin-top: 2.5rem;
    align-items: center;
  }
}

.footter__copy {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 500px) {
  .footter__copy {
    order: 2;
  }
}

.footter__copy small {
  display: block;
  font-size: max(10px, 0.875rem);
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footter__copy small {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .footter__copy small {
    font-size: 0.75rem;
    text-align: center;
  }
}

.footter__bottomNav {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .footter__bottomNav {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 500px) {
  .footter__bottomNav {
    justify-content: center;
    order: 1;
    margin-top: 1rem;
  }
}

.footter__bottomNav li {
  position: relative;
}

.footter__bottomNav li + li {
  margin-left: 1rem;
}

.footter__bottomNav li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5rem;
  display: block;
  width: 0.03125rem;
  height: 0.75rem;
  background-color: var(--color-white);
  transform: translateY(-30%);
}

.footter__bottomNav a {
  font-size: max(10px, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footter__bottomNav a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .footter__bottomNav a {
    font-size: 0.75rem;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-bg {
  background: var(--color-text);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem 0.625rem;
  padding: 0.9375rem 2.8125rem 0.9375rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    gap: 0;
    padding: 1.0625rem 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .header__inner {
    justify-content: flex-end;
    padding: 0.5rem 1.125rem;
  }
}

.header__logo {
  width: 14.6875rem;
  transform: translateY(-0.625rem);
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 11.75rem;
  }
}
@media screen and (max-width: 500px) {
  .header__logo {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-60%);
    width: 7.75rem;
    margin-inline: auto;
  }
}

.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.header__nav a,
.header__nav .header__navLabel {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray2);
}
@media (max-width: 1430px) {
  .header__nav a,
  .header__nav .header__navLabel {
    font-size: 1rem;
  }
}

.header__nav a.current,
.header__nav .header__navLabel.current {
  font-weight: 900;
}

.header__btnWrap {
  padding: 0.125rem;
  border-radius: 0.25rem;
}

.header__btnWrap.download {
  margin-left: 0.5rem;
}

.header__nav .header__btn.download {
  position: relative;
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ffe043 0%, #f2635f 170.45%);
  border-radius: 0.25rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav .header__btn.download {
    font-size: 1.125rem;
  }
}

.header__nav .header__btn.download::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #ffe043 0%, #f2635f 170.45%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__nav .header__btn.download:hover {
  background: transparent;
  color: #ffe043;
}

.header__nav .header__btn.download:hover::before {
  opacity: 1;
}

.header__nav .header__btn.contact {
  position: relative;
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(357deg, #f2635f 14.12%, #ffe043 210.68%);
  border-radius: 0.25rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav .header__btn.contact {
    font-size: 1.125rem;
  }
}

.header__nav .header__btn.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(357deg, #f2635f 14.12%, #ffe043 210.68%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__nav .header__btn.contact:hover {
  background: transparent;
  color: #ffe043;
}

.header__nav .header__btn.contact:hover::before {
  opacity: 1;
}

.header__nav .header__btn.contact:hover {
  color: var(--color-orange);
}

@media (any-hover: hover) {
  .header__btnWrap.download:hover .header__btn,
  .header__btnWrap.contact:hover .header__btn {
    background-color: transparent;
    opacity: 1;
  }
  .header__btnWrap.download:hover .header__btn span,
  .header__btnWrap.contact:hover .header__btn span {
    background: none;
    -webkit-text-fill-color: currentcolor;
  }
}
.header__hasSub {
  position: relative;
}

.header__hasSub::before {
  content: "";
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 0.125rem;
  background: var(--gradient-blue-2);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s ease-in-out;
}

.header__hasSub.active::before {
  transform: scale(1, 1);
}

.header__hasSub img {
  width: 1.25rem;
  aspect-ratio: 1/1;
  margin-top: -0.1875rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease-in-out;
}

.header__hasSub.active img {
  transform: rotate(180deg);
}

.header__subNav {
  position: absolute;
  top: 2.1875rem;
  left: -1rem;
  width: 16.25rem;
  min-width: 190px;
  padding: 1rem;
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.header.scrolled {
  background: var(--color-text);
}

ul.header__subNav li a {
  color: var(--color-text);
}

.header__subNav.active {
  opacity: 1;
  pointer-events: auto;
}

.header__subNav li + li {
  margin-top: 0.75rem;
}

.header__subNav a {
  font-size: max(12px, 1rem);
}
.header__subNavGroup > a {
  font-weight: 700;
}
.header__childNav {
  margin-top: 0.5rem;
  padding-left: 0.75rem;
}
.header__childNav li + li {
  margin-top: 0.375rem;
}
.header__childNav a {
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .header__pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header__right {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
}

@media screen and (max-width: 500px) {
  .header__right nav:first-of-type {
    display: none;
  }
}

.hamburger__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 769px) {
  .hamburger__button {
    display: none;
  }
}

.hamburger__line {
  position: relative;
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  border-radius: 100vmax;
  background-color: var(--color-gray2);
}
@media screen and (max-width: 500px) {
  .hamburger__line {
    width: 1.5rem;
  }
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  border-radius: 100vmax;
  background-color: var(--color-gray2);
}
@media screen and (max-width: 500px) {
  .hamburger__line::before,
  .hamburger__line::after {
    width: 1.5rem;
  }
}

.hamburger__line::before {
  top: -0.5rem;
}

.hamburger__line::after {
  bottom: -0.5rem;
}

.hamburger__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 3.125rem 4rem 4rem;
  background-color: var(--color-gray2);
  z-index: 10000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 500px) {
  .hamburger__nav {
    padding: 3.125rem 1.5rem 4.0625rem;
  }
}

.hamburger__nav.active {
  opacity: 1;
  pointer-events: auto;
}

.hamburger__logo {
  display: block;
  width: 14.0625rem;
}
@media screen and (max-width: 500px) {
  .hamburger__logo {
    width: 9.375rem;
  }
}

.hamburger__logo img {
  width: 100%;
  padding-left: 0.625rem;
}

.hamburger__list {
  width: 100%;
  margin-top: 3.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 500px) {
  .hamburger__list {
    max-width: 20.375rem;
    margin-top: 3.125rem;
  }
}

.hamburger__list > li + li {
  margin-top: 2.5rem;
}
@media screen and (max-width: 500px) {
  .hamburger__list > li + li {
    margin-top: 1.5rem;
  }
}

.hamburger__list a,
.hamburger__list .hamburger__navLabel {
  position: relative;
  display: block;
  padding: 0.5rem;
  font-size: max(20px, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 500px) {
  .hamburger__list a,
  .hamburger__list .hamburger__navLabel {
    font-size: 1rem;
  }
}

.hamburger__list a.current,
.hamburger__list .hamburger__navLabel.current {
  font-weight: 700;
}

.hamburger__list a::before,
.hamburger__list .hamburger__navLabel::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0.75px;
  background: var(--color-text);
}

.hamburger__list-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.5rem;
  width: 1.5rem;
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}

.hamburger__list-service.open .hamburger__list-arrow {
  transform: rotate(0);
}

.hamburger__list-service {
  position: relative;
}

.hamburger__list-service a {
  width: fit-content;
}

.hamburger__list .hamburger__list-service a::before,
.hamburger__list .hamburger__list-service .hamburger__navLabel::before {
  width: 40rem;
}
@media screen and (max-width: 500px) {
  .hamburger__list .hamburger__list-service a::before,
  .hamburger__list .hamburger__list-service .hamburger__navLabel::before {
    width: 20.375rem;
  }
}

.hamburger__subList {
  display: none;
  margin-top: 1.25rem;
}

.hamburger__subList li {
  margin-top: 0.625rem;
}
@media screen and (max-width: 500px) {
  .hamburger__subList li {
    margin-top: 0.3125rem;
  }
}

.hamburger__subList a {
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .hamburger__subList a {
    font-size: 0.875rem;
  }
}

.hamburger__subList a::before {
  display: none;
}
.hamburger__subGroup > a {
  font-weight: 700;
}
.hamburger__childList {
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.hamburger__childList li {
  margin-top: 0.375rem;
}
.hamburger__childList a {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .hamburger__childList a {
    font-size: 0.8125rem;
  }
}

.hamburger__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .hamburger__box {
    visibility: hidden;
  }
}
@media screen and (max-width: 500px) {
  .hamburger__box {
    flex-direction: column-reverse;
    gap: 1rem;
    margin-top: 3.5rem;
    visibility: visible;
  }
}

.hamburger__box {
  max-width: 20.375rem;
  margin-inline: auto;
}

.hamburger__btnWrap.download {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.5rem 2.5rem;
  background: linear-gradient(180deg, #ffe043 0%, #f2635f 170.45%);
  border-radius: 0.25rem;
  transition: color 0.3s ease;
}

.hamburger__btnWrap.download::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg, #ffe043 0%, #f2635f 170.45%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hamburger__btn.download {
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: color 0.3s ease;
}

.hamburger__btnWrap.contact {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.5rem 2.5rem;
  background: linear-gradient(357deg, #f2635f 14.12%, #ffe043 210.68%);
  border-radius: 0.25rem;
  transition: color 0.3s ease;
}

.hamburger__btnWrap.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(357deg, #f2635f 14.12%, #ffe043 210.68%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hamburger__btn.contact {
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: color 0.3s ease;
}

.hamburger__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  display: block;
  width: fit-content;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 500px) {
  .hamburger__close {
    top: 3.625rem;
    right: 2.1875rem;
    width: 1.125rem;
  }
}

main {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 5.5rem;
  }
}
@media screen and (max-width: 500px) {
  main {
    margin-top: 3.5rem;
  }
}

.wrapper {
  width: 95%;
  max-width: 68.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .wrapper {
    min-width: 704px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 44rem;
  }
}
@media screen and (max-width: 500px) {
  .wrapper {
    max-width: 21.4375rem;
  }
}

.inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}

.sub-section {
  padding-top: 4.625rem;
}
@media screen and (max-width: 768px) {
  .sub-section {
    padding-top: 3.5rem;
  }
}
@media screen and (max-width: 500px) {
  .sub-section {
    padding-top: 4rem;
  }
}

.sub-section.post-single {
  padding-top: 4rem;
}

.bottom-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
  color: var(--color-white);
  transform: translateY(1px);
  z-index: 10000;
}
@media screen and (min-width: 769px) {
  .bottom-contact {
    display: none;
  }
}

.bottom-contact-area {
  display: flex;
  flex-direction: column;
}

.bottom-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  gap: 0.75rem;
  padding: 0.5rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
@media screen and (min-width: 501px) {
  .bottom-contact__btn {
    width: 50%;
  }
}

.bottom-contact__tel {
  background: linear-gradient(
    0deg,
    var(--Secondary2, #f2635f) -11.54%,
    #ffe043 128.85%
  );
}

.bottom-contact__mail {
  background: linear-gradient(to bottom, var(--color-blue), var(--color-text));
  padding: 0.5rem 0.875rem;
  flex-direction: column;
  gap: 0;
}

.bottom-contact__hour {
  display: inline-block;
  padding: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-white);
  border-radius: 0.25rem;
}

.bottom-contact__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 374px) {
  .bottom-contact__text {
    font-size: 0.8125rem;
  }
}

.bottom-contact__text.time {
  font-size: 0.9375rem;
}
@media (max-width: 374px) {
  .bottom-contact__text.time {
    font-size: 0.8125rem;
  }
}

.time-text {
  letter-spacing: 0.04375rem;
}

span.bottom-contact__text.download {
  letter-spacing: 0.175rem;
  line-height: 1.34375rem;
}

.bottom-contact__text .space {
  display: inline-block;
  letter-spacing: 0.1rem;
}

.bottom-contact__tel image {
  width: 1.5rem;
}

.bottom-contact__mail image {
  width: 1.75rem;
}

.side-download__btn:hover {
  opacity: 0.8;
}

.c-breadcrumb {
  padding-top: 1.5rem;
}
@media screen and (max-width: 500px) {
  .c-breadcrumb {
    display: none;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: max(14px, 0.875rem);
  line-height: 1.4rem;
  letter-spacing: 0.04375rem;
}

.c-breadcrumb__list li a {
  color: var(--color-text);
}

.c-breadcrumb__list *:not(:first-child)::before {
  content: ">";
  margin-right: 0.625rem;
}

.c-btn {
  padding: 0.125rem;
  border-radius: 0.5rem;
}

.c-btn-pink {
  background: var(--gradient-pink-2);
}

.c-btn-yellow {
  background: var(--gradient-yellow-btn);
}

.c-btn-yellow-lg {
  background: var(--gradient-yellow-btn-lg);
}

.c-btn-blue {
  background: var(--gradient-blue-2);
}

.c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: var(--color-white);
  border-radius: 0.3125rem;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .c-btn a {
    padding: 0.25rem;
    font-size: 1rem;
  }
}

.btn-gradient {
  --g1: #f2635f; /* gradient start */
  --g2: #ffe043; /* gradient end   */
  position: relative;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 8px; /* updated */
  border: 2px solid transparent;
  cursor: pointer;
  color: var(--g2); /* Normal: yellow text */
  background: transparent;
  transition: all 0.3s ease;
}

/* Gradient border using pseudo-element */
.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* border width */
  background: linear-gradient(
    0deg,
    var(--g1) -98.39%,
    var(--g2) 139.78%
  ); /* updated */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hover: fill background */
.btn-gradient:hover {
  background: linear-gradient(
    0deg,
    var(--g1) -98.39%,
    var(--g2) 139.78%
  ); /* updated */
  color: var(--color-white);
  opacity: 1;
}

.c-btn a span {
  color: var(--color-white);
}

.c-btn-pink a span {
  background: var(--gradient-pink-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-btn-yellow a span {
  background: var(--gradient-yellow-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-btn-yellow-lg a span {
  background: var(--gradient-yellow-btn-lg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-btn-blue a span {
  background: var(--gradient-blue-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (any-hover: hover) {
  .c-btn-pink:hover {
    background: var(--gradient-pink);
  }
  .c-btn-blue:hover {
    background: var(--gradient-blue-2);
  }
  .c-btn:hover a {
    background-color: transparent;
    opacity: 1;
  }
  .c-btn:hover a span {
    background: none;
    -webkit-text-fill-color: currentcolor;
  }
}
.c-btn-large {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 40rem;
  height: 5.5625rem;
  margin-inline: auto;
  font-size: max(18px, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-btn-large {
    max-width: 30rem;
    height: 3.625rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .c-btn-large {
    max-width: 100%;
    height: 2.9375rem;
    font-size: 1rem;
  }
}

.c-btn-large-blue {
  background: var(--gradient-blue);
}

.c-btn-large-pink {
  background: var(--gradient-pink);
}

.c-btn-large-yellow {
  background: var(--gradient-yellow-btn);
}

.c-cat {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  font-size: max(12px, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-cat {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .c-cat {
    font-size: 0.875rem;
  }
}

.c-cat:nth-of-type(odd) {
  background-color: var(--color-text);
}

.c-cat:nth-of-type(even) {
  background-color: var(--color-blue);
}

.c-cat.cat-light {
  background-color: var(--color-blue);
}

.c-cat.cat-dark {
  background-color: var(--color-text);
}

.c-cat.cat-pink {
  background-color: var(--color-pink);
}

.c-cat.cat-orange {
  background-color: var(--color-orange);
}

.c-scroll-top {
  position: fixed;
  right: 2%;
  bottom: 3%;
  width: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .c-scroll-top {
    bottom: 4.0625rem;
  }
}

.c-scroll-top img {
  width: 100%;
}

.side-contact {
  position: fixed;
  top: 0;
  bottom: 5rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.75rem;
  margin: auto;
  color: var(--color-white);
  transition: right 0.3s ease-in-out;
  z-index: 10000;
  flex-direction: column;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .side-contact {
    display: none;
  }
}

.is-active {
  right: 0.75rem;
  visibility: visible;
  opacity: 1;
}

.sidebar-contact-toggle {
  position: fixed;
  bottom: 0.625rem;
  right: 0.75rem;
  z-index: 1000000;
  margin: auto;
  width: 3.5rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sidebar-contact-toggle {
    display: none;
  }
}

.sidebar-content {
  display: flex;
  gap: 1rem;
  background: linear-gradient(to bottom, var(--color-blue), var(--color-text));
  padding: 1rem;
  border-radius: 0.75rem;
}

.side-contact__left img {
  width: 1.75rem;
}

.side-contact__left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.side-contact__right {
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
}

.side-contact__tel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--color-orange);
}

.side-contact__tel img {
  width: 2.6875rem;
}

.side-contact__text {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05625rem;
  text-align: center;
}

.side-contact__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .side-contact__num {
    font-size: 2rem;
  }
}

.side-contact__btn,
.side-download__btn {
  height: 4.375rem;
  width: 17rem;
  margin-inline: auto;
  font-size: 1.375rem;
}

.side-download__btn {
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  line-height: 1.4333333333;
}

.c-title {
  position: relative;
  font-size: max(32px, 2.5rem);
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 0.125rem;
  z-index: 0;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .c-title {
    font-size: 1.375rem;
    line-height: 2.2rem;
    letter-spacing: 0.075rem;
  }
}

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

.c-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.625rem;
  font-family: var(--font-en);
  font-size: max(60px, 6.25rem);
  font-weight: 400;
  color: var(--color-gray2);
  letter-spacing: 0.25rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-title::before {
    bottom: 0.5rem;
    font-size: 4rem;
    letter-spacing: 0.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .c-title::before {
    top: -0.625rem;
    bottom: auto;
    left: 0 !important;
    right: 0 !important;
    margin-inline: auto;
    font-size: 3rem;
    letter-spacing: 0.3rem;
  }
}

.c-title.column-title::before {
  content: "Column";
}

.c-title.news-title::before {
  content: "Notification";
}
@media screen and (max-width: 768px) {
  .c-title.news-title::before {
    line-height: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .c-title.news-title::before {
    line-height: 2.75rem;
  }
}

.c-lead {
  margin-top: 2.5rem;
  font-size: max(22px, 1.5rem);
  font-weight: 500;
  line-height: 1.6363636364;
  letter-spacing: 0.0625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-lead {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .c-lead {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}

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

.p-404__title {
  margin-bottom: 1.25rem;
}

main.about {
  margin-top: 5rem;
  padding-bottom: 7.5rem;
  background: var(--color-gray);
}
@media screen and (max-width: 500px) {
  main.about {
    margin-top: 58px;
    padding-bottom: 4rem;
  }
}

.about-image {
  max-width: 46.375rem;
  margin: 4rem auto;
}
@media screen and (max-width: 768px) {
  .about-image {
    max-width: 37.125rem;
    margin: 3rem auto;
  }
}
@media screen and (max-width: 500px) {
  .about-image {
    max-width: 18.5rem;
    margin: 2rem auto;
  }
}

.about-image img {
  width: 100%;
}

.about__c-title {
  font-size: max(36px, 2.5rem);
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 0.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__c-title {
    font-size: 1.5rem;
    line-height: 2.4rem;
    letter-spacing: 0.075rem;
  }
}
@media screen and (max-width: 500px) {
  .about__c-title {
    font-size: 1.375rem;
    line-height: 2.2rem;
    letter-spacing: 0.06875rem;
  }
}

.about-board-member {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .about-board-member {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .about-board-member {
    margin-top: 4rem;
  }
}

.about-board-member__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-board-member__list {
    gap: 0 1rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .about-board-member__list {
    display: block;
  }
}

.about-board-member__list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about-board-member__list > li {
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 500px) {
  .about-board-member__list > li {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  .about-board-member__list > li + li {
    margin-top: 1.5rem;
  }
}

.about-board-member__image {
  width: 100%;
  border-radius: 0.5rem;
}

.about-board-member__info {
  margin-top: 1.5rem;
}

.about-board-member__position {
  font-size: max(12px, 1.125rem);
  font-weight: 500;
  line-height: 1.7625rem;
  letter-spacing: 0.05625rem;
}
@media screen and (max-width: 768px) {
  .about-board-member__position {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .about-board-member__position {
    font-size: 1.125rem;
  }
}

.about-board-member__name {
  margin-top: 0.3125rem;
  font-size: max(18px, 1.5rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about-board-member__name {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .about-board-member__name {
    font-size: 1.375rem;
  }
}

.about-board-member__en {
  margin-top: 0.3125rem;
  font-family: var(--font-en);
  font-size: max(16px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .about-board-member__en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .about-board-member__en {
    font-size: 1.125rem;
  }
}

.about-board-member__desc {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: max(12px, 1.125rem);
  line-height: 1.7777777778;
  border-top: 1px solid var(--color-text);
}
@media screen and (max-width: 768px) {
  .about-board-member__desc {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1rem;
  }
}

.about-board-member__desc li + li {
  margin-top: 0.3125rem;
}

.about-service {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .about-service {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .about-service {
    margin-top: 4rem;
  }
}

.about-service__copy {
  margin-top: 4rem;
  font-size: max(16px, 1.375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-service__copy {
    width: 105%;
    transform: translateX(-2.5%);
    font-size: 1.125rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .about-service__copy {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.about-service__copy span {
  font-size: max(22px, 2rem);
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ffe043 0%);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .about-service__copy span {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .about-service__copy span {
    font-size: 1.25rem;
  }
}

.about-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .about-service__list {
    max-width: 42rem;
    margin-inline: auto;
    gap: 0 2rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .about-service__list {
    display: block;
    margin-top: 2.5rem;
  }
}

.about-service__list li {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .about-service__list li {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .about-service__list li {
    margin-top: 2rem;
  }
}

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

.about-service__logo img {
  width: auto;
  height: max(60px, 5.625rem);
}
@media screen and (max-width: 768px) {
  .about-service__logo img {
    height: 3.75rem;
  }
}

.about-service__text {
  margin-top: 2.5rem;
  font-size: max(16px, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-service__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.about-service__image {
  margin-top: 1.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .about-service__image {
    margin-top: 1rem;
  }
}

.about-service__btn {
  margin-top: 2.5rem;
  max-width: 30rem;
  height: 4.8125rem;
  margin-inline: unset;
}
@media screen and (max-width: 1024px) {
  .about-service__btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about-service__btn {
    height: 3rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .about-service__btn {
    font-size: 1.25rem;
  }
}

.about-member {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .about-member {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .about-member {
    margin-top: 4rem;
  }
}

.about-member__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 1.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .about-member__list {
    gap: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .about-member__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-member__list li {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-gray2);
}
@media screen and (max-width: 768px) {
  .about-member__list li {
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 500px) {
  .about-member__list li {
    padding: 1.5rem;
  }
}

.about-member__image {
  width: 100%;
  border-radius: 0.5rem;
}

.about-member__position {
  display: block;
  margin-top: 1.5rem;
  font-size: max(14px, 1.125rem);
  font-weight: 500;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about-member__position {
    font-size: 1rem;
  }
}

.about-member__name {
  margin-top: 0.5rem;
  font-weight: 700;
}

.about-member__ja {
  font-size: max(16px, 1.375rem);
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about-member__ja {
    font-size: 1.125rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .about-member__ja {
    letter-spacing: 0.05em;
  }
}

.about-member__en {
  font-family: var(--font-en);
  font-size: max(16px, 1.375rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about-member__en {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .about-member__en {
    letter-spacing: 0.05em;
  }
}

.about-overview {
  margin-top: 7.5rem;
  padding: 5rem 3.125rem;
  border-radius: 1rem;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .about-overview {
    margin-top: 5rem;
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 500px) {
  .about-overview {
    margin-top: 4rem;
    padding: 1rem 0.75rem;
  }
}

.about-overview__list {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .about-overview__list {
    margin-top: 4rem;
  }
}

.about-overview__row {
  display: grid;
  grid-template-columns: 23.75rem 1fr;
  align-items: center;
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-text);
  font-size: max(16px, 1.5rem);
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about-overview__row {
    grid-template-columns: 11.875rem 1fr;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .about-overview__row {
    display: block;
    font-size: 1rem;
  }
}

.about-overview__row + .about-overview__row {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .about-overview__row + .about-overview__row {
    margin-top: 1.5rem;
  }
}

.about-overview__row dt {
  font-weight: 700;
}

.about-overview__row dd {
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .about-overview__row dd {
    margin-top: 0.3125rem;
  }
}

.about-overview__map {
  width: 100%;
  aspect-ratio: 1000/400;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .about-overview__map {
    aspect-ratio: 700/280;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .about-overview__map {
    aspect-ratio: 1/1;
    margin-top: 2.5rem;
  }
}

.about-overview__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media screen and (max-width: 500px) {
  .wrapper.column-res {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.mt-15 {
  margin-top: 30px !important;
}
@media screen and (max-width: 768px) {
  .mt-15 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (max-width: 500px) {
  .column-res-div {
    width: 95%;
    margin: 0 auto;
    max-width: 343px;
  }
}

.single-column-page {
  position: relative;
}

.center-popup-img {
  position: fixed;
  z-index: 1;
  width: 38.5rem;
  height: 21.25rem;
  left: 50%;
  top: 12.5rem;
  transform: translateX(-50%);
  display: none;
}
@media screen and (max-width: 768px) {
  .center-popup-img {
    left: 50%;
    width: 27.5rem;
    height: 25rem;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 500px) {
  .center-popup-img {
    width: 21.4375rem;
    height: 21.4375rem;
  }
}

.popupCloseBtn {
  text-align: right;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

a.popuplink:hover {
  opacity: unset;
}

@media screen and (max-width: 768px) {
  .center-popup-img .popuplink img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .center-popup-img .popuplink img {
    width: 21.4375rem;
    height: 21.4375rem;
  }
}

.post {
  color: var(--color-black);
  margin-top: 5rem;
  padding-bottom: 7.5rem;
  background: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .post {
    padding-bottom: 3.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .post {
    margin-top: 3.4375rem;
  }
}

.filter-btn {
  border: 2px solid var(--color-text);
  border-radius: 0.25rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  font-size: max(14px, 1rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-blue);
  color: var(--color-white);
  border: none;
  padding: 0.625rem 1.375rem;
  border-radius: 0.25rem;
}

.column-filter {
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-col {
  display: flex;
  align-items: flex-start;
  margin-top: 2.5rem;
  justify-content: space-between;
  gap: 7.25rem;
}
@media screen and (max-width: 768px) {
  .post-col {
    gap: 1.875rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .post-col {
    flex-direction: column;
    margin-top: 0;
    margin-top: 1.5rem;
  }
}

.post-col.post-col-single {
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .post-col.post-col-single {
    gap: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .post-col.post-col-single {
    gap: 0.625rem;
    margin-top: 0;
  }
}

.post-main {
  width: 100%;
  max-width: 45.5rem;
}
@media screen and (max-width: 768px) {
  .post-main {
    max-width: 31.25rem;
  }
}

.post-col-single .post-main {
  max-width: 51.1875rem;
}
@media screen and (max-width: 768px) {
  .post-col-single .post-main {
    max-width: 31.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-col-single .post-main {
    margin-top: 0rem;
  }
}

.post__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
@media screen and (max-width: 768px) {
  .post__list {
    gap: 2rem 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.post__list-image,
.post__list-image img {
  border-radius: 0.5rem;
}

.post__list-image {
  aspect-ratio: 700/510;
}

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

.post__list-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .post__list-col {
    margin-top: 1rem;
  }
}

.post__list-cat {
  padding: 0.25rem 0.75rem;
  font-size: max(12px, 1rem);
}
@media screen and (max-width: 768px) {
  .post__list-cat {
    font-size: 0.875rem;
  }
}

.post__list-title {
  color: var(--color-text);
  margin-top: 0.75rem;
  font-size: max(16px, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .post__list-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.post__list-date {
  display: block;
  margin-top: 0.75rem;
  font-size: max(14px, 1rem);
  letter-spacing: 0.05rem;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post__list-date {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}

.date_time {
  display: flex;
  gap: 0.625rem;
}

.date_time svg {
  fill: var(--color-text);
  width: 1.375rem;
}
@media screen and (max-width: 768px) {
  .date_time svg {
    width: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .date_time svg {
    width: 1rem;
  }
}

.post-sidebar {
  width: 100%;
  max-width: 16.0625rem;
}
@media screen and (max-width: 768px) {
  .post-sidebar {
    max-width: 10.75rem;
  }
}
@media screen and (max-width: 500px) {
  .post-sidebar {
    display: none;
  }
}

.post-ranking {
  margin-top: 2.5rem;
}

.post-ranking__title {
  position: relative;
  padding-bottom: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .post-ranking__title {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.post-ranking__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}

.post-ranking__title .pink {
  color: var(--color-orange);
}

.post-ranking__list li {
  margin-top: 1.5rem;
}

.post-ranking__list-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.post-ranking__list-col .post__list-cat {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .post-ranking__list-col .post__list-cat {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .post-ranking__list-col .post__list-cat:not(.cat-pink) {
    font-size: 0.75rem;
    padding: 0.25rem 0.375rem;
    letter-spacing: -0.05em;
  }
}

.post-ranking__list-title {
  margin-top: 0.75rem;
  font-size: max(14px, 1rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-ranking__list-title {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4285714286;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.post-ranking__list-image {
  width: 100%;
  margin-top: 0.625rem;
  aspect-ratio: 257/140;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .post-ranking__list-image {
    aspect-ratio: 172/120;
  }
}

.post-ranking__list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.post-ranking__list .post-ranking__wppCat {
  display: flex;
  gap: 0.25rem;
}

.post-ranking__list .wpp-taxonomy {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  color: var(--color-white);
  background-color: var(--color-text);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .post-ranking__list .wpp-taxonomy {
    font-size: 0.875rem;
  }
}

.post-ranking__list .wpp-taxonomy:nth-of-type(even) {
  background-color: var(--color-blue);
}

.navigation.pagination {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .navigation.pagination {
    margin-top: 3rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .nav-links {
    gap: 0.5rem;
  }
}

.nav-links * {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid var(--color-black);
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .nav-links * {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
  }
}

.nav-links .page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-text);
}

.nav-links .page-numbers.prev::before,
.nav-links .page-numbers.next::before {
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  background: url(../images/common/icn_pagination.svg) no-repeat center/contain;
}

.nav-links .page-numbers.next::before {
  transform: scale(-1, 1);
}

.post-title {
  font-size: max(28px, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .post-title {
    font-size: 1.375rem;
  }
}

.post-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.post-info .post__list-date,
.post-info .post__list-col {
  margin-top: 0;
}

.post-info .post__list-date {
  font-size: max(16px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .post-info .post__list-date {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-info .post__list-date {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 500px) {
  .post-info .post__list-cat {
    font-size: 0.75rem;
  }
}

.post-contents {
  margin-top: 1.875rem;
}

.post-contents > * {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .post-contents > * {
    margin-top: 2rem;
  }
}

.post-contents p {
  margin-top: 2.5rem;
  font-size: max(16px, 1rem);
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-contents p {
    margin-top: 2rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents p {
    font-size: 0.875rem;
  }
}

.post-contents h2,
.post-contents h3,
.post-contents h4 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .post-contents h2,
  .post-contents h3,
  .post-contents h4 {
    margin-top: 2rem;
  }
}

.post-contents h2 {
  position: relative;
  font-size: max(24px, 1.75rem);
  padding: 0 0.5rem 0.5rem;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-contents h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents h2 {
    font-size: 1.125rem;
  }
}

.post-contents h3 {
  font-size: max(20px, 1.5rem);
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-contents h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents h3 {
    font-size: 1.0625rem;
  }
}

.post-contents h4 {
  font-size: max(18px, 1.375rem);
}
@media screen and (max-width: 768px) {
  .post-contents h4 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents h4 {
    font-size: 1rem;
  }
}

.post-contents h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}

@media (any-hover: hover) {
  .post-contents a:hover {
    text-decoration: underline;
  }
}
.post-contents ul.wp-block-list {
  list-style: disc;
  margin-left: 1em;
  color: var(--color-text);
}

.post-contents ol.wp-block-list {
  list-style: decimal;
  margin-left: 1em;
}

.post-contents .table-of-contents {
  width: fit-content;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .post-contents .table-of-contents {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents .table-of-contents {
    padding: 1rem;
  }
}

.post-contents .table-of-contents-title {
  margin: 0;
  font-size: max(18px, 1.125rem);
  font-weight: 500;
}

.post-contents .table-of-contents ol {
  counter-reset: item;
  margin-left: 1em;
}

.post-contents .table-of-contents ol li {
  counter-increment: item;
  margin-top: 0.3125rem;
  font-size: max(16px, 1rem);
  font-weight: 500;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-contents .table-of-contents ol li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents .table-of-contents ol li {
    font-size: 0.875rem;
  }
}

.post-contents .table-of-contents ol li::before {
  content: counters(item, ".") ". ";
}

.post-contents .table-of-contents ol li ol li {
  font-size: max(14px, 0.875rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .post-contents .table-of-contents ol li ol li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contents .table-of-contents ol li ol li {
    font-size: 0.75rem;
  }
}

.post-service {
  margin-top: 5.25rem;
}

.post-service__title {
  font-size: max(24px, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-service__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-service__title {
    font-size: 1.125rem;
  }
}

.post-service__list li {
  position: relative;
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  color: var(--color-white);
  z-index: 0;
}

.post-service__list li::before {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 7.75rem;
  aspect-ratio: 1/1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .post-service__list li::before {
    display: none;
  }
}

.post-service__list li:nth-of-type(odd) {
  background-color: var(--color-blue);
}

.post-service__list li:nth-of-type(odd)::before {
  background: url(../images/post/icn_01.png) no-repeat center/contain;
}

.post-service__list li:nth-of-type(even) {
  background-color: var(--color-text);
}

.post-service__list li:nth-of-type(even)::before {
  background: url(../images/post/icn_02.png) no-repeat center/contain;
}

.post-service__list a {
  display: block;
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .post-service__list a {
    padding: 1rem;
  }
}

.post-service__list-title {
  display: flex;
  align-items: center;
  font-size: max(18px, 1.25rem);
  font-weight: 700;
}
@media (max-width: 990px) {
  .post-service__list-title {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .post-service__list-title {
    font-size: 1.125rem;
  }
}

.post-service__list-name {
  font-size: max(18px, 1.75rem);
}
@media (max-width: 990px) {
  .post-service__list-name {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .post-service__list-name {
    font-size: 1.125rem;
  }
}

.post-service__list-text {
  margin-top: 0.75rem;
  line-height: 1.75;
  font-size: max(14px, 1rem);
}
@media screen and (max-width: 768px) {
  .post-service__list-text {
    font-size: 0.875rem;
  }
}

.post-service__list-link {
  margin-top: 0.75rem;
  font-size: max(14px, 1rem);
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .post-service__list-link {
    font-size: 0.875rem;
  }
}

.post-bottom-banner {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .post-bottom-banner {
    margin-top: 2rem;
  }
}

.post-bottom-banner img {
  width: 100%;
}

.post-share {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.post-snsBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .post-snsBtn {
    padding: 0.875rem;
  }
}

.post-snsBtn.facebook {
  background-color: #337fff;
}

.post-snsBtn.x {
  background-color: #131313;
}

.post-snsBtn.line {
  background-color: #06c755;
}

@media screen and (max-width: 768px) {
  .post-snsBtn img {
    width: auto;
    height: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .post-snsBtn img {
    height: 1.25rem;
  }
}

.post-contact {
  margin-top: 5rem;
  padding: 2.5rem;
  border-radius: 0.75rem;
  background-color: #f4f6f8;
}
@media screen and (max-width: 768px) {
  .post-contact {
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 500px) {
  .post-contact {
    padding: 2rem 1rem;
  }
}

.post-contact__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-contact__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__title {
    font-size: 1.125rem;
  }
}

.post-contact__title.middle {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .post-contact__title.middle {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__title.middle {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.post-contact__subTitle {
  margin-top: 0.75rem;
  font-size: 1.375rem;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .post-contact__subTitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__subTitle {
    margin-top: 0.25rem;
    font-size: 0.875rem;
  }
}

.post-contact__form {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .post-contact__form {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__form {
    margin-top: 1.5rem;
    padding-inline: 0;
  }
}

@media screen and (min-width: 769px) {
  .post-contact__form > div {
    display: grid;
    grid-template-columns: 22.5rem 1fr;
  }
}

.post-contact__form > div + div {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .post-contact__form > div + div {
    margin-top: 1.5rem;
  }
}

.post-contact__form dt {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-contact__form dt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__form dt {
    font-size: 0.875rem;
  }
}

.post-contact__form dt span {
  display: inline-block;
  color: var(--color-text);
}

.post-contact__form dt span::before {
  content: "任意";
  display: inline-block;
  margin-right: 1.0625rem;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  background-color: #ccc;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .post-contact__form dt span::before {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__form dt span::before {
    font-size: 0.75rem;
  }
}

.post-contact__form .post-contact__form--required::before {
  content: "必須";
  background-color: var(--color-orange);
}

.post-contact__form dd {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-contact__form dd {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__form dd {
    margin-top: 0.75rem;
  }
}

.post-contact__form dd input,
.post-contact__form dd select,
.post-contact__form dd textarea {
  width: 100%;
  padding: 0.5rem;
  border: 0.75px solid var(--color-text);
  border-radius: 0.25rem;
}

.post-contact__form dd input,
.post-contact__form dd select {
  height: 2.5rem;
  color: var(--color-text);
}

.post-contact__form dd select {
  height: max(45px, 2.8125rem);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/common/arrow-d.svg");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px auto;
  padding-right: 18px;
}

.post-contact__form--submitBtn {
  margin-top: 2.5rem;
}

.post-contact__form--submitBtn input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.1875rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background-color: #a6b4cb;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .post-contact__form--submitBtn input {
    max-width: 27.25rem;
    margin-inline: auto;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-contact__form--submitBtn input {
    height: 2.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
  }
}

.post-contact__form--submitBtn input.active {
  background-color: var(--color-text);
  font-size: 1.25rem;
}

.post-related {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .post-related {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .post-related {
    margin-top: 2.5rem;
  }
}

.post-related__title {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 1.25rem;
  font-size: max(18px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .post-related__title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .post-related__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}

.post-related__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-black);
}

.post-related__list.top-column__list,
.post-related__noarticle {
  margin-top: 1.5rem;
}

.post-related__list.top-column__list {
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .post-related__list.top-column__list {
    gap: 1.5rem 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-related__list.top-column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.post-related__list.top-column__list .top-column__list-col {
  margin-top: 0.5rem;
}

.post-related__list.top-column__list .top-column__list-title {
  font-size: max(12px, 1rem);
}
@media screen and (max-width: 768px) {
  .post-related__list.top-column__list .top-column__list-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-related__list.top-column__list .top-column__list-title {
    font-size: 0.875rem;
  }
}

.post-related_single_column .top-column__list-image img {
  width: 16.0625rem;
  height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .post-related_single_column .top-column__list-image img {
    width: 15.125rem;
    height: 11.75rem;
  }
}
@media screen and (max-width: 500px) {
  .post-related_single_column .top-column__list-image img {
    width: 10.1875rem;
    height: 7.875rem;
  }
}

.post-related__list.top-column__list .top-column__list-cat {
  font-size: 0.875rem;
}
@media screen and (max-width: 500px) {
  .post-related__list.top-column__list .top-column__list-cat {
    font-size: 0.75rem;
  }
}

.post-related__list.top-column__list .top-column__list-date {
  font-size: 1rem;
}
@media screen and (max-width: 500px) {
  .post-related__list.top-column__list .top-column__list-date {
    font-size: 0.875rem;
  }
}

.post-cta__SPimage {
  width: 100%;
  height: 23.75rem;
  margin-top: 5rem;
  position: relative;
}
@media screen and (min-width: 501px) {
  .post-cta__SPimage {
    display: none;
  }
}

.post-cta__SPimage img {
  width: 11.6875rem;
  transform: translateX(11.25rem);
}

.post-cta {
  position: relative;
  width: 100%;
  min-height: 61.625rem;
  margin-top: 7.5rem;
  padding: 3rem 2.375rem;
  color: var(--color-white);
  border-radius: 0.75rem;
  background: url(../images/service/img_cta_bottom.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .post-cta {
    margin-top: 1.75rem;
    padding: 2.5rem 1.25rem;
    min-height: 54.3125rem;
    background: url(../images/service/md/img_cta_bottom.webp) no-repeat
      center/cover;
  }
}
@media screen and (max-width: 500px) {
  .post-cta {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    min-height: 60.625rem;
    margin-top: -16.25rem;
    padding: 6.9333333333vw 1rem 1.875rem;
    background: url(../images/home/sp/img_cta_bottom_sp.webp) no-repeat top
      6.9333333333vw center/cover;
  }
}

.post-cta__SPimage {
  width: 100%;
  margin-top: 5rem;
  height: 25rem;
  overflow: hidden;
}
@media screen and (min-width: 501px) {
  .post-cta__SPimage {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__SPimage {
    position: relative;
    margin-top: 5rem;
    background-color: var(--color-gray);
    height: 22.5rem;
  }
}

.post-cta__SPimage img {
  transform: translate(11.5rem);
  width: 10.3125rem;
  height: 10.8125rem;
  aspect-ratio: 182/173;
}
@media screen and (max-width: 500px) {
  .post-cta__SPimage img {
    transform: translate(12.5rem);
    width: 10.9375rem;
  }
}

.post-cta__subTitle_sp {
  display: none;
}
@media screen and (max-width: 500px) {
  .post-cta__subTitle_sp {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4rem;
    letter-spacing: 0.04375rem;
    text-align: center;
    background-color: var(--color-yellow);
    color: var(--color-text);
    display: inline-block;
    padding: 0.75rem;
    border-radius: 0.75rem;
    position: absolute;
    z-index: 1;
    top: 0.3125rem;
    left: 1.375rem;
  }
}

.post-cta__subTitle_sp:before {
  content: "";
  width: 2rem;
  aspect-ratio: 32/48;
  background: url(../images/home/icn_voice_bottom.svg) no-repeat center/contain;
  z-index: 1;
  top: 1.875rem;
  right: -0.625rem;
  position: absolute;
  transform: rotate(-65deg);
}

.post-cta-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .post-cta-title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta-title {
    margin-top: 5rem;
    font-size: 1.375rem;
    line-height: 2.2rem;
    letter-spacing: 0.06875rem;
  }
}

.post-cta-subTitle {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 0.0625rem;
  text-align: center;
  background-color: var(--color-yellow);
  color: var(--color-text);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .post-cta-subTitle {
    font-size: 0.875rem;
    padding: 0.5rem 0.625rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta-subTitle {
    font-size: 1.125rem;
  }
}

.post-cta-subTitle::after {
  position: absolute;
  content: "";
  width: 1rem;
  aspect-ratio: 32/48;
  background: url(../images/home/icn_voice_bottom.svg) no-repeat center/contain;
  z-index: 1;
  top: 2.375rem;
  right: 11.875rem;
}
@media screen and (max-width: 768px) {
  .post-cta-subTitle::after {
    top: 2.5rem;
  }
}

.post-cta__inner {
  width: 100%;
  max-width: 40.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .post-cta__inner {
    max-width: 38rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__inner {
    max-width: 21.4375rem;
  }
}

.post-cta__box {
  max-width: 22.5625rem;
  margin-top: 3.125rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .post-cta__box {
    max-width: 18.25rem;
    margin-top: 2.1875rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__box {
    max-width: 100%;
  }
}

.btn-gradient-call-btn.column-cta-btn {
  padding: 1.1875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .btn-gradient-call-btn.column-cta-btn {
    padding: 1.1875rem 1.25rem;
  }
}

.btn-gradient-call-btn.column-cta-btn:hover {
  display: block;
  color: var(--color-text);
  background: var(--gradient-yellow-btn);
  border-radius: 0.25rem;
  border: none;
  padding: 1.1875rem 2.5rem;
  --g1: unset;
  --g2: unset;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn-gradient-call-btn.column-cta-btn:hover {
    padding: 1.1875rem 1.25rem;
  }
}

.column-cta-btn a span.cta_Call_btn {
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .column-cta-btn a span.cta_Call_btn {
    gap: 0.75rem;
  }
}

.post-cta__box.box-pink {
  color: var(--color-orange);
}

.post-cta__box.box-blue {
  margin-top: 2rem;
  color: var(--color-text);
}
@media screen and (max-width: 500px) {
  .post-cta__box.box-blue {
    margin-top: 1.5rem;
  }
}

.post-cta__box-text {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8333333333;
}
@media screen and (max-width: 768px) {
  .post-cta__box-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__box-text {
    font-size: 1.5rem;
  }
}

.post-cta__box-textLarge {
  width: 110%;
  transform: translateX(-5%);
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-cta__box-textLarge {
    font-size: 1.375rem;
  }
}

.post-cta__box-textSmall {
  width: 110%;
  transform: translateX(-5%);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .post-cta__box-textSmall {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__box-textSmall .tab {
    display: none;
  }
}

.post-cta__btn {
  height: 4.25rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-cta__btn {
    height: 3.75rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__btn {
    font-size: 1.5rem;
  }
}

.post-cta__box-bottom {
  margin-top: 1.5rem;
}

.post-cta__TELbtn {
  padding: 0.1875rem;
  background: var(--gradient-pink);
}

.post-cta__TELbtn a {
  gap: 1.0625rem;
  height: 4.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .post-cta__TELbtn a {
    gap: 0.75rem;
    height: 3.875rem;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__TELbtn a {
    font-size: 1.875rem;
  }
}

.post-cta__TELbtn a::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  aspect-ratio: 1/1;
  background-size: 1.875rem 1.875rem;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.857 2c7.435.751 13.31 6.09 14.143 12.857M23.857 8.423c3.903.631 6.954 3.175 7.714 6.428' stroke='%23F2635F' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M31.272 37.976C13.54 38.791.336 18.605 2.17 8.756 3.854 5.852 6.011 3.7 8.9 2l6.28 8.662-3.185 5.554s.88 3.707 4.19 7.031c3.473 3.488 7.349 4.555 7.349 4.555l5.531-3.198L38 31.22c-1.662 2.982-3.758 5.087-6.728 6.756Z' stroke='%23F2635F' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  transform: translateY(0.1875rem);
}
@media screen and (max-width: 768px) {
  .post-cta__TELbtn a::before {
    width: 1.5rem;
    background-size: 1.5rem 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__TELbtn a::before {
    width: 1.75rem;
    background-size: 1.75rem 1.75rem;
  }
}

@media (any-hover: hover) {
  .post-cta__TELbtn a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.213 2C26.41 2.626 31.304 7.075 32 12.714M20.213 7.355c3.253.526 5.795 2.646 6.429 5.357' stroke='%23fff' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M26.393 31.98C11.617 32.66.613 15.837 2.142 7.63 3.545 5.21 5.342 3.417 7.749 2l5.233 7.218-2.654 4.629s.733 3.09 3.492 5.859c2.895 2.907 6.124 3.796 6.124 3.796l4.61-2.665L32 26.35c-1.385 2.485-3.132 4.24-5.607 5.63Z' stroke='%23fff' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}
.post-cta__TELbtn a span {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-cta__box-tel {
  width: 110%;
  transform: translateX(-5%);
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .post-cta__box-tel {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__box-tel {
    font-size: 1.25rem;
  }
}

.post-cta__box.box-blue .post-cta__btn {
  height: 6rem;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .post-cta__box.box-blue .post-cta__btn {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__box.box-blue .post-cta__btn {
    height: 6.25rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.post-cta__image {
  position: absolute;
  bottom: -3.4375rem;
  right: -4.375rem;
  width: 27.9375rem;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .post-cta__image {
    right: -5.625rem;
    width: 24rem;
    bottom: -1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .post-cta__image {
    display: none;
  }
}

.fa-xmark {
  display: inline-block;
  vertical-align: middle;
  color: #304266;
  line-height: 1;
  width: 0.625rem;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.fa-xmark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.pum-theme-3649 .pum-content + .pum-close,
.pum-theme-content-only .pum-content + .pum-close {
  background-color: var(--color-white) !important;
  height: 20px !important;
  width: 20px !important;
  font-size: 12px !important;
  top: -25px !important;
  right: -10px !important;
}

main.contact {
  background: var(--color-gray);
  margin-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  main.contact {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  main.contact {
    margin-top: 3.4375rem;
    padding-bottom: 4rem;
  }
}

main.thanks {
  background: var(--color-gray);
  margin-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  main.thanks {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  main.thanks {
    margin-top: 3.4375rem;
    padding-bottom: 4rem;
  }
}

.thanks-column {
  width: 51.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .thanks-column {
    width: 100%;
  }
}

.contact-wrapper {
  max-width: 56.25rem;
}

.contact-lead {
  margin-top: 1.5rem;
  font-size: max(16px, 1.125rem);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-lead {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .contact-lead {
    font-size: 0.875rem;
  }
}

.contact__form {
  margin-top: 4rem;
}
@media screen and (max-width: 500px) {
  .contact__form {
    margin-top: 1.5rem;
    padding-inline: 0;
  }
}

@media screen and (min-width: 501px) {
  .contact__form > div {
    display: grid;
    grid-template-columns: 22.5rem 1fr;
    align-items: center;
  }
}

.contact__form > div + div {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .contact__form > div + div {
    margin-top: 1.5rem;
  }
}

.contact__form dt {
  font-size: max(16px, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__form dt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .contact__form dt {
    font-size: 1rem;
  }
}

.contact__form dt span {
  display: inline-block;
}

.contact__form dt span::before {
  content: "任意";
  display: inline-block;
  margin-right: 1.0625rem;
  padding: 0.375rem 1rem;
  font-size: max(12px, 1rem);
  border-radius: 0.25rem;
  background-color: #ccc;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .contact__form dt span::before {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .contact__form dt span::before {
    font-size: 0.75rem;
  }
}

.contact__form .contact__form--required::before {
  content: "必須";
  background-color: var(--color-orange);
}

.contact__form dd {
  font-size: max(14px, 1rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__form dd {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .contact__form dd {
    margin-top: 0.75rem;
  }
}

.contact__form dd input,
.contact__form dd select,
.contact__form dd option,
.contact__form dd textarea {
  width: 100%;
  padding: 0.5rem;
  border: 0.75px solid var(--color-black);
  color: var(--color-text);
  background-color: var(--color-white);
  border-radius: 0.25rem;
}

.contact__form dd select {
  height: max(45px, 2.8125rem);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/common/arrow-d.svg");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px auto;
  padding-right: 18px;
}
@media screen and (max-width: 768px) {
  .contact__form dd select {
    height: 2.8125rem;
  }
}

.contact__form--submitBtn {
  margin-top: 2.5rem;
}

.contact__form--submitBtn input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: max(67px, 4.1875rem);
  font-size: max(24px, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background-color: #a6b4cb;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact__form--submitBtn input {
    height: 4.1875rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .contact__form--submitBtn input {
    height: 2.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
  }
}

.contact__form--submitBtn.document input {
  font-size: max(18px, 1.5rem);
}
@media screen and (max-width: 768px) {
  .contact__form--submitBtn.document input {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .contact__form--submitBtn.document input {
    font-size: 1rem;
  }
}

.contact__form--submitBtn input.active {
  background-color: var(--color-text);
}

.g-recaptcha {
  margin-top: 2.5rem;
}

.g-recaptcha > * {
  margin-inline: auto;
}

.wpcf7-spinner {
  display: none;
}

.contact__form--privacy {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact__form--privacy .wpcf7-list-item {
  margin: 0;
}

.contact__form--privacy .wpcf7-list-item-label,
.contact__form--privacy input {
  cursor: pointer;
}

.contact__form--privacy input[type="checkbox"] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--color-text);
  vertical-align: -0.3125rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact__form--privacy input[type="checkbox"]:checked:before {
  content: "";
  position: absolute;
  top: 0.0625rem;
  left: 0.375rem;
  transform: rotate(50deg);
  width: 0.4375rem;
  height: 0.75rem;
  border-right: 0.125rem solid var(--color-text);
  border-bottom: 0.125rem solid var(--color-text);
}

.thanks p:first-of-type {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .thanks p:first-of-type {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .thanks p:first-of-type {
    margin-top: 1rem;
  }
}

.thanks p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 500px) {
  .thanks p {
    font-size: 0.875rem;
  }
}

.form-document {
  padding: 2rem;
  background-color: var(--color-gray3);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .form-document {
    padding: 2rem 1rem;
  }
}

.form-document .contact__form {
  margin-top: 0;
}

.form-document .contact__form > div {
  display: block;
}

.form-document .contact__form .contact__form--required::before,
.form-document .contact__form dt span::before {
  display: none;
}

.form-document .contact__form .contact__form--required::after {
  content: "*";
  margin-left: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-orange);
}

.form-document .contact__form dt {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .form-document .contact__form dt {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .form-document .contact__form dd input,
  .form-document .contact__form dd select {
    height: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .form-document .contact__form--submitBtn input {
    font-size: 1rem;
  }
}

.document {
  margin-top: 5rem;
  background: var(--color-gray);
}
@media screen and (max-width: 500px) {
  .document {
    margin-top: 3.4375rem;
  }
}

.document-lead {
  margin-top: 1.5rem;
  font-size: max(15px, 1.5rem);
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .document-lead {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 500px) {
  .document-lead {
    font-size: 1rem;
  }
}

@media screen and (max-width: 500px) {
  .document-lead .tab {
    display: none;
  }
}

.document__row {
  margin-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .document__row {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .document__row {
    margin-top: 2.5rem;
  }
}

.document__row + .document__row {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .document__row + .document__row {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .document__row + .document__row {
    margin-top: 5rem;
  }
}

.document__title-cat {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .document__title-cat {
    font-size: 1.375rem;
  }
}

.document__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0 1.5rem;
  margin-top: 2rem;
  margin-left: 17.5rem;
  margin-right: 17.5rem;
}
@media screen and (max-width: 768px) {
  .document__list {
    margin-top: 1.5rem;
    margin-left: 11.25rem;
    margin-right: 11.25rem;
  }
}
@media screen and (max-width: 500px) {
  .document__list {
    grid-template-columns: repeat(1, 1fr);
    margin-left: 0rem;
    margin-right: 0rem;
  }
}

.document__list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-gray2);
}
@media screen and (max-width: 768px) {
  .document__list li {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 501px) {
  .document__list li:nth-of-type(-n + 2) {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 500px) {
  .document__list li:first-of-type {
    margin-top: 0 !important;
  }
}

.document__image,
.document__image img {
  border-radius: 0.5rem;
}

.document__image {
  aspect-ratio: 490/300;
}
@media screen and (max-width: 768px) {
  .document__image {
    aspect-ratio: 292/226;
  }
}

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

.document__list-title {
  margin-top: 1.5rem;
  font-size: max(18px, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .document__list-title {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}
@media screen and (max-width: 500px) {
  .document__list-title {
    margin-top: 2rem;
  }
}

.document__col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.document__cat {
  padding: 0.25rem 0.75rem;
  font-size: max(14px, 1rem);
}
@media screen and (max-width: 768px) {
  .document__cat {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .document__cat {
    font-size: 1rem;
  }
}

.document__btn {
  margin-top: 2rem;
}
@media screen and (max-width: 500px) {
  .document__btn {
    margin-top: 1rem;
  }
}

.document__btn a {
  background-color: var(--color-gray2);
}

.document__btn_link {
  width: 100%;
  border: 2px solid var(--color-text);
  text-align: center;
  padding: 0.75rem 4rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 0.075rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .document__btn_link {
    font-size: 1.125rem;
    padding: 0.75rem 1.875rem;
    line-height: 1.8rem;
    letter-spacing: 0.05625rem;
  }
}
@media screen and (max-width: 500px) {
  .document__btn_link {
    display: block;
  }
}

.document__btn_link:hover {
  background: var(--gradient-blue);
  color: var(--color-white);
  border-color: unset;
  padding: 0.75rem 4rem;
}

.document-col {
  display: grid;
  grid-template-columns: max(345px, 29.6875rem) max(345px, 29.625rem);
  justify-content: space-between;
  gap: 0 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .document-col {
    grid-template-columns: 21.5625rem 21.25rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .document-col {
    display: block;
  }
}

.document-col__post-title {
  font-size: max(18px, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .document-col__post-title {
    font-size: 1.125rem;
  }
}

.document-col__post-imageWrap {
  max-width: max(345px, 28rem);
  padding: 1.5rem;
  margin-top: 2rem;
  background-color: var(--color-gray2);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .document-col__post-imageWrap {
    max-width: 28rem;
    margin-top: 1.5rem;
  }
}

.document-col__post-image {
  aspect-ratio: 400/300;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .document-col__post-image {
    aspect-ratio: 292/292;
  }
}

.document-col__post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 0.5rem;
}

.document-col__post-contents.post-contents > * {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .document-col__post-contents.post-contents > * {
    margin-top: 1rem;
  }
}

.document-col__post-contents h2 {
  padding-left: 0;
  font-size: max(18px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .document-col__post-contents h2 {
    font-size: 1.125rem;
  }
}

.document-col__post-contents h2::before {
  display: none;
}

@media screen and (max-width: 500px) {
  .document-col__form {
    margin-top: 2.5rem;
  }
}

.top-section {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .top-section {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-section {
    margin-top: 5rem;
  }
}

.top-title {
  position: relative;
  font-size: max(28px, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .top-title {
    font-size: 1.75rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 500px) {
  .top-title {
    width: 105%;
    transform: translateX(-2.5%);
    font-size: 1.375rem;
  }
}

.top-title::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  font-family: var(--font-en);
  font-size: max(60px, 6.1875rem);
  font-weight: 400;
  color: var(--color-gray);
  opacity: 0.7;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-title::before {
    bottom: -0.625rem;
    font-size: 3.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .top-title::before {
    top: -2.5rem;
    bottom: auto;
    left: 0 !important;
    right: 0 !important;
    margin-inline: auto;
    font-size: 3.4375rem;
  }
}

.mv-for-ratina {
  display: none;
}
@media screen and (min-width: 1441px) {
  .mv-for-ratina {
    display: block;
    min-height: 48rem;
    background-image: url("../images/home/footerbg_pc.webp");
    margin-top: -5.625rem;
    background-size: cover;
  }
}

.mv-ratina-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: inherit;
  padding-top: 6.25rem;
  width: 95%;
  max-width: 75rem;
  margin: 0 auto;
  gap: 2.5rem;
}

.ratin-top-logo {
  margin-bottom: min(3.4698126301vw, 3.125rem);
}

.ratina-text h2 {
  font-size: min(2.4982650937vw, 2.25rem);
  color: var(--color-gray2);
}

.ratina-text h2 .span1 {
  background: var(--gradient-yellow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ratina-text h2 .span2 {
  background: var(--color-yellow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ratinabtnwithbubble {
  margin-top: min(3.4698126301vw, 3.125rem);
  display: flex;
  align-items: center;
  gap: 3.125rem;
}

.ratinabtnwithbubble .ratina-btn {
  color: var(--color-text);
  background: var(--gradient-yellow2);
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
}

.ratinabtnwithbubble .ratina-btn a {
  font-size: min(2.2206800833vw, 2rem);
  text-align: center;
}

.ratina-img {
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
}

.ratina-img img {
  display: block;
}
@media screen and (min-width: 1441px) {
  .ratina-img img {
    height: min(38rem, 82vh);
    width: auto;
    max-width: 33.5rem;
  }
}

@media screen and (min-width: 1441px) {
  .mv {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    background-color: var(--color-gray2);
  }
}

.mv__wrapper {
  position: relative;
  min-height: min(49.560761347vw, 42.3125rem);
  margin-inline: auto;
  z-index: 0;
}
@media screen and (min-width: 1441px) {
  .mv__wrapper {
    min-height: 48rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .mv__wrapper {
    min-height: 58.125rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__wrapper {
    min-height: 43.125rem;
  }
}

.mv__bg {
  position: absolute;
  top: -5.625rem;
  left: 0;
  width: 100vw;
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .mv__bg {
    top: max(-15.625vw, -18.75rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__bg {
    width: 100%;
    top: -88px;
  }
}
@media screen and (max-width: 500px) {
  .mv__bg {
    width: 100%;
    top: 0;
    margin-top: -6.875rem;
  }
}

.mv__contents {
  padding: min(3.6603221083vw, 3.125rem);
}
@media screen and (min-width: 1441px) {
  .mv__contents {
    min-width: 44rem;
    width: 95%;
    max-width: 78.125rem;
    margin-inline: auto;
    display: flex;
    gap: 6.25rem;
    justify-content: space-between;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .mv__contents {
    padding: 2.5rem;
    padding-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__contents {
    padding: 1.875rem 1.4375rem;
  }
}

.mv__name {
  width: min(45.6808199122vw, 39rem);
}
@media screen and (max-width: 768px) {
  .mv__name {
    width: 35rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .mv__name {
    width: 17.3125rem;
  }
}

.mv__text {
  margin-top: min(3.6603221083vw, 3.125rem);
  font-size: min(3.074670571vw, 2.625rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1575rem;
  color: var(--color-gray2);
  text-shadow: 0 0 21px rgba(140, 140, 140, 0.6);
}
@media screen and (min-width: 1441px) {
  .mv__text {
    margin-top: min(2.6041666667vw, 3.125rem);
    font-size: min(1.875vw, 2.25rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__text {
    margin-top: 2.5rem;
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .mv__text {
    margin-top: 2.125rem;
    font-size: 1.125rem;
    letter-spacing: 0;
  }
}

.mv__text span {
  font-size: min(4.0995607613vw, 3.5rem);
  color: var(--color-yellow);
}
@media screen and (min-width: 1441px) {
  .mv__text span {
    font-size: min(2.0833333333vw, 2.5rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__text span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__text span {
    font-size: 1.375rem;
  }
}

.mv-heroImg img {
  display: none;
}
@media screen and (min-width: 1441px) {
  .mv-heroImg img {
    display: block;
    height: auto;
    width: 20vw;
  }
}

.mv__text span.gradient {
  background: var(--gradient-yellow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: min(33.6749633968vw, 28.75rem);
  height: min(9.663250366vw, 8.25rem);
  margin-top: min(4.7584187408vw, 4.0625rem);
  border-radius: min(0.878477306vw, 0.75rem);
  color: var(--color-text);
  background: var(--gradient-yellow2);
}
@media screen and (min-width: 1441px) {
  .mv__btn {
    max-width: min(20.8333333333vw, 25rem);
    height: min(6.25vw, 7.5rem);
    margin-top: min(2.6041666667vw, 3.125rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__btn {
    max-width: 33.3125rem;
    height: 8.25rem;
    margin-top: 35.3125rem;
    margin-inline: auto;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__btn {
    max-width: 18.25rem;
    height: 6rem;
    margin-top: 23.75rem;
  }
}

.mv__btn-sub {
  font-size: min(2.0497803807vw, 1.75rem);
  font-weight: 500;
  line-height: 1.1428571429;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1441px) {
  .mv__btn-sub {
    font-size: min(1.4583333333vw, 1.75rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__btn-sub {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__btn-sub {
    font-size: 1.25rem;
  }
}

.mv__btn-main {
  margin-top: min(0.878477306vw, 0.75rem);
  font-size: min(2.7818448023vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2631578947;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1441px) {
  .mv__btn-main {
    font-size: min(1.6666666667vw, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__btn-main {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__btn-main {
    font-size: 1.5rem;
  }
}

.mv__copy {
  position: absolute;
  top: max(-1.2445095168vw, -1.0625rem);
  right: -4.0625rem;
  width: min(14.6412884334vw, 12.5rem);
  transform: translateX(100%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .mv__copy {
    top: -12rem;
    right: auto;
    left: 25.875rem;
    width: 12.375rem;
    transform: translateX(0);
  }
}
@media screen and (max-width: 500px) {
  .mv__copy {
    top: -7.1875rem;
    left: 10.75rem;
    width: 9.8125rem;
  }
}

.top-service {
  background-color: var(--color-gray);
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 500px) {
  .top-service {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 500px) {
  .top-service {
    padding: 4rem 0;
  }
}

.top-service__text {
  margin-top: 2.5rem;
  font-size: max(16px, 1.5rem);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.top-service__col {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .top-service__col {
    margin-top: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .top-service__col {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
    gap: 1.5625rem;
  }
}

.top-service__bottom {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5625rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-service__bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .top-service__bottom {
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    margin-top: 2.5rem;
    gap: 1.5625rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .top-service__bottom > li:nth-child(3):last-child {
    grid-column: 1/-1;
    width: 100%;
    max-width: calc((100% - 1.5625rem) / 2);
    margin-inline: auto;
  }
}

.top-service__page-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #304266;
}
@media screen and (max-width: 500px) {
  .top-service__page-title {
    font-size: 1.75rem;
  }
}

.top-service__subhead {
  margin-top: 4rem;
  text-align: center;
}

.top-service__subhead--main {
  margin-top: 4rem;
  margin-bottom: 0;
}

.top-service__page-title + div .top-service__subhead:first-child {
  margin-top: 4rem;
}
@media screen and (max-width: 500px) {
  .top-service__page-title + div .top-service__subhead:first-child {
    margin-top: 2.5rem;
  }
}

.top-service__subhead--secondary {
  margin-top: 4rem;
}

.top-service__subhead-logo {
  max-width: 20.875rem;
  margin-inline: auto;
}
.top-service__subhead-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .top-service__subhead-logo img {
    width: 16.6875rem;
    height: 4rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .top-service__subhead-logo img {
    width: 12.5rem;
    height: 3rem;
  }
}

.top-service__subhead-logo--brand {
  max-width: 24.375rem;
}

.top-service__subhead-logo--main {
  max-width: 21.71875rem;
}

.top-service__subhead-text {
  margin: 2.625rem auto 0;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 500;
  color: #304266;
}
.top-service__subhead--left .top-service__subhead-text {
  text-align: left;
}
@media screen and (max-width: 500px) {
  .top-service__subhead-text {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.top-service__bottom {
  margin-top: 2.5rem;
}

.top-service__col {
  margin-top: 2.5rem;
}

.top-service__bottom--brand {
  margin-top: 2.5rem;
}

.top-service__image {
  width: 100%;
  aspect-ratio: 349/248;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.15));
}

.top-service__col h3,
.top-service__bottom h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .top-service__col h3,
  .top-service__bottom h3 {
    margin-top: 1.5rem;
  }
}

.top-service__col h3 {
  margin-top: 1.875rem;
}

.top-service__bottom h3 {
  margin-top: 0.5rem;
}

.top-service__bottom li:last-of-type h3 {
  letter-spacing: 0;
}

.top-service__col p,
.top-service__bottom p {
  margin-top: 1.5rem;
  font-size: max(16px, 1.125rem);
  line-height: 1.6666666667;
  text-align: center;
  letter-spacing: 0.0225rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-service__col p,
  .top-service__bottom p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-service__col p,
  .top-service__bottom p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.top-service__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 500px) {
  .top-service__btn {
    margin-top: 0.75rem;
  }
}

.top-service__btn.c-btn-yellow {
  background: linear-gradient(180deg, #FFE043 0%, #F2635F 100%);
}

.top-service__btn a {
  font-size: max(16px, 1.125rem);
}
@media screen and (max-width: 768px) {
  .top-service__btn a {
    font-size: 1rem;
  }
}

.top-service__btn.c-btn-yellow a span {
  background: none;
  color: #F2635F;
  -webkit-text-fill-color: #F2635F;
}
@media (any-hover: hover) {
  .top-service__btn.c-btn-yellow:hover {
    background: #FAB44D;
  }
  .top-service__btn.c-btn-yellow:hover a {
    background-color: transparent;
    color: #fff;
  }
  .top-service__btn.c-btn-yellow:hover a span {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
  }
}

.top-reason {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-reason {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 500px) {
  .top-reason {
    padding: 4rem 0;
  }
}

.top-reason__title {
  color: var(--color-gray2);
}

.top-reason__title::before {
  position: absolute;
  content: "";
  left: 2rem;
  background-image: url("../images/home/reason-right.svg");
  width: 11.25rem;
  top: 0;
  background-repeat: no-repeat;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-reason__title::before {
    background-image: url("../images/home/md/reason-right.svg");
    width: 7.5rem;
    left: -0.375rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__title::before {
    display: none;
  }
}

.top-reason__title::after {
  position: absolute;
  content: "";
  background-image: url("../images/home/reason-left.svg");
  width: 11.25rem;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  right: 2rem;
}
@media screen and (max-width: 768px) {
  .top-reason__title::after {
    background-image: url("../images/home/md/reason-left.svg");
    width: 7.5rem;
    right: -0.3125rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__title::after {
    display: none;
  }
}

img.sp-reason-right {
  display: none;
}
@media screen and (max-width: 500px) {
  img.sp-reason-right {
    display: inline;
    margin-left: 50px;
  }
}

img.sp-reason-left {
  display: none;
}
@media screen and (max-width: 500px) {
  img.sp-reason-left {
    display: inline;
    margin-right: 50px;
  }
}

.top-reason__list {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-reason__list {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__list {
    flex-direction: column;
  }
}

.top-reason__list li {
  counter-increment: mycounter;
  width: 21.875rem;
  height: 14.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem 2.8125rem;
  background-color: var(--color-gray2);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-reason__list li {
    width: 13.625rem;
    height: 13.1875rem;
    padding: 1rem 0.625rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__list li {
    width: 18.125rem;
    height: 8.3125rem;
  }
}

.top-reason__top {
  font-size: 1.5rem;
  letter-spacing: 0.1;
}
@media screen and (max-width: 768px) {
  .top-reason__top {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__top {
    font-size: 16;
  }
}

.is-bold {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .is-bold {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .is-bold {
    font-size: 1.25rem;
  }
}

.top-reason__bottom {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-reason__bottom {
    margin-top: 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__bottom {
    font-size: 0.875rem;
  }
}

.top-reason__bottom .is-num,
.top-reason__bottom .is-unit {
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #f2635f 0%, #ffe043 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-reason__bottom .is-num {
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-reason__bottom .is-num {
    font-size: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__bottom .is-num {
    font-size: 3.0625rem;
  }
}

.top-reason__bottom .is-unit {
  font-size: 2.5rem;
}
@media screen and (max-width: 500px) {
  .top-reason__bottom .is-unit {
    font-size: 1.5rem;
  }
}

.top-reason__button {
  margin-top: 4rem;
}
@media screen and (max-width: 500px) {
  .top-reason__button {
    display: none;
  }
}

.top-reason__button a {
  padding: 1.5rem 7.5rem;
  display: block;
  background: linear-gradient(357deg, #f2635f -142.55%, #ffe043 178.17%);
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0.0875rem;
}
@media screen and (max-width: 768px) {
  .top-reason__button a {
    font-size: 1.5rem;
    padding: 1rem 7.5rem;
  }
}

.top-reason__btn {
  margin-top: 4rem;
  font-size: max(18px, 1.75rem);
}
@media screen and (max-width: 768px) {
  .top-reason__btn {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .top-reason__btn {
    max-width: 18.0625rem;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.top-voice__title::before {
  content: "Voice";
  right: 0;
}

.top-voice__list {
  max-width: 62.5rem;
  margin-top: 5.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .top-voice__list {
    min-width: 644px;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__list {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__list {
    margin-top: 2rem;
  }
}

.top-voice__list li + li {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .top-voice__list li + li {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__list li + li {
    margin-top: 3rem;
  }
}

.top-voice__num {
  display: grid;
  grid-template-columns: 1fr 16.375rem 1fr;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .top-voice__num {
    grid-template-columns: 1fr 10.3125rem 1fr;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__num {
    grid-template-columns: 1fr 6.1875rem 1fr;
  }
}

.top-voice__num::before,
.top-voice__num::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue);
}

.top-voice__list-title {
  margin-top: 2rem;
  font-size: max(24px, 1.875rem);
  font-weight: 700;
  line-height: 1.4666666667;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-voice__list-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__list-title {
    font-size: 1.125rem;
    letter-spacing: 0;
  }
}

.top-voice__list-text {
  margin-top: 2rem;
  font-size: max(20px, 1.375rem);
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-voice__list-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__list-text {
    font-size: 0.875rem;
  }
}

.top-voice__list-text p + p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 500px) {
  .top-voice__list-text p + p {
    margin-top: 1rem;
  }
}

.top-voice__box {
  position: relative;
  margin-top: 6.125rem;
  padding: 2.5rem 2.3125rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box {
    margin-top: 4.5rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}

.top-voice__box-copy {
  position: absolute;
  padding: 0.75rem 0.5rem 0.75rem 1.25rem;
  color: var(--color-text);
  background-color: var(--color-yellow);
  font-family: var(--font-yusei);
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  border-radius: 0.75rem;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy {
    padding: 0.625rem 0.4375rem 0.75rem 1.0625rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy {
    padding: 0.625rem 1rem 0.625rem 0.625rem;
    font-size: 1rem;
  }
}

.top-voice__box-copy::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-block;
  width: 1.125rem;
  aspect-ratio: 18/14;
  background: url(../images/home/icn_voice.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy::before {
    width: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy::before {
    width: 0.4375rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}

.top-voice__box-copy::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2rem;
  aspect-ratio: 32/48;
  background: url(../images/home/icn_voice_bottom.svg) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy::after {
    width: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy::after {
    width: 0.9375rem;
  }
}

.top-voice__box-copy.copy01 {
  top: -4.125rem;
  right: 14.6875rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy01 {
    top: -2.5rem;
    right: 9.0625rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01 {
    top: -3.125rem;
    right: auto;
    left: 1.25rem;
  }
}

.top-voice__box-copy.copy01.copy01v1 {
  right: 2.1875rem;
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v1 {
    left: 7.625rem;
    right: auto;
    top: -3.625rem;
  }
}

.top-voice__box-copy.copy01.copy01v2 {
  right: 2.1875rem;
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v2 {
    left: 10.9375rem;
    right: auto;
  }
}

.top-voice__box-copy.copy01.copy01v3 {
  right: 2.1875rem;
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v3 {
    left: 9.6875rem;
  }
}

.top-voice__box-copy.copy01.copy01v4 {
  right: 2.1875rem;
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v4 {
    left: 3.125rem;
    width: 13.75rem;
  }
}

.top-voice__box-copy.copy01.copy01v5 {
  right: auto;
  left: 48.125rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy01.copy01v5 {
    left: 32.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v5 {
    left: 5rem;
  }
}

.top-voice__box-copy.copy01.copy01v6 {
  right: 2.1875rem;
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v6 {
    left: 9.375rem;
    width: 9.0625rem;
  }
}

.top-voice__box-copy.copy01.copy01v7 {
  right: 9.8125rem;
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy01.copy01v7 {
    right: 2.1875rem;
    width: 16.875rem;
    top: -3.125rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v7 {
    left: 1.3125rem;
    width: 13.625rem;
  }
}

.top-voice__box-copy.copy01.copy01v1::after {
  transform: scale(-1, 1);
  left: 8.125rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy01.copy01v1::after {
    left: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01.copy01v1::after {
    left: 5rem;
  }
}

.top-voice__box-copy.copy01.copy01v2::after {
  transform: scale(-1, 1);
}

.top-voice__box-copy.copy01::after {
  bottom: -1.4375rem;
  left: 3.375rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy01::after {
    bottom: -0.9375rem;
    left: 1.4375rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy01::after {
    bottom: -0.6875rem;
    left: 0.9375rem;
    transform: scale(1, 1);
  }
}

.top-voice__box-copy.copy02 {
  top: -4.125rem;
  right: 10.9375rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy02 {
    top: -4rem;
    right: 7.3125rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy02 {
    top: -2.375rem;
    right: 0.625rem;
  }
}

.top-voice__box-copy.copy02::after {
  bottom: -1.4375rem;
  right: 3.3125rem;
}
@media screen and (min-width: 769px) {
  .top-voice__box-copy.copy02::after {
    transform: scale(-1, 1);
  }
}
@media screen and (max-width: 768px) {
  .top-voice__box-copy.copy02::after {
    bottom: -0.9375rem;
    left: 1.4375rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-copy.copy02::after {
    bottom: -0.6875rem;
    left: auto;
    right: 1.125rem;
  }
}

.top-voice__box-inner {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-inner {
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.top-voice__box-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 500px) {
  .top-voice__box-col {
    justify-content: center;
    gap: 1.5rem;
  }
}

.top-voice__box-company {
  margin-right: 1rem;
  font-size: max(20px, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-voice__box-company {
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-company {
    text-align: center;
    margin-right: 0rem;
  }
}

.top-voice__box-cat {
  font-size: max(16px, 1.5rem);
}
@media screen and (max-width: 768px) {
  .top-voice__box-cat {
    font-size: 1rem;
  }
}

.top-voice__box-text {
  margin-top: 2rem;
  font-size: max(16px, 1.125rem);
  line-height: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-voice__box-text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-text {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .top-voice__box-info {
    width: 65%;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-info {
    width: 100%;
  }
}

.top-voice__box-image {
  flex-shrink: 0;
  width: 23.125rem;
  height: 11.25rem;
}
@media screen and (max-width: 768px) {
  .top-voice__box-image {
    height: 7.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 35%;
  }
}
@media screen and (max-width: 500px) {
  .top-voice__box-image {
    margin-top: 1.5rem;
    height: 8.125rem;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  .top-voice__box-image.is-tab {
    display: none;
  }
}

.top-voice__box-image img {
  width: auto;
  height: 100%;
}

.top-document {
  background-color: var(--color-gray);
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-document {
    padding-bottom: 5rem;
  }
}

.top-document__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-document__list {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .top-document__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-document__list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-gray2);
}
@media screen and (max-width: 500px) {
  .top-document__list li {
    padding: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .top-document__list li:nth-of-type(n + 3) {
    display: none;
  }
}

.top-document__list-image {
  width: 100%;
  aspect-ratio: 302/226;
  border-radius: 0.5rem;
}

.top-document__list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.top-document__list-title {
  margin-top: 1.5rem;
  font-size: max(20px, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top-document__list-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .top-document__list-title {
    margin-top: 1rem;
    font-size: 1.125rem;
  }
}

.top-document__col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.top-document__cat {
  padding: 0.25rem 0.75rem;
  font-size: max(14px, 1rem);
}
@media screen and (max-width: 768px) {
  .top-document__cat {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-document__cat {
    font-size: 0.875rem;
  }
}

.top-document__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 500px) {
  .top-document__btn {
    margin-top: 1rem;
  }
}

.top-document__btn a {
  background-color: var(--color-gray2);
}

.top-document__btnMain {
  margin-top: 4rem;
  font-size: max(18px, 1.75rem);
}
@media screen and (max-width: 768px) {
  .top-document__btnMain {
    height: 4.1875rem;
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-document__btnMain {
    max-width: 20rem;
    height: 3.125rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.top-document__main {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-document__main {
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .top-document__main {
    flex-direction: column;
    gap: 1rem;
  }
}

.top-document__main-image {
  flex-shrink: 0;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--color-white);
}
.top-document__main-image img {
  width: 26.875rem;
  aspect-ratio: 430/320;
}
@media screen and (max-width: 768px) {
  .top-document__main-image img {
    width: 18.25rem;
    height: 18.25rem;
  }
}
@media screen and (max-width: 500px) {
  .top-document__main-image img {
    width: 100%;
  }
}

.top-document__main-title {
  font-size: max(16px, 1.5rem);
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  .top-document__main-title {
    font-size: 1rem;
    line-height: 2;
  }
}
@media screen and (max-width: 500px) {
  .top-document__main-title {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.top-document__col {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-document__col {
    margin-top: 1rem;
  }
}

.top-document__text {
  margin-top: 1.5rem;
  font-size: max(16px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .top-document__text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 500px) {
  .top-document__text {
    font-size: 0.875rem;
  }
}

.top-document__DLbtn {
  height: 3.3125rem;
  margin-top: 1.5rem;
  font-size: max(16px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .top-document__DLbtn {
    height: 2.9375rem;
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .pc_res {
    display: none;
  }
}

.tab_res {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab_res {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .sp_res {
    display: none !important;
  }
}

.top-cta__subTitle_sp {
  display: none;
}
@media screen and (max-width: 500px) {
  .top-cta__subTitle_sp {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4rem;
    letter-spacing: 0.04375rem;
    text-align: center;
    background-color: var(--color-yellow);
    color: var(--color-text);
    display: inline-block;
    padding: 0.75rem;
    border-radius: 0.75rem;
    position: absolute;
    z-index: 1;
    top: 1.25rem;
    left: 1.375rem;
  }
}

.top-cta__subTitle_sp:before {
  content: "";
  width: 2rem;
  aspect-ratio: 32/48;
  background: url(../images/home/icn_voice_bottom.svg) no-repeat center/contain;
  z-index: 1;
  top: 1.875rem;
  right: -0.625rem;
  position: absolute;
  transform: rotate(-65deg);
}

.top-cta__SPimage {
  width: 100%;
  margin-top: 5rem;
  height: 25rem;
  overflow: hidden;
}
@media screen and (min-width: 501px) {
  .top-cta__SPimage {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__SPimage {
    position: relative;
    margin-top: 0;
    background-color: var(--color-gray);
    height: 24.0625rem;
  }
}

.top-cta__SPimage img {
  transform: translate(11.5rem);
  width: 10.3125rem;
  height: 10.8125rem;
  aspect-ratio: 182/173;
}
@media screen and (max-width: 500px) {
  .top-cta__SPimage img {
    transform: translate(13.625rem);
  }
}

.top-cta {
  position: relative;
  min-height: 16.4714494876vw;
  padding-top: 16.4714494876vw;
  color: var(--color-white);
  background: var(--color-gray) url(../images/home/bannerformat1bg_pc.webp);
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-cta {
    min-height: 65.125rem;
    padding-top: 15.8854166667vw;
    background: var(--color-gray) url(../images/home/md/bannerformat1bg_tb.webp);
    background-position: top center;
    background-size: cover;
  }
}
@media screen and (max-width: 500px) {
  .top-cta {
    min-height: 62.25rem;
    margin-top: -16.25rem;
    padding-top: 6.9333333333vw;
    background: url(../images/home/sp/img_cta_bottom_sp.webp);
    background-position: top center;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .top-cta::before {
    height: 7.8125vw;
    transform: translateY(0.125rem);
  }
}
@media screen and (max-width: 500px) {
  .top-cta::before {
    height: 6.9333333333vw;
    background: url(../images/home/sp/img_cta_deco.svg) no-repeat center/contain;
  }
}

.top-cta__wraper {
  position: relative;
  width: 100%;
  max-width: 85.375rem;
  margin-inline: auto;
  padding-bottom: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-cta__wraper {
    max-width: 43.75rem;
    padding-bottom: 2.5rem;
  }
}

.top-cta__inner {
  width: 95%;
  max-width: 68.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-cta__inner {
    max-width: 43.75rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__inner {
    max-width: 21.4375rem;
  }
}

.top-cta__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 4.8rem;
  letter-spacing: 0.15rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-cta__title {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__title {
    padding-top: 1.875rem;
    font-size: 1.375rem;
    line-height: 2.2rem;
  }
}

span.text-yellow {
  color: var(--color-yellow);
}

.top-cta__subTitle {
  margin-top: 3.375rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.09375rem;
  text-align: center;
  background-color: var(--color-yellow);
  color: var(--color-text);
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-cta__subTitle {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__subTitle {
    font-size: 1.125rem;
  }
}

.top-cta__subTitle::after {
  position: absolute;
  content: "";
  width: 2rem;
  aspect-ratio: 32/48;
  background: url(../images/home/icn_voice_bottom.svg) no-repeat center/contain;
  z-index: 1;
  top: 3.4375rem;
  right: 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-cta__subTitle::after {
    top: 2.5rem;
  }
}

.top-cta__box {
  max-width: 37.5rem;
  margin-top: 5.9375rem;
  padding: 3rem 3rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-cta__box {
    max-width: 22.5625rem;
    margin-top: 3.625rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__box {
    max-width: 100%;
    margin-top: 2.5rem;
  }
}

.top-cta__box.box-pink {
  color: var(--color-orange);
}

.top-cta__box.box-blue {
  margin-top: 3rem;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .top-cta__box.box-blue {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__box.box-blue {
    margin-top: 2.5rem;
  }
}

.top-cta__box-text {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5714285714;
}
@media screen and (max-width: 768px) {
  .top-cta__box-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-cta__box-text {
    font-size: 1.25rem;
  }
}

.top-cta__box-text-small {
  width: 110%;
  transform: translateX(-5%);
  font-size: 1.4375rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-cta__box-text-small {
    font-size: 1.25rem;
  }
}

.top-cta__box-textLarge {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-cta__box-textLarge {
    width: 110%;
    transform: translateX(-5%);
    font-size: 1.75rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__box-textLarge {
    font-size: 1.5rem;
  }
}

.top-cta__btn {
  height: 5.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  .top-cta__btn {
    height: 4.25rem;
    font-size: 1.5rem;
  }
}

.top-cta__box-bottom {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .top-cta__box-bottom {
    margin-top: 1.5rem;
  }
}

.top-cta__TELbtn {
  padding: 0.1875rem;
  background: var(--gradient-pink);
}

.btn-gradient-call-btn {
  --g1: #f2635f;
  --g2: #ffe043;
  position: relative;
  padding: 1.625rem 3.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--g2);
  background: transparent;
}
@media screen and (max-width: 768px) {
  .btn-gradient-call-btn {
    padding: 1.1875rem 2.5rem;
  }
}

.call_btn.hover {
  display: none;
}

.call_num.hover {
  display: none;
}

.btn-gradient-call-btn:hover .call_btn.normal {
  display: none;
}

.btn-gradient-call-btn:hover .call_num.normal {
  display: none;
}

.btn-gradient-call-btn:hover .call_btn.hover {
  display: block;
}

.btn-gradient-call-btn:hover .call_num.hover {
  display: block;
}

.btn-gradient-call-btn:hover {
  display: block;
  color: var(--color-text);
  background: var(--gradient-yellow-btn);
  border-radius: 0.25rem;
  border: none;
  padding: 1.625rem 3.75rem;
  --g1: unset;
  --g2: unset;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn-gradient-call-btn:hover {
    padding: 1.1875rem 2.5rem;
  }
}

.btn-gradient-call-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 4px;
  background: linear-gradient(0deg, var(--g1) -98.39%, var(--g2) 139.78%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

span.cta_Call_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8125rem;
}

.btn-gradient a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.top-cta__TELbtn a {
  gap: 1.75rem;
  height: 5.5rem;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-cta__TELbtn a {
    gap: 1.0625rem;
    height: 4.25rem;
    font-size: 1.875rem;
  }
}

.top-cta__TELbtn a::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  aspect-ratio: 1/1;
  background-size: 2.25rem 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.857 2c7.435.751 13.31 6.09 14.143 12.857M23.857 8.423c3.903.631 6.954 3.175 7.714 6.428' stroke='%23F2635F' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M31.272 37.976C13.54 38.791.336 18.605 2.17 8.756 3.854 5.852 6.011 3.7 8.9 2l6.28 8.662-3.185 5.554s.88 3.707 4.19 7.031c3.473 3.488 7.349 4.555 7.349 4.555l5.531-3.198L38 31.22c-1.662 2.982-3.758 5.087-6.728 6.756Z' stroke='%23F2635F' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  transform: translateY(0.1875rem);
}
@media screen and (max-width: 768px) {
  .top-cta__TELbtn a::before {
    width: 1.875rem;
    background-size: 1.875rem 1.875rem;
  }
}

@media (any-hover: hover) {
  .top-cta__TELbtn a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.213 2C26.41 2.626 31.304 7.075 32 12.714M20.213 7.355c3.253.526 5.795 2.646 6.429 5.357' stroke='%23fff' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M26.393 31.98C11.617 32.66.613 15.837 2.142 7.63 3.545 5.21 5.342 3.417 7.749 2l5.233 7.218-2.654 4.629s.733 3.09 3.492 5.859c2.895 2.907 6.124 3.796 6.124 3.796l4.61-2.665L32 26.35c-1.385 2.485-3.132 4.24-5.607 5.63Z' stroke='%23fff' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}
.top-cta__TELbtn a span {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  span.cta_Call_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.0625rem;
  }
}

.top-cta__box-tel {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8333333333;
}
@media screen and (max-width: 768px) {
  .top-cta__box-tel {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__box-tel {
    width: 110%;
    transform: translateX(-5%);
    font-size: 1.125rem;
  }
}

.top-cta__box.box-blue .top-cta__btn {
  margin-top: 1.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .top-cta__box.box-blue .top-cta__btn {
    height: 6rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__box.box-blue .top-cta__btn {
    height: 6.25rem;
    line-height: 1.5;
  }
}

.top-cta__image {
  position: absolute;
  bottom: -2.5rem;
  right: 3.75rem;
  width: 40.625rem;
  height: 67.625rem;
  aspect-ratio: 29/54;
}
@media screen and (max-width: 768px) {
  .top-cta__image {
    bottom: -0.25rem;
    right: -3rem;
    width: 28.125rem;
    height: 51.25rem;
  }
}
@media screen and (max-width: 500px) {
  .top-cta__image {
    display: none;
  }
}

.top-column {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .top-column {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-column {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.top-column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 1.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 500px) {
  .top-column__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
}

.top-column__list-image,
.top-column__list-image img {
  border-radius: 0.5rem;
}

.top-column__list-image img {
  width: 21.875rem;
  height: 15.9375rem;
}

.top-column__list-col {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-column__list-col {
    margin-top: 1rem;
  }
}

.top-column__list-cat {
  padding: 0.25rem 0.75rem;
  font-size: max(12px, 1rem);
}
@media screen and (max-width: 768px) {
  .top-column__list-cat {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-column__list-cat {
    font-size: 0.875rem;
  }
}

.top-column__list-title {
  margin-top: 0.75rem;
  font-size: max(16px, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-column__list-title {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-column__list-title {
    font-size: 1.125rem;
  }
}

.top-column__list-date {
  display: block;
  margin-top: 0.75rem;
  font-size: max(14px, 1rem);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-column__list-date {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}

.top-news {
  padding-bottom: 7.5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .top-news {
    padding-bottom: 4rem;
  }
}

.top-news__list {
  display: grid;
  grid-template-columns: max-content auto 1fr;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-news__list {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .top-news__list {
    display: block;
  }
}

.top-news__list a {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 2rem;
  padding-block: 1.5rem;
  border-bottom: 0.0625rem solid var(--color-text);
}
@media screen and (max-width: 768px) {
  .top-news__list a {
    gap: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-news__list a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 500px) {
  .top-news__list a:first-of-type {
    padding-top: 0;
  }
}

.top-news__list-date {
  display: block;
  font-size: max(16px, 1.5rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .top-news__list-date {
    font-size: 1rem;
  }
}

.top-news__list-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  font-size: max(14px, 1rem);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-news__list-cat {
    font-size: 0.875rem;
  }
}

.top-news__list-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: max(16px, 1.5rem);
  font-weight: 400;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-news__list-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .top-news__list-title {
    width: 100%;
  }
}

.top-news__btn {
  max-width: 27.8125rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top-news__btn {
    max-width: 15.3125rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .top-news__btn {
    max-width: 16.25rem;
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }
}

.news {
  color: var(--color-black);
  margin-top: 5rem;
  padding-bottom: 7.5rem;
  background: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .news {
    padding-bottom: 3.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .news {
    margin-top: 3.4375rem;
  }
}

.news__list {
  display: grid;
  grid-template-columns: max-content auto 1fr;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .news__list {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .news__list {
    display: block;
  }
}

.news__list a {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 2rem;
  padding-block: 0.75rem;
  border-bottom: 0.0625rem solid var(--color-text);
}
@media screen and (max-width: 768px) {
  .news__list a {
    gap: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .news__list a {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 500px) {
  .news__list a:first-of-type {
    padding-top: 0;
  }
}

.news__list-date {
  display: block;
  font-size: max(16px, 1.5rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .news__list-date {
    font-size: 1rem;
  }
}

.news__list-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  font-size: max(14px, 1rem);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .news__list-cat {
    font-size: 0.875rem;
  }
}

.news__list-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: max(16px, 1.5rem);
  font-weight: 400;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .news__list-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .news__list-title {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.news__postWrap {
  max-width: 51.25rem;
}
@media screen and (max-width: 768px) {
  .news__postWrap {
    max-width: 44.0625rem;
  }
}
@media screen and (max-width: 500px) {
  .news__postWrap {
    max-width: 21.4375rem;
  }
}

@media screen and (max-width: 500px) {
  .news__postWrap .post-info {
    margin-top: 1rem;
  }
}

.news__postWrap .post-contents {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .news__postWrap .post-contents {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .news__postWrap .post-contents {
    margin-top: 1rem;
  }
}

.news__postWrap .post-share {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .news__postWrap .post-share {
    max-width: 39.125rem;
    margin-top: 5rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .news__postWrap .post-share {
    margin-top: 2rem;
  }
}

main.price {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.price {
    margin-top: 3.4375rem;
  }
}

.price__lead {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .price__lead {
    margin-top: 1.5rem;
  }
}

.price__lead p {
  font-size: max(18px, 1.5rem);
  font-weight: 500;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__lead p {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  .price__lead p {
    font-size: 1.125rem;
  }
}

.price__lead .is-num {
  display: inline-block;
  margin-inline: 0.5rem;
  color: var(--color-orange);
  font-size: max(32px, 2.625rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .price__lead .is-num {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .price__lead .is-num {
    margin-inline: 0.25rem;
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 500px) {
  .price__lead br {
    display: none;
  }
}

.price__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .price__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 28.125rem;
    margin-top: 4rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .price__list {
    margin-top: 2.5rem;
  }
}

.price__list-item {
  position: relative;
  padding: 2rem 1.5rem 3.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 500px) {
  .price__list-item {
    padding: 1.625rem 1.0625rem 3.75rem;
  }
}

.price__list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-color: var(--color-gray);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.price__list-item:first-of-type {
  border-top: 1rem solid #8cafe0;
}

.price__list-item:nth-of-type(2) {
  border-top: 1rem solid #5079b2;
}

.price__list-item:nth-of-type(3) {
  border-top: 1rem solid #304266;
}

@media screen and (max-width: 768px) {
  .price__list-item > * {
    max-width: 18.875rem;
    margin-inline: auto;
  }
}

.price__list-title {
  font-size: max(16px, 1.5rem);
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .price__list-title {
    font-size: 1.125rem;
  }
}

.price__list-price {
  display: block;
  font-size: max(20px, 1.75rem);
  font-weight: 700;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .price__list-price {
    font-size: 1.25rem;
  }
}

.price__list-price .is-num {
  display: inline-block;
  margin-inline: 0.625rem;
  color: var(--color-orange);
  font-family: var(--font-num);
  font-size: 5rem;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .price__list-price .is-num {
    font-size: 2.5rem;
  }
}

.price__list-contents {
  margin-top: 2rem;
}
@media screen and (max-width: 500px) {
  .price__list-contents {
    margin-top: 1rem;
  }
}

.price__list-contents li {
  font-size: max(11px, 1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.03em;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
@media screen and (max-width: 500px) {
  .price__list-contents li {
    font-size: 1rem;
  }
}

.price__list-contents li::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  margin-right: 0.5rem;
  transform: translateY(0.375rem);
  background: url(../images/common/icn_check.svg) no-repeat center/contain;
}
@media screen and (max-width: 500px) {
  .price__list-contents li::before {
    width: 1.25rem;
    transform: translateY(0.25rem);
  }
}

.price__list-osusume {
  margin-top: 1.5rem;
}

.price__list-osusume-title {
  display: block;
  padding: 0.25rem;
  font-size: max(13px, 1.125rem);
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-white);
  border-radius: 0.25rem;
}
@media screen and (max-width: 500px) {
  .price__list-osusume-title {
    font-size: 1.125rem;
  }
}

.price__list-item:first-of-type .price__list-osusume-title {
  background-color: #8cafe0;
}

.price__list-item:nth-of-type(2) .price__list-osusume-title {
  background-color: #5079b2;
}

.price__list-item:nth-of-type(3) .price__list-osusume-title {
  background-color: #304266;
}

.price__list-osusume-text {
  margin-top: 1rem;
  font-size: max(11px, 1rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .price__list-osusume-text {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}

.price__note {
  margin-top: 2.5rem;
}

.price__note li {
  font-size: max(14px, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .price__note li {
    margin-left: 1.8em;
    text-indent: -1.8em;
  }
}
@media screen and (max-width: 768px) {
  .price__note li {
    max-width: 39.0625rem;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .price__note li {
    max-width: 19.4375rem;
    margin-top: 0.625rem;
  }
}

.price__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .price__btn {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .price__btn {
    max-width: 19.4375rem;
  }
}

main.privacy {
  background: var(--color-gray);
  margin-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  main.privacy {
    margin-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  main.privacy {
    margin-top: 3.4375rem;
    padding-bottom: 4rem;
  }
}

.privacy__wrap {
  width: 51.25rem;
  margin: 4rem auto 0 auto;
}
@media screen and (max-width: 768px) {
  .privacy__wrap {
    margin-top: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .privacy__wrap {
    margin-top: 1rem;
  }
}

.privacy__row {
  margin-top: 2.5rem;
}

.privacy__wrap p {
  font-size: max(16px, 1.125rem);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .privacy__wrap p {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .privacy__wrap p {
    font-size: 1rem;
  }
}

.privacy__wrap h2 {
  font-size: max(18px, 1.25rem);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .privacy__wrap h2 {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .privacy__wrap h2 {
    font-size: 1rem;
  }
}

main.reason {
  margin-top: 5rem;
  background: var(--color-gray);
}
@media screen and (max-width: 500px) {
  main.reason {
    margin-top: 3.4375rem;
  }
}

.reason__list-row {
  max-width: 65rem;
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .reason__list-row {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-row {
    margin-top: 2.5rem;
  }
}

.reason__list-num {
  display: grid;
  grid-template-columns: 1fr 7.5rem 1fr;
  align-items: center;
  font-family: var(--font-en);
  font-size: 4rem;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reason__list-num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-num {
    font-size: 2rem;
  }
}

.reason__list-num::before,
.reason__list-num::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
}

.reason__list-inner {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason__list-inner {
    grid-template-columns: 15rem 1fr;
    gap: 1.5rem;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-inner {
    display: block;
  }
}

.reason__list-image {
  width: 18.75rem;
  aspect-ratio: 300/220;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .reason__list-image {
    width: 15rem;
    aspect-ratio: 240/200;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-image {
    width: 100%;
    aspect-ratio: 340/240;
  }
}

.reason__list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 0.25rem;
}

.reason__list-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .reason__list-title {
    width: 105%;
    font-size: 1.375rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-title {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.125rem;
    text-align: center;
  }
}

.reason__list-title .is-num {
  display: inline-block;
  margin-inline: 1rem;
  font-family: var(--font-en);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .reason__list-title .is-num {
    margin-inline: 0.5rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-title .is-num {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.reason__list-title .is-unit {
  display: inline-block;
  margin-left: -1rem;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .reason__list-title .is-unit {
    margin-left: -0.75rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-title .is-unit {
    font-size: 2rem;
  }
}

.reason__list-text {
  margin-top: 0.75rem;
  font-size: max(16px, 1.5rem);
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .reason__list-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .reason__list-text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.reason__circleList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5625rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 500px) {
  .reason__circleList {
    grid-template-columns: repeat(1, 1fr);
  }
}

.reason__circleList li {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .reason__circleList-image {
    max-width: 15rem;
  }
}

.reason__circleList-text {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .reason__circleList-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .reason__circleList-text {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 500px) {
  .reason__circleList-text br {
    display: none;
  }
}

main.fuhyohigaicloud {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.fuhyohigaicloud {
    margin-top: 3.4375rem;
  }
}

main.search-results {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.search-results {
    margin-top: 3.4375rem;
  }
}

main.search-suggestions {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.search-suggestions {
    margin-top: 3.4375rem;
  }
}

main.reviews {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.reviews {
    margin-top: 3.4375rem;
  }
}

main.social-media {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.social-media {
    margin-top: 3.4375rem;
  }
}

main.reputation-monitoring {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.reputation-monitoring {
    margin-top: 3.4375rem;
  }
}

main.brand-lifting {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.brand-lifting {
    margin-top: 3.4375rem;
  }
}
main.enjouyoboucloud {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.enjouyoboucloud {
    margin-top: 3.4375rem;
  }
}

.service__btnWrap {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 500px) {
  .service__btnWrap {
    margin-top: 1.5rem;
  }
}

a.service__btn.contact {
  position: relative;
  display: inline-block;
  padding: 1rem 3.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.075rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ffe043 0%, #f2635f 170.45%);
  border-radius: 0.5rem;
  transition: color 0.3s ease;
  margin-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  a.service__btn.contact {
    margin-right: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  a.service__btn.contact {
    margin-bottom: 1.25rem;
    margin-right: 0;
  }
}

a.service__btn.contact:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg, #ffe043 0%, #f2635f 170.45%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

a.service__btn.contact:hover::before {
  opacity: 1;
}

a.service__btn.contact:hover {
  background: transparent;
  color: var(--color-orange);
  text-shadow: none;
}

a.service__btn.download {
  position: relative;
  display: inline-block;
  padding: 1rem 4.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.075rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(0deg, #304266 -95%, #5079b5 100%);
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 500px) {
  a.service__btn.download {
    padding: 1rem 5.125rem;
  }
}

a.service__btn.download:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(0deg, #304266 -95%, #5079b5 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

a.service__btn.download:hover::before {
  opacity: 1;
}

a.service__btn.download:hover {
  background: transparent;
  color: var(--color-blue);
  text-shadow: none;
}

.service__list {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .service__list {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list {
    margin-top: 4rem;
  }
}

.service__list > li {
  padding: 2.5rem 2.5rem;
  background-color: var(--color-gray2);
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .service__list > li {
    padding: 1.6875rem 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list > li {
    padding: 1.5rem 1rem;
  }
}

.service__list > li + li {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .service__list > li + li {
    margin-top: 3rem;
  }
}

.service__list-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .service__list-inner {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-inner {
    justify-content: center;
    flex-direction: column;
  }
}

.service__list-image {
  flex-shrink: 0;
  width: 33.625rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .service__list-image {
    width: 21.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-image {
    width: 100%;
  }
}

.service__list-image img {
  width: 100%;
}

.service__list-inner h2 {
  font-size: max(24px, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__list-inner h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-inner h2 {
    font-size: 1.25rem;
  }
}

.service__list-inner h2.service__list-05 {
  width: 110%;
  transform: translateX(-5%);
  letter-spacing: -0.05em;
}

.service__list-inner p {
  margin-top: 3rem;
  font-size: max(18px, 1.5rem);
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service__list-inner p {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  .service__list-inner p {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }
}

.service__list-btn {
  height: 53px;
  margin-top: 3rem;
  font-size: max(18px, 1.25rem);
}
@media screen and (max-width: 768px) {
  .service__list-btn {
    height: 2.625rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-btn {
    height: 2.9375rem;
    font-size: 1rem;
  }
}

.service__list-bottom {
  position: relative;
  margin-top: 4rem;
}
@media screen and (max-width: 500px) {
  .service__list-bottom {
    margin-top: 3.125rem;
    padding: 0.125rem;
    border-radius: 0.5rem;
    background: var(--gradient-blue-2);
  }
}

.service__list-bottom-inner {
  padding-top: 1.875rem;
  padding-bottom: 1rem;
  background-color: var(--color-gray2);
  border-radius: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 501px) {
  .service__list-bottom-inner {
    display: contents;
  }
}

.service__list-task {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  gap: 2.1875rem;
  font-size: max(20px, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service__list-task {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-task {
    position: absolute;
    top: -0.9375rem;
    left: 50%;
    display: inline-block;
    margin-inline: auto;
    padding-inline: 1.25rem;
    font-size: 1.125rem;
    transform: translateX(-50%);
    background-color: var(--color-gray2);
  }
}

.service__list-task::before,
.service__list-task::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
}
@media screen and (max-width: 500px) {
  .service__list-task::before,
  .service__list-task::after {
    display: none;
  }
}

.service__list-item {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service__list-item {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-item {
    display: block;
    margin-top: 0;
  }
}

@media screen and (min-width: 501px) {
  .service__list-item li {
    padding: 0.125rem;
    border-radius: 0.5rem;
    background: var(--gradient-blue-2);
  }
}

@media screen and (max-width: 500px) {
  .service__list-item li + li {
    margin-top: 1rem;
  }
}

.service__list-item li div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: max(13px, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service__list-item li div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (min-width: 501px) {
  .service__list-item li div {
    background-color: var(--color-white);
    border-radius: 0.3125rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-item li div {
    display: block;
    padding: 0;
    padding-left: 2.75rem;
    font-size: 1rem;
    text-align: left;
  }
}

.service__list-item li div::before {
  content: "";
  display: block;
  width: 1.75rem;
  aspect-ratio: 1/1;
  background: url(../images/service/icn_task.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service__list-item li div::before {
    width: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service__list-item li div::before {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    width: 1.5rem;
  }
}

.service__list-item li div span {
  background: var(--gradient-blue-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 500px) {
  .service__list-item li div span {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .service__list-item li .tab {
    display: none;
  }
}

.service-detail__main {
  margin-top: 5rem;
  padding-block: 5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .service-detail__main {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main {
    margin-top: 5rem;
    padding-block: 2.5rem;
  }
}

.service-detail__main.reviews {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .service-detail__main.reviews {
    padding: 5rem 0 2.5rem 0;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main.reviews {
    padding: 6.875rem 0;
  }
}

.service-detail__main.reviews .wrapper {
  position: relative;
}

.service-detail__main.reviews .wrapper::before,
.service-detail__main.reviews .wrapper::after {
  position: absolute;
  font-family: var(--font-en);
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .service-detail__main.reviews .wrapper::before,
  .service-detail__main.reviews .wrapper::after {
    font-size: 2.5rem;
  }
}

.service-detail__main.reviews .wrapper::before {
  content: "Before";
  top: -3.75rem;
  left: -3.75rem;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .service-detail__main.reviews .wrapper::before {
    top: -2.5rem;
    left: -0.625rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main.reviews .wrapper::before {
    top: -4.375rem;
    left: -0.3125rem;
  }
}

.service-detail__main.reviews .wrapper::after {
  content: "After";
  top: -3.75rem;
  right: -3.75rem;
  color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .service-detail__main.reviews .wrapper::after {
    top: -2.5rem;
    right: -0.625rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main.reviews .wrapper::after {
    top: auto;
    bottom: -4.375rem;
    right: -0.3125rem;
  }
}

.service-detail__main img {
  width: 100%;
}

.service-detail__title {
  font-size: max(24px, 2.25rem);
  line-height: 4rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .service-detail__title {
    font-size: 1.75rem;
    line-height: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__title {
    font-size: 1.25rem;
    line-height: 2.125rem;
  }
}

.service-detail__title span {
  font-size: max(32px, 3rem);
}
@media screen and (max-width: 768px) {
  .service-detail__title span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__title span {
    font-size: 1.875rem;
  }
}
.service-detail__title--effects .service-detail__title-emphasis {
  color: var(--color-text);
  display: inline-block;
  margin-left: 0.7em;
  font-size: inherit;
  line-height: inherit;
}
@media screen and (max-width: 500px) {
  .service-detail__title--effects .service-detail__title-emphasis {
    margin-left: 0;
  }
}
.service-detail__title--effects .service-detail__title-overlap {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.08em;
  margin-left: -0.02em;
  margin-right: 0;
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
}
.service-detail__title--effects .service-detail__title-ru {
  color: #39476f;
  font-size: 1em;
  line-height: 1;
}
.service-detail__title--effects .service-detail__title-number {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 4.125rem;
  line-height: 1;
  transform: translateY(-0.24em);
}
@media screen and (max-width: 768px) {
  .service-detail__title--effects .service-detail__title-number {
    font-size: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__title--effects .service-detail__title-number {
    font-size: 2.5rem;
  }
}

.service-detail__lead {
  margin-top: 2rem;
  font-size: max(18px, 1.4375rem);
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: 0.075rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-detail__lead {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__lead {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.service-c-title {
  font-size: max(32px, 2.5rem);
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 0.125rem;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .service-c-title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-c-title {
    font-size: 1.25rem;
    line-height: 2.125rem;
    letter-spacing: 0.0625rem;
  }
}

.service-measure__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-measure__list {
    gap: 1rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-measure__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.service-measure__list li {
  background-color: var(--color-white);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
}

.service-measure__list-info {
  text-align: center;
}

.service-measure__list-info p {
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 0.025rem;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .service-measure__list-info p {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 500px) {
  .service-measure__list-info p {
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.04375rem;
  }
}

h3.service-measure__list-ja {
  color: var(--color-text);
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
}
@media screen and (max-width: 768px) {
  h3.service-measure__list-ja {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.0625rem;
  }
}
.service-measure__list-info img {
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .service-measure__list-info img {
    margin: 1.5rem 0;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  main.search-suggestions-display .service-measure__list-info {
    display: flex;
    flex-direction: column;
  }
  main.search-suggestions-display h3.service-measure__list-ja {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 4rem;
  }
}
.service-strengths {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .service-strengths {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-strengths {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.service-strengths__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-strengths__list {
    gap: 5.625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-strengths__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 6.5625rem;
  }
}

.service-search-result-strengths__list,
.service-review-strengths__list,
.service-social-media-strengths__list,
.service-brand-lifting-strengths__list,
.service-social-monitoring-strengths__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-search-result-strengths__list,
  .service-review-strengths__list,
  .service-social-media-strengths__list,
  .service-brand-lifting-strengths__list,
  .service-social-monitoring-strengths__list {
    gap: 5.625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-search-result-strengths__list,
  .service-review-strengths__list,
  .service-social-media-strengths__list,
  .service-brand-lifting-strengths__list,
  .service-social-monitoring-strengths__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 6.5625rem;
  }
}

.service-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 32.5rem;
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-strengths__list::after {
    top: 4.375rem;
    left: 20.3125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-strengths__list::after {
    top: 29.375rem;
    left: 9.375rem;
  }
}

.service-search-result-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 32.5rem;
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-search-result-strengths__list::after {
    top: 4.375rem;
    left: 20.3125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-search-result-strengths__list::after {
    top: 26.875rem;
    left: 9.375rem;
  }
}

.service-review-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 32.5rem;
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-review-strengths__list::after {
    top: 4.375rem;
    left: 20.3125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-review-strengths__list::after {
    top: 23.125rem;
    left: 9.375rem;
  }
}

.service-social-media-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 32.5rem;
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-social-media-strengths__list::after {
    top: 4.375rem;
    left: 20.3125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-social-media-strengths__list::after {
    top: 26.25rem;
    left: 9.375rem;
  }
}

.service-social-monitoring-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 32.5rem;
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-social-monitoring-strengths__list::after {
    top: 4.375rem;
    left: 20.3125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-social-monitoring-strengths__list::after {
    top: 34.375rem;
    left: 9.375rem;
  }
}

.service-brand-lifting-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 32.5rem;
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-brand-lifting-strengths__list::after {
    top: 4.375rem;
    left: 20.3125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-brand-lifting-strengths__list::after {
    top: 24.375rem;
    left: 9.375rem;
  }
}

.service-strengths__list-info {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-strengths__list-info img {
    width: 220px;
    height: 220px;
  }
}

.service-strengths__list-info p {
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 0.0625rem;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .service-strengths__list-info p {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.05rem;
    padding: 0 0.625rem;
  }
}

.service-strengths__list-ja {
  color: var(--color-text);
  text-align: center;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .service-strengths__list-ja {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.0625rem;
    margin: 1rem 0;
  }
}
@media screen and (max-width: 768px) {
  .service-strengths__list-ja {
    line-height: 2.125rem;
  }
}

.service-3r {
  padding-top: 7.5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .service-3r {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-3r {
    padding-top: 4rem;
  }
}

.service-worry {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .service-worry {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}

.service-detail__sec {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .service-detail__sec {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__sec {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 500px) {
  .service-worry-tab {
    display: none !important;
  }
}

.service-worry__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .service-worry__list {
    gap: 1rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.service-worry__list li {
  background-color: var(--color-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.service-worry__border {
  display: block;
  width: 100%;
  height: 0.3125rem;
  background: var(--gradient-blue-2);
}
@media screen and (max-width: 768px) {
  .service-worry__border {
    height: 0.25rem;
  }
}

.service-worry__list-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5625rem 1.25rem 2.8125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-worry__list-inner {
    padding: 1.5625rem 1rem;
  }
}

.service-worry__list h3 {
  font-size: max(20px, 1.75rem);
  font-weight: 700;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-worry__list h3 {
    font-size: 1.25rem;
  }
}

.service-worry__list-image {
  width: 100%;
  max-width: 17.125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-worry__list-image {
    margin-top: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list-image {
    max-width: 11.875rem;
  }
}

.service-worry__list-image img {
  width: 100%;
}

.service-worry__list p {
  margin-top: 2.1875rem;
  font-size: max(16px, 1.375rem);
  line-height: 1.6363636364;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .service-worry__list p {
    margin-top: 1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.service-worry__list--ssd {
  gap: 0.875rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list--ssd {
    gap: 1rem;
  }
}

.service-worry__list--ssd li {
  height: 42.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.375rem 1.125rem rgba(40, 64, 112, 0.08);
  border: 1px solid rgba(47, 73, 125, 0.06);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd li {
    height: auto;
  }
}

.service-worry__list--ssd .service-worry__border {
  display: none;
}

.service-worry__list--ssd .service-worry__list-inner {
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding: 2rem;
  text-align: center;
}

.service-worry__list--ssd h3 {
  width: 100%;
  color: #324979;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list--ssd h3 {
    font-size: 1.125rem;
  }
}

.service-worry__list--ssd .service-worry__card-number {
  display: block;
  margin-bottom: 1.125rem;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  background: linear-gradient(180deg, #5079B2 0%, #22344C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd .service-worry__card-number {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list--ssd .service-worry__card-number {
    font-size: 1.875rem;
  }
}

.service-worry__list--ssd .service-worry__card-title {
  display: block;
  margin-top: 2rem;
}

.service-worry__list--ssd .service-worry__list-image {
  width: 18.75rem;
  max-width: 100%;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd .service-worry__list-image {
    width: 100%;
  }
}

.service-worry__list--ssd .service-worry__list-image img {
  display: block;
  width: 100%;
  height: 12.5rem;
  border-radius: 0.375rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd .service-worry__list-image img {
    height: auto;
    aspect-ratio: 300/200;
  }
}

.service-worry__list--ssd p {
  width: 100%;
  margin-top: 1.25rem;
  color: #4d5b7d;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .service-worry__list--ssd p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-worry__list--ssd p {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .service-worry__list--ssd {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-worry__list--ssd .service-worry__list-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "number image"
      "title image"
      "text image";
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 1rem;
    padding: 2rem 1.5rem;
    text-align: left;
  }
  .service-worry__list--ssd .service-worry__card-number {
    grid-area: number;
    margin-bottom: 0;
    text-align: center;
  }
  .service-worry__list--ssd .service-worry__card-title {
    grid-area: title;
    margin-top: 0;
    text-align: center;
  }
  .service-worry__list--ssd .service-worry__list-image {
    grid-area: image;
    width: 100%;
    margin-top: 0;
    align-self: stretch;
  }
  .service-worry__list--ssd .service-worry__list-image img {
    height: 100%;
    min-height: 16.25rem;
    aspect-ratio: auto;
  }
  .service-worry__list--ssd p {
    grid-area: text;
    margin-top: 0;
  }
}

.service-cta__SPimage {
  width: 100%;
  margin-top: 4rem;
  overflow: hidden;
  height: 24.0625rem;
}
@media screen and (min-width: 501px) {
  .service-cta__SPimage {
    display: none;
  }
}

.service-cta__SPimage img {
  width: 15rem;
  height: 12.5rem;
  transform: translate(8.125rem, 0);
}

.service-cta {
  position: relative;
  margin-top: 17.375rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  background: var(--color-gray) url(../images/service/img_cta.webp) no-repeat
    center/cover;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .service-cta {
    margin-top: 8.125rem;
    padding-top: 2.875rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta {
    margin-top: -11.5625rem;
    background: url(../images/service/sp/img_cta.webp) no-repeat center/cover;
    padding-bottom: 3.125rem;
  }
}

.service-cta .wrapper-service-details {
  position: relative;
  margin: 0 clamp(1.5625rem, 6.5153733529vw, 5.5625rem);
}
@media screen and (min-width: 1441px) {
  .service-cta .wrapper-service-details {
    width: 75rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .service-cta .wrapper-service-details {
    margin: 0 clamp(1.25rem, 3.2552083333vw, 1.5625rem);
  }
}

.service-cta__woman {
  position: absolute;
  bottom: 13.75rem;
  right: -1rem;
  width: 26.25rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .service-cta__woman {
    bottom: 12.1875rem;
    right: -0.9375rem;
    width: 18.3125rem;
    height: 21.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__woman {
    display: none;
  }
}

.service-cta__title {
  color: var(--color-white);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.1625rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .service-cta__title {
    font-size: 2rem;
    line-height: 3.2625rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__title {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.05625rem;
    line-height: 2rem;
  }
}

span.service-cta__colorTitle {
  background: linear-gradient(90deg, #ffe043 0%, #f2635f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-cta__box {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem 1rem 2.5rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
  color: var(--color-orange);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service-cta__box {
    gap: 1.25rem;
    padding: 1.5rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__box {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem 1.375rem;
  }
}

.service-cta__box-text {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5714285714;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-cta__box-text {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__box-text {
    font-size: 1.375rem;
  }
}

.service-cta__btn {
  font-size: max(18px, 2.25rem);
  font-weight: 900;
  line-height: 1.6;
  padding: 0.5rem 2rem;
  margin-bottom: 2.8125rem;
  letter-spacing: 0.1125rem;
}
@media screen and (max-width: 1024px) {
  .service-cta__btn {
    font-size: 2.25rem;
    padding: 0.5rem 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .service-cta__btn {
    font-size: 1.5rem;
    padding: 0.5rem 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__btn {
    font-size: 1.125rem;
    padding: 1.5rem 1.25rem;
    line-height: 1.8rem;
    width: 100%;
    margin-bottom: 0;
  }
}

.service-cta__TELbtn {
  width: 30.0625rem;
  padding: 0.1875rem;
  background: var(--gradient-pink);
}
@media screen and (max-width: 768px) {
  .service-cta__TELbtn {
    width: 19.3125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__TELbtn {
    width: 18.5rem;
  }
}

.service-cta__TELbtn a {
  gap: 1.75rem;
  height: 5.5rem;
  font-size: max(24px, 3.125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .service-cta__TELbtn a {
    gap: 1.0625rem;
    height: 4.25rem;
    font-size: 1.875rem;
  }
}

.service-cta__TELbtn a::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  aspect-ratio: 1/1;
  background-size: 2.25rem 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.857 2c7.435.751 13.31 6.09 14.143 12.857M23.857 8.423c3.903.631 6.954 3.175 7.714 6.428' stroke='%23F2635F' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M31.272 37.976C13.54 38.791.336 18.605 2.17 8.756 3.854 5.852 6.011 3.7 8.9 2l6.28 8.662-3.185 5.554s.88 3.707 4.19 7.031c3.473 3.488 7.349 4.555 7.349 4.555l5.531-3.198L38 31.22c-1.662 2.982-3.758 5.087-6.728 6.756Z' stroke='%23F2635F' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  transform: translateY(0.25rem);
}
@media screen and (max-width: 768px) {
  .service-cta__TELbtn a::before {
    width: 1.875rem;
    background-size: 1.875rem 1.875rem;
  }
}

.service-call-btn {
  border: none;
  padding: 1.25rem 2rem;
}
@media screen and (max-width: 768px) {
  .service-call-btn {
    padding: 1.1875rem 1.25rem;
    margin-top: 0;
  }
}

.service-call-btn:hover {
  display: block;
  color: var(--color-text);
  background: var(--gradient-yellow-btn);
  border-radius: 0.25rem;
  border: none;
  padding: 1.25rem 2rem;
  --g1: unset;
  --g2: unset;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .service-call-btn:hover {
    padding: 1.1875rem 2.5rem;
  }
}

.service-call-btn a span img {
  width: 23.125rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-call-btn a span img {
    width: 14rem;
    height: 1.875rem;
  }
}

@media (any-hover: hover) {
  .service-cta__TELbtn a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.213 2C26.41 2.626 31.304 7.075 32 12.714M20.213 7.355c3.253.526 5.795 2.646 6.429 5.357' stroke='%23fff' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M26.393 31.98C11.617 32.66.613 15.837 2.142 7.63 3.545 5.21 5.342 3.417 7.749 2l5.233 7.218-2.654 4.629s.733 3.09 3.492 5.859c2.895 2.907 6.124 3.796 6.124 3.796l4.61-2.665L32 26.35c-1.385 2.485-3.132 4.24-5.607 5.63Z' stroke='%23fff' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}
.service-cta__TELbtn a span {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-cta__box-tel {
  margin-top: 0.5rem;
  font-size: max(18px, 1.5rem);
  font-weight: 500;
  line-height: 1.8333333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-cta__box-tel {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__box-tel {
    width: 110%;
    transform: translateX(-5%);
    font-size: 1.125rem;
  }
}

.service-cta-div {
  position: relative;
}
@media screen and (max-width: 500px) {
  .service-cta-div {
    width: 100%;
  }
}

.service-cta__box-text.contact-text {
  position: absolute;
  left: 10%;
  top: -3rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .service-cta__box-text.contact-text {
    top: -3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .service-cta__box-text.contact-text {
    left: -0.125rem;
    top: -2.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta__box-text.contact-text {
    position: unset;
  }
}

.cta__btnWrap.contact {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: max(24px, 2.1875rem);
  letter-spacing: 0.1125rem;
  line-height: 3.6rem;
  font-weight: 900;
  color: var(--color-white);
  background: linear-gradient(168deg, #ffe043 -12.48%, #f2635f 118.03%);
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .cta__btnWrap.contact {
    font-size: 2.25rem;
    padding: 0.875rem 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__btnWrap.contact {
    font-size: 1.25rem;
    padding: 0.875rem 1.625rem;
    margin-top: 0.625rem;
    line-height: 2.425rem;
  }
}
@media screen and (max-width: 500px) {
  .cta__btnWrap.contact {
    font-size: 1.5rem;
    padding: 1.25rem 1.25rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1.8rem;
    margin-bottom: 0;
  }
}

.cta__btnWrap.contact::before {
  content: "";
  position: absolute;
  padding: 4px; /* border thickness */
  border-radius: inherit;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(168deg, #ffe043 -12.48%, #f2635f 118.03%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta__btnWrap.contact:hover {
  background: transparent;
  color: #f2635f;
}

.cta__btnWrap.contact:hover::before {
  opacity: 1;
}

.cta__btnWrap.download {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: max(24px, 2.1875rem);
  letter-spacing: 0.1125rem;
  line-height: 3.6rem;
  font-weight: 900;
  color: var(--color-white);
  background: linear-gradient(180deg, #304266 0%, #5079b2 170.45%);
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .cta__btnWrap.download {
    font-size: 2.25rem;
    padding: 0.875rem 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__btnWrap.download {
    font-size: 1.25rem;
    padding: 0.875rem 1.25rem;
    line-height: 2.425rem;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 500px) {
  .cta__btnWrap.download {
    font-size: 1.5rem;
    padding: 1.25rem 1.25rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1.8rem;
  }
}

.cta__btnWrap.download::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 4px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(180deg, #304266 0%, #5079b2 170.45%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta__btnWrap.download:hover {
  background: transparent;
  color: #304266;
}

.cta__btnWrap.download:hover::before {
  opacity: 1;
}

.service-3r__title span {
  font-family: var(--font-en);
  font-size: max(48px, 5rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .service-3r__title span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .service-3r__title span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .brand-lifting_3r {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .brand-lifting_3r {
    padding-bottom: 0;
  }
}

.service-3r__title.brand-lifting span {
  font-family: var(--font-en);
  font-weight: 400;
}

.service-3r__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-3r__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.service-3r__list li {
  padding: 2rem 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .service-3r__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-3r__list li {
    padding: 1rem;
  }
}

.service-3r__list-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-3r__list-en {
  font-size: max(24px, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-3r__list-en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-3r__list-en {
    font-size: 1.125rem;
  }
}

.service-3r__list-en.num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  background: linear-gradient(to bottom, var(--color-blue), var(--color-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .service-3r__list-en.num {
    font-size: 1.5rem;
  }
}

.service-3r__list-ja {
  margin-top: 0.75rem;
  font-size: max(18px, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-3r__list-ja {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .service-3r__list-ja {
    font-size: 1rem;
  }
}

.service-3r__list img {
  margin-top: 2rem;
  border-radius: 0.5rem;
}

@media (min-width: 501px) and (max-width: 768px) {
  .service-3r__list-no-tab {
    display: none;
  }
}

.service-3r__list-tab {
  flex-shrink: 0;
  width: 22.625rem;
  height: 19rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 769px) {
  .service-3r__list-tab {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .service-3r__list-tab {
    display: none;
  }
}

.service-3r__list-tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0;
}

.service-3r__list h3 {
  margin-top: 2rem;
  font-size: max(18px, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-3r__list h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-3r__list h3 {
    font-size: 1rem;
  }
}

.service-3r__list h3 span {
  font-size: max(14px, 1rem);
}
@media screen and (max-width: 768px) {
  .service-3r__list h3 span {
    font-size: 0.875rem;
  }
}

.service-3r__list p {
  margin-top: 2rem;
  font-size: max(16px, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0.0625rem;
}
@media screen and (max-width: 768px) {
  .service-3r__list p {
    margin-top: 1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-3r__list p {
    font-size: 0.875rem;
  }
}

.service-voice {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .service-voice {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice {
    padding-top: 4rem;
  }
}

.service-voice__wrapper {
  max-width: 62.5rem;
}
@media screen and (max-width: 768px) {
  .service-voice__wrapper {
    max-width: 44rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__wrapper {
    max-width: 21.4375rem;
  }
}

.service-voice__box {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-voice__box {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box {
    margin-top: 1.5rem;
  }
}

.service-voice__box h3 {
  font-size: max(22px, 1.75rem);
  font-weight: 700;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-voice__box h3 {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box h3 {
    font-size: 1.125rem;
  }
}

.service-voice__box h3 span {
  display: inline;
  background: linear-gradient(transparent 60%, #ffe043 0%);
}
@media screen and (max-width: 500px) {
  .service-voice__box h3 .tab {
    display: none !important;
  }
}

.service-voice__row {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .service-voice__row {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__row {
    max-width: 19.4375rem;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
}

.service-voice__box-title {
  font-size: max(18px, 1.5rem);
  line-height: 1.6363636364;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-voice__box-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box-title {
    font-size: 0.875rem;
  }
}

.service-voice__box-text {
  font-size: max(18px, 1.25rem);
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-voice__box-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box-text {
    font-size: 0.875rem;
  }
}

.service-voice__box-title-img {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-voice__box-title-img img {
  width: 1.875rem;
}
@media screen and (max-width: 768px) {
  .service-voice__box-title-img img {
    width: 1.5rem;
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box-title-img img {
    width: 1.125rem;
    display: none;
  }
}

.service-voice__box-title {
  font-weight: 700;
}

.service-voice__box-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 500px) {
  .service-voice__box-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
}

.service-voice__box-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  font-size: max(16px, 1.125rem);
  font-weight: 500;
  line-height: 1.7777777778;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-text);
}
@media screen and (max-width: 768px) {
  .service-voice__box-list li {
    font-size: 1rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box-list li {
    justify-content: flex-start;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.75rem 0.625rem 0.75rem 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}

.service-voice__box-list li:has(.u-cl-pink) {
  line-height: 1.125;
}
@media screen and (max-width: 768px) {
  .service-voice__box-list li:has(.u-cl-pink) {
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__box-list li:has(.u-cl-pink) {
    line-height: 1.7142857143;
  }
}

.service-voice__box-list li:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: url(../images/service/icn_smile.svg) no-repeat center/cover;
}

.service-voice__box-list li span {
  font-size: max(24px, 2rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .service-voice__box-list li span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  .service-voice__box-list li .tab {
    display: none;
  }
}

.service-voice .top-voice__box {
  margin-top: 7.625rem;
}
@media screen and (max-width: 768px) {
  .service-voice .top-voice__box {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice .top-voice__box {
    margin-top: 6rem;
  }
}

.service-step {
  position: relative;
  margin-top: 12.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .service-step {
    margin-top: 9.375rem;
    padding-bottom: 4.375rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step {
    margin-top: 5.875rem;
    padding-bottom: 2.5rem;
  }
}

.service-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 7.467057101vw;
  transform: translateY(calc(-100% + 2px));
  background: url(../images/service/img_step_deco_white.svg) no-repeat
    center/contain;
}
@media screen and (max-width: 768px) {
  .service-step::before {
    height: 3.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step::before {
    height: 1.875rem;
  }
}

.service-voice__step {
  max-width: 62.5rem;
}
@media screen and (max-width: 768px) {
  .service-voice__step {
    max-width: 44rem;
  }
}
@media screen and (max-width: 500px) {
  .service-voice__step {
    max-width: 21.4375rem;
  }
}

.service-step__wrapper {
  max-width: 62.5rem;
}
@media screen and (max-width: 768px) {
  .service-step__wrapper {
    max-width: 44rem;
    padding-top: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__wrapper {
    max-width: 21.4375rem;
    padding-top: 2.5rem;
  }
}

.service-step__list {
  margin-top: 2.5rem;
  padding-bottom: 6.6875rem;
}
@media screen and (max-width: 768px) {
  .service-step__list {
    padding-bottom: 0rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__list {
    max-width: 19.5rem;
    margin-top: 1.5rem;
    margin-inline: auto;
    padding-bottom: 0rem;
  }
}

.service-step__list li {
  position: relative;
  min-height: 15rem;
  padding: 2.125rem 3.6875rem 2.5rem 2.125rem;
  background-color: var(--color-gray);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .service-step__list li {
    min-height: 14.375rem;
    padding: 2.1875rem 0.9375rem 2.1875rem 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__list li {
    padding: 1rem;
  }
}

.service-step__list li + li {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-step__list li + li {
    margin-top: 1.5rem;
  }
}

.service-step__list-step1 {
  position: absolute;
  top: 0.9375rem;
  left: 2.5rem;
  display: inline-block;
  color: #5079b2;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.4642857143;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service-step__list-step1 {
    top: 2.5rem;
    left: 1.875rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__list-step1 {
    position: relative;
    top: auto;
    left: auto;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.service-step__list-step {
  position: absolute;
  top: 0.9375rem;
  left: 2.5rem;
  display: inline-block;
  color: #5079b2;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.4642857143;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service-step__list-step {
    top: 1.875rem;
    left: 1.875rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__list-step {
    position: relative;
    top: auto;
    left: auto;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.service-step__list .service-step__list-image {
  width: 100%;
  height: 7.5rem;
  margin-top: 0.5rem;
}

.service-step__list .service-step__list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  margin-left: 0;
}

.service-step__list h3 {
  margin-left: calc(200px + 1.25rem + 1.125rem);
  font-size: max(20px, 1.5rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-step__list h3 {
    font-size: 1.25rem;
    margin-left: calc(174px + 1.25rem + 0.9375rem);
  }
}
@media screen and (max-width: 500px) {
  .service-step__list h3 {
    margin-top: 0.75rem;
    margin-left: 0;
    font-size: 1rem;
  }
}

.service-step__list-col {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .service-step__list-col {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__list-col {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .service-step__list li:nth-child(5) .service-step__list-col {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .service-step__list li:nth-child(1) .service-step__list-col,
  .service-step__list li:nth-child(2) .service-step__list-col,
  .service-step__list li:nth-child(5) .service-step__list-col {
    align-items: flex-start;
  }
}

.service-step__list img {
  flex-shrink: 0;
  width: 200px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .service-step__list img {
    width: 174px;
  }
}

.service-step__list p {
  font-size: max(16px, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-step__list p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-step__list p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.service-cta-bottom-wrap .wrapper {
  min-width: auto;
}
@media screen and (max-width: 500px) {
  .service-cta-bottom-wrap .wrapper {
    width: 100%;
    max-width: 100%;
  }
}

.service-cta-bottom__SPimage {
  width: 100%;
  height: 22.8125rem;
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 501px) {
  .service-cta-bottom__SPimage {
    display: none;
  }
}

.service-cta-bottom__SPimage img {
  width: 13.5rem;
  transform: translate(13.125rem, 0rem);
  width: 10.3125rem;
  height: 10.8125rem;
  aspect-ratio: 165/173;
}

.service-cta-bottom {
  position: relative;
  width: 100%;
  min-height: 61.625rem;
  padding: 7.3125rem 3.375rem 5.3125rem 3.375rem;
  color: var(--color-white);
  border-radius: 0.75rem;
  background: url(../images/service/img_cta_bottom.webp) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom {
    padding: 3.5rem 2rem;
    min-height: 43.75rem;
    background: url(../images/service/md/img_cta_bottom.webp) no-repeat
      center/cover;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom {
    min-height: 62.25rem;
    margin-top: -16.25rem;
    padding: 6.9333333333vw 1rem 1.875rem;
    background: url(../images/home/sp/img_cta_bottom_sp.webp) no-repeat top
      6.9333333333vw center/cover;
    border-radius: unset;
  }
}

.service-cta-bottom-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 4.8rem;
  letter-spacing: 0.15rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom-title {
    font-size: 2rem;
    line-height: 3.2rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom-title {
    margin-top: 1.875rem;
    font-size: 1.375rem;
    line-height: 2.2rem;
    letter-spacing: 0.06875rem;
    padding-top: 1.875rem;
  }
}

.service-cta-bottom-subTitle {
  margin-top: 2.125rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.09375rem;
  color: var(--color-text);
  text-align: center;
  position: relative;
  background-color: var(--color-yellow);
  padding: 1rem 2.5rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom-subTitle {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    line-height: 1.8rem;
    letter-spacing: 0.05625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom-subTitle {
    width: 110%;
    transform: translateX(-5%);
    font-size: 1.125rem;
  }
}

.service-cta-bottom-subTitle::after {
  position: absolute;
  content: "";
  width: 2rem;
  aspect-ratio: 32/48;
  background: url(../images/home/icn_voice_bottom.svg) no-repeat center/contain;
  z-index: 1;
  top: 3.4375rem;
  right: 12.5rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom-subTitle::after {
    top: 2.5rem;
  }
}

.service-cta-bottom__inner {
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__inner {
    max-width: 21.4375rem;
  }
}

.service-cta-bottom__box {
  max-width: 36.625rem;
  margin-top: 5.3125rem;
  padding: 3rem 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box {
    max-width: 20rem;
    padding: 1.5rem;
    margin-top: 4.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box {
    max-width: 100%;
    margin-top: 2.5rem;
  }
}

.service-cta-bottom__box.box-pink {
  color: var(--color-orange);
}

.service-cta-bottom__box.box-blue {
  margin-top: 2.375rem;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box.box-blue {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box.box-blue {
    margin-top: 1.375rem;
  }
}

.service-cta-bottom__box-text {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.0875rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-text {
    font-size: 1.375rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-text {
    font-size: 1.375rem;
  }
}

.service-cta-bottom__box-text-small {
  width: 110%;
  transform: translateX(-5%);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-text-small {
    font-size: 1.3125rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-text-small {
    font-size: 1.375rem;
    line-height: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .service-cta-bottom__box-text-small .pc {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-text-small .pc {
    display: none;
  }
}

.service-cta-bottom__box-text-small .tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-text-small .tab {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-text-small .tab {
    display: none;
  }
}

.service-cta-bottom__box-text-br {
  display: none;
}
@media (min-width: 501px) and (max-width: 767px) {
  .service-cta-bottom__box-text-br {
    display: block;
  }
}

.service-cta-bottom__box-textLarge {
  width: 110%;
  transform: translateX(-5%);
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-textLarge {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-textLarge {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

.service-cta-bottom__box-textLarge .tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-textLarge .tab {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-textLarge .tab {
    display: none;
  }
}

.service-cta-bottom__box-textLarge .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-textLarge .sp {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-textLarge .sp {
    display: block;
  }
}

.service-cta-bottom__btn {
  height: 6.125rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.625;
  letter-spacing: 0.1125rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__btn {
    height: 3.75rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__btn {
    font-size: 1.5rem;
  }
}

.service-cta-bottom__box-bottom {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-bottom {
    margin-top: 1.5rem;
  }
}

.service-cta-call-btn {
  padding: 1.625rem 2.75rem;
}
@media screen and (max-width: 768px) {
  .service-cta-call-btn {
    padding: 1.1875rem 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-call-btn {
    padding: 1.1875rem 2.0625rem;
  }
}

.service-cta-bottom__TELbtn {
  padding: 0.1875rem;
  background: var(--gradient-pink);
}

.service-cta-bottom__TELbtn a {
  gap: 1.0625rem;
  height: 5.5rem;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__TELbtn a {
    gap: 0.75rem;
    height: 3.875rem;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__TELbtn a {
    font-size: 1.875rem;
  }
}

.service-cta-bottom__TELbtn a::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  aspect-ratio: 1/1;
  background-size: 2.25rem 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.857 2c7.435.751 13.31 6.09 14.143 12.857M23.857 8.423c3.903.631 6.954 3.175 7.714 6.428' stroke='%23F2635F' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M31.272 37.976C13.54 38.791.336 18.605 2.17 8.756 3.854 5.852 6.011 3.7 8.9 2l6.28 8.662-3.185 5.554s.88 3.707 4.19 7.031c3.473 3.488 7.349 4.555 7.349 4.555l5.531-3.198L38 31.22c-1.662 2.982-3.758 5.087-6.728 6.756Z' stroke='%23F2635F' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  transform: translateY(0.1875rem);
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__TELbtn a::before {
    width: 1.5rem;
    background-size: 1.5rem 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__TELbtn a::before {
    width: 1.75rem;
    background-size: 1.75rem 1.75rem;
  }
}

@media (any-hover: hover) {
  .service-cta-bottom__TELbtn a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.213 2C26.41 2.626 31.304 7.075 32 12.714M20.213 7.355c3.253.526 5.795 2.646 6.429 5.357' stroke='%23fff' stroke-width='3' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M26.393 31.98C11.617 32.66.613 15.837 2.142 7.63 3.545 5.21 5.342 3.417 7.749 2l5.233 7.218-2.654 4.629s.733 3.09 3.492 5.859c2.895 2.907 6.124 3.796 6.124 3.796l4.61-2.665L32 26.35c-1.385 2.485-3.132 4.24-5.607 5.63Z' stroke='%23fff' stroke-width='3' stroke-linecap='square'/%3E%3C/svg%3E");
  }
}
.service-cta-bottom__TELbtn a span {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-cta-bottom__box-tel {
  width: 110%;
  transform: translateX(-5%);
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box-tel {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box-tel {
    font-size: 1.125rem;
  }
}

.service-cta-bottom__box.box-blue .service-cta-bottom__btn {
  height: 6rem;
  margin-top: 1.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__box.box-blue .service-cta-bottom__btn {
    font-size: 1.25rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__box.box-blue .service-cta-bottom__btn {
    height: 6.25rem;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.04375rem;
  }
}

.service-cta-bottom__image {
  position: absolute;
  bottom: 0;
  right: 0rem;
  width: 41.8125rem;
}
@media screen and (max-width: 768px) {
  .service-cta-bottom__image {
    right: 0rem;
    width: 26.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .service-cta-bottom__image {
    display: none;
  }
}

.service-related__title {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  gap: 2.1875rem;
  font-size: max(28px, 2.5rem);
  font-weight: 700;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-related__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-related__title {
    gap: 0.9375rem;
    font-size: 1.25rem;
  }
}

.service-related__title::before,
.service-related__title::after {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .service-related__title::before,
  .service-related__title::after {
    height: 0.0625rem;
  }
}

.service-related.suggestions_service-detail__sec {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .service-related.suggestions_service-detail__sec {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .service-related.suggestions_service-detail__sec {
    padding-bottom: 4rem;
  }
}

.search-suggestions-related_list li {
  background: var(--color-white);
  padding: 1rem;
  border-radius: 0.75rem;
}

.service-related__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .service-related__list {
    max-width: 40rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .service-related__list {
    max-width: 19rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .service-related__list {
    width: fit-content;
    max-width: none;
    gap: 1.5rem 1rem;
  }
  .service-related__list--enjouyoboucloud {
    width: fit-content;
    grid-template-columns: repeat(3, 13.625rem);
  }
  .service-related__list--fuhyohigai {
    width: fit-content;
    grid-template-columns: repeat(3, 13.625rem);
  }
  .service-related__list--fuhyohigai li:last-child {
    grid-column: 2/3;
  }
  .service-related__list--brand-lifting {
    width: fit-content;
    grid-template-columns: repeat(3, 13.625rem);
  }
  .search-suggestions-related_list li {
    display: flex;
    flex-direction: column;
    width: 13.625rem;
    height: 19rem;
    padding: 1rem;
  }
  .search-suggestions-related_list .service-related__image {
    width: 11.625rem;
    height: 8.625rem;
    margin-inline: auto;
  }
  .service-related__list.search-suggestions-related_list h4 {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .search-suggestions-related_list .service-related__btn {
    margin-top: auto;
  }
  .search-suggestions-related_list .service-related__btn a {
    min-height: 2.5rem;
    font-size: 0.9375rem;
    line-height: 1;
  }
}

.service-related__list h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: max(18px, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.0625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-related__list h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 500px) {
  .service-related__list h3 {
    margin-top: 1rem;
    font-size: 1.125rem;
  }
}

.service-related__image {
  aspect-ratio: 257/191;
  border-radius: 0.5rem;
}

.service-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-related__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 500px) {
  .service-related__btn {
    margin-top: 1rem;
  }
}

.service-related__btn a {
  font-size: max(16px, 1rem);
}
@media screen and (max-width: 768px) {
  .service-related__btn a {
    font-size: 1rem;
  }
}

.service-detail__reputation {
  margin-top: 5rem;
}

.service-detail__reputation-box {
  display: grid;
  grid-template-columns: 29.8125rem 1fr;
  gap: 1.5rem 4rem;
  padding: 2.5rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .service-detail__reputation-box {
    grid-template-columns: 19.75rem 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__reputation-box {
    display: block;
  }
}

.service-detail__reputation-box.reverse {
  grid-template-columns: 1fr 29.8125rem;
}
@media screen and (max-width: 768px) {
  .service-detail__reputation-box.reverse {
    grid-template-columns: 1fr 19.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__reputation-box.reverse {
    display: block;
  }
}

.service-detail__reputation-box.reverse .service-detail__reputation-dscp {
  order: 1;
}

.service-detail__reputation-box.reverse .service-detail__reputation-image {
  order: 2;
}

.service-detail__reputation-box + .service-detail__reputation-box {
  margin-top: 2.5rem;
}

.service-detail__reputation-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 0.5rem;
}
@media screen and (max-width: 500px) {
  .service-detail__reputation-image {
    aspect-ratio: 300/200;
    height: 12.5rem;
    width: 18.75rem;
  }
}

@media screen and (max-width: 500px) {
  .service-detail__reputation-dscp {
    margin-top: 1.5rem;
  }
}

.service-detail__reputation-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-detail__reputation-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__reputation-title {
    font-size: 1.25rem;
    text-align: center;
  }
}

.service-detail__reputation-text {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-detail__reputation-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__reputation-text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.brand-lifting-title {
  max-width: 48.8125rem;
  margin-inline: auto;
}

.brand-lifting-title img {
  width: 100%;
}

.service-detail__main.brand-lifting img {
  transform: translateX(3rem);
}
@media screen and (max-width: 768px) {
  .service-detail__main.brand-lifting img {
    transform: translateX(1.375rem);
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main.brand-lifting img {
    transform: translateX(0.5rem);
  }
}

.service-detail__main-text {
  margin-top: 2.5rem;
  font-size: max(16px, 1.5rem);
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-detail__main-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main-text {
    font-size: 0.875rem;
  }
}

.service-detail__main-text .is-bold {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .service-detail__main-text .is-bold {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .service-detail__main-text .is-bold {
    font-size: 1.25rem;
  }
}
.service-detail__main-text-light {
  font-weight: 400;
}

.service-faq {
  background-color: var(--color-white);
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .service-faq {
    padding-bottom: 5rem;
  }
}

.service-faq__wrapper {
  padding: 0 3.125rem;
}
@media screen and (max-width: 768px) {
  .service-faq__wrapper {
    padding: 0;
  }
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 1.5rem 0 1.5rem;
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 768px) {
  .faq-question {
    align-items: flex-start;
  }
}

.question-number {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4545454545;
  letter-spacing: 0.06875rem;
  color: var(--color-text);
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .question-number {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.05625rem;
  }
}
@media screen and (max-width: 500px) {
  .question-number {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.05rem;
  }
}

.faq-text {
  flex: 1;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4545454545;
  letter-spacing: 0.06875rem;
  color: var(--color-text);
  text-align: left;
  padding: 0 0 1.5rem 0.5rem;
}
@media screen and (max-width: 768px) {
  .faq-text {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    letter-spacing: 0.05625rem;
  }
}
@media screen and (max-width: 500px) {
  .faq-text {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.05rem;
  }
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .faq-icon {
    margin-top: 0.9375rem;
  }
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.0625rem;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .faq-answer p {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 500px) {
  .faq-answer p {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    letter-spacing: 0.04375rem;
  }
}

.service-faq__wrapper .service-c-title {
  margin-bottom: 2.5rem;
}

main.reputation-risk-consulting {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.reputation-risk-consulting {
    margin-top: 3.4375rem;
  }
}

.service-consulting-strengths__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-consulting-strengths__list {
    gap: 5.625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-consulting-strengths__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 6.5625rem;
  }
}

.service-consulting-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-consulting-strengths__list::after {
    top: 4.375rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-consulting-strengths__list::after {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
  }
}

.service-consulting-strengths__list-ja {
  color: var(--color-text);
  text-align: center;
  font-size: 1.875rem;
  line-height: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin: 1.5rem 0;
  min-height: 6.4rem;
}
@media screen and (max-width: 768px) {
  .service-consulting-strengths__list-ja {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.0625rem;
    margin: 1rem 0;
    min-height: 4.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-consulting-strengths__list-ja {
    min-height: auto;
  }
}

@media screen and (max-width: 500px) {
  .service-3r__title--small {
    font-size: 1.13rem;
  }
}

.service-related__subtitle {
  font-size: max(20.8px, 2.108125rem);
  position: relative;
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
  margin-top: 3.125rem;
}
.service-related__subtitle::after {
  content: "";
  width: 120px;
  height: 5px;
  background-color: var(--color-text);
  position: absolute;
  left: calc(50% - 60px);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .service-related__subtitle {
    font-size: 1.25rem;
  }
  .service-related__subtitle::after {
    width: 100px;
    left: calc(50% - 50px);
  }
}

@media screen and (min-width: 769px) {
  .service-related__list.justify-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .service-related__list.justify-center li {
    width: calc((100% - 4.5rem) / 4);
    min-width: 165px;
  }
}

.service-related__list h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: max(18px, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.0625rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .service-related__list h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: max(54px, 4.5rem);
    text-align: center;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .service-related__list h4 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 500px) {
  .service-related__list h4 {
    margin-top: 1rem;
    font-size: 1.125rem;
  }
}

main.shimei-search-mamorukun {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.shimei-search-mamorukun {
    margin-top: 3.4375rem;
  }
}

.service-mamorukun-worry__list-inner h3 {
  font-size: max(20px, 1.625rem);
  font-weight: 700;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .service-mamorukun-worry__list-inner h3 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .service-mamorukun-worry__list-inner h3 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .service-mamorukun-worry__list-inner h3 {
    font-size: 1.25rem;
  }
}

.service-mamorukun-strengths__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-mamorukun-strengths__list {
    gap: 5.625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-mamorukun-strengths__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 6.5625rem;
  }
}

.service-mamorukun-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-mamorukun-strengths__list::after {
    top: 4.375rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-mamorukun-strengths__list::after {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

@media screen and (max-width: 500px) {
  .service-3r__title--small {
    font-size: 1.13rem;
  }
}

.service-related__subtitle {
  font-size: max(20.8px, 2.108125rem);
  position: relative;
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
  margin-top: 3.125rem;
}
.service-related__subtitle::after {
  content: "";
  width: 120px;
  height: 5px;
  background-color: var(--color-text);
  position: absolute;
  left: calc(50% - 60px);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .service-related__subtitle {
    font-size: 1.25rem;
  }
  .service-related__subtitle::after {
    width: 100px;
    left: calc(50% - 50px);
  }
}

@media screen and (min-width: 769px) {
  .service-related__list.justify-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .service-related__list.justify-center li {
    width: calc((100% - 4.5rem) / 4);
    min-width: 165px;
  }
}

.service-related__list h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: max(18px, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.0625rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .service-related__list h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: max(54px, 4.5rem);
    text-align: center;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .service-related__list h4 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 500px) {
  .service-related__list h4 {
    margin-top: 1rem;
    font-size: 1.125rem;
  }
}

main.seo-aio-lifting {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.seo-aio-lifting {
    margin-top: 3.4375rem;
  }
}

.service-seo_aio-strengths__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-seo_aio-strengths__list {
    gap: 5.625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-seo_aio-strengths__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 6.5625rem;
  }
}

.service-seo_aio-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-seo_aio-strengths__list::after {
    top: 4.375rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-seo_aio-strengths__list::after {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
  }
}

.service-seo_aio-worry__list-inner h3 {
  font-size: max(20px, 1.625rem);
  font-weight: 700;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .service-seo_aio-worry__list-inner h3 {
    font-size: 1.25rem;
  }
}

main.sns-lifting {
  background: var(--color-gray);
  margin-top: 5rem;
}
@media screen and (max-width: 500px) {
  main.sns-lifting {
    margin-top: 3.4375rem;
  }
}

.service-sns-strengths__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.75rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service-sns-strengths__list {
    gap: 5.625rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .service-sns-strengths__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 6.5625rem;
  }
}

.service-sns-strengths__list::after {
  position: absolute;
  content: "";
  height: 3.75rem;
  width: 3.75rem;
  top: 9.375rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/service/01/cross.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .service-sns-strengths__list::after {
    top: 4.375rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .service-sns-strengths__list::after {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-75%);
  }
}

.service-sns-strengths__list-ja {
  color: var(--color-text);
  text-align: center;
  font-size: 1.875rem;
  line-height: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin: 1.5rem 0;
  min-height: 6.4rem;
}
@media screen and (max-width: 768px) {
  .service-sns-strengths__list-ja {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.0625rem;
    margin: 1rem 0;
    min-height: 4.25rem;
  }
}
@media screen and (max-width: 500px) {
  .service-sns-strengths__list-ja {
    min-height: auto;
  }
}

main.sitemap {
  background: var(--color-gray);
  margin-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  main.sitemap {
    margin-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  main.sitemap {
    margin-top: 3.4375rem;
    padding-bottom: 4rem;
  }
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 4rem;
  margin-top: 4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sitemap-list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .sitemap-list {
    margin-top: 4rem;
  }
}

.sitemap-item > * {
  display: block;
  margin-top: 1rem;
}

.sitemap-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0;
}

.sitemap-item__subTitle {
  font-size: 1.125rem;
  font-weight: 400;
}

.sitemap-item__row {
  margin-left: 1rem;
}

.sitemap-item__row > * {
  display: block;
  margin-top: 0.5rem;
}

.u-cl-pink {
  color: var(--color-pink);
}

.u-cl-orange {
  color: var(--color-orange);
}

.u-cl-blue {
  color: var(--color-blue);
}

/* Additional css: Author CSS; */
.post-author {
  display: flex;
  justify-content: flex-start;
}

.post-author__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* 24px */
}

.post-author__info p {
  font-family: Zen Kaku Gothic Antique;
  font-weight: 500;
  font-style: Medium;
  font-size: 1rem; /* 16px */
  leading-trim: NONE;
  line-height: 160%;
  letter-spacing: 5%;
}

.post-author {
  background: #FAFAFA;
  padding: 1.5rem; 
  margin-bottom: 3.125rem;
  border-radius: 0.75rem; 
}

.post-author__pen img {
  width: 4.6875rem; 
}

@media (max-width: 62rem) { 
  .post-author__info p {
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem; 
    line-height: 160%;
    letter-spacing: 5%;
  }
}

@media (max-width: 47.9375rem) { 
  .post-author__info p {
    font-weight: 400;
    font-style: Regular;
    font-size: 0.875rem;
    line-height: 160%;
    letter-spacing: 5%;
  }
  .post-author__pen img {
    width: 4.375rem;
  }
}

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

@media screen and (max-width: 500px) {
  .service__list-inner h2.sp {
    width: 100%;
  }
}
.brand-lifting-page-title {
  letter-spacing: 0.05em;
}
.brand-lifting-service__list .service__list-inner {
  align-items: stretch;
}

.brand-lifting-service__list .service__list-inner p {
  margin-top: 1.5rem;
}

.brand-lifting-service__list .service__list-btn {
  margin-top: 1.5rem;
}

.brand-lifting-service__item-equal-height .service__list-inner {
  align-items: stretch;
}

.brand-lifting-service__list
  .service__list-inner
  > div:not(.brand-lifting-service__image) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-lifting-service__tasks-two {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .brand-lifting-service__tasks-two {
    gap: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .brand-lifting-service__tasks-two {
    gap: 0.5rem;
  }
}
.brand-lifting-service__tasks-two li div span {
  white-space: nowrap;
}

.brand-lifting-service__tasks-mixed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-lifting-service__task-wide {
  grid-column: 1/-1;
}

.brand-lifting-service__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  min-height: 400px;
  padding: 1.5rem;
  background-color: #e8ebf1;
}

.brand-lifting-service__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  margin-inline: auto;
}

#brand-lifting-cta {
  scroll-margin-top: 7.5rem;
}

@media screen and (max-width: 768px) {
  main.brand-lifting .service__list-inner h2,
  main.enjouyoboucloud .service__list-inner h2 {
    font-size: 1.5rem;
  }
  main.brand-lifting .service__list-inner p,
  main.enjouyoboucloud .service__list-inner p {
    font-size: 1.125rem;
  }
  main.brand-lifting .service__list-item li div,
  main.enjouyoboucloud .service__list-item li div {
    font-size: 1rem;
  }
  .brand-lifting-service__image {
    padding: 1.25rem;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  main.brand-lifting
    .brand-lifting-service__list
    .service__list-inner
    > div:not(.brand-lifting-service__image) {
    min-height: 252px;
  }
  main.brand-lifting .brand-lifting-service__list .service__list-inner p {
    margin-top: 0.625rem;
  }
  main.brand-lifting .brand-lifting-service__list .service__list-btn {
    margin-top: 0.625rem;
  }
  main.brand-lifting .brand-lifting-service__image {
    height: 252px;
    min-height: 252px;
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  main.brand-lifting .service__list-inner h2,
  main.enjouyoboucloud .service__list-inner h2 {
    font-size: 1.25rem;
  }
  main.brand-lifting .service__list-inner p,
  main.enjouyoboucloud .service__list-inner p {
    font-size: 1rem;
  }
  main.brand-lifting .service__list-item li div,
  main.enjouyoboucloud .service__list-item li div {
    font-size: 1rem;
  }
  main.brand-lifting .service__list-bottom {
    margin-top: 2.875rem;
  }
  .brand-lifting-page-title {
    line-height: 1.5;
  }
  .brand-lifting-service__list
    .service__list-inner
    > div:not(.brand-lifting-service__image) {
    display: block;
    min-height: auto;
  }
  .brand-lifting-service__tasks-two {
    grid-template-columns: 1fr;
  }
  .brand-lifting-service__tasks-two li div span {
    white-space: normal;
  }
  .brand-lifting-service__tasks-mixed {
    grid-template-columns: 1fr;
  }
  .brand-lifting-service__task-wide {
    grid-column: auto;
  }
  .brand-lifting-service__image {
    height: auto;
    min-height: auto;
    padding: 1rem;
  }
  .brand-lifting-service__image img {
    width: 100%;
    max-height: none;
  }
}
main.enjouyoboucloud
  .enjouyoboucloud-service__item-equal-height
  .service__list-inner {
  align-items: stretch;
}
main.enjouyoboucloud
  .enjouyoboucloud-service__item-equal-height
  .service__list-inner
  > div:not(.brand-lifting-service__image) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.enjouyoboucloud
  .enjouyoboucloud-service__item-equal-height
  .service__list-inner
  p {
  margin-top: 1.125rem;
}
main.enjouyoboucloud
  .enjouyoboucloud-service__list
  .brand-lifting-service__image {
  height: 25rem;
  min-height: 25rem;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  filter: none;
}
main.enjouyoboucloud .enjouyoboucloud-service__list > li {
  box-shadow: none;
}
main.enjouyoboucloud .service__list-item li {
  display: flex;
}
main.enjouyoboucloud .service__list-item li div {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  text-align: left;
}
main.enjouyoboucloud
  .enjouyoboucloud-service__list
  .brand-lifting-service__image
  img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  box-shadow: none;
  filter: none;
}
main.enjouyoboucloud .enjouyoboucloud-service__btn {
  height: 3.5rem;
  margin-top: 2.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  background: var(--gradient-yellow-btn);
}
@media screen and (max-width: 768px) {
  main.enjouyoboucloud .service__list-bottom {
    margin-top: 2rem;
  }
  main.enjouyoboucloud .enjouyoboucloud-service__list .service__list-inner h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  main.enjouyoboucloud .enjouyoboucloud-service__list .service__list-inner p {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  main.enjouyoboucloud
    .enjouyoboucloud-service__list
    .brand-lifting-service__image {
    height: 252px;
    min-height: 252px;
    padding: 0;
  }
  main.enjouyoboucloud .service__list-item {
    margin-top: 2.5rem;
  }
  main.enjouyoboucloud .brand-lifting-service__tasks-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  main.enjouyoboucloud .enjouyoboucloud-service__tasks-first {
    grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  }
  main.enjouyoboucloud .service__list-item li div {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    font-size: 1rem;
    text-align: left;
  }
  main.enjouyoboucloud .service__list-item li div::before {
    width: 1.75rem;
  }
  main.enjouyoboucloud .enjouyoboucloud-service__btn {
    height: 3.5rem;
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  main.enjouyoboucloud .brand-lifting-page-title {
    font-size: 22px;
    font-weight: 900;
  }
  main.enjouyoboucloud .enjouyoboucloud-service__list {
    margin-top: 2.5rem;
  }
  main.enjouyoboucloud .service__list-item {
    margin-top: 0;
  }
  main.enjouyoboucloud .service__list-item li + li {
    margin-top: 0.0rem;
  }
  main.enjouyoboucloud .enjouyoboucloud-service__list .service__list-inner {
    gap: 1.5rem;
  }
  main.enjouyoboucloud
    .enjouyoboucloud-service__item-equal-height
    .service__list-inner
    > div:not(.brand-lifting-service__image) {
    display: block;
    min-height: auto;
  }
  main.enjouyoboucloud
    .enjouyoboucloud-service__item-equal-height
    .service__list-inner
    p {
    margin-top: 0.625rem;
  }
  main.enjouyoboucloud
    .enjouyoboucloud-service__list
    .brand-lifting-service__image {
    height: auto;
    min-height: auto;
    padding: 0;
  }
  main.enjouyoboucloud .service__list-item li div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    text-align: left;
  }
  main.enjouyoboucloud .service__list-item li div::before {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    flex: 0 0 1.5rem;
    width: 1.5rem;
  }
  main.enjouyoboucloud .enjouyoboucloud-service__btn {
    height: 2.9375rem;
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}
