@layer global {
:root {
  --bp-xxs: 375;
  --bp-xs: 475;
  --bp-sm: 640;
  --bp-md: 768;
  --bp-lg: 1024;
  --bp-xl: 1280;
  --bp-xxl: 1536;
  --bp-xxxl: 1920;

  --color-back: #fff;
  --color-text: #464646;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #005ead;
  --color-secondary: #57c2e9;
  --color-gradient-primary-bottom: linear-gradient(
    to bottom,
    #57c2e9 0%,
    #005ead 100%
  );
  --color-gradient-primary-right: linear-gradient(
    to right,
    #57c2e9 0%,
    #005ead 100%
  );
  --color-gradient-3color: linear-gradient(
    to right,
    #57c2e9 0%,
    #2285c5 50%,
    #005ead 100%
  );
  --color-gradient-yellow-bottom: linear-gradient(to bottom, #fff367, #e1f7f7);

  --color-3rd: #fdf302;
  --color-4th: #fffdfa;
  --color-error: #910d15;
  --fontFamily-default: "Noto Sans", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", sans-serif;
  --fontFamily-noto: "Noto Sans", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", sans-serif;
  --fontFamily-noto-jp: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", sans-serif;
  --fontFamily-sawarabi: "Sawarabi Mincho", system-ui;
  --fontFamily-jost: "Jost", sans-serif;

  --height-design: 900;
  --height-header: 130;
  --height-header-sp: 102;
  --line-clamp: 3;
  --scroll-paddingTop: 130;
  --scroll-paddingTop-sp: 102;
  --width-design: 1280;
  --width-inner: 1080;
  --width-subInner: 768;
  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-online: 30;
  --zIndex-splash: 50;

  --lineHeight-default: 1.5;
  --letterSpacing-default: 0;
  --leading-trim: calc((1em - 1lh) / 2);

  --gutter:clamp(15px, calc(15px + (50 - 15) * ((100vw - 375px) / (430 - 375))), 50px)
  ;
  /* --gutter-inner: max(139px, calc(139 / 1920 * 100%)); */
}
}
@layer reset {

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type="number"] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}
}
@layer base {

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--scroll-paddingTop) * 1px);
}

@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: calc(var(--scroll-paddingTop-sp) * 1px);
  }
}

body {
  background: var(--color-back);
  color: var(--color-text);
  font-family: var(--fontFamily-default);
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  /* word-break: break-all; */
  line-height: var(--lineHeight-default);
  overflow-x: clip;
  letter-spacing: var(--letterSpacing-default);
}

li {
  list-style: none;
}

button {
  cursor: pointer;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

code {
  white-space: pre-wrap;
}

pre {
  font-family: var(--fontFamily-default);
  white-space: pre-wrap;
}

figure {
  max-width: 100%;
}

picture > img {
  max-width: 100%;
}

picture > source {
  max-width: 100%;
}

img {
  height: auto;
  image-rendering: optimize-contrast; /* ぼやけ防止 */
  max-width: 100%;
  vertical-align: middle;
  display: block;
}

main {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* フォーム部品リセット */
input {
  min-width: 0;
}

input:focus {
  outline: 2px solid var(--color-primary);
}

input:focus-visible {
  outline: 2px solid var(--color-primary);
}

button {
  font-size: 1rem;
}

optgroup {
  font-size: 1rem;
}

textarea {
  resize: none;
}

textarea:focus {
  outline: 2px solid var(--color-primary);
}

textarea:focus-visible {
  outline: 2px solid var(--color-primary);
}

select {
  font-size: 1rem;
}

select:focus {
  outline: 2px solid var(--color-primary);
}

select:focus-visible {
  outline: 2px solid var(--color-primary);
}

/* プレースホルダー */
::-moz-placeholder {
  color: #ccc;
}
::placeholder {
  color: #ccc;
}

/* エラー時 */
.is-error input {
  border-color: var(--color-error);
}

.is-error textarea {
  border-color: var(--color-error);
}

.is-error select {
  border-color: var(--color-error);
}

label {
  cursor: pointer; /* iOSでのlabelとinput,select,textareaの関連付け */
}

/* スピンボタン非表示 (Chrome / Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  display: none;
  margin: 0;
}

/* スピンボタン非表示 (FireFox) */
input[type="number"],
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="date"] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

/* クリアボタン非表示 */
input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
  -webkit-appearance: none;
          appearance: none;
}

/* セレクトボックス */
.select-wrap {
  position: relative;
}

.select-wrap > select {
  width: 100%;
}

.select-wrap::after {
  border-bottom: 2px solid;
  border-right: 2px solid;
  bottom: 0;
  content: "";
  display: block;
  height: 10px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}

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

option:disabled {
  color: #ccc;
  opacity: 1;
}

/* ラジオボタン、チェックボックス */
input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding-left: 2em;
  position: relative;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(30 / 16);
}

input[type="radio"]:focus-visible + span,
input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--color-primary);
}

/* ラジオボタンスタイル */
input[type="radio"] + span::before {
  background: #fff;
  border: 2px solid #707070;
  border-radius: 50%;
  content: "";
  height: calc(23 / 16 * 1em);
  left: 0;
  line-height: 1;
  position: absolute;
  top: 1px;
  width: calc(23 / 16 * 1em);
}

/* ラジオボタンチェック印（未選択） */
input[type="radio"] + span::after {
  content: "";
  display: none;
}

/* ラジオボタンチェック印（選択） */
input[type="radio"]:checked + span::after {
  background: #707070;
  border-radius: 50%;
  display: block;
  height: calc(13 / 16 * 1em);
  left: calc(5 / 16 * 1em);
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(6 / 16 * 1em);
  width: calc(13 / 16 * 1em);
}

/* チェックボックス */
input[type="checkbox"] + span::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "";
  width: calc(23 / 16 * 1em);
  height: calc(23 / 16 * 1em);
  border: 1px solid #c3c3c3;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
  border-radius: 5px;
}

/* チェックボックス未チェック時 */
input[type="checkbox"] + span::after {
  content: "";
  display: none;
}

/* チェックボックスチェック時 */
input[type="checkbox"]:checked + span::after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid var(--color-text);
  border-right: 3px solid var(--color-text);
  transform: rotate(45deg);
}
}
@layer layout {

.l-main {
  overflow: hidden;
  padding-top: calc(var(--height-header) * 1px);
}

@media screen and (max-width: 1024px) {
  .l-main {
    padding-top: calc(var(--height-header-sp) * 1px);
  }
}

.l-grid {
  display: grid;
}

.l-grid._col-2 {
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .l-grid._col-2 {
    grid-template-columns: 1fr;
  }
}
}
/* @import "vendor.css" layer(vendor); */
@layer wordpress {
/* ブロックエディタ用のスタイル */
#wp-postbody {
  display: flow-root;
  overflow: hidden;
  word-break: break-all;
}

#wp-postbody::after,
#wp-postbody::before {
  clear: both;
  content: "";
  display: table;
}

#wp-postbody > * {
  margin-top: 1.3em;
  margin-bottom: 1.3em;
}

#wp-postbody hr {
  color: #a2a2a2;
  margin-block: 30px;
}

#wp-postbody > *:first-child {
  margin-top: 0;
}

#wp-postbody :is(h1, h2, h3, h4, h5, h6, p) {
  color: var(--color-text);
}

#wp-postbody h1 {
  font-size: 23px;
  line-height: calc(32 / 23);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-block: 0.6em;
}

#wp-postbody h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(24 / 18);
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-block: 0.6em;
}

#wp-postbody h3 {
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-primary);
  margin-block: 0.6em;
}

#wp-postbody h4 {
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  margin-block: 0.6em;
  text-decoration: underline;
}

#wp-postbody h5 {
  font-size: 16px;
  margin-block: 0.6em;
}

#wp-postbody h6 {
  font-size: 14px;
  margin-block: 0.6em;
}

#wp-postbody p {
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-block: 0.6em;
}

#wp-postbody strong {
  font-weight: 700;
}

#wp-postbody em {
  font-style: italic;
}

#wp-postbody tr {
  font-weight: normal;
}

#wp-postbody :is(th, td) {
  padding: 0.5em;
}

#wp-postbody blockquote {
  border: 1px solid #808080;
  padding: 1.5em;
}

#wp-postbody blockquote > *:first-child::before {
  content: "’’";
  font-size: 1.5em;
  margin-right: 0.5em;
  display: inline-block;
}

#wp-postbody blockquote a {
  cursor: pointer;
  text-decoration: underline;
}

#wp-postbody figure {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  max-width: 100%;
}

#wp-postbody figure.wp-block-table {
  overflow: visible;
}

#wp-postbody figcaption {
  text-align: center;
  margin-top: 0.2em;
}

#wp-postbody figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

#wp-postbody img {
  max-width: 100%;
}

#wp-postbody
  :is(img.alignnone, img.alignleft, img.alignright, img.aligncenter) {
  display: block;
  height: auto;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

#wp-postbody img.alignnone {
  margin-left: 0;
}

#wp-postbody img.alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody img.alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody ul > li {
  margin-top: 0.7em;
  padding-left: 1em;
  position: relative;
}

#wp-postbody ul > li::before {
  background: var(--color-text);
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.2em;
  left: 0.4em;
  position: absolute;
  top: 0.7em;
  width: 0.2em;
}

#wp-postbody ol {
  counter-reset: li;
}

#wp-postbody ol > li {
  list-style: none;
  margin-top: 0.7em;
  padding-left: 1.8em;
  position: relative;
}

#wp-postbody ol > li::before {
  content: "0" counter(li) ".";
  counter-increment: li;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

#wp-postbody ol > li:nth-of-type(9) ~ *::before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

#wp-postbody a[href] {
  cursor: pointer;
  text-decoration: underline;
}

#wp-postbody table {
  width: 100%;
}

#wp-postbody table th {
  font-weight: 700;
}

#wp-postbody table td {
  font-weight: 400;
}

#wp-postbody dl {
  font-weight: 400;
}

#wp-postbody dt {
  font-weight: 700;
}

#wp-postbody dd {
  font-weight: 400;
  margin-bottom: 1.25rem;
}

#wp-postbody pre,
#wp-postbody code {
  white-space: pre-wrap;
}

#wp-postbody .aligncenter {
  display: block;
}

#wp-postbody .alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody .alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody .wp-caption,
#wp-postbody [class*="wp-image"] {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
}

#wp-postbody .wp-caption-text {
  margin-bottom: 0;
  margin-top: 0;
}

#wp-postbody .post-password-form [name="post_password"] {
  border: 1px solid #333;
  padding: 0.3em;
}

