@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

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

html {
  font-size: clamp(12.8px, 9.1733333333px + 0.4740740741vw, 16px);
}
@media screen and (max-width: 450px) {
  html {
    font-size: 16px;
  }
}

:root {
  --fs-sm: clamp(12px, 7.85px + 0.467vw, 15px);
  --fs-base: clamp(14.4px, 10.09px + 0.6vw, 18px);
  --fs-lg: clamp(14.4px, 10.09px + 0.6vw, 18px);
  --fs-xl: clamp(19.2px, 13.45px + 0.8vw, 24px);
  --fs-xxl: clamp(25.6px, 17.93px + 1.067vw,32px);
}
@media screen and (max-width: 765px) {
  :root {
    --fs-sm: 15px;
    --fs-base: 18px;
    --fs-lg: 18px;
    --fs-xl: 24px;
    --fs-xxl: 32px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --fs-sm: clamp(0.75rem, 0.288rem + 2.31vw, 0.938rem);
    --fs-base: clamp(0.9rem, 0.346rem + 2.77vw, 1.125rem);
    --fs-lg: clamp(0.9rem, 0.346rem + 2.77vw, 1.125rem);
    --fs-xl: clamp(1.2rem, 0.462rem + 3.69vw, 1.5rem);
    --fs-xxl: clamp(1.6rem, 0.615rem + 4.92vw, 2rem);
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: #575757;
  background-color: #F1F1F1;
}

p {
  font-size: var(--fs-base);
  line-height: 1.6;
}
@media screen and (max-width: 765px) {
  p {
    line-height: 2;
  }
}

a {
  color: #3168a8;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.br-md {
  display: none;
}
@media screen and (max-width: 765px) {
  .br-md {
    display: block;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 95%;
  border-bottom: 1px solid #ffffff;
  transition: all 0.3s ease;
}
.l-header.is-scrolled {
  color: black;
  border-bottom: 1px solid black;
}
.l-header.is-scrolled a {
  color: black;
}
.l-header.is-scrolled .l-header__nav-link {
  color: black;
}
.l-header.is-scrolled .l-header__nav-link--icon img {
  filter: brightness(0);
}
.l-header__inner {
  max-width: 1076px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95%;
  justify-content: space-between;
  height: 64px;
}
.l-header__logo {
  line-height: 1.4;
}
.l-header__logo a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: var(--fs-lg);
  font-weight: 500;
  transition: all 0.3s ease;
}
.l-header__logo a span .l-header__logo-company {
  display: block;
  font-size: 0.8em;
}
.l-header__logo a img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 765px) {
  .l-header__logo a img {
    height: 35px;
  }
}
@media screen and (max-width: 765px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #ffffff;
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9;
    display: block;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }
  .l-header__nav.is-open {
    right: -15px;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 2.8em;
}
@media screen and (max-width: 765px) {
  .l-header__nav-list {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 765px) {
  .l-header__nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .l-header__nav-item:last-child {
    border-bottom: none;
  }
}
.l-header__nav-link--icon {
  display: flex;
  align-items: center;
  gap: 1em;
}
.l-header__nav-link--icon img {
  height: 1.7em;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
@media screen and (max-width: 765px) {
  .l-header__nav-link--icon img {
    filter: brightness(0);
  }
}
.l-header__nav-link--icon .l-header__nav-link::after {
  display: none;
}
.l-header__nav-link {
  font-size: var(--fs-lg);
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: 500;
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    color: #32b16c;
  }
}
@media screen and (max-width: 765px) {
  .l-header__nav-link {
    color: #575757;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
  }
  .l-header__nav-link::after {
    content: "";
    display: block;
    width: 10px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='16' viewBox='0 0 10 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8L2 14' stroke='url(%23paint0_linear)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='0' y1='0' x2='10' y2='16' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2384B8DF'/%3E%3Cstop offset='1' stop-color='%239AE3BC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
  }
}
.l-header__hamburger {
  display: none;
  z-index: 100;
  position: relative;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 765px) {
  .l-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}
.l-header.is-scrolled .l-header__hamburger span {
  background-color: #575757;
}
.l-header__nav.is-open ~ .l-header__hamburger span {
  background-color: #575757;
}
.l-header__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.l-header__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.l-header__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 8;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open::after {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
  color: #ffffff;
  position: relative;
  height: 545px;
}
@media screen and (max-width: 765px) {
  .l-footer {
    height: 600px;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: auto;
  aspect-ratio: 615/456;
  background: url(../images/logo_line.svg) no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 0;
}
@media screen and (max-width: 765px) {
  .l-footer::before {
    width: 100%;
  }
}
.l-footer .svg-wrapper__upper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 239px;
  z-index: 0;
}
.l-footer .svg-wrapper__lower {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 239px;
  z-index: 0;
}
@media screen and (max-width: 765px) {
  .l-footer .svg-wrapper__lower {
    bottom: 55px;
  }
}
.l-footer .svg-wrapper__lower svg {
  height: 100%;
}
.l-footer__inner {
  max-width: 1076px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  width: 85%;
  max-width: 1137px;
  padding: 199px 0 45px;
}
@media screen and (max-width: 765px) {
  .l-footer__inner {
    padding: 150px 0 50px;
  }
}
.l-footer__inner__text {
  font-size: var(--fs-sm);
}
.l-footer__logo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__logo svg {
  width: 200px;
  height: auto;
}
.l-footer__address {
  max-width: 1076px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  width: 80%;
  max-width: none;
}
@media (768px <= width <= 1100px) {
  .l-footer__address {
    width: 70%;
  }
}
@media screen and (max-width: 765px) {
  .l-footer__address p {
    line-height: 1.6;
  }
}
.l-footer__address p span {
  padding-left: 1em;
  font-size: 0.8em;
}
@media screen and (max-width: 765px) {
  .l-footer__address p span {
    display: block;
    padding-left: 0;
  }
}
.l-footer__nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
@media (768px <= width <= 1100px) {
  .l-footer__nav {
    width: 70%;
  }
}
.l-footer__nav__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.4em;
}
@media screen and (max-width: 765px) {
  .l-footer__nav__inner {
    gap: 0 1em;
    flex-wrap: wrap;
  }
}
.l-footer__nav__inner a {
  font-size: var(--fs-sm);
  color: #ffffff;
}

