/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 29 2026 | 05:22:56 */
@charset "UTF-8";
:root {
	--wp--preset--spacing--60: 0;
  --wp--preset--spacing--50: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* スクロール系の設定 (LP必須級) */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, 80px);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストのデフォルトの余白とスタイルをリセット */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 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]) {
  -webkit-text-decoration-skip: ink;
          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;
}

/* ユーザーが「視差効果を減らす」設定にしている場合のアクセシビリティ配慮 */
@media (prefers-reduced-motion: reduce) {
  html {
    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 {
  --color-primary: #09366b;
  --color-heading: #033f8c;
  --color-accent: #006EDD;
  --color-text: #000;
  --color-bg: #ffffff;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Shippori Mincho', serif;
  --font-sirivennela: 'Sirivennela', sans-serif;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.u-fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}
.u-fade-in.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.u-fade-in-group > .u-fade-in:nth-child(1) {
  transition-delay: 0s;
}
.u-fade-in-group > .u-fade-in:nth-child(2) {
  transition-delay: 0.15s;
}
.u-fade-in-group > .u-fade-in:nth-child(3) {
  transition-delay: 0.3s;
}
.u-fade-in-group > .u-fade-in:nth-child(4) {
  transition-delay: 0.45s;
}
.u-fade-in-group > .u-fade-in:nth-child(5) {
  transition-delay: 0.6s;
}
.u-fade-in-group > .u-fade-in:nth-child(6) {
  transition-delay: 0.75s;
}
.u-fade-in-group > .u-fade-in:nth-child(7) {
  transition-delay: 0.9s;
}
.u-fade-in-group > .u-fade-in:nth-child(8) {
  transition-delay: 1.05s;
}
.u-fade-in-group > .u-fade-in:nth-child(9) {
  transition-delay: 1.2s;
}
.u-fade-in-group > .u-fade-in:nth-child(10) {
  transition-delay: 1.35s;
}

.u-text-lg {
  font-size: 1.2em;
}

.l-main {
  overflow: clip;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.l-header.is-hidden {
  transform: translateY(-100%);
}
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.l-header.is-scrolled .l-header__inner {
  padding-block: 8px;
}
.l-header.is-scrolled .l-header__logo {
  width: clamp(120px, 30vw, 160px);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  transition: padding 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .l-header__inner {
    padding: 20px 40px;
    max-width: 1440px;
    margin-inline: auto;
  }
}
.l-header__logo {
  margin: 0;
  width: clamp(150px, 40vw, 220px);
  transition: width 0.3s ease;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.l-header__hamburger {
  position: relative;
  z-index: 110;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 1025px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 100px 20px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header__nav.is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1025px) {
  .l-header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    overflow-y: visible;
    opacity: 1;
    visibility: visible;
  }
}
.l-header__navList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .l-header__navList {
    flex-direction: row;
    gap: 32px;
  }
}
.l-header__navItem a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
  transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .l-header__navItem a {
    font-size: 1rem;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  .l-header__navItem a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .l-header__navItem a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header__navItem a:hover {
  color: var(--color-accent);
}
.l-header__navItem a:active {
  transform: scale(0.95);
}

body.is-locked {
  overflow: hidden;
}

.l-footer {
  background: linear-gradient(180deg, #51baeb 0%, #3296ce 100%);
  padding: clamp(60px, 10vw, 100px) 20px clamp(40px, 6vw, 60px);
  text-align: center;
  color: var(--color-bg);
}
.l-footer__inner {
  width: min(100%, 800px);
  margin-inline: auto;
}
.l-footer__cta {
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
  margin-bottom: clamp(48px, 8vw, 80px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.l-footer__ctaTitle {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 4vw + 4px, 32px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: clamp(16px, 3vw, 24px);
  text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.3);
}
.l-footer__ctaDivider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: clamp(24px, 4vw, 32px);
}
.l-footer__ctaDept {
  font-size: clamp(16px, 2vw + 8px, 20px);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.l-footer__ctaTel {
  margin-bottom: 8px;
}
.l-footer__ctaTel a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-mincho);
  font-size: clamp(32px, 6vw + 16px, 56px);
  font-weight: 600;
  line-height: 1;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-footer__ctaTel a:hover {
    opacity: 0.7;
  }
}
.l-footer__ctaTel svg {
  width: clamp(28px, 6vw, 40px);
  height: auto;
}
.l-footer__ctaTime {
  font-size: clamp(14px, 1.5vw + 8px, 18px);
  letter-spacing: 0.05em;
}
.l-footer__logo {
  margin-bottom: 24px;
}
.l-footer__logo img {
  width: clamp(200px, 40vw, 280px);
  height: auto;
  margin-inline: auto;
}
.l-footer__copyright {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  letter-spacing: 0.05em;
  margin: 0;
}
.l-footer__copyright small {
  font-size: 1em;
}

.c-section-title {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: clamp(40px, 8vw, 64px);
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(28px, 6vw, 40px);
  text-align: center;
  letter-spacing: 0.05em;
}
.c-section-title span {
  color: var(--color-heading);
}
.c-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(240px, 80%, 400px);
  height: 1px;
  background-color: #a4c1dd;
}
.c-section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background-color: var(--color-primary);
}

.p-medical-hero {
  margin-top: var(--header-height, 80px);
}
.p-medical-hero__visual {
  position: relative;
  width: 100%;
}
.p-medical-hero__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: clamp(300px, 50vw, 500px);
}
.p-medical-hero__copy {
  position: absolute;
  bottom: clamp(32px, 8vw, 80px);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.p-medical-hero__copy.u-fade-in {
  transform: translateX(-50%) translateY(20px);
}
.p-medical-hero__copy.u-fade-in.is-visible {
  transform: translateX(-50%) translateY(0);
}
@media screen and (min-width: 768px) {
  .p-medical-hero__copy.u-fade-in {
    transform: translate(-50%, -50%) translateY(20px);
  }
  .p-medical-hero__copy.u-fade-in.is-visible {
    transform: translate(-50%, -50%) translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .p-medical-hero__copy {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
  }
}
.p-medical-hero__title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(24px, 4vw + 16px, 48px);
  color: var(--color-heading);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px rgba(255, 255, 255, 0.8);
  text-align: center;
}
.p-medical-hero__title span {
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-medical-hero__title span:nth-child(2) {
    margin-left: 0;
  }
}
.p-medical-hero__content {
  background: linear-gradient(90deg, #043a82 0%, #00244f 100%);
  color: #fff;
  padding: clamp(48px, 10vw, 80px) clamp(24px, 5vw, 60px);
  text-align: center;
}
.p-medical-hero__subtitle {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(20px, 3vw + 8px, 36px);
  line-height: 1.8;
  margin-bottom: clamp(32px, 6vw, 48px);
  letter-spacing: 0.05em;
}
.p-medical-hero__text {
  font-size: clamp(14px, 2vw + 8px, 16px);
  line-height: 2;
  text-align: left;
  max-width: 800px;
  margin-inline: auto;
}

.p-strengths {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 40px);
  background-color: var(--color-bg);
}
.p-strengths__inner {
  max-width: 900px;
  margin-inline: auto;
}
.p-strengths__list {
  display: grid;
  gap: 20px;
}
.p-strengths__item {
  display: grid;
  grid-template-columns: clamp(48px, 12vw, 80px) 1fr clamp(120px, 30vw, 240px);
  align-items: center;
  gap: clamp(16px, 4vw, 32px);
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e8f0;
}
.p-strengths__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-strengths__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-strengths__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-strengths__itemTitle {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(18px, 2vw + 10px, 24px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
}
@media screen and (min-width: 768px) {
  .p-strengths__itemTitle br {
    display: none;
  }
}
.p-strengths__itemSub {
  color: #555;
  font-size: clamp(14px, 1.5vw + 8px, 16px);
  line-height: 1.4;
}
.p-strengths__photo {
  border-radius: 8px;
  overflow: hidden;
}
.p-strengths__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .p-strengths__photo:hover img {
    transform: scale(1.05);
  }
}

.p-about {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 40px);
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .p-about {
    background-image: url("//joint-doctor.keijinnet.or.jp/wp-content/uploads/photo17-pc.webp");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: clamp(280px, 35vw, 500px);
  }
}
.p-about__inner {
  max-width: 800px;
  margin-inline: auto;
}
.p-about__text {
  font-size: clamp(14px, 2vw + 8px, 16px);
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    text-align: center;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px rgba(255, 255, 255, 0.8);
  }
}