#wp-postbody .post-password-form input[name="Submit"] {
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 0.3em 0.6em;
}

#wp-postbody sup {
  top: -0.5em;
}

#wp-postbody sub {
  bottom: -0.25em;
}

#wp-postbody sub,
#wp-postbody sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: initial;
}

/* プラグイン用 */
#wp-postbody .pdfemb-viewer {
  max-width: 100%;
}

#wp-postbody summary {
  cursor: pointer;
}

#wp-postbody summary::before {
  content: "▽";
  margin-right: 0.2em;
  display: inline-block;
}

#wp-postbody details > * {
  margin-top: 0.7em;
}

#wp-postbody details > *:first-child {
  margin-top: 0;
}

#wp-postbody .myblock-point {
  display: grid;
  grid-template-columns: 90px 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  min-height: 87px;
}
#wp-postbody .myblock-point__left {
  display: grid;
  place-items: center;
  grid-auto-flow: row;
}
#wp-postbody .myblock-point__left .-point {
  font-size: 22px;
  line-height: calc(33 / 22);
  font-weight: 900;
  color: black;
  align-self: flex-end;
}
#wp-postbody .myblock-point__left .-num {
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
  color: black;
  align-self: flex-start;
}
#wp-postbody .myblock-point__right {
  height: 100%;
  font-size: 30px;
  background-color: black;
  line-height: 1.5;
  padding: 1em;
  font-weight: 900;
}
#wp-postbody .myblock-point__right .-text {
  color: white;
}

#wp-postbody .wp-element-button {
  background-color: black;
  color: white;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  padding: 0.8em;
  border-radius: 0;
  line-height: 1.5;
}

/* wp-paginavi */
.wp-pagenavi {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.wp-pagenavi:has(*:only-child) {
  display: none;
}

.wp-pagenavi .current {
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: white;
  background-color: var(--color-secondary);
  aspect-ratio: 1/1;
  width: 40px;
  font-weight: 600;
  border-radius: 5px;
}

.wp-pagenavi :is(.page, .extend) {
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  background-color: transparent;
  aspect-ratio: 1/1;
  width: 40px;
  font-weight: 600;
  transition: opacity 0.2s;
  border-radius: 5px;
}

.wp-pagenavi :is(.page):hover {
  opacity: 0.7;
}

.wp-pagenavi :is(.nextpostslink, .previouspostslink) {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  grid-template-columns: auto auto;
  transition: opacity 0.2s;
}

.wp-pagenavi :is(.nextpostslink, .previouspostslink):hover {
  opacity: 0.7;
}

.wp-pagenavi .previouspostslink::before {
  content: "←";
  display: inline-block;
  margin-right: 5px;
}
.wp-pagenavi .nextpostslink::after {
  content: "→";
  display: inline-block;
  margin-left: 5px;
}
}
@layer components {

.c-form-input,
.c-form-tel {
  padding: calc((20 / 2) / 16 * 1em) 1.25em;
  border: 1px solid #c3c3c3;
  width: 100%;
  line-height: calc(30 / 16);
  border-radius: 6px;
  font-size: 16px;
  background-color: white;
}

.c-form-textarea {
  padding: calc((20 / 2) / 16 * 1em) 1.25em;
  border: 1px solid #c3c3c3;
  width: 100%;
  line-height: calc(30 / 16);
  border-radius: 6px;
  font-size: 16px;
  min-height: 113px;
  overflow-y: auto;
  field-sizing: content;
  background-color: white;
  max-height: 300px;
}
@media screen and (max-width: 768px) {
  .c-form-textarea {
    min-height: 150px;
  }
}
.c-form-range {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  background: #eeeeee;
  height: 12px;
  width: 100%;
  border-radius: 10px;
  border: solid 3px #eeeeee;
  outline: 0;
}

.c-form-range:focus {
  box-shadow: 0 0 3px var(--color-secondary);
}

.c-form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--color-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
}