.l-main {
  position: relative;
  min-height: 60vh;
  color: #575757;
}
.l-main__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.l-main__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left top;
  object-position: left top;
}
@media screen and (max-width: 765px) {
  .l-main__background img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.l-section {
  padding: 80px 0;
  position: relative;
}
.l-section__inner {
  max-width: 1076px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
}
.l-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.l-section__title {
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: #3168a8;
}
@media screen and (max-width: 765px) {
  .l-section__title {
    font-size: 2.4rem;
  }
}
.l-section__lead {
  margin-top: 16px;
  font-size: var(--fs-base);
  color: #32b16c;
}
.l-section__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-section__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.l-section__flex > * {
  flex: 1;
}
.l-section__flex--half > *:first-child {
  flex: 1;
}
.l-section__flex--half > *:last-child {
  flex: 1;
}
.l-section__flex--6-4 > *:first-child {
  flex: 6;
}
.l-section__flex--6-4 > *:last-child {
  flex: 4;
}
.l-section__flex--4-6 > *:first-child {
  flex: 4;
}
.l-section__flex--4-6 > *:last-child {
  flex: 6;
}
.l-section__flex--7-3 > *:first-child {
  flex: 7;
}
.l-section__flex--7-3 > *:last-child {
  flex: 3;
}
.l-section__flex--3-7 > *:first-child {
  flex: 3;
}
.l-section__flex--3-7 > *:last-child {
  flex: 7;
}
@media screen and (max-width: 765px) {
  .l-section__flex {
    flex-direction: column;
  }
  .l-section__flex > * {
    flex: unset;
    width: 100%;
  }
}

.l-container {
  max-width: 1076px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

.l-diamond {
  width: 100%;
  margin: 140px 0;
  background-color: #fff;
  position: relative;
}
.l-diamond::before {
  position: absolute;
  content: "";
  bottom: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 140px;
  background-color: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.l-diamond::after {
  position: absolute;
  content: "";
  top: calc(100% - 2px);
  right: 0;
  width: 100%;
  height: 140px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 0% 100%);
}

.l-section__content-inner {
  width: 90%;
  max-width: 856px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

#p-contact__PRIVACY section {
  margin-top: 2em;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2em;
  border-radius: 50px;
  font-size: var(--fs-base);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button--arrow {
  height: 3em;
  width: 184px;
  background: url(../images/link_arrow.svg) no-repeat bottom right;
  background-size: contain;
  border: none;
  text-align: left;
  vertical-align: top;
}
@media (hover: hover) {
  .c-button--arrow:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 765px) {
  .c-button--arrow {
    margin-top: 3em;
  }
}
.c-button--arrow a {
  color: #575757;
  display: block;
  width: 100%;
  height: 100%;
  font-size: var(--fs-sm);
}
.c-button--primary {
  background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
  border: none;
  color: #ffffff;
}
.c-button--primary a {
  color: #ffffff;
}
@media (hover: hover) {
  .c-button--primary:hover {
    opacity: 0.7;
  }
}
.c-button--secondary {
  background-color: #ffffff;
  color: #575757;
  border: 1px solid #ddd;
}
@media (hover: hover) {
  .c-button--secondary:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
  }
}
.c-button--outline {
  background-color: transparent;
  border-color: #3168a8;
  color: #3168a8;
}
@media (hover: hover) {
  .c-button--outline:hover {
    background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
    color: #ffffff;
    opacity: 1;
  }
}
.c-button--gradient {
  background: linear-gradient(90deg, #84B8DF, #9AE3BC);
  border: none;
  font-size: clamp(20px, 14.3333333333px + 0.7407407407vw, 25px);
  padding: 0.8em 5.52em;
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  .c-button--gradient:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 765px) {
  .c-button--gradient {
    font-size: clamp(1rem, 0.385rem + 3.08vw, 1.25rem);
    padding: 0.8em 0;
    width: 100%;
  }
}
.c-button--gradient::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 80%;
  border: solid 1px #ffffff;
}
.c-button--gradient a {
  color: #ffffff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.c-button--sm {
  padding: 4px 16px;
  font-size: var(--fs-sm);
}
.c-button--lg {
  padding: 16px 80px;
  font-size: var(--fs-lg);
}

.c-card__wrap {
  width: 95%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 765px) {
  .c-card__wrap {
    grid-template-columns: repeat(1, 1fr);
    width: 80%;
  }
}
.c-card__item {
  background: #fff;
  position: relative;
  min-height: 452px;
}
@media screen and (max-width: 765px) {
  .c-card__item {
    min-height: 400px;
  }
}
.c-card__item__number {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 81px;
  height: 81px;
  background: #32B16C;
  color: #fff;
  font-size: clamp(18.4px, 13.1866666667px + 0.6814814815vw, 23px);
  padding: 1px 0 0 10px;
  font-weight: 500;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 1;
}
.c-card__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
  z-index: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.c-card__item__inner {
  padding: 77px 1.5rem 2rem;
  height: 100%;
  gap: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.c-card__item__inner .c-heading--page {
  font-size: clamp(20px, 14.3333333333px + 0.7407407407vw, 25px);
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.4;
}
.c-card__item__img {
  height: 140px;
  width: auto;
  margin-top: auto;
}
.c-card__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-heading {
  font-size: var(--fs-xl);
  font-weight: 700;
  background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 2.1;
  text-align: center;
  letter-spacing: 0.27em;
}
.c-heading--page {
  font-size: clamp(24px, 17.2px + 0.8888888889vw, 30px);
  letter-spacing: 0.41em;
  margin-bottom: 1.6em;
}
.c-heading--catch {
  font-size: var(--fs-xxl);
  line-height: 2.1;
}
.c-heading__vertical {
  font-size: clamp(72px, 51.6px + 2.6666666667vw, 90px);
  writing-mode: vertical-rl;
  position: absolute;
  top: -2.5em;
  right: 100%;
  text-align: left;
  white-space: nowrap;
  background: linear-gradient(180deg, #3168a8 0%, #32b16c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 765px) {
  .c-heading__vertical {
    font-size: clamp(3.6rem, 1.385rem + 11.08vw, 4.5rem);
    left: -1rem;
    right: auto;
    top: -2em;
  }
}
.c-heading__horizon {
  font-size: clamp(72px, 51.6px + 2.6666666667vw, 90px);
  position: absolute;
  top: -2em;
  right: 0;
  text-align: left;
  white-space: nowrap;
  background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 765px) {
  .c-heading__horizon {
    font-size: clamp(3.6rem, 1.385rem + 11.08vw, 4.5rem);
  }
}
.c-heading--lg {
  font-size: var(--fs-xxl);
}
.c-heading--xl {
  font-size: clamp(38.4px, 27.52px + 1.4222222222vw, 48px);
}
.c-heading--sm {
  font-size: var(--fs-xl);
}

.c-page_mv {
  width: 100%;
  height: 546px;
  position: relative;
}
.c-page_mv__bg {
  width: 100%;
  height: 491px;
}
.c-page_mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-page_mv__overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 68%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 20% 100%, 0 53%);
}
@media screen and (max-width: 765px) {
  .c-page_mv__overlay {
    width: 80%;
  }
}
.c-page_mv__content {
  position: absolute;
  top: 50%;
  left: 155px;
  transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 765px) {
  .c-page_mv__content {
    left: 20px;
  }
}
.c-page_mv__title {
  font-size: clamp(80px, 57.3333333333px + 2.962962963vw, 100px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 765px) {
  .c-page_mv__title {
    font-size: clamp(3.75rem, 3.052rem + 3.49vw, 4.688rem);
    line-height: 1.2;
  }
}
.c-page_mv__line {
  position: absolute;
  top: 350px;
  right: 0;
  width: 77%;
  height: 2px;
  background-color: #fff;
}

/* ========== Swiper ========== */
.c-fb-swiper {
  width: 100%;
  height: 100%;
}
.c-fb-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.c-fb-swiper .swiper-slide {
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 25%;
  position: relative;
}

.c-fb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* ========== 全体にかかる暗いオーバーレイ ========== */
.fb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.61);
  z-index: 10;
  pointer-events: none;
}

/* ========== テキスト + ボタンのコンテンツ ========== */
.fb-content {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fs-base);
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.fb-content div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}