.p-merits {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 40px);
  background-color: var(--color-bg);
}
.p-merits__inner {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(60px, 10vw, 80px);
}
.p-merits__list {
  display: grid;
  gap: 24px;
}
.p-merits__card {
  background-color: #f4f8fc;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1fr clamp(120px, 35vw, 240px);
  align-items: center;
  gap: clamp(16px, 4vw, 32px);
}
.p-merits__cardBody {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-merits__cardHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-heading);
  font-family: var(--font-mincho);
}
.p-merits__cardNumber {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1;
}
.p-merits__cardDivider {
  width: 1px;
  height: clamp(24px, 4vw, 32px);
  background-color: #a4c1dd;
}
.p-merits__cardTitle {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(18px, 2vw + 10px, 24px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
}
@media screen and (min-width: 768px) {
  .p-merits__cardTitle br {
    display: none;
  }
}
.p-merits__cardText {
  font-size: clamp(14px, 1.5vw + 8px, 16px);
  line-height: 1.6;
  color: var(--color-text);
}
.p-merits__cardFigure {
  border-radius: 8px;
  overflow: hidden;
}
.p-merits__cardFigure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .p-merits__cardFigure:hover img {
    transform: scale(1.05);
  }
}
.p-merits__attentionInner {
  max-width: 900px;
  margin-inline: auto;
}
.p-merits__attentionTitle {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 4vw, 24px);
  font-family: var(--font-mincho);
  margin-bottom: 0;
  padding: clamp(16px, 3vw, 20px);
  letter-spacing: 0.05em;
}
.p-merits__attentionBox {
  background-color: #f4f8fc;
  color: var(--color-text);
  padding: clamp(24px, 5vw, 40px);
}
.p-merits__attentionBox p {
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
}