.c-form-range::-moz-range-thumb {
  background: var(--color-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  border: none;
}

.c-form-range::-moz-focus-outer {
  border: 0;
}

.c-form-range:active::-webkit-slider-thumb {
  box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
}

.c-form-select {
  position: relative;
  padding: 1em;
  border: 1px solid #707070;
  width: 100%;
}

.c-hamburger {
  cursor: pointer;
  height: 40px;
  position: relative;
  width: 30px;
}
.c-hamburger::after {
  content: "Menu";
  font-family: var(--fontFamily-sawarabi);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
  text-align: center;
}
.c-hamburger[aria-expanded="true"]::after {
  content: "とじる";
  font-family: var(--fontFamily-noto-jp);
}
.c-hamburger__line {
  background: var(--color-primary);
  display: inline-block;
  height: 4px;
  left: 0;
  pointer-events: none;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
  border-radius: 2px;
}

.c-hamburger__line:nth-of-type(1) {
  top: 0;
}

.c-hamburger__line:nth-of-type(2) {
  top: 9px;
}

.c-hamburger__line:nth-of-type(3) {
  top: 18px;
}

.c-hamburger[aria-expanded="true"] {
  width: 38px;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(1) {
  left: 0;
  top: 4px;
  transform: translateY(6px) rotate(-30deg);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(3) {
  left: 0;
  top: 16px;
  transform: translateY(-6px) rotate(30deg);
}

.c-postNavigation {
  cursor: pointer;
  font-weight: 700;
  position: relative;
}

.c-postNavigation__list {
  display: grid;
  grid-auto-rows: 80px;
  grid-template-areas: "prev backToList next";
  grid-template-columns: 190fr 520fr 190fr;
  grid-template-rows: 80px;
}

@media screen and (max-width: 768px) {
  .c-postNavigation__list {
    grid-auto-rows: 50px;
    grid-template-areas: "prev next" "backToList backToList";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50px;
  }
}

.c-postNavigation__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  width: 100%;
}

.c-postNavigation__item._prev {
  grid-area: prev;
}

.c-postNavigation__item._backToList {
  grid-area: backToList;
}

.c-postNavigation__item._next {
  grid-area: next;
}

.c-button-simple {
  font-size: 12px;
  line-height: calc(20 / 12);
  padding: calc(7 / 12 * 1em);
  border: 1px solid currentColor;
  border-radius: 5px;
  transition: opacity 0.3s;
}

.c-button-simple:hover {
  opacity: 0.7;
}
.c-heading-main__inner {
  display: grid;
  grid-auto-flow: row;
  row-gap: 12px;
  position: relative;
  z-index: 2;
}
.c-heading-main__en {
  font-size: 72px;
  line-height: 1;
  color: var(--color-primary);
  font-family: var(--fontFamily-sawarabi);
  letter-spacing: 0.1em;
  margin-block: var(--leading-trim);
}

@media screen and (max-width: 768px) {
  .c-heading-main__en {
    text-align: center;
    font-size: clamp(30px, calc(60 / 430 * 100vw), 60px);
    line-height: calc(78 / 60);
  }
}

.c-heading-main__en::first-letter {
  text-transform: capitalize;
}
.c-heading-main__ja {
  font-family: var(--fontFamily-noto);
  font-size: 14px;
  line-height: calc(24 / 14);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-block: var(--leading-trim);
}
@media screen and (max-width: 768px) {
  .c-heading-main__ja {
    text-align: center;
  }
}
.c-breadcrumb-bar__body {
  font-size: 10px;
  font-weight: 300;
  font-family: var(--fontFamily-jost);
  letter-spacing: 0.1em;
  line-height: calc(15 / 10);
}

.c-timeline-history {
  background-color: var(--color-white);
  position: relative;
}

.c-timeline-history ul {
  display: flex;
  flex-direction: column;
}

.c-timeline-history__item {
  position: relative;
  padding-left: 35px;
  display: grid;
  grid-template-columns: 100px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;

  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  min-height: 3.65em;
}

@media screen and (max-width: 768px) {
  .c-timeline-history__item {
    grid-template-columns: 1fr;
  }
}

.c-timeline-history__data {
  color: var(--color-primary);
  font-weight: 700;
}

.c-timeline-history__text {
  font-weight: 600;
  padding-bottom: 1.6em;
}

@media screen and (max-width: 768px) {
  .c-timeline-history__text {
    padding-bottom: 1em;
  }
}
.c-timeline-history__item::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  background-color: var(--color-primary);
  height: 15px;
  width: 15px;
  display: block;
  border-radius: 50%;
  z-index: 3;
}
.c-timeline-history__item:not(:first-of-type) {
}
.c-timeline-history__item:not(:last-of-type):after {
  position: absolute;
  z-index: 2;
  left: 5.5px;
  top: 5.5px;
  content: "";
  height: calc(100%);
  width: 4px;
  display: block;
  background-color: #eef8fc;
}

.c-clinics-card__heading {
  font-size: 23px;
  line-height: calc(32 / 23);
  border-bottom: 1px solid currentColor;
  color: var(--color-primary);
  padding-bottom: 10px;
  font-weight: 700;
  display: block;
  transition: opacity 0.3s;
}
.c-clinics-card__heading[href]:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-clinics-card__heading {
    font-size: 20px;
    line-height: calc(27 / 20);
  }
}
.c-clinics-card__body {
  padding-top: 13px;
}
.c-clinics-card__categories {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.c-clinics-card__address {
  margin-top: 10px;
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.c-clinics-card__tel {
  display: block;
  margin-top: 5px;
}
.c-clinics-card__tel .-tel {
  font-size: 23px;
  line-height: calc(32 / 23);
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .c-clinics-card__tel .-tel {
    font-size: 20px;
    line-height: calc(27 / 20);
  }
}
.c-clinics-card__tel .-tel::before {
  display: inline-block;
  content: "";
  background-image: url("../images/site/icon_tel_black.svg");
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
}
.c-clinics-card__tel .-text {
  font-weight: 600;
  font-size: 18px;
  line-height: calc(32 / 18);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .c-clinics-card__tel .-text {
    font-size: 16px;
    line-height: calc(30 / 16);
  }
}
.c-clinics-card__url {
  font-weight: 600;
  font-size: 14px;
  line-height: calc(22 / 14);
  letter-spacing: 0.05em;
}

.c-clinics-card__url .-url::before {
  display: inline-block;
  content: "";
  background-image: url("../images/site/icon_global_black.svg");
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
}
.c-clinics-card__mail {
  font-weight: 600;
  font-size: 14px;
  line-height: calc(22 / 14);
  letter-spacing: 0.05em;
}

.c-clinics-card__mail::before {
  display: inline-block;
  content: "";
  background-image: url("../images/site/icon_mail_black.svg");
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 0em;
}

/* .c-clinics-card__url .-name {
  display: inline-block;
  margin-right: 1em;
} */
.c-category-round {
  display: inline-block;
  min-height: 30px;
  font-size: 14px;
  line-height: calc(19 / 14);
  display: grid;
  place-items: center;
  background-color: #eef8fc;
  border-radius: 4px;
  padding-left: calc(8 / 14 * 1em);
  padding-right: calc(8 / 14 * 1em);
  font-weight: 600;
  color: var(--color-primary);
  transition: opacity 0.3s;
}

.c-category-round[href]:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .c-category-round {
    font-size: 13px;
    line-height: calc(19 / 13);
  }
}
.c-category-round._tag {
  background-color: var(--color-primary);
  color: white;
  grid-template-columns: 1ch max-content;
}

.c-category-round._tag::before {
  content: "#";
  display: inline;
}

.c-box-gradation {
  background-image: var(--color-gradient-yellow-bottom);
  min-height: 100px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  text-align: center;
  padding-left: 0.7em;
  padding-right: 0.7em;
}

@media screen and (max-width: 768px) {
  .c-box-gradation {
    min-height: 50px;
  }
}
.c-box-gradation__text {
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-box-gradation__text {
    font-size: 16px;
    line-height: calc(22 / 16);
  }
  .c-box-gradation__text br {
    display: none;
  }
}

.c-top-about {
  border-radius: 20px;
  position: relative;
  display: block;
}
.c-top-about__num {
  position: absolute;
  top: 0;
  translate: -50% -50%;
  left: 50%;
  color: var(--color-3rd);
  font-size: 70px;
  line-height: 1;
  font-family: var(--fontFamily-sawarabi);
  z-index: 2;
}

.c-top-about__head {
  overflow: hidden;
}
.c-top-about__thumbnail {
  width: 100%;
  transition: scale 0.2s ease-in-out;
}

.c-top-about:hover .c-top-about__thumbnail {
  scale: 1.07;
}

.c-top-about__heading {
  font-size: 23px;
  line-height: calc(32 / 23);
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
}

.c-top-about__body {
  background-color: #eef8fc;
  padding: 15px 15px 25px;
  display: grid;
  grid-auto-flow: row;
  row-gap: 10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media screen and (max-width: 768px) {
  .c-top-about__body {
    padding: 20px 15px 25px;
    row-gap: 5px;
  }
}
.c-top-about__link {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
  align-items: center;
}

.c-top-about__link .-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: calc(20 / 13);
  color: var(--color-primary);
}
.c-top-about__link .-icon {
  width: 30px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .c-top-medical__head {
    display: grid;
    place-items: center;
  }
}
.c-top-medical__thumbnail {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .c-top-medical__thumbnail {
    aspect-ratio: 330 / 200;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-top-medical__button {
  display: grid;
  place-items: center;
  translate: 0 -60%;
}
@media screen and (max-width: 768px) {
  .c-top-medical__button {
    translate: 0 -50%;
  }
}
.c-top-message {
  width: 180px;
  border-radius: 999em;
  background-image: linear-gradient(
    to right,
    #57c2e9 0%,
    #005ead 50%,
    #005ead 50%,
    #57c2e9 100%
  );
  aspect-ratio: 1/1;
  color: white;
  display: grid;
  place-items: center;

  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.2s ease-in-out;
}
.c-top-message:hover {
  background-position: 100% 0%;
}
.c-top-message__icon {
  margin-left: auto;
  margin-right: auto;
}

.c-top-message__heading {
  font-size: 14px;
  line-height: calc(20 / 14);
  text-align: center;
  font-family: var(--fontFamily-sawarabi);
  margin-top: 5px;
  letter-spacing: 0.1em;
}
.c-top-message__title {
  font-size: 13px;
  line-height: calc(20 / 13);
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 10px;
}
.c-top-message__arrow {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}

.c-label-icon {
  display: grid;
  grid-template-columns: 30px max-content;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: var(--color-primary);
  place-items: center;
}
@media screen and (max-width: 768px) {
  .c-label-icon {
  }
}
.c-label-icon._white {
  color: white;
}

.c-label-icon__icon {
  width: 30px;
}

.c-label-icon__text {
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--fontFamily-sawarabi);
  align-self: flex-end;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-article-row__date {
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.c-article-row__title {
  position: relative;
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-bottom: 5px;
  margin-top: 5px;
  transition: color 0.2s;
}

.c-article-row__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: #000000;
}
.c-article-row:hover .c-article-row__title {
  color: var(--color-primary);
}

.c-timeline-order__list {
  counter-reset: num;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: -20px;
}

.c-timeline-order__item {
  counter-increment: num;
  position: relative;
  min-height: 138px;
}

.c-timeline-order__item:not(:last-of-type):after {
  position: absolute;
  z-index: 2;
  left: 23px;
  top: 25px;
  content: "";
  height: calc(100%);
  width: 4px;
  display: block;
  background-color: #eef8fc;
}

.c-timeline-order__item:last-of-type .c-timeline-order__inner::after {
  top: auto;
  bottom: calc(100% - 25px);
}

.c-timeline-order__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 70px;
}

.c-timeline-order__inner::before {
  position: absolute;
  left: 0;
  top: 8px;
  content: counter(num);
  color: white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  line-height: calc(38 / 26);
  line-height: 1;
  background-color: var(--color-primary);
  z-index: 3;
  font-family: var(--fontFamily-sawarabi);
}

.c-timeline-order__heading {
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-timeline-order__heading {
    padding-top: 5px;
  }
}

.c-timeline-order__text {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-family: var(--fontFamily-noto-jp);
  margin-top: 10px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-timeline-order__text {
    margin-top: 5px;
    padding-bottom: 35px;
  }
}

.c-button-arrowRight {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 240px;
  min-height: 34px;
  border-radius: 23px;
  background-color: var(--color-primary);
  display: grid;
  grid-template-columns: 1fr 18px;
  color: white;
  place-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.c-button-arrowRight._white {
  color: var(--color-primary);
  background-color: white;
}

.c-button-arrowRight__text {
  font-size: 13px;
  font-weight: 600;
  line-height: calc(20 / 13);
  letter-spacing: 0.1em;
}

.c-button-arrowRight__icon {
  transition: translate 0.2s linear;
}

.c-button-arrowRight._white .c-button-arrowRight__icon path {
  fill: var(--color-primary);
}

.c-button-arrowRight:hover .c-button-arrowRight__icon {
  translate: 3px;
}

.c-button-arrowLeft {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 240px;
  min-height: 34px;
  border-radius: 23px;
  background-color: var(--color-primary);
  display: grid;
  grid-template-columns: 18px 1fr;
  color: white;
  place-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.c-button-arrowLeft__text {
  font-size: 13px;
  font-weight: 600;
  line-height: calc(20 / 13);
  letter-spacing: 0.1em;
}
.c-button-arrowLeft__icon {
  transition: translate 0.2s linear;
}

.c-button-arrowLeft:hover .c-button-arrowLeft__icon {
  translate: -3px;
}

.c-button-mail {
  background-color: var(--color-primary);
  color: white;
  display: grid;
  grid-template-columns: 30px max-content;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 100%;
  min-width: 426px;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: calc(20 / 13);
  font-weight: 600;
  padding-top: calc(7 / 13 * 1em);
  padding-bottom: calc(7 / 13 * 1em);
  border-radius: 20px;
  place-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.c-button-mail:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .c-button-mail {
    grid-template-columns: 20px 1fr;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-button-mail .-text {
  width: -moz-fit-content;
  width: fit-content;
}

.c-logo {
  width: -moz-fit-content;
  width: fit-content;
}

.c-logo__img {
  width: -moz-fit-content;
  width: fit-content;
}

.c-map-fukidashi {
  font-family: var(--fontFamily-noto-jp);
  font-weight: 500;
  padding-bottom: 5px;
}

.c-map-fukidashi__name {
  font-size: 16px;
  line-height: 1.5;
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  .c-map-fukidashi__name {
    font-size: 14px;
  }
}

.c-map-fukidashi__address {
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-map-fukidashi__address {
    font-size: 12px;
  }
}

.c-map-fukidashi__link {
  display: block;
  margin-top: 1em;
  font-size: 14px;
  transition: opacity 0.3s;
}
.c-map-fukidashi__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-map-fukidashi__link {
    font-size: 12px;
  }
}
}
@layer site {
/* General Header Styles */
.s-header {
  height: calc(var(--height-header) * 1px);
  padding-left: 15px;
  padding-right: 15px;
  background-color: white;
}

@media screen and (max-width: 1024px) {
  .s-header {
    height: calc(var(--height-header-sp) * 1px);
  }
}
.s-header__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .s-header__inner {
    height: 100%;
  }
}
.s-header._fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--zIndex-header);
}

.s-header__upper {
  display: flex;
  justify-content: flex-end;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .s-header__upper {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .s-header__logo .c-logo__img {
    width: 200px;
  }
}
.s-header__lower {
  height: 90px;
  padding-top: 5px;
  display: grid;
  grid-template-columns: 222px 1fr;
}
@media screen and (max-width: 1024px) {
  .s-header__lower {
    height: 100%;
    grid-template-columns: 200px 1fr;
    padding-top: unset;
    align-items: center;
  }
}
.s-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 3%;
       column-gap: 3%;
}

@media screen and (max-width: 1024px) {
  .s-header__right {
    padding-bottom: unset;
  }
}

@media screen and (max-width: 1024px) {
  .s-header__buttons {
    display: none;
  }
}
.s-header__contact {
  font-size: 14px;
  line-height: calc(19 / 14);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  display: grid;
  grid-template-columns: 20px max-content;
  -moz-column-gap: 8px;
       column-gap: 8px;
  place-items: center;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: center;
  transition: opacity 0.3s;
}

.s-header__contact:hover {
  opacity: 0.7;
}
.s-header__contact .-text {
  width: -moz-fit-content;
  width: fit-content;
}
.s-header__contact._contact {
  background-color: var(--color-secondary);
  width: 180px;
  border-bottom-left-radius: 5px;
}
.s-header__contact._medical {
  background-color: var(--color-primary);
  width: 270px;
  border-bottom-right-radius: 5px;
}

/* Header Toggle Button */
.s-header__toggle {
  display: none;
  position: relative;
  z-index: var(--zIndex-toggle);
}

@media screen and (max-width: 1024px) {
  .s-header__toggle {
    display: block;
    transition: translate 0.2s linear;
  }

  .s-header__toggle:has(.c-hamburger[aria-expanded="true"]) {
    translate: -223px;
  }
}

.s-header__spmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: var(--zIndex-spmenu);
  pointer-events: none;
  transition: background-color 0.3s ease-in-out;
}

.s-header__spmenu:has(._is-open) {
  background-color: color-mix(in srgb, #464646 50%, transparent);
}
/* Hamburger Menu */
.s-hamburger {
  background-color: var(--color-primary);
  width: 4rem;
  height: 4rem;
  padding: var(--gutter);
  position: relative;
}

@media screen and (min-width: 768px) {
  .s-hamburger {
    display: none;
  }
}
.s-header__nav {
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .s-header__nav {
    display: none;
  }
}

.s-header-nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  -moz-column-gap: 3.6%;
       column-gap: 3.6%;
  justify-content: flex-end;
}

@keyframes text-shadow-animation {
  0% {
    text-shadow: 0 1.5em 0 var(--color-text), 0 0 0 var(--color-text);
  }

  100% {
    text-shadow: 0 0 0 var(--color-text), 0 -1.5em 0 var(--color-text);
  }
}

.s-header-nav__list > .menu-item {
  height: 90px;
  display: grid;
  place-items: center;
}

.s-header-nav__list .menu-item > a[href] {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(19 / 14);
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
  translate: 0 -15px;
}
.s-header-nav__list .menu-item > a[href]::before {
  content: attr(title);
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: calc(15 / 10);
  color: var(--color-primary);
  display: block;
  font-family: var(--fontFamily-sawarabi);
}
.s-header-nav__list .menu-item > a[href]::before::first-letter {
  text-transform: capitalize;
}
.s-header-nav__list .menu-item > a[href]::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--color-primary);
  left: 0;
  bottom: -13px;
  transform: scaleX(0);
}
.s-header-nav__list > .menu-item:hover > a[href]::after {
  transform: scaleX(1);
}
.s-header-nav__list > .menu-item > a[href][aria-current="page"]::after {
  transform: scaleX(1);
}
.s-header-nav__list .menu-item:not(:has(.sub-menu)) > a:hover {
}