.fb-content p {
  color: #fff;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

.fb-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 40px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  pointer-events: auto;
}

.fb-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.c-svg__mountain {
  margin-bottom: 178px;
}
@media screen and (max-width: 765px) {
  .c-svg__mountain {
    margin-bottom: 100px;
  }
}

.c-gradation-line {
  width: 122px;
  height: 4px;
  background: linear-gradient(90deg, #84B8DF, #9AE3BC);
  margin: 0 auto;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  padding: 26px 16px;
  border-bottom: 1px solid #32B16C;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 765px) {
  .c-table th,
  .c-table td {
    padding: 10px 0;
  }
}
.c-table th {
  width: 190px;
  font-weight: 400;
}
@media screen and (max-width: 765px) {
  .c-table th {
    width: 5em;
  }
}

.c-table--price {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 1em;
  font-size: clamp(16px, 11.4666666667px + 0.5925925926vw, 20px);
}
.c-table--price thead tr {
  background: #55B682;
  padding: 0.85em 0;
}
.c-table--price thead tr th {
  color: #fff;
  padding: 0.85em 0;
}
.c-table--price tbody tr {
  border-bottom: 1px solid #A4A4A4;
  background: #fff;
}
.c-table--price tbody tr:last-child {
  border-bottom: none;
}
.c-table--price tbody tr th, .c-table--price tbody tr td {
  padding: 0.85em 0;
  font-weight: 500;
  text-align: center;
}

.c-table--dl {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(16px, 11.4666666667px + 0.5925925926vw, 20px);
  display: flex;
}
.c-table--dl dt {
  background: #55B682;
  padding: 0.85em 0;
  color: #fff;
  text-align: center;
  flex: 1;
  border-bottom: 1px solid #fff;
}
.c-table--dl dd {
  padding: 0.85em 0;
  text-align: center;
  background: #fff;
  flex: 1;
  border-bottom: 1px solid #A4A4A4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-table--dl:last-of-type {
  margin-bottom: 1em;
}
.c-table--dl:last-of-type dd, .c-table--dl:last-of-type dt {
  border-bottom: none;
}

.c-table--dd {
  font-weight: 700;
  font-size: clamp(18.4px, 13.1866666667px + 0.6814814815vw, 23px);
}

.p-hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  background-color: #F1F1F1;
  overflow: hidden;
}
@media screen and (max-width: 765px) {
  .p-hero {
    height: 90vh;
  }
}
.p-hero__bg {
  position: absolute;
  inset: 0;
}
.p-hero__bg img, .p-hero__bg picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.p-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: right;
  position: relative;
  z-index: 1;
  height: 100%;
  text-align: center;
  padding: 0 24px;
}
@media screen and (max-width: 765px) {
  .p-hero__content {
    justify-content: center;
    align-items: flex-start;
    margin-top: 123px;
  }
}
.p-hero__title {
  font-size: clamp(9rem, 6.45rem + 5.333vw, 11.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 0.94;
  margin-top: 24px;
  text-align: right;
  margin-right: 4.5rem;
}
@media screen and (max-width: 765px) {
  .p-hero__title {
    font-size: 20vw;
    margin: 0;
    text-align: center;
  }
}
.p-hero__title .word, .p-hero__title .cross {
  display: block;
}
.p-hero__title .word {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  animation: revealText 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}
.p-hero__title .word:last-child {
  animation-delay: 0.2s;
}
.p-hero__title .cross {
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.6s;
}
@media screen and (max-width: 765px) {
  .p-hero__title .cross {
    font-size: 66%;
    line-height: 1.4;
  }
}
.p-hero__lead {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
@media screen and (max-width: 765px) {
  .p-hero__lead {
    font-size: 1.6rem;
  }
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
#news {
  padding-bottom: 235px;
}
@media screen and (max-width: 765px) {
  #news {
    padding-bottom: 160px;
  }
}

.p-top__news_catch {
  background: url("../images/ring.svg") no-repeat center center;
  background-size: contain;
}
.p-top__news {
  display: flex;
  flex-direction: column;
  gap: 2.4em;
  margin: 3.3em 0;
  font-size: clamp(12px, 8.6px + 0.4444444444vw, 15px);
}
@media screen and (max-width: 765px) {
  .p-top__news {
    font-size: 15px;
    margin-top: 2em;
  }
}
.p-top__news a, .p-top__news .p-top__news-no-link {
  color: #575757;
  display: flex;
  gap: 2em;
}
.p-top__news a {
  transition: opacity 0.3s ease;
}
.p-top__news a:hover {
  opacity: 0.7;
}
.p-top__news .p-top__news-no-link {
  cursor: default;
}
.p-top__section {
  background: #fff;
}
@media screen and (max-width: 765px) {
  .p-top__section {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 765px) and (max-width: 765px) {
  .p-top__section:has(.c-heading__vertical) .p-top__section-content {
    width: 100%;
    height: auto;
    padding-left: 6em;
    position: relative;
    z-index: 0;
    max-width: none;
  }
}
.p-top__section-img {
  width: 57%;
  height: 505px;
  position: absolute;
  bottom: -41px;
  right: 0;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 765px) {
  .p-top__section-img {
    width: 100%;
    height: 170px;
    top: 90%;
    z-index: 0;
  }
}
.p-top__section-img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.p-top__section-content {
  width: 50%;
  height: 379px;
  max-width: 416px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 765px) {
  .p-top__section-content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
    max-width: none;
  }
}
.p-top__button_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

@media screen and (max-width: 765px) {
  #philosophy {
    padding-top: 250px;
  }
  #philosophy .l-section__flex--6-4 > *:last-child {
    width: 85%;
  }
}