.p-target {
  padding: clamp(60px, 10vw, 100px) 20px;
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .p-target {
    padding: clamp(80px, 10vw, 120px) 20px 0 20px;
    background-image: url("//joint-doctor.keijinnet.or.jp/wp-content/uploads/photo18-pc.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.p-target__inner {
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-target__inner {
    background-color: #ffffff;
    padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 80px);
  }
}
.p-target__list {
  display: grid;
}
.p-target__item {
  display: grid;
  grid-template-columns: 1fr clamp(120px, 35vw, 240px);
  align-items: center;
  gap: clamp(16px, 4vw, 32px);
  padding-block: clamp(24px, 4vw, 40px);
  border-bottom: 1px solid #a4c1dd;
}
.p-target__item:first-child {
  border-top: 1px solid #a4c1dd;
}
.p-target__content {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
}
.p-target__icon {
  flex-shrink: 0;
  width: clamp(24px, 6vw, 36px);
}
.p-target__icon img {
  width: 100%;
  height: auto;
}
.p-target__text {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(16px, 2vw + 10px, 24px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
}
.p-target__text span {
  display: block;
  font-size: 0.85em;
  margin-top: 4px;
  color: var(--color-heading);
}
@media screen and (min-width: 768px) {
  .p-target__text br {
    display: none;
  }
}
.p-target__figure {
  border-radius: 8px;
  overflow: hidden;
}
.p-target__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .p-target__figure:hover img {
    transform: scale(1.05);
  }
}

.p-scope {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 40px);
  background-color: var(--color-bg);
}
.p-scope__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-scope__list {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 3vw, 24px);
}
@media screen and (min-width: 768px) {
  .p-scope__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-scope__card {
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px) clamp(8px, 2vw, 16px);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .p-scope__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}
.p-scope__icon {
  margin-bottom: clamp(12px, 2vw, 16px);
}
.p-scope__icon img {
  width: clamp(48px, 12vw, 72px);
  height: auto;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-scope__text {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw + 10px, 18px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
}
.p-scope__text span {
  display: block;
  font-size: clamp(11px, 1vw + 8px, 14px);
  margin-top: 4px;
  font-weight: 500;
  color: var(--color-heading);
}
.p-scope__message {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 8vw, 80px);
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-scope__message {
    border-radius: 0;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    margin-top: -120px;
  }
}
.p-scope__messageBg img {
  width: 100%;
  height: auto;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-scope__messageBg img {
    min-height: auto;
  }
}
.p-scope__messageContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .p-scope__messageContent {
    width: 100%;
    top: 60%;
  }
}
.p-scope__messageContent p {
  color: var(--color-text);
  font-size: clamp(14px, 2vw + 8px, 18px);
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}