.s-header-nav__list .sub-menu {
  position: fixed;
  top: calc(var(--height-header) * 1px);
  left: 0;
  z-index: 1000;
  width: 100vw;
  background: white;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
  pointer-events: none;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: center;
  align-items: center;
}

.s-header__bg {
  content: "";
  background-color: #464646;
  opacity: 0;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: calc((var(--height-header)) * 1px);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.s-header:has(.s-header-nav__list .menu-item-has-children:hover) .s-header__bg {
  opacity: 0.5;
}

.s-header-nav__list .sub-menu a[href] {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: calc(20 / 13);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  transition: opacity 0.3s;
}
.s-header-nav__list .sub-menu a[href]::before {
  content: "";
  height: 100px;
  display: block;
  background-size: contain;
  border-radius: 4px;
}

.s-header-nav__list .sub-menu a[href]:hover {
  opacity: 0.7;
}
.s-header-nav__list .sub-menu ._sub-about-01 a[href]::before {
  width: 140px;
  background-image: url("../images/site/sub_about_01.jpg");
}
.s-header-nav__list .sub-menu ._sub-about-02 a[href]::before {
  width: 140px;
  background-image: url("../images/site/sub_about_02.jpg");
}
.s-header-nav__list .sub-menu ._sub-about-03 a[href]::before {
  width: 140px;
  background-image: url("../images/site/sub_about_03.jpg");
}
.s-header-nav__list .sub-menu ._sub-about-04 a[href]::before {
  width: 140px;
  background-image: url("../images/site/sub_about_04.jpg");
}
.s-header-nav__list .sub-menu ._sub-about-05 a[href]::before {
  width: 140px;
  background-image: url("../images/site/sub_about_05.jpg");
}
.s-header-nav__list .sub-menu ._sub-message a[href]::before {
  width: 180px;
  background-image: url("../images/site/sub_message.jpg");
}
.s-header-nav__list .sub-menu ._sub-history a[href]::before {
  width: 180px;
  background-image: url("../images/site/sub_history.jpg");
}
.s-header-nav__list .sub-menu ._sub-facilities a[href]::before {
  width: 180px;
  background-image: url("../images/site/sub_facilities.jpg");
}
.s-header-nav__list .sub-menu ._sub-medical a[href]::before {
  width: 180px;
  background-image: url("../images/site/sub_medical.jpg");
}
.s-header-nav__list .sub-menu ._sub-staying a[href]::before {
  width: 180px;
  background-image: url("../images/site/sub_staying.jpg");
}

.s-header-nav__list .menu-item:has(.sub-menu) {
  position: relative;
}

.s-header-nav__list .menu-item:has(.sub-menu):hover .sub-menu,
.s-header-nav__list .menu-item:has(a:focus-visible) .sub-menu {
  height: 200px;
  pointer-events: all;
  padding-bottom: 20px;
}
.s-header-nav__list .sub-menu:hover,
.s-header-nav__list .sub-menu:focus-visible {
  height: 200px;
  pointer-events: all;
  padding-bottom: 20px;
}

.s-header__buttons {
  translate: 0 -15px;
}

/* SP Menu */
.s-spmenu {
  background-color: white;
  height: 100vh;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  pointer-events: none;
  transition: translate 0.3s;
  z-index: var(--zIndex-spmenu);
  translate: 100%;
}

.s-spmenu._is-open {
  pointer-events: all;
  translate: 0;
}

.s-spmenu__inner {
  padding: 102px 9% 51px;
  height: 100svh;
}
.s-spmenu__subinner {
  height: 100%;
  overflow-y: auto;
}

.s-spmenu__inner .s-header-nav {
  display: block;
}

.s-spmenu__inner .s-header-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(48 / var(--height-design) * 100vh);
}

.s-spmenu__inner .s-header-nav__list .menu-item {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: var(--letterSpacing-default);
}

.s-spmenu__inner .s-header-nav__list .menu-item > a {
  color: white;
  transition: opacity 0.3s;
}

.s-spmenu__inner .s-header-nav__list .menu-item > a:hover {
  opacity: 0.7;
}

.s-spmenu-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.9vh;
}

.s-spmenu-nav__list > .menu-item {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(29 / 20);
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-noto-jp);
}

.s-spmenu-nav__list .sub-menu {
  padding-left: 1.6em;
  margin-top: 0.2em;
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
.s-spmenu-nav__list .sub-menu .menu-item {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: calc(20 / 15);
  font-weight: 400;
  font-family: var(--fontFamily-noto-jp);
}

.s-spmenu__contact {
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(27 / 20);
  display: grid;
  place-items: center;
  font-family: var(--fontFamily-noto-jp);
  border-radius: 5px;
  text-align: center;
}

.s-spmenu__contact._contact {
  margin-top: 3.2vh;
  padding: 0.9em;
  background-color: var(--color-secondary);
}
.s-spmenu__contact._medical {
  margin-top: 0.9vh;
  padding: 1.1em;
  background-color: var(--color-primary);
}

.s-spmenu__facilities {
  margin-top: 0.9vh;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(20 / 12);
  display: grid;
  font-family: var(--fontFamily-noto-jp);
  border-radius: 5px;
  place-items: center;
  padding: 0.5em;
  border: 1px solid;
}

/* Footer */
.s-footer {
  padding-top: 40px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .s-footer {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .s-footer__logo .c-logo__img {
    max-width: 330px;
  }
}

@media screen and (max-width: 768px) {
  .s-footer__logo {
    display: grid;
    place-items: center;
  }
  .s-footer__logo .c-logo__img {
    max-width: 330px;
    width: 100%;
  }
}

.s-footer__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-footer__upper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  -moz-column-gap: 4%;
       column-gap: 4%;
}

@media screen and (max-width: 768px) {
  .s-footer__upper {
    grid-template-columns: 1fr;
  }
}

.s-footer__lower {
  padding-top: 5px;
}

.s-footer__nav {
  max-width: 310px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .s-footer__nav {
    max-width: none;
    margin-top: 25px;
  }
}

.s-footer__address {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .s-footer__address {
    margin-top: 15px;
  }
}
.s-footer__address .-name {
  font-size: 12px;
  font-weight: 600;
  line-height: calc(17 / 12);
  letter-spacing: 0.1em;
  display: inline-block;
}

.s-footer__address .-address {
  font-size: 12px;
  line-height: calc(20 / 12);
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-noto-jp);
  margin-left: 2em;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .s-footer__address .-address {
    margin-left: unset;
  }
}

.s-footer__facility {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .s-footer__facility {
    margin-top: 10px;
  }
}

.s-footer__figure {
  position: absolute;
  right: 0;
  width: 189px;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .s-footer__figure {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .s-footer__figure {
    display: block;
    position: static;
    margin-left: auto;
    margin-top: 25px;
  }
}
.s-footer__copyright {
  padding-top: 35px;
  padding-bottom: 35px;
  font-size: 12px;
  line-height: calc(20 / 12);
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-noto-jp);
  text-align: right;
}

@media screen and (max-width: 768px) {
  .s-footer__copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
  }
}

.s-footer-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media screen and (max-width: 768px) {
  .s-footer-nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.s-footer-nav__list .menu-item {
}

.s-footer-nav__list .menu-item:not(:first-of-type)::before {
}

.s-footer-nav__list .menu-item > a {
  font-size: 12px;
  line-height: calc(30 / 12);
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.s-footer-nav__list .menu-item > a:hover {
  opacity: 0.7;
}

.s-area-breadcrumb {
  padding: 50px var(--gutter) 60px;
}

@media screen and (max-width: 768px) {
  .s-area-breadcrumb {
    display: none;
  }
}
.s-area-breadcrumb__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-tel {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #eef8fc;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .s-section-tel {
    padding-top: 65px;
    padding-bottom: 55px;
  }
}

.s-section-tel {
  color: var(--color-primary);
}
.s-section-tel__inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.s-section-tel__lead {
  display: grid;
  grid-template-columns: 30px max-content;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

@media screen and (max-width: 768px) {
  .s-section-tel__lead {
    grid-template-columns: 30px 1fr;
  }
}
.s-section-tel__lead .-text {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(27 / 20);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .s-section-tel__lead .-text {
    font-size: 14px;
    line-height: calc(19 / 14);
  }
}

.s-section-tel__name {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: calc(20 / 13);
  font-weight: 600;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .s-section-tel__name {
    margin-top: 10px;
  }
}

.s-section-tel__tel {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-jost);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .s-section-tel__tel {
    font-size: min(calc(40 / 375 * 100vw), 40px);
  }
}

.s-section-tel__time {
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: calc(20 / 13);
  font-weight: 600;
  margin-top: 10px;
}
.s-section-tel__button {
  margin-top: 20px;
}

.s-section-medical {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: var(--color-primary);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  color: white;
}

@media screen and (max-width: 768px) {
  .s-section-medical {
    padding-top: 60px;
    padding-bottom: 65px;
  }
}
.s-section-medical__inner {
  display: grid;
  grid-template-columns: 102px 1fr 102px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .s-section-medical__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    place-items: center;
    row-gap: 20px;
  }

  .s-section-medical__inner > *:nth-child(1) {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: flex-end;
  }
  .s-section-medical__inner > *:nth-child(2) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .s-section-medical__inner > *:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: flex-start;
  }
}