#price.p-top__section {
  padding: 60px 0 30px;
  margin-bottom: 161px;
}
#price .p-top__section-content {
  width: 100%;
  max-width: none;
  height: 212px;
}
@media screen and (max-width: 765px) {
  #price .p-top__section-content {
    height: 250px;
  }
}
#price .p-top__section-content p {
  width: 50%;
  max-width: 416px;
}
@media screen and (max-width: 765px) {
  #price .p-top__section-content p {
    width: 100%;
    max-width: none;
  }
}
#price .c-heading__vertical {
  top: -1.1em;
}

.p-top__fb-section {
  position: relative;
  width: 100%;
  height: 332px;
  overflow: hidden;
  padding: 0;
}

#service {
  margin-top: 186px;
  margin-bottom: 71px;
}
#service .p-top__section-img {
  width: 53%;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0% 100%);
}
@media screen and (max-width: 765px) {
  #service .p-top__section-img {
    width: 100%;
    top: 83%;
  }
}
#service .l-section__inner {
  display: flex;
  justify-content: end;
  align-items: end;
}

.c-point {
  font-size: clamp(18.4px, 13.1866666667px + 0.6814814815vw, 23px);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 1.6em;
}

#philosophy .c-point {
  font-size: clamp(20px, 14.3333333333px + 0.7407407407vw, 25px);
  line-height: 2;
  font-weight: 700;
}
#philosophy .c-point__yellow {
  color: #ACAE2E;
}
#philosophy .c-point__green {
  color: #32B16C;
}
#philosophy .c-point__blue {
  color: #005B9F;
}