.p-flow {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 40px);
  background-color: var(--color-bg);
}
.p-flow__inner {
  max-width: 1000px;
  margin-inline: auto;
}
.p-flow__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}
.p-flow__itemWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__itemWrapper {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }
}
.p-flow__itemWrapper:last-child .p-flow__arrow {
  display: none;
}
.p-flow__item {
  background-color: #fff;
  border: 1px solid #a4c1dd;
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px) clamp(12px, 2vw, 20px);
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    width: 160px;
  }
}
.p-flow__icon {
  margin-bottom: 12px;
}
.p-flow__icon img {
  width: clamp(56px, 15vw, 72px);
  height: auto;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-flow__text {
  font-weight: 700;
  font-size: clamp(13px, 1.5vw + 8px, 15px);
  line-height: 1.5;
  color: var(--color-text);
}
.p-flow__arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--color-heading);
  border-bottom: 3px solid var(--color-heading);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-flow__arrow {
    transform: rotate(-45deg);
  }
}
.p-flow__info {
  margin-top: clamp(48px, 8vw, 80px);
  background-color: #f4f8fc;
  padding: clamp(32px, 6vw, 48px) clamp(20px, 5vw, 40px);
  border-radius: 12px;
}
.p-flow__infoTitle {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(20px, 4vw, 28px);
  color: var(--color-heading);
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: clamp(24px, 5vw, 40px);
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
}
.p-flow__infoTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background-color: var(--color-heading);
}
.p-flow__infoBody {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-flow__infoBody {
    flex-direction: row;
    justify-content: center;
    gap: clamp(40px, 6vw, 80px);
  }
}
.p-flow__infoList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-flow__infoItem {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(16px, 2vw + 10px, 20px);
  letter-spacing: 0.05em;
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
}
.p-flow__infoImage {
  width: 100%;
  max-width: 320px;
}
.p-flow__infoImage img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cooperation {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 40px) 0;
  background-color: var(--color-bg);
}
.p-cooperation__inner {
  max-width: 900px;
  margin-inline: auto;
}
.p-cooperation__list {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: clamp(24px, 4vw, 40px);
}
.p-cooperation__item {
  position: relative;
  padding: clamp(16px, 3vw, 32px) clamp(4px, 1vw, 16px);
  text-align: center;
}
.p-cooperation__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: #a4c1dd;
}
.p-cooperation__icon {
  margin-bottom: clamp(12px, 2vw, 20px);
}
.p-cooperation__icon img {
  width: clamp(48px, 12vw, 80px);
  height: auto;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-cooperation__text {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(13px, 1.5vw + 8px, 20px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-shadow: 0 0 0.5px rgba(3, 63, 140, 0.3);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.p-cooperation__message {
  position: relative;
  z-index: 1;
  margin-top: clamp(-32px, -4vw, -16px);
}
@media screen and (min-width: 768px) {
  .p-cooperation__message {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    margin-top: -100px;
  }
}
.p-cooperation__messageBg img {
  width: 100%;
  height: auto;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-cooperation__messageContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cooperation__messageContent {
    width: 100%;
    top: 65%;
  }
}
.p-cooperation__messageContent p {
  color: var(--color-heading);
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: clamp(20px, 4vw + 8px, 32px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff, 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 0 4px 15px rgba(255, 255, 255, 0.9);
}/*# sourceMappingURL=style.css.map */