.s-section-medical__sub {
  color: var(--color-3rd);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: calc(20 / 13);
}
.s-section-medical__heading {
  text-align: center;
  font-size: 20px;
  line-height: calc(27 / 20);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.s-section-medical__heading .-ib {
  display: inline-block;
}
.s-section-medical__body {
  justify-self: center;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

@media screen and (max-width: 768px) {
  .s-section-medical__body {
    row-gap: 5px;
  }
}
.s-section-medical__figure {
  align-self: center;
}

.s-section-medical__links {
  display: flex;
  place-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .s-section-medical__links {
    margin-top: 25px;
  }
}

.s-section-medical__link {
  display: grid;
  grid-template-columns: 30px max-content;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  transition: opacity 0.3s;
}

.s-section-medical__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .s-section-medical__link {
    grid-template-columns: 30px 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.s-section-medical__link .-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: calc(24 / 14);
}
}
@layer page {

.p-top-wrap {
  overflow: hidden;
}

.p-top-mv__inner {
  position: relative;
}
.p-top-mv__picture {
  display: grid;
}
.p-top-mv__picture .-img {
  grid-area: 1 / -1;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-top-mv__picture .-img {
    max-width: none;
    height: calc(100svh - (var(--height-header-sp) * 1px));
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-mv__catch {
  grid-area: 1 / -1;
  align-self: flex-end;
  justify-self: center;
  color: white;
  font-weight: 700;
  line-height: calc(123 / 77);
  margin-bottom: var(--leading-trim);
  font-size: calc(77 / 1280 * 100vw);
  letter-spacing: 0.05em;
  white-space: nowrap;
  translate: 0 7px;
}
@media screen and (max-width: 768px) {
  .p-top-mv__catch {
    font-size: calc(64 / 430 * 100vw);
    translate: 0 5px;
    line-height: calc(85 / 64);
  }
}

.p-top-mv__catch .-yakuhan {
  margin-right: -0.5em;
}
.p-top-about {
  padding-bottom: 220px;
  overflow: hidden;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-about {
    padding-bottom: 305px;
  }
}

.p-top-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-top-about__upper {
  position: relative;
  padding-top: 90px;
  padding-bottom: 125px;
}
@media screen and (max-width: 1024px) {
  .p-top-about__upper {
    padding-bottom: 5px;
    padding-top: 0;
  }
}
.p-top-about__hand {
  position: absolute;
}

@media screen and (max-width: 1024px) {
  .p-top-about__hand {
    position: static;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.p-top-about__hand._01 {
  top: -17px;
  left: -26px;
}
@media screen and (max-width: 1024px) {
  .p-top-about__hand._01 {
    width: 211px;
    translate: -6px;
  }
}
.p-top-about__hand._02 {
  bottom: -14px;
  right: -44px;
}
@media screen and (max-width: 1024px) {
  .p-top-about__hand._02 {
    width: 250px;
    margin-left: auto;
    margin-top: 10px;
  }
}
.p-top-about__heading {
  color: var(--color-primary);
  text-align: center;
  font-size: 72px;
  line-height: calc(106 / 72);
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-sawarabi);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-top-about__heading {
    font-size: 45px;
    line-height: calc(66 / 45);
  }
}
.p-top-about__catch {
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.p-top-about__text {
  margin-top: 15px;
  font-size: 16px;
  line-height: calc(30 / 16);
  text-align: center;
  font-family: var(--fontFamily-noto-jp);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .p-top-about__text {
    margin: 10px;
  }
}
.p-top-about__list {
  display: flex;
  justify-content: center;
  row-gap: 60px;
  flex-wrap: wrap;
  -moz-column-gap: calc(45 / 1080 * 100%);
       column-gap: calc(45 / 1080 * 100%);
}

@media screen and (max-width: 768px) {
  .p-top-about__list {
    flex-direction: column;
    row-gap: 45px;
    margin-left: auto;
    margin-right: auto;
    max-width: 430px;
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 4%; */
  }
}
.p-top-about__item {
  width: calc((1080 - 90) / 3 / 1080 * 100%);
}
@media screen and (max-width: 768px) {
  .p-top-about__item {
    width: 100%;
  }
}
.p-top-medical {
  position: relative;
  padding-top: 160px;
  padding-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .p-top-medical {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.p-top-medical__hand {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -40% -60%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-top-medical__hand {
    width: 200px;
    translate: -50% -90%;
  }
}
.p-top-medical__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.p-top-medical__contents {
  position: relative;
  z-index: 2;
}
.p-top-medical__inner {
}

.p-top-medical__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .p-top-medical__grid {
    grid-template-columns: 1fr;
  }
}

.p-top-medical__body {
  /* padding-left: calc(45 / 600 * 100%);
  padding-right: calc(100 / 600 * 100%); */
  margin-left: calc(45 / 600 * 100%);
  max-width: 495px;
  margin-right: calc(100 / 600 * 100%);
}
@media screen and (max-width: 768px) {
  .p-top-medical__body {
    max-width: none;
    margin-left: unset;
    margin-right: unset;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 45px;
  }
}
.p-top-medical__picture {
  justify-self: flex-end;
}
@media screen and (max-width: 768px) {
  .p-top-medical__picture {
    justify-self: stretch;
  }
}
.p-top-medical__picture .-img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (min-width: 1280px) {
  .p-top-medical__picture .-img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-medical__picture .-img {
    border-radius: 0;
    width: 100%;
    max-height: 490px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.p-top-medical__heading {
  font-size: 35px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  line-height: calc(51 / 35);
  font-family: var(--fontFamily-sawarabi);
  margin-block: var(--leading-trim);
}

@media screen and (max-width: 768px) {
  .p-top-medical__heading {
    font-size: 30px;
    text-align: center;
    line-height: calc(45 / 30);
  }
}
.p-top-medical__catch {
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-top-medical__catch {
    margin-top: 30px;
    font-size: 26px;
    line-height: calc(40 / 26);
    text-align: center;
  }
}
.p-top-medical__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: calc(30 / 16);
  font-family: var(--fontFamily-noto-jp);
}

.p-top-medical__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: calc(30 / 1080 * 100%);
       column-gap: calc(30 / 1080 * 100%);
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  translate: 0 -35px;
}

@media screen and (max-width: 768px) {
  .p-top-medical__list {
    margin-top: 20px;
    grid-template-columns: 1fr;
    translate: 0;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    row-gap: 5px;
  }
}

.p-top-clinics {
  background-image: var(--color-gradient-3color);
  padding-top: 50px;
  padding-bottom: 45px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-top-clinics {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-clinics__label {
    display: grid;
    place-items: center;
  }
}

.p-top-clinics__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.p-top-clinics__heading {
  color: white;
  margin-top: 5px;
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-clinics__heading {
    font-size: 26px;
    line-height: calc(40 / 26);
    text-align: center;
    margin-top: 25px;
  }
}

.p-top-clinics__button {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-top-clinics__button {
    display: grid;
    place-items: center;
  }
}

.p-top-message {
  padding-top: 90px;
  padding-bottom: 75px;
  padding-left: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-top-message {
    padding-top: 45px;
    padding-bottom: unset;
    padding-left: unset;
  }
}
.p-top-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .p-top-message__inner {
    grid-template-columns: 1fr;
  }
}

.p-top-message__catch {
  margin-top: 20px;
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-message__catch {
    font-size: 26px;
    line-height: calc(40 / 26);
    text-align: center;
  }
}

.p-top-message__heading {
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 35px;
  line-height: calc(51 / 35);
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-sawarabi);
}
@media screen and (max-width: 768px) {
  .p-top-message__heading {
    font-size: 30px;
    line-height: calc(45 / 30);
    text-align: center;
  }
}

.p-top-message__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: calc(30 / 16);
  font-family: var(--fontFamily-noto-jp);
}
@media screen and (max-width: 768px) {
  .p-top-message__text {
    margin-top: 15px;
  }
}
.p-top-message__button {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-top-message__button {
    display: grid;
    place-items: center;
    margin-top: 25px;
  }
}
.p-top-message__body {
  /* padding-right: calc(45 / 600 * 100%);
  padding-left: calc(100 / 600 * 100%); */

  max-width: 495px;
  margin-right: calc(45 / 600 * 100%);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-top-message__body {
    max-width: none;
    margin-right: unset;
    margin-left: unset;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.p-top-message__head {
  position: relative;
  padding-bottom: 60px;
  padding-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-top-message__head {
    padding-bottom: 0;
    width: 100%;
  }
}
.p-top-message__picture .-img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

@media not screen and (max-width: 1280px) {
  .p-top-message__picture .-img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-message__picture {
    display: grid;
    place-items: center;
  }
  .p-top-message__picture .-img {
    width: 100%;
    border-radius: 0;
    max-height: 430px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.p-top-message__history {
  position: absolute;
  right: 15%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-top-message__history {
    right: var(--gutter);
    translate: 0 30%;
  }
}
.p-top-news {
  background-color: #d1efff;
  padding-top: 40px;
  min-height: 424px;
  padding-bottom: 40px;
  padding-left: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 120px;
    padding-bottom: 60px;
    padding-right: var(--gutter);
  }
}
.p-top-news__inner {
  margin-left: auto;
  margin-right: calc(45 / 600 * 100%);
  /* padding-left: calc(95 / 600 * 100%);
  padding-right: calc(45 / 600 * 100%); */
  max-width: 495px;
}

@media screen and (max-width: 768px) {
  .p-top-news__inner {
    margin-left: unset;
    margin-right: unset;
    max-width: none;
  }

  .p-top-news__label {
    display: grid;
    place-items: center;
  }
}

.p-top-news__heading {
  margin-top: 15px;
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-news__heading {
    text-align: center;
    font-size: 26px;
    line-height: calc(40 / 26);
  }
}
.p-top-news__list {
  display: grid;
  grid-auto-flow: row;
  row-gap: 25px;
}

.p-top-news__body {
  margin-top: 15px;
}

.p-top-news__button {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-news__button {
    display: grid;
    place-items: center;
  }
}
.p-top-recruit {
  padding-top: 40px;
  position: relative;
  min-height: 424px;
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-top-recruit {
    padding-top: 70px;
    padding-left: var(--gutter);
    min-height: 396px;
  }
}

.p-top-recruit__inner {
  /* padding-left: calc(60 / 600 * 100%);
  padding-right: calc(50 / 600 * 100%); */

  margin-left: calc(60 / 600 * 100%);
  max-width: 495px;
}

@media screen and (max-width: 768px) {
  .p-top-recruit__inner {
    margin-left: unset;
    max-width: none;
  }

  .p-top-recruit__label {
    display: grid;
    place-items: center;
  }
}

.p-top-recruit__heading {
  margin-top: 15px;
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-recruit__heading {
    margin-left: -0.5em;
    margin-right: -0.5em;
    text-align: center;
    font-size: 26px;
    line-height: calc(40 / 26);
  }
}
.p-top-recruit__button {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-top-recruit__button {
    display: grid;
    place-items: center;
  }
}
.p-top-recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-top-recruit__contents {
  position: relative;
  z-index: 2;
}

.p-top-affiliates {
  padding-top: 55px;
  padding-bottom: 55px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-affiliates {
    padding-top: 60px;
  }
}
.p-top-affiliates__inner {
  max-width: 625px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-top-affiliates__label {
    display: grid;
    place-items: center;
  }
}

.p-top-affiliates__heading {
  margin-top: 5px;
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-affiliates__heading {
    text-align: center;
    font-size: 26px;
    line-height: calc(48 / 26);
    margin-top: 15px;
  }
}
.p-top-affiliates__list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-affiliates__list {
    justify-content: center;
    row-gap: 15px;
  }
}

.p-top-affiliates__item {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .p-top-affiliates__item {
    width: calc((100% - 20px) / 2);
    display: grid;
    place-items: center;
  }
}

.p-top-affiliates__item .-banner {
  transition: opacity 0.3s;
}

.p-top-affiliates__item .-banner:hover {
  opacity: 0.7;
}
.p-single-post__head {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-primary);
  position: relative;
}

.p-single-post__head::after {
  content: "";
  height: 2px;
  width: 128px;
  display: block;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  translate: 0 2px;
}

.p-single-post__heading {
  font-size: 23px;
  line-height: calc(32 / 23);
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: color 0.3s;
}

body:not(.single-post) .p-single-post__heading:hover {
  color: var(--color-primary);
}
body.single-post .p-single-post__heading > a[href] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-single-post__heading {
    font-size: 20px;
    line-height: calc(32 / 20);
  }
}
.p-single-post__date {
  color: var(--color-primary);
  display: block;
  font-size: 14px;
  line-height: calc(21 / 14);
  font-weight: 600;
  margin-top: 5px;
}
.p-single-post__categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.p-single-post__tagList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 5px;
}

.p-single-post__thumbnail > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-height: 600px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.p-single-post__pager {
  margin-top: 20px;
}
.p-single-post__body {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p-form-form__list {
    grid-template-columns: 1fr;
  }
}
.p-home-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.p-home-body__list {
  display: grid;
  grid-auto-flow: row;
  row-gap: 100px;
}

@media screen and (max-width: 768px) {
  .p-home-body__list {
    row-gap: 60px;
  }
}
.p-contact-wrap._clinics {
  background-color: #c8effd;
}

.p-contact-head {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-contact-head {
    padding-top: 75px;
  }
}
.p-contact-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.p-contact-head__text {
  font-size: 14px;
  line-height: calc(24 / 14);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.p-contact-head__text .-emphasis {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-contact-head__figure {
  position: absolute;
  top: -75px;
  right: -100px;
}

@media screen and (max-width: 768px) {
  .p-contact-head__figure {
    display: none;
  }
}
.p-contact-head__heading .c-heading-main {
  position: relative;
  z-index: 2;
}

.p-contact-head__button {
  margin-top: 10px;
}

.p-contact-wrap._clinics .p-contact-head__button .c-button-arrowRight {
  width: 100%;
  max-width: 380px;
}

@media screen and (max-width: 768px) {
  .p-contact-wrap._clinics .p-contact-head__button .c-button-arrowRight {
    border-radius: 20px;
    min-height: 60px;
    max-width: 330px;
    text-align: left;
    justify-content: flex-start;
  }
  .p-contact-wrap._clinics .p-contact-head__button .c-button-arrowRight__text {
    justify-self: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .p-contact-head__button {
    margin-top: 25px;
  }
}
.p-contact-head__body {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 75px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .p-contact-head__body {
    margin-top: 30px;
  }
}

.p-contact-body {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 350px;
  padding-top: 85px;
}

@media screen and (max-width: 768px) {
  .p-contact-body {
    padding-bottom: 15px;
    padding-top: 60px;
  }
}

.p-contact-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-contact-body__form {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

:where(.wpcf7) .wrap {
}

:where(.wpcf7) .wpcf7-not-valid-tip {
  margin-top: 0.5em !important;
  color: #ff6060 !important;
  font-weight: 700 !important;
}

:where(.wpcf7) form.invalid .wpcf7-response-output {
  border-color: var(--color-3rd) !important;
}
:where(.wpcf7) dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 35px;
  justify-content: space-between;
  container-type: inline-size;
}

:where(.wpcf7) dt {
  width: 20%;
  align-self: center;
}
:where(.wpcf7) dt.-fullwidth {
  width: 100%;
}

:where(.wpcf7) dd {
  width: 72%;
}
:where(.wpcf7) dd.-fullwidth {
  width: 100%;
  margin-top: -15px;
}
@media screen and (max-width: 1024px) {
  :where(.wpcf7) dl {
    row-gap: 5px;
    margin-top: -15px;
  }

  :where(.wpcf7) dt {
    width: 100%;
    margin-top: 15px;
  }
  :where(.wpcf7) dd {
    width: 100%;
  }
  :where(.wpcf7) dd.-fullwidth {
    margin-top: 10px;
  }
}

:where(.wpcf7) label:has(.-text) {
  display: grid;
  -moz-column-gap: 15px;
       column-gap: 15px;
  grid-template-columns: max-content 42px;
}

@media screen and (max-width: 1024px) {
  :where(.wpcf7) label:has(.-text) {
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
  }
}

:where(.wpcf7) label .-text {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(30 / 16);
}
@media screen and (max-width: 1024px) {
  :where(.wpcf7) label .-text {
    margin-right: 0.5em;
  }
}
:where(.wpcf7) label .-required {
  color: white;
  background-color: #ff6060;
  width: 42px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  text-indent: 0;
}
@media screen and (max-width: 1024px) {
  :where(.wpcf7) label .-required {
    display: inline-block;
    text-align: center;
  }
}

:where(.wpcf7) .wpcf7-list-item[class] {
  margin: 0 !important;
}
:where(.wpcf7) .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1px;
  flex-direction: column;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

:where(.wpcf7) .confirm-message {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(30 / 16);
  margin-top: 85px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  :where(.wpcf7) .confirm-message {
    margin-top: 55px;
  }
}
:where(.wpcf7) .check-box-area {
  display: grid;
  place-items: center;
  margin-top: 30px;
}
:where(.wpcf7) .check-box-area span {
  font-size: 12px;
  font-weight: 400;
  line-height: calc(17 / 12);
  text-align: center;
}
:where(.wpcf7) .privacy {
  text-decoration: underline;
}
:where(.wpcf7) .appearance {
  display: grid;
  place-items: center;
}
:where(.wpcf7) .button-wrap {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  translate: 35px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  :where(.wpcf7) .button-wrap {
    flex-direction: column;
    translate: 0;
    align-items: center;
  }
}

:where(.wpcf7) input.wpcf7-previous {
  padding: calc(5 / 24 * 1em);
  line-height: calc(50 / 24);
  min-height: 60px;
  font-size: 24px;
  max-width: 272px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  transition: background-color 0.2s ease-in-out;
}

:where(.wpcf7) input[type="submit"] {
  padding: calc(5 / 24 * 1em);
  line-height: calc(50 / 24);
  min-height: 60px;
  font-size: 24px;
  max-width: 272px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  background-color: var(--color-3rd);
  color: var(--color-primary);
  font-weight: 700;
  transition: background-color 0.2s ease-in-out;
}
:where(.wpcf7) input[type="submit"]:disabled {
  background-color: #707070;
}
/* contact/complete */

.p-contact-complete {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-contact-complete {
    padding-bottom: 75px;
  }
}
.p-contact-complete__inner {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.p-contact-complete__text {
  font-size: 14px;
  line-height: calc(24 / 14);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-contact-complete__button {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-contact-complete__button {
    display: grid;
    place-items: center;
  }
}
/* privacy-policy */

.p-privacy-main {
  padding-bottom: 125px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-privacy-main {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.p-privacy-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-privacy-main__body {
  padding-top: 70px;
  max-width: 806px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-privacy-main__body {
    padding-top: 60px;
  }
}
.p-privacy-main__title {
  font-size: 23px;
  font-weight: 700;
  line-height: calc(36 / 23);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-privacy-main__title {
    text-align: center;
  }
}
.p-privacy-main__sub {
  color: var(--color-primary);
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-privacy-main__sub {
    margin-top: 20px;
  }
}
.p-privacy-main__list {
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}

.p-privacy-main__item {
  font-size: 16px;
  line-height: calc(30 / 16);
  text-indent: -1em;
  padding-left: 1em;
  font-family: var(--fontFamily-noto-jp);
}
.p-privacy-main__item::before {
  content: "●";
  color: var(--color-primary);
}
/* 404 */

.p-page404-body {
  padding: 100px var(--gutter);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-page404-body {
    padding: 75px var(--gutter);
  }
}

.p-page404-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-page404-body__heading {
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-primary);
}
.p-page404-body__heading .-ib {
  display: block;
}

.p-page404-body__text {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: calc(24 / 14);
}

.p-page404-body__button {
  display: grid;
  margin-top: 40px;
  place-items: center;
}

/* message */

.p-message-main {
  padding-bottom: 115px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-message-main {
    padding-top: 75px;
    padding-bottom: 60px;
  }
}
.p-message-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-message-main__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 75px;
  row-gap: 30px;
}

@media screen and (max-width: 768px) {
  .p-message-main__body {
    grid-template-columns: 1fr;
    margin-top: 40px;
    row-gap: 35px;
  }
}

.p-message-main__body > *:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}
.p-message-main__body > *:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.p-message-main__body > *:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}
@media screen and (max-width: 768px) {
  .p-message-main__body > *:nth-child(1) {
    grid-area: auto;
    order: 2;
  }
  .p-message-main__body > *:nth-child(2) {
    grid-area: auto;
    order: 1;
  }
  .p-message-main__body > *:nth-child(3) {
    grid-area: auto;
    order: 3;
    margin-top: -10px;
  }
}

.p-message-main__catch {
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-block: var(--leading-trim);
  padding-left: calc(50 / 600 * 100%);
}

@media screen and (max-width: 768px) {
  .p-message-main__catch {
    padding-left: unset;
    margin-left: -0.3em;
    margin-right: -0.3em;
    text-align: center;
  }
}

.p-message-main__text {
  padding-left: calc(50 / 600 * 100%);
  font-size: 14px;
  font-weight: 600;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-message-main__text {
    padding-left: unset;
    font-size: 16px;
    line-height: calc(30 / 16);
    letter-spacing: 0;
  }
}
.p-message-main__picture .-name {
  font-size: 14px;
  line-height: calc(19 / 14);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-message-main__picture .-name {
    text-align: center;
  }
}
.p-message-main__picture .-upper {
  display: block;
}
.p-message-main__picture .-lower {
  display: block;
}
.p-message-main__picture .-emphasis {
  font-size: 22px;
  font-weight: 700;
  line-height: calc(30 / 22);
}
.p-message-main__picture .-img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-message-main__picture {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: none;
    width: 100vw;
  }

  .p-message-main__picture .-img {
    width: 100%;
    max-width: none;
    border-radius: 0;
    max-height: 430px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-message-main__date {
  text-align: right;
  margin-top: 4.7em;
}

@media screen and (max-width: 768px) {
  .p-message-main__date {
    font-size: 14px;
    font-weight: 600;
    line-height: calc(24 / 14);
    margin-top: 1.1em;
  }
}
.p-message-idea {
  background: var(--color-gradient-primary-bottom);
}
.p-message-idea__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-message-idea {
  color: white;
  padding-top: 50px;
  padding-bottom: 85px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-message-idea__heading {
  border-bottom: 1px solid currentColor;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p-message-idea__heading {
    text-align: center;
  }
}

.p-message-idea__heading .-en {
  font-size: 14px;
  line-height: calc(20 / 14);
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-sawarabi);
}
.p-message-idea__heading .-ja {
  font-size: 26px;
  line-height: calc(36 / 26);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.p-message-idea__body {
  margin-top: 20px;
}
.p-message-idea__catch .-sub {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  line-height: calc(48 / 30);
  letter-spacing: 0.1em;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .p-message-idea__catch .-sub {
    text-align: center;
    margin-right: unset;
    display: block;
    font-size: 26px;
    line-height: calc(48 / 26);
  }
}

.p-message-idea__catch .-main {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  line-height: calc(85 / 48);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-message-idea__catch .-main {
    display: block;
    text-align: center;
    font-size: 40px;
    line-height: calc(65 / 40);
  }
}

.p-message-idea__catch .-yakuhan {
  margin-right: -0.3em;
}

.p-message-idea__list {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-message-idea__list {
    margin-top: 20px;
  }
}

.p-message-idea__item {
  font-size: 18px;
  font-weight: 600;
  line-height: calc(24 / 18);
  letter-spacing: 0.1em;
}
.p-message-idea__item::before {
  content: "・";
}
@media screen and (max-width: 768px) {
  .p-message-idea__item {
    padding-left: 1em;
    text-indent: -1em;
  }
}
.p-message-history {
  padding-top: 95px;
  padding-bottom: 95px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-message-history {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.p-message-history__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-message-history__timeline {
  margin-top: 75px;
  padding-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .p-message-history__timeline {
    margin-top: 50px;
    padding-bottom: 70px;
  }
}
.p-message-history__works {
  border-top: 1px solid var(--color-primary);
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-message-history__works {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.p-message-history__works .-heading {
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-message-history__works .-heading {
    text-align: center;
  }
}
.p-message-history__works .-text {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 768px) {
  .p-message-history__works .-text {
    margin-top: 10px;
  }
}
.p-message-history__works .-figure {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-message-history__works .-figure {
    margin-top: 10px;
  }
}
.p-about-wrap {
  background-image: linear-gradient(
    to bottom,
    white 0%,
    white 300px,
    #eef8fc 300px,
    #eef8fc 100%
  );
  position: relative;
}
.p-about-wrap__bg {
  position: absolute;
  left: 0;
  top: var(--height-header);
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-about-wrap {
    padding-top: 75px;
    background-color: #eef8fc;
    background-image: none;
  }
  .p-about-wrap__bg {
    display: none;
  }
}

.p-about-wrap__contents {
  position: relative;
  z-index: 2;
}

.p-about-main {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-main {
    padding-bottom: 55px;
  }
}

.p-about-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-about-main__catch {
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-about-main__catch .-ib {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-about-main__catch {
    text-align: center;
  }
}
.p-about-main__text {
  font-size: 16px;
  line-height: calc(30 / 16);
  font-family: var(--fontFamily-noto-jp);
}

.p-about-main__body {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  -moz-column-gap: 2%;
       column-gap: 2%;
}
@media screen and (max-width: 1024px) {
  .p-about-main__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-about-main__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 30px;
    row-gap: 20px;
  }
}

.p-about-main__body > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  align-self: flex-end;
  padding-bottom: 80px;
}
.p-about-main__body > *:nth-child(2) {
  grid-area: 1 / 2 / 3 / 3;
  justify-self: flex-end;
}
.p-about-main__body > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
  margin-top: -40px;
}

@media screen and (max-width: 768px) {
  .p-about-main__body > *:nth-child(1) {
    grid-area: auto;
    padding-bottom: unset;
    align-self: auto;
  }
  .p-about-main__body > *:nth-child(2) {
    grid-area: auto;
    justify-self: center;
    align-self: center;
  }
  .p-about-main__body > *:nth-child(3) {
    grid-area: auto;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-about-main__figure {
  }
  .p-about-main__figure .-img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 304px;
  }
}
.p-about-example {
  padding-bottom: 50px;
  padding-top: 50px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-about-example {
    background-color: white;
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.p-about-example._first {
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .p-about-example._first {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-bottom: 0px;
  }

  .p-about-example._last {
    padding-bottom: 60px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.p-about-example__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-about-example__num {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    place-items: center;
  }
  .p-about-example__num .-img {
    width: 228px;
  }
}

.p-about-example__body {
  border-radius: 20px;
  background-color: white;
  padding-top: 45px;
  padding-left: 4.7%;
  padding-bottom: 50px;
  width: calc(704 / 1080 * 100%);
  padding-right: 15%;
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .p-about-example__body {
    width: calc(660 / 1080 * 100%);
  }
}
@media screen and (max-width: 768px) {
  .p-about-example__body {
    width: 100%;
    padding: unset;
    margin-top: 25px;
  }
}
.p-about-example__picture {
  position: absolute;
  right: 0;
  z-index: 2;
  margin-top: 60px;
  top: 0;
  scale: 1.07;
  width: min(460px, calc(460 / 1080 * 100vw));
}

@media screen and (max-width: 768px) {
  .p-about-example__picture {
    position: static;
    scale: 1;
    width: 100%;
    margin-top: 15px;
  }

  .p-about-example__picture .-img {
    width: 100%;
  }
}

.p-about-example__heading {
  font-size: 23px;
  font-weight: 700;
  line-height: calc(32 / 23);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-about-example__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: calc(27 / 20);
    text-align: center;
    margin-left: -0.25em;
    margin-right: -0.25em;
  }
}
.p-about-example__catch {
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.05;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .p-about-example__catch {
    font-size: 15px;
    line-height: calc(20 / 15);
    margin-top: 15px;
    text-align: center;
  }
}

.p-about-example__text {
  margin-top: 15px;
  font-size: 16px;
  line-height: calc(30 / 16);
  font-family: var(--fontFamily-noto-jp);
}
@media screen and (max-width: 768px) {
  .p-about-example__catch {
    margin-top: 10px;
  }
}

.p-about-example__box {
  margin-top: 15px;
  background-color: #eef8fc;
  padding: 15px 4%;
}
@media screen and (max-width: 768px) {
  .p-about-example__box {
    padding: 15px 6%;
  }
}

.p-about-example__box .-heading {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--color-primary);
}
.p-about-example__box .-text {
  margin-top: 15px;
  font-size: 12px;
  line-height: calc(20 / 12);
  letter-spacing: 0.05em;
}
.p-about-example__button {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-about-example__button {
    display: grid;
    place-items: center;
  }

  .p-about-map {
    display: none;
  }
}
.p-about-map .-img {
  width: 100%;
}

.p-join-main {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-join-main {
    padding-top: 75px;
  }
}

.p-join-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-join-main__body {
  padding-top: 60px;
  padding-bottom: 60px;
}
.p-join-main__text {
  font-size: 16px;
  line-height: calc(30 / 16);
}

.p-medical-main {
  margin-bottom: -10px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-medical-main {
    padding-top: 75px;
    margin-bottom: unset;
    padding-bottom: 55px;
  }
}

.p-medical-main__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.p-medical-main__figure {
  right: 42px;
  top: -30px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-medical-main__figure {
    display: none;
  }
  .p-medical-main__heading {
    margin-left: -1em;
    margin-right: -1em;
  }
}
@media screen and (max-width: 768px) {
  .p-medical-main__figure {
    display: none;
  }
}

.p-medical-main__body {
}
@media screen and (max-width: 768px) {
  .p-medical-main__body {
    display: grid;
    grid-auto-flow: row;
  }
  .p-medical-main__body > *:nth-child(1) {
    order: 2;
  }
  .p-medical-main__body > *:nth-child(2) {
    order: 1;
  }
  .p-medical-main__body > *:nth-child(3) {
    order: 3;
  }
  .p-medical-main__body > *:nth-child(4) {
    order: 4;
  }
  .p-medical-main__body > *:nth-child(5) {
    order: 5;
  }
  .p-medical-main__body > *:nth-child(6) {
    order: 6;
  }
}

.p-medical-main__picture {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .p-medical-main__picture {
    margin-top: 20px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: none;
  }
}
.p-medical-main__picture .-img {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .p-medical-main__picture .-img {
    width: 100%;
    border-radius: 0;
    max-height: 430px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-medical-main__catch {
  margin-top: 30px;
  font-size: 30px;
  line-height: calc(48 / 30);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-medical-main__catch {
    margin-top: 60px;
    text-align: center;
  }
}

.p-medical-main__text {
  margin-top: 25px;
  font-size: 14px;
  line-height: calc(24 / 14);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-medical-main__text {
    font-size: 16px;
    line-height: calc(30 / 16);
    font-family: var(--fontFamily-noto-jp);
    font-weight: 400;
  }
}

.p-medical-main__subheading {
  margin-top: 65px;
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .p-medical-main__subheading {
    margin-top: 60px;
    text-align: center;
  }
}
.p-medical-main__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  -moz-column-gap: calc(20 / 1080 * 100%);
       column-gap: calc(20 / 1080 * 100%);
  row-gap: 20px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-medical-main__list {
    margin-top: 10px;
    row-gap: 10px;
  }
}
.p-medical-main__note {
  font-size: 12px;
  line-height: calc(20 / 12);
  letter-spacing: 0.05em;
  margin-top: 15px;
  display: block;
}

.p-medical-bar .-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-medical-bar .-img {
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.p-medical-section {
  padding-top: 70px;
  padding-bottom: 90px;
  background-image: linear-gradient(
    to bottom,
    #e1f7f7 0%,
    white 200px,
    white 100%
  );
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-medical-section {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}

.p-medical-section__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-medical-section__upper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 70px;
}

@media screen and (max-width: 768px) {
  .p-medical-section__upper {
    grid-template-columns: 1fr;
    row-gap: 20px;
    grid-template-rows: auto auto auto;
  }
}

.p-medical-section__upper > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  padding-right: 10%;
}

@media screen and (max-width: 768px) {
  .p-medical-section__upper > *:nth-child(1) {
    display: grid;
    place-items: center;
  }
}
.p-medical-section__upper > *:nth-child(2) {
  grid-area: 1 / 2 / 3 / 3;
  padding-top: 15px;
}
.p-medical-section__upper > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
  padding-right: 10%;
}

@media screen and (max-width: 768px) {
  .p-medical-section__upper > *:nth-child(1) {
    grid-area: auto;
    padding-right: unset;
  }
  .p-medical-section__upper > *:nth-child(2) {
    grid-area: auto;
    padding-top: unset;
    display: grid;
    place-items: center;
  }
  .p-medical-section__upper > *:nth-child(3) {
    grid-area: auto;
    padding-right: unset;
  }
}

.p-medical-section__heading {
  color: var(--color-primary);
  line-height: calc(48 / 30);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 15px;
  font-size: 30px;
}

.p-medical-section__picture .-img {
  border-radius: 20px;
}
.p-medical-section__info .-main {
  font-size: 23px;
  line-height: calc(32 / 23);
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-medical-section__info .-main {
    font-size: 20px;
    line-height: calc(27 / 20);
    text-align: center;
    margin-top: 5px;
  }
}
.p-medical-section__info .-sub {
  color: var(--color-primary);
  font-size: 18px;
  line-height: calc(24 / 18);
  margin-top: 15px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-medical-section__info .-sub {
    font-size: 15px;
    line-height: calc(20 / 15);
    text-align: center;
    margin-top: 10px;
  }
}
.p-medical-section__info .-text {
  font-size: 16px;
  line-height: calc(30 / 16);
  margin-top: 15px;
  font-family: var(--fontFamily-noto-jp);
}

.p-medical-section__lower {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-medical-section__lower {
    margin-top: 40px;
  }
}

.p-medical-section__timeline {
  margin-top: 10px;
}

.p-medical-section__subheading {
  padding-bottom: 10px;
  border-bottom: 1px solid;
  color: var(--color-primary);
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-medical-section__subheading {
    text-align: center;
  }
}
.p-medical-section__subsubheading {
  font-weight: 700;
  margin-top: 25px;
  border-radius: 20px;
  padding-top: calc(8 / 18 * 1em);
  padding-bottom: calc(8 / 18 * 1em);
  padding-left: calc(26 / 18 * 1em);
  padding-right: calc(26 / 18 * 1em);
  font-size: 18px;
  line-height: calc(24 / 18);
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background-color: #eef8fc;
}

@media screen and (max-width: 768px) {
  .p-medical-section__subsubheading {
    text-align: center;
  }
}
.p-clinics-head {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-clinics-head {
    padding-top: 40px;
  }
}
.p-clinics-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.p-clinics-head__heading {
  color: var(--color-primary);
}

.p-clinics-head__heading .-en {
  font-size: 14px;
  line-height: calc(20 / 14);
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-sawarabi);
}

.p-clinics-head__heading .-ja {
  font-size: 30px;
  line-height: calc(41 / 30);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-clinics-head__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: calc(50 / 1080 * 100%);
       column-gap: calc(50 / 1080 * 100%);
  margin-top: 48px;
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-clinics-head__categories {
    grid-template-columns: 1fr;
  }
}
.p-clinics-head__category {
  position: relative;
  width: 100%;
  max-width: 538px;
}

.p-clinics-head__category::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 25px;
  translate: 0 -50%;
  top: 50%;
  width: 9.4px;
  height: 6.1px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9.4" height="6.1" viewBox="0 0 9.4 6.1"><path id="パス_36" data-name="パス 36" d="M6.7,8.1,2,3.4,3.4,2,6.7,5.3,10,2l1.4,1.4Z" transform="translate(-2 -2)" fill="%23333"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.p-clinics-category__select {
  border-radius: 3px;
  border: 1px solid #333333;
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  max-width: 538px;
}

.p-clinics-body {
  padding-top: 60px;
  padding-bottom: 150px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-clinics-body {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}
.p-clinics-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-clinics-body__list {
  display: grid;
  -moz-column-gap: calc(50 / 1080 * 100%);
       column-gap: calc(50 / 1080 * 100%);
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  row-gap: 45px;
}

@media screen and (max-width: 768px) {
  .p-clinics-body__list {
    row-gap: 40px;
  }
}

.p-clinics-body__list > .p-clinics-body__item:only-child {
  grid-column: span 1;
  max-width: calc((100% - calc(50 / 1080 * 100%)) / 2); /* カラムの幅を計算 */
}
@media screen and (max-width: 768px) {
  .p-clinics-body__list > .p-clinics-body__item:only-child {
    max-width: unset; /* カラムの幅を計算 */
  }
}
.p-clinics-body__item {
  display: grid;
  grid-template-rows: subgrid;
}

.p-sidebar-news__heading {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: calc(24 / 18);
  color: var(--color-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-sidebar-news__heading {
    border-bottom: none;
    padding-bottom: unset;
  }
}
.p-sidebar-news__heading:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-sidebar-news__heading:not(:first-of-type) {
    margin-top: 20px;
  }
}
.p-sidebar-news__item {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 1px dotted;
}

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

.p-sidebar-news__link {
  transition: color 0.3s;
}

.p-sidebar-news__link:hover {
  color: var(--color-primary);
}

.p-sidebar-news__selectBox {
  position: relative;
  display: none;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-sidebar-news__selectBox {
    display: revert;
  }
}

.p-sidebar-news__select {
  border-radius: 3px;
  border: 1px solid #333333;
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  font-weight: 600;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}
.p-sidebar-news__selectBox::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 25px;
  translate: 0 -50%;
  top: 50%;
  width: 9.4px;
  height: 6.1px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9.4" height="6.1" viewBox="0 0 9.4 6.1"><path id="パス_36" data-name="パス 36" d="M6.7,8.1,2,3.4,3.4,2,6.7,5.3,10,2l1.4,1.4Z" transform="translate(-2 -2)" fill="%23333"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.p-single-head {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-single-head {
    padding-top: 75px;
  }
}

.p-single-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-single-layout {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media screen and (max-width: 768px) {
  .p-single-layout {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}
.p-single-layout__inner {
  display: grid;
  grid-template-columns: 1fr 250px;
  -moz-column-gap: calc(58 / 1080 * 100%);
       column-gap: calc(58 / 1080 * 100%);
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-single-layout__inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.p-single-clinics {
  padding-bottom: 115px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-single-clinics {
    padding-top: 40px;
  }
}

.p-single-clinics__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-single-clinics__heading {
  font-size: 30px;
  line-height: calc(48 / 30);
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--color-primary);
}

.p-single-clinics__categories {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 5px;
}
.p-single-clinics__postbody {
  padding-top: 20px;
  padding-bottom: 25px;
}
.p-single-clinics__list {
  display: grid;
  grid-template-columns: 171px 1fr;
  border-top: 1px solid #005ead;
}

@media screen and (max-width: 768px) {
  .p-single-clinics__list {
    grid-template-columns: max-content 1fr;
  }
}

.p-single-clinics__list .-term {
  font-size: 14px;
  line-height: calc(19 / 14);
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  padding-top: calc(21 / 2 / 14 * 1em);
  padding-bottom: calc(21 / 2 / 14 * 1em);
  padding-left: 1.2em;
  padding-right: 1.2em;
  background-color: #eef8fc;
  border-bottom: 1px solid #005ead;
}
.p-single-clinics__list .-description {
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.1em;
  padding-top: calc(16 / 2 / 14 * 1em);
  padding-bottom: calc(16 / 2 / 14 * 1em);
  padding-left: 1.2em;
  padding-right: 1.2em;
  border-bottom: 1px solid #005ead;
}

.p-single-clinics__map {
  margin-top: 80px;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  aspect-ratio: 1280 / 810;
  width: 100vw;
  max-height: 810px;
}

@media screen and (max-width: 768px) {
  .p-single-clinics__map {
    aspect-ratio: 1280 / 1280;
  }
}

.p-single-clinics__map .-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-single-clinics__map .gm-style-iw-chr {
  height: 12px;
  overflow: hidden;
}

.p-single-clinics__button {
  margin-top: 25px;
  display: grid;
  place-items: center;
}

.p-page-head {
}

.p-page-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-page-body {
  padding-top: 60px;
  padding-bottom: 60px;
}
.p-page-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
}
@layer javascript {
.js-animation._fade-in-up {
  opacity: 0;
  transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(10.5rem);
}
.js-animation._fade-in-up._active {
  opacity: 1;
  transform: translateY(0);
}
.js-animation._fade-in {
  opacity: 0;
  transition: opacity 1s, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.js-animation._fade-in._active {
  opacity: 1;
}
}
@layer utility {

.u-visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

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

.u-overflow-hidden {
  overflow: hidden;
}

.u-clamp-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-clear-fix::after {
  clear: both;
  content: "";
  display: table;
}

@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}
.u-md-visible {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-visible {
    display: revert;
  }
}
@media screen and (max-width: 1024px) {
  .u-lg-hidden {
    display: none;
  }
}
.u-lg-visible {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg-visible {
    display: revert;
  }
}

@media screen and (max-width: 1280px) {
  .u-xl-hidden {
    display: none;
  }
}
.u-xl-visible {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-xl-visible {
    display: revert;
  }
}

.u-display-contents {
  display: contents;
}

.u-ib {
  display: inline-block;
}
}