#contact.p-top__section {
  height: 323px;
  margin-bottom: 150px;
}
#contact.p-top__section .l-section__inner {
  height: 100%;
}
#contact.p-top__section .p-top__section-content {
  width: 100%;
  max-width: none;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.7em;
}
#contact.p-top__section .p-top__section-content .p-top__button_wrap {
  justify-content: center;
  align-items: center;
}

#p-about__catch {
  padding: 100px 0;
}
#p-about__catch .p-about__catch {
  background: url("../images/logo_bg.svg") no-repeat center center;
  background-size: contain;
  background-position: center;
  padding: 2.7em 0 1.6em;
  font-size: clamp(24px, 17.2px + 0.8888888889vw, 30px);
}
#p-about__catch .p-about__catch .c-heading--catch {
  font-size: clamp(24px, 17.2px + 0.8888888889vw, 30px);
}

.p-about__message--img {
  width: 323px;
  margin-bottom: 51px;
}

.p-about__message--text p {
  margin: 1.4em 0;
}
.p-about__message--text .p-about__message--name {
  text-align: right;
}
.p-about__message--text .p-about__message--name p {
  font-size: clamp(12px, 8.6px + 0.4444444444vw, 15px);
  margin: 0;
}
.p-about__message--text .p-about__message--name p:first-child {
  margin-right: 4.5em;
}
.p-about__message--text .p-about__message--name p:last-child {
  margin-right: 1em;
}
.p-about__message--text .p-about__message--name p span {
  font-size: var(--fs-base);
  padding: 0 1em;
}

.googlemap {
  display: block;
  position: relative;
  height: 472px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 167px;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#page_service {
  position: relative;
  min-height: 244px;
  padding-top: 159px;
}
#page_service .c-svg__mountain {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}
#page_service .l-section__content-inner {
  max-width: 1080px;
  justify-content: flex-start;
  align-items: flex-start;
}
#page_service .c-heading--page {
  letter-spacing: 0;
  margin-bottom: 1rem;
}
#page_service p {
  width: 90%;
  max-width: 416px;
}
@media screen and (max-width: 765px) {
  #page_service p {
    width: 100%;
  }
}

#service_details p {
  margin-top: 1em;
}
#service_details .service_details__wrap {
  position: relative;
  height: 328px;
  display: flex;
  justify-content: end;
  align-items: flex-start;
  padding-top: 43px;
}
@media screen and (max-width: 765px) {
  #service_details .service_details__wrap {
    margin-bottom: 1.5em;
  }
}
#service_details .service_details__wrap:first-child .p-service__details-img {
  justify-content: flex-start;
  width: 60%;
  height: 100%;
  left: 0;
  opacity: 0.7;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
#service_details .service_details__wrap:first-child .detail_line {
  width: 49vw;
  height: 2px;
  background: #575757;
  position: relative;
}
#service_details .service_details__wrap:first-child .detail_line::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #575757;
}
@media screen and (max-width: 765px) {
  #service_details .service_details__wrap:first-child .c-heading--page,
  #service_details .service_details__wrap:first-child p {
    margin-left: 0;
  }
}
#service_details .service_details__wrap:nth-child(2) {
  justify-content: flex-start;
}
#service_details .service_details__wrap:nth-child(2) .p-service__details-img {
  width: 45%;
  height: 100%;
  right: 0;
  clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 765px) {
  #service_details .service_details__wrap:nth-child(2) .p-service__details-img {
    width: 70%;
  }
}
#service_details .service_details__wrap:nth-child(2) .detail_line {
  width: 73vw;
  height: 2px;
  background: #575757;
  position: relative;
}
#service_details .service_details__wrap:nth-child(2) .detail_line::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #575757;
}
#service_details .service_details__wrap:nth-child(2) .c-heading--page,
#service_details .service_details__wrap:nth-child(2) p {
  margin-right: 5em;
}
#service_details .service_details__wrap:last-child .p-service__details-img {
  width: 42%;
  height: 100%;
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
@media screen and (max-width: 765px) {
  #service_details .service_details__wrap:last-child .p-service__details-img {
    width: 70%;
  }
}
#service_details .service_details__wrap:last-child .detail_line {
  width: 76vw;
  height: 2px;
  background: #575757;
  position: relative;
}
#service_details .service_details__wrap:last-child .detail_line::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #575757;
}
#service_details .service_details__wrap:last-child .c-heading--page,
#service_details .service_details__wrap:last-child p {
  margin-right: 5em;
}
@media screen and (max-width: 765px) {
  #service_details .service_details__wrap:last-child .c-heading--page,
  #service_details .service_details__wrap:last-child p {
    margin-right: 0;
  }
}
#service_details .p-service__details-img {
  position: absolute;
  top: 0;
  z-index: 0;
}
#service_details .p-service__details-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
#service_details .p-service__details-text {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 765px) {
  #service_details .p-service__details-text .c-heading--page {
    background: #fff;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    line-height: 1.2;
  }
  #service_details .p-service__details-text .c-heading--page span {
    background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }
  #service_details .p-service__details-text p span {
    background-color: #fff;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    display: inline-block;
  }
}
#service_details .p-service__details-text .c-heading--page {
  font-size: clamp(20px, 14.3333333333px + 0.7407407407vw, 25px);
  letter-spacing: 0;
  margin-bottom: 19px;
}

.service_chat {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  margin-bottom: 126px;
}

.faq-list {
  max-width: 960px;
  margin: 90px auto;
}

.faq-item {
  border-bottom: 1px solid #A4A4A4;
}

.faq-item:first-child {
  border-top: 1px solid #A4A4A4;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.faq-bar {
  display: inline-block;
  width: 10px;
  height: 2em;
  background: linear-gradient(to bottom, #84B8DF, #9AE3BC);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: center;
}

.faq-question-text {
  font-size: clamp(16px, 11.4666666667px + 0.5925925926vw, 20px);
  font-weight: 500;
  color: #575757;
  line-height: 1.6;
}

.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3168a8;
  transition: transform 0.35s ease;
}

.faq-icon svg {
  display: block;
}

/* 閉じているとき：下向き（デフォルト）、開いているとき：上向き */
.faq-item.is-open .faq-icon {
  transform: rotate(-180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 0 24px 18px;
  font-size: var(--fs-base);
  line-height: 1.6;
}

#p-contact__contact {
  padding-top: 0;
}

.contactform {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactform .contactform_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 856px;
}
.contactform .contactform_inner .wpcf7 {
  width: 100%;
}
.contactform .contactform_inner #contact-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 765px) {
  .contactform .contactform_inner #contact-form {
    width: 95%;
    margin: 0 auto;
  }
}
.contactform .contactform_inner #contact-form p {
  margin: 0;
}
.contactform .contactform_inner #contact-form .w-50_wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.contactform .contactform_inner #contact-form dl {
  width: 100%;
  margin: 0;
  margin-bottom: 1em;
}
.contactform .contactform_inner #contact-form dl dt {
  width: 100%;
  padding-bottom: 7px;
}
.contactform .contactform_inner #contact-form dl dt span {
  font-size: clamp(11.2px, 8.0266666667px + 0.4148148148vw, 14px);
  background: linear-gradient(90deg, #84B8DF, #9AE3BC);
  border-radius: 5px;
  padding: 0 5px;
  color: #fff;
  display: inline-block;
  margin-left: 12px;
}
.contactform .contactform_inner #contact-form dl dd {
  width: 100%;
  margin-left: 0;
}
.contactform .contactform_inner #contact-form dl dd input, .contactform .contactform_inner #contact-form dl dd select {
  width: 100%;
  border: none;
  height: 40px;
  font-size: var(--fs-base);
  border-radius: 10px;
  padding: 0 1em;
}
.contactform .contactform_inner #contact-form dl dd input::-moz-placeholder, .contactform .contactform_inner #contact-form dl dd select::-moz-placeholder {
  color: #DCD4CE;
}
.contactform .contactform_inner #contact-form dl dd input::placeholder, .contactform .contactform_inner #contact-form dl dd select::placeholder {
  color: #DCD4CE;
}
.contactform .contactform_inner #contact-form dl dd textarea {
  width: 100%;
  border: none;
  font-size: var(--fs-base);
  height: 144px;
  border-radius: 10px;
  padding: 1em;
}
.contactform .contactform_inner #contact-form .contact_form_btn {
  width: 100%;
  max-width: 321px;
  margin: 1em auto 0;
}
.contactform .contactform_inner #contact-form .contact_form_btn input {
  background: linear-gradient(90deg, #84B8DF, #9AE3BC);
  width: 100%;
  font-size: clamp(16px, 11.4666666667px + 0.5925925926vw, 20px);
  border: none;
  color: #fff;
}

#p-price .l-section__content-inner {
  width: 100%;
}
#p-price p {
  width: 100%;
  max-width: 700px;
}
#p-price .p-price__section {
  margin-top: 150px;
}
#p-price .p-price__point {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 765px) {
  #p-price .p-price__point {
    flex-direction: column;
  }
}
#p-price .p-price__point .p-price__point__title {
  padding: 0.3em 3em;
  background: linear-gradient(90deg, #3168a8 0%, #32b16c 100%);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  font-size: clamp(16px, 11.4666666667px + 0.5925925926vw, 20px);
}
#p-price .p-price__point .p-price__point__text {
  flex: 1;
}
#p-price .c-point__yellow {
  font-weight: 700;
  color: #ACAE2E;
}
#p-price .sp {
  display: none;
}
@media screen and (max-width: 765px) {
  #p-price .sp {
    display: block;
  }
}

.p-archive,
.p-single {
  padding-top: 160px;
}
@media screen and (max-width: 765px) {
  .p-archive,
  .p-single {
    padding-top: 104px;
  }
}

.p-archive__list {
  width: 100%;
  margin-top: 3rem;
}
.p-archive__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.p-archive__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.p-archive__item-link {
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.p-archive__item-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.p-archive__item-link:hover .p-archive__item-title {
  color: #32b16c;
}
@media screen and (max-width: 765px) {
  .p-archive__item-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.p-archive__item-date {
  font-size: 0.9rem;
  color: #888;
  min-width: 120px;
}
.p-archive__item-title {
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-archive__item-link--no-link {
  cursor: default;
}
.p-archive__item-link--no-link:hover {
  background-color: transparent;
}
.p-archive__item-link--no-link:hover .p-archive__item-title {
  color: inherit;
}
.p-archive__pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.p-archive__pagination .nav-links {
  display: flex;
  gap: 0.5rem;
}
.p-archive__pagination .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #575757;
  transition: all 0.3s ease;
}
.p-archive__pagination .nav-links .page-numbers.current {
  background-color: #3168a8;
  color: #fff;
  border-color: #3168a8;
}
.p-archive__pagination .nav-links .page-numbers:hover:not(.current) {
  border-color: #3168a8;
  color: #3168a8;
}

.p-single__post {
  width: 100%;
}
.p-single__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.p-single__date {
  display: block;
  font-size: 1rem;
  color: #888;
  margin-bottom: 1rem;
}
.p-single__content {
  line-height: 1.8;
  font-size: var(--fs-base);
}
.p-single__content p {
  margin-bottom: 1.5em;
}
.p-single__content h3 {
  margin: 2em 0 1em;
  padding-left: 0.5em;
  border-left: 4px solid #3168a8;
}
.p-single__content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}
.p-single__footer {
  margin-top: 5rem;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.u-show {
  display: block !important;
}

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

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

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-bold {
  font-weight: 700 !important;
}

.u-text-sm {
  font-size: 1.4rem !important;
}

.u-text-lg {
  font-size: 1.8rem !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-img-circle {
  border-radius: 50%;
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */
