@charset "UTF-8";
/* var(--vw) を使う clamp を生成 */
:root {
  --width: 1400;
  --bg-base:#F0F7FF;
  --color-text:#323232;
  --color-green:#3EC1BD;
  --color-blue:#1D52BB;
  --color-blueRgb:29, 82, 187;
  --color-blue2:#2786DE;
  --color-red1:#E14C67;
  --color-red2:#F46262;
  --bgColorCard:#EDF8F8;
  --contents-width:1200;
  --contents-width-px:calc(var(--contents-width) * 1px);
  --vw-base: 100vw;
  --vw: calc(var(--vw-base) * 0.01);
  --fluid-min-vw: 375px;
  --fluid-max-vw: 1400px;
  --font-ja:"Noto Sans JP", sans-serif;
  --font-maru:"Zen Maru Gothic", sans-serif;
  --font-en:"Sansita Swashed", system-ui;
  --headerHeight:100px;
  --radius-sm: 30px;
  --radius-md: 60px;
  --radius-lg: 96px;
  --borderLine:1px solid var(--color-blue);
  --boxRadius:var(--radius-md);
}
@media (max-width: 767px) {
  :root {
    --headerHeight:76px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 16px;
  }
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 1em;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--bg-base);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  text-rendering: optimizeLegibility;
}

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

@media (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img, svg {
  max-width: 100%;
  height: auto;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

input, textarea, select {
  font-size: 16px !important;
  font-family: var(--font-ja);
}

button, input, optgroup, select, textarea {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

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

legend {
  width: 100%;
  margin: 0;
  padding: 0;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*スクリーンリーダーのみ*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: var(--contents-width-px);
}
.l-inner.l-inner__l {
  max-width: 1240px;
}
.l-inner.l-inner__m {
  max-width: 1046px;
}
.l-inner.l-inner__s {
  max-width: 1013px;
}
.l-inner.l-inner__ss {
  max-width: 981px;
}
@media (max-width: 767px) {
  .l-inner {
    width: 94.0298507463%;
  }
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

main {
  position: relative;
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.u-link:hover, .u-link:active, .u-link:focus {
  text-decoration: none;
}

.u-strong {
  color: var(--color-red1);
}

.u-red {
  color: var(--color-red1);
}

.u-fwb {
  font-weight: 700;
}

.u-pe-none {
  pointer-events: none;
}

.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-main {
  position: relative;
  display: block;
  flex-grow: 1;
  padding-top: var(--headerHeight);
}

.l-wave--none {
  padding-top: 5%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .l-wave--none {
    padding-top: 9.9502487562%;
    padding-bottom: 50px;
  }
}

.l-wave--type1 {
  position: relative;
  padding-top: 10%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .l-wave--type1 {
    padding-top: 15.92039801%;
    padding-bottom: 50px;
  }
}
.l-wave--type1::before {
  content: "";
  display: block;
  padding-top: 55px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background: url(../img/common/bg_blue1.png) no-repeat top left/100%;
  -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: 0 0, top center;
  -webkit-mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: source-out;
  mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01.svg);
  mask-repeat: no-repeat, no-repeat;
  mask-position: 0 0, top center;
  mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media (max-width: 767px) {
  .l-wave--type1::before {
    background-image: url(../img/common/bg_blue1_sp.png);
    -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01_sp.svg);
    mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01_sp.svg);
  }
}

.l-wave--type2 {
  position: relative;
  padding-top: 10%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .l-wave--type2 {
    padding-top: 15.92039801%;
    padding-bottom: 50px;
  }
}
.l-wave--type2::before {
  content: "";
  display: block;
  padding-top: 55px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background: url(../img/common/bg_blue2.png) no-repeat top left/100%;
  -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: 0 0, top center;
  -webkit-mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: source-out;
  mask-image: linear-gradient(#fff, #fff), url(../img/common/wave02.svg);
  mask-repeat: no-repeat, no-repeat;
  mask-position: 0 0, top center;
  mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media (max-width: 767px) {
  .l-wave--type2::before {
    background-image: url(../img/common/bg_blue2_sp.png);
    -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/wave02_sp.svg);
    mask-image: linear-gradient(#fff, #fff), url(../img/common/wave02_sp.svg);
  }
}

.l-bg-dot--type01 {
  position: relative;
  padding-top: 10%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .l-bg-dot--type01 {
    padding-top: 15.92039801%;
    padding-bottom: 50px;
  }
}
.l-bg-dot--type01::before {
  content: "";
  display: block;
  padding-top: 55px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(39, 134, 222, 0.15);
  background-image: radial-gradient(circle, #ffffff 2px, transparent 2px);
  background-position: 0 0;
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: 0 0, top center;
  -webkit-mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: source-out;
  mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01.svg);
  mask-repeat: no-repeat, no-repeat;
  mask-position: 0 0, top center;
  mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media (max-width: 767px) {
  .l-bg-dot--type01::before {
    -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/relation_wave_sp.svg);
    mask-image: linear-gradient(#fff, #fff), url(../img/common/relation_wave_sp.svg);
  }
}

.l-bg-dot--type02 {
  position: relative;
  padding-top: 10%;
  background-color: rgba(39, 134, 222, 0.15);
  background-image: radial-gradient(circle, #ffffff 2px, transparent 2px);
}

.l-bg-stripe {
  background-color: #fff;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e2e2e8 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #e2e2e8 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
}

/*************************************
* common
***************************************/
.c-section__title {
  margin: 0 auto;
  font-size: clamp(18px, calc(15.8873239437px + (0.5633802817 * var(--vw))), 24px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-section__title--hasIcon {
  position: relative;
  padding-left: 1.5em;
}
.c-section__title--hasIcon::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  -webkit-mask-image: url(../img/common/icon_title.svg);
  mask-image: url(../img/common/icon_title.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-green);
}

.c-section__titleJa {
  font-size: clamp(24px, calc(19.7746478873px + (1.1267605634 * var(--vw))), 36px);
  font-weight: 700;
  font-family: var(--font-maru);
  color: var(--color-blue);
  letter-spacing: -0.002em;
}

.c-section__titleEn {
  padding-left: 5%;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-en);
  color: var(--color-blue);
}

.c-title__bgFill {
  padding: 0.5em 1em;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, calc(13.0704225352px + (1.3145539906 * var(--vw))), 32px);
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background-color: var(--color-blue);
  border-radius: 40px;
}

.c-title__bgFill--secondary {
  padding: 0.5em 1em;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, calc(13.0704225352px + (1.3145539906 * var(--vw))), 32px);
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  background-color: #fff;
  border-radius: 40px;
}

.c-sectionBox {
  padding: 60px 0 78px;
  color: #fff;
  background: #3EC1BD;
  border-radius: 104px;
}
@media (max-width: 767px) {
  .c-sectionBox {
    padding: 45px 0 32px;
    border-radius: 32px;
  }
}
.c-sectionBox .c-section__title--hasIcon .c-section__titleJa {
  color: #fff;
}
.c-sectionBox .c-section__title--hasIcon::before {
  background-color: #fff;
}

.c-list01 {
  font-size: clamp(14px, calc(12.5915492958px + (0.3755868545 * var(--vw))), 18px);
  line-height: 129%;
  letter-spacing: 0.04em;
}
.c-list01 > * {
  position: relative;
  padding-left: 1em;
}
.c-list01 > *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: var(--color-blue);
  border-radius: 50%;
}

.c-list02 {
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  line-height: 180%;
}
.c-list02 > * {
  position: relative;
  padding-left: 1em;
}
.c-list02 > *::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
}

.c-text__lead {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .c-text__lead {
    margin-top: 50px;
  }
}

.c-text01 {
  line-height: 180%;
}

.c-box {
  border-radius: var(--boxRadius);
  border: var(--borderLine);
  background-color: #fff;
  overflow: hidden;
}

.c-button__wrap {
  margin-top: 30px;
}

.c-button01 {
  position: relative;
  padding: 1em 2.5em 1em 1.25em;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 100px;
}
.c-button01::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #fff;
  -webkit-mask-image: url(../img/common/button_arrow.svg);
          mask-image: url(../img/common/button_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button01:hover, .c-button01:focus {
  color: var(--color-blue);
  background-color: #fff;
}
.c-button01:hover::after, .c-button01:focus::after {
  background: var(--color-blue);
}

.c-button02 {
  position: relative;
  padding: 1em 1.25em;
  display: inline-block;
  border: var(--borderLine);
  border-radius: 38px;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
.c-button02 span {
  position: relative;
  padding-right: 2em;
}
.c-button02 span::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  background: var(--color-blue);
  -webkit-mask-image: url(../img/common/button_arrow02.svg);
          mask-image: url(../img/common/button_arrow02.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button02:hover, .c-button02:focus {
  color: #fff;
  background-color: var(--color-blue);
}
.c-button02:hover span::after, .c-button02:focus span::after {
  background: #fff;
}
.c-button02.u-horizontal span::after {
  transform: rotate(45deg) translateY(-50%);
}

.c-button03 {
  position: relative;
  padding: 1em 2.75em 1em 1.75em;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue);
  background-color: #fff;
  border: var(--borderLine);
  border-radius: 100px;
}
.c-button03::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--color-blue);
  -webkit-mask-image: url(../img/common/button_arrow.svg);
          mask-image: url(../img/common/button_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button03:hover, .c-button03:focus {
  color: #fff;
  background-color: var(--color-blue);
}
.c-button03:hover::after, .c-button03:focus::after {
  background: #fff;
}

.c-button03__large {
  padding: 1.75em 4.5em 1.75em 4.5em;
}
.c-button03__large::after {
  right: 2em;
}

.c-button__large {
  position: relative;
  padding: 1em 3em 1em 1em;
  display: block;
  background: #FFFFFF;
  border-radius: 10px;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, calc(15.1830985915px + (0.7511737089 * var(--vw))), 26px);
  line-height: 170%;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
.c-button__large::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: center;
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: var(--color-blue);
  -webkit-mask-image: url(../img/common/arrow_left.svg);
          mask-image: url(../img/common/arrow_left.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button__large:hover, .c-button__large:focus {
  color: #fff;
  background-color: var(--color-blue);
}
.c-button__large:hover::after, .c-button__large:focus::after {
  background: #fff;
}

.c-button__large--secondary {
  color: var(--color-green);
}
.c-button__large--secondary:hover, .c-button__large--secondary:focus {
  color: #fff;
  background-color: var(--color-green);
}
.c-button__large--secondary:hover::after, .c-button__large--secondary:focus::after {
  background: #fff;
}

.c-formButton {
  position: relative;
  padding: 0.75em 1.25em;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: var(--borderLine);
  border-radius: 38px;
  font-weight: 500;
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  background-color: #fff;
  width: 220px;
}
@media (max-width: 767px) {
  .c-formButton {
    width: 194px;
  }
}
.c-formButton:hover, .c-formButton:focus {
  color: #fff;
  background-color: var(--color-text);
  border-color: var(--color-text);
}

.c-formButton__submit {
  color: #fff;
  background-color: var(--color-blue);
}
.c-formButton__submit:hover, .c-formButton__submit:focus {
  color: var(--color-blue);
  background-color: #fff;
  border: var(--borderLine);
}

.c-check-list {
  display: grid;
  margin: 0 auto;
  gap: 1em;
  list-style: none;
}
.c-check-list.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.c-check-list.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.c-check-list + .c-check-list {
  margin-top: 2em;
}
@media (max-width: 767px) {
  .c-check-list.col2, .c-check-list.col3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-check-lbl {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.c-checkbox {
  margin-top: 0.15em;
  margin-right: 0.5em;
  flex-shrink: 0;
  border-color: var(--color-blue);
  width: 20px;
  height: 20px;
  accent-color: var(--color-blue);
}

/* アレルギー症状について　*/
.c-card__link {
  position: relative;
  display: block;
  height: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 32px 32px 0px 32px;
  filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.1));
  background: url(../img/common/bg_green_dark.png);
}
@media (max-width: 767px) {
  .c-card__link {
    border-radius: 16px 16px 0px 16px;
  }
}
.c-card__link::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 5.5em;
  height: 5.5em;
  background: url(../img/common/arrow_card.svg) no-repeat bottom right/contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-card__link::before {
    width: 3em;
    height: 3em;
  }
}
.c-card__link:hover, .c-card__link:focus {
  filter: brightness(80%);
}

.c-card__title {
  padding: 1em 0.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 5em;
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(16px, calc(13.8873239437px + (0.5633802817 * var(--vw))), 22px);
}

.c-card__titleJa {
  font-weight: 700;
  font-size: clamp(16px, calc(13.8873239437px + (0.5633802817 * var(--vw))), 22px);
  line-height: 136%;
  letter-spacing: 0.005em;
}

.c-card__titleEn {
  font-size: clamp(10px, calc(9.2957746479px + (0.1877934272 * var(--vw))), 12px);
  line-height: 150%;
  font-weight: 500;
  font-family: var(--font-en);
}

.c-card__thumb img {
  width: 100%;
  height: auto;
}

.c-card__list {
  font-size: clamp(14px, calc(12.5915492958px + (0.3755868545 * var(--vw))), 18px);
  line-height: 180%;
  letter-spacing: 0.04em;
}

.c-card__listItem {
  position: relative;
  padding-left: 1em;
}
.c-card__listItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: var(--color-blue);
  border-radius: 50%;
}

/* お役立ち情報　*/
.c-tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em 0.75em;
}

.c-tag {
  display: inline-block;
  padding: 0.1em 0.5em;
  font-weight: 500;
  font-size: clamp(10px, calc(8.5915492958px + (0.3755868545 * var(--vw))), 14px);
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 4px;
  background-color: var(--color-blue);
}

.c-tag01 {
  background-color: #E14C67;
}

.c-tag02 {
  background-color: #7ACB70;
}

.c-tag03 {
  background-color: #E6AB0C;
}

.c-tag04 {
  background-color: #8288FF;
}

.c-tag-s1 {
  background-color: #E14C67;
}

.c-tag-s2 {
  background-color: var(--color-blue2);
}

.c-tag-s3 {
  background-color: #E6AB0C;
}

/* お役立ちカード　など*/
.c-mediaCard__wrap {
  --mediaPd:4%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 4.1501976285%;
}
@media (max-width: 767px) {
  .c-mediaCard__wrap {
    gap: 15px 4.1501976285%;
  }
}

.c-mediaCard {
  display: block grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 4;
  padding-top: 1.5em;
  padding-bottom: 2em;
  border: var(--borderLine);
  border-radius: var(--radius-sm);
  background: linear-gradient(0deg, var(--bgColorCard), var(--bgColorCard) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-mediaCard {
    padding-top: 0.5em;
    padding-bottom: 1em;
  }
}

.c-mediaCard__pickup {
  --bgColorCard: #fcf6e6;
}

.c-mediaCard__link {
  position: relative;
  margin: 0 auto;
  padding: 0.65em 1.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: clamp(14px, calc(13.6478873239px + (0.0938967136 * var(--vw))), 15px);
  font-weight: 500;
  color: var(--color-blue);
  background-color: #fff;
  border: var(--borderLine);
  border-radius: 40px;
  max-width: 194px;
  width: 84%;
}
.c-mediaCard__link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--color-blue);
  -webkit-mask-image: url(../img/common/button_arrow.svg);
          mask-image: url(../img/common/button_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-mediaCard__link:hover, .c-mediaCard__link:focus {
  background-color: var(--color-blue);
  color: #fff;
}
.c-mediaCard__link:hover::after, .c-mediaCard__link:focus::after {
  background: #fff;
}

.c-mediaCard__bg {
  margin-top: 1em;
  background: linear-gradient(0deg, var(--bgColorCard) 0%, var(--bgColorCard) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

.c-mediaCard__tags {
  padding: 0 var(--mediaPd);
}
.c-mediaCard__tags + .c-mediaCard__tags {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .c-mediaCard__tags + .c-mediaCard__tags {
    margin-top: 0.15em;
  }
}

.c-mediaCard__thumb {
  margin: 0 0 12px;
  overflow: hidden;
}

.c-mediaCard__thumb > img {
  display: block;
  width: 100%;
  height: auto;
}

.c-mediaCard__thumb--book {
  margin: 0 auto 0;
  padding: 0 3px 3px;
  width: 162px;
}
@media (max-width: 767px) {
  .c-mediaCard__thumb--book {
    width: 70px;
  }
}
.c-mediaCard__thumb--book img {
  box-shadow: 5px 3px 3px rgba(0, 0, 0, 0.25);
}

.c-mediaCard__thumb--movie {
  margin: 0 auto 0;
  width: 87.5%;
  aspect-ratio: 16/9;
}

.c-mediaCard__body {
  padding: 1.25em var(--mediaPd) 2em;
  background-color: var(--bgColorCard);
}
@media (max-width: 767px) {
  .c-mediaCard__body {
    padding-bottom: 1em;
  }
}

.c-mediaCard__title {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: clamp(15px, calc(12.5352112676px + (0.6572769953 * var(--vw))), 22px);
  line-height: 136%;
  letter-spacing: 0.08em;
  color: var(--color-blue);
}

.c-mediaCard__title--sub {
  font-size: clamp(12px, calc(10.5915492958px + (0.3755868545 * var(--vw))), 16px);
  line-height: 180%;
}
@media (max-width: 767px) {
  .c-mediaCard__title--sub {
    line-height: 160%;
  }
}

.c-mediaCard__title--label {
  font-size: clamp(14px, calc(14px + (0 * var(--vw))), 14px);
  line-height: 180%;
}

* + .c-mediaCard__title--label {
  margin-top: 1em;
}

.c-mediaCard__text {
  font-size: clamp(12px, calc(10.5915492958px + (0.3755868545 * var(--vw))), 16px);
  line-height: 180%;
}
@media (max-width: 767px) {
  .c-mediaCard__text {
    line-height: 145%;
  }
}
.c-mediaCard__text p + p {
  margin-top: 1em;
}

* + .c-mediaCard__text {
  margin-top: 1em;
}

/* 医療機関都道府県　*/
.c-aboutCard__link {
  padding: 2em;
  display: block;
  height: 100%;
  background: #FFFFFF;
  border: var(--borderLine);
  border-radius: 28px;
}
@media (max-width: 767px) {
  .c-aboutCard__link {
    position: relative;
    padding: 1.5em 1em;
    padding-bottom: 3em;
  }
  .c-aboutCard__link::after {
    content: "";
    position: absolute;
    right: 0.75em;
    bottom: 0.75em;
    display: block;
    width: 1.5em;
    height: 1.5em;
    -webkit-mask-image: url(../img/common/arrow_left.svg);
            mask-image: url(../img/common/arrow_left.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background: var(--color-blue);
  }
}
.c-aboutCard__link:hover, .c-aboutCard__link:focus {
  color: #FFFFFF;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
}
@media (max-width: 767px) {
  .c-aboutCard__link:hover::after, .c-aboutCard__link:focus::after {
    background: #FFFFFF;
  }
}
.c-aboutCard__link:hover .c-aboutCard__title, .c-aboutCard__link:focus .c-aboutCard__title {
  color: #FFFFFF;
}
.c-aboutCard__link:hover .c-aboutCard__title::after, .c-aboutCard__link:focus .c-aboutCard__title::after {
  background: #FFFFFF;
}
.c-aboutCard__link:hover .c-aboutCard__list, .c-aboutCard__link:focus .c-aboutCard__list {
  color: #FFFFFF;
}
.c-aboutCard__link:hover .c-card__listItem::before, .c-aboutCard__link:focus .c-card__listItem::before {
  background: #FFFFFF;
}

.c-aboutCard__title {
  position: relative;
  padding-right: 2.5em;
  font-size: clamp(16px, calc(13.8873239437px + (0.5633802817 * var(--vw))), 22px);
  font-weight: 700;
  color: var(--color-blue);
}
@media (max-width: 767px) {
  .c-aboutCard__title {
    padding-right: 0;
  }
}
.c-aboutCard__title::after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 0.15em;
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-image: url(../img/common/arrow_left.svg);
          mask-image: url(../img/common/arrow_left.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: var(--color-blue);
}
@media (max-width: 767px) {
  .c-aboutCard__title::after {
    display: none;
  }
}

.c-aboutCard__list {
  margin-top: 1.25em;
  padding: 0;
}

/* 医療機関都道府県　*/
.c-featureCard {
  padding: 78px 74px;
  background-color: #fff;
  border: var(--borderLine);
  border-radius: 60px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  gap: 66px 8.0875356803%;
  grid-auto-flow: row;
  grid-template-areas: "c-featureCard__title c-featureCard__title" "c-featureCard__thumb c-featureCard__body";
}
@media (max-width: 767px) {
  .c-featureCard {
    padding: 43px 4%;
    border-radius: 16px;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-auto-columns: 1fr;
    gap: 40px 0;
    grid-template-areas: "c-featureCard__title" "c-featureCard__thumb" "c-featureCard__body";
  }
}

.c-featureCard__title {
  grid-area: c-featureCard__title;
}

.c-featureCard__thumb {
  grid-area: c-featureCard__thumb;
}

.c-featureCard__body {
  grid-area: c-featureCard__body;
}

.c-featureCard__title {
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(22px, calc(18.4788732394px + (0.9389671362 * var(--vw))), 32px);
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
@media (max-width: 767px) {
  .c-featureCard__title {
    line-height: 150%;
  }
}

.c-featureCard__thumb {
  align-self: start;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-featureCard__thumb {
    border-radius: 10px;
  }
}
.c-featureCard__thumb img {
  width: 100%;
  height: auto;
}

.c-featureCard__body > * + * {
  margin-top: 1em;
}

.c-featureCard__text {
  font-size: 16px;
}

.c-featureCard__foot {
  margin-top: 57px;
}
@media (max-width: 767px) {
  .c-featureCard__foot {
    margin-top: 27px;
  }
}
.c-featureCard__foot > * {
  max-width: 339px;
}
@media (max-width: 767px) {
  .c-featureCard__foot > * {
    margin: 0 auto;
  }
}

/* アンカーリンク */
.c-anchorNavHead {
  margin-top: var(--anchorNavHead-mt, 0);
  padding-bottom: var(--anchorNavHead-mt, 0);
}
.c-anchorNavHead .l-inner {
  display: flex;
  gap: 1em;
}
@media (max-width: 767px) {
  .c-anchorNavHead .l-inner {
    flex-direction: column;
  }
}

.p-pageHero + .c-anchorNavHead {
  --anchorNavHead-mt:60px;
}

.c-anchorNavHead__title {
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 170%;
  font-family: var(--font-en);
  color: var(--color-blue);
}
@media (max-width: 767px) {
  .c-anchorNavHead__title {
    text-align: center;
  }
}

.c-anchorNav__list {
  font-family: var(--font-maru);
  font-size: clamp(16px, calc(15.2957746479px + (0.1877934272 * var(--vw))), 18px);
  line-height: 170%;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media (max-width: 767px) {
  .c-anchorNav__list {
    margin-left: auto;
    margin-right: auto;
    width: 75.6218905473%;
    gap: 1.25em 1em;
  }
}

@media (max-width: 767px) {
  .c-anchorNav__item {
    width: 100%;
  }
}

.c-anchorNav__link {
  position: relative;
  padding-right: 2em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .c-anchorNav__link {
    padding-right: 1.5em;
    width: 100%;
  }
}
.c-anchorNav__link:hover, .c-anchorNav__link:focus {
  color: var(--color-blue);
}
.c-anchorNav__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.15em;
  width: 1.5em;
  height: 1.5em;
  background: var(--color-blue);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/common/anchor_arrow.svg);
          mask-image: url(../img/common/anchor_arrow.svg);
}

/* 関連コンテンツ */
.c-relationMenu {
  display: flex;
  margin: 50px auto 0;
  gap: 0 6.5%;
  max-width: 806px;
}
@media (max-width: 767px) {
  .c-relationMenu {
    gap: 40px 0;
    flex-direction: column;
  }
}

.c-relationMenu__body {
  width: 61.0421836228%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .c-relationMenu__body {
    width: 100%;
  }
}

.c-relationMenu__note {
  margin-top: 1em;
}

.c-relationMenu__link {
  margin-top: 1em;
  position: relative;
  display: block;
  padding: 1em 1em 1em 0;
  font-size: clamp(22px, calc(19.8873239437px + (0.5633802817 * var(--vw))), 28px);
  font-weight: 500;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-text);
  text-decoration: none !important;
}
.c-relationMenu__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-color: var(--color-blue);
  -webkit-mask-image: url(../img/common/arrow_left.svg);
          mask-image: url(../img/common/arrow_left.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 767px) {
  .c-relationMenu__link::after {
    right: 0.5em;
    width: 1.15em;
    height: 1.15em;
  }
}
.c-relationMenu:hover .c-relationMenu__link, .c-relationMenu:focus .c-relationMenu__link {
  opacity: 0.8;
  color: var(--color-text);
}
.c-relationMenu:hover .c-relationMenu__link::after, .c-relationMenu:focus .c-relationMenu__link::after {
  background-color: var(--color-text);
}

.c-relationMenu__thumb {
  max-width: 100%;
}
@media (max-width: 767px) {
  .c-relationMenu__thumb {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-relationMenu__thumb img {
  display: block;
  max-width: 100%;
  height: auto;
}

.c-relationMenu__thumb--full {
  margin: 0 auto;
  max-width: 100%;
  aspect-ratio: 16/9;
  width: 30.3970223325%;
}
@media (max-width: 767px) {
  .c-relationMenu__thumb--full {
    width: 30.3970223325%;
  }
}

.c-relationMenu__thumb--full img {
  width: 100%;
  height: auto;
}

/* sq / wide */
.c-relationMenu__thumb--sq,
.c-relationMenu__thumb--wide {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-base); /* 余白が出る前提 */
}

.c-relationMenu__thumb--sq {
  aspect-ratio: 1/1;
}

.c-relationMenu__thumb--wide {
  aspect-ratio: 16/9;
}

.c-relationMenu__thumb--sq img,
.c-relationMenu__thumb--wide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 動画コンテンツ */
.c-moviesList__link {
  display: block;
}

.c-moviesCard__thumb {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.c-moviesCard__thumb iframe {
  width: 100%;
  height: 100%;
}

.c-moviesCard__title {
  margin-top: 1em;
  font-size: 16px;
  line-height: 200%;
}

.c-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 16px;
  line-height: 180%;
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid var(--color-blue);
}
@media (max-width: 767px) {
  .c-table {
    border-radius: 10px;
    line-height: 160%;
  }
}
.c-table dt {
  padding: 1em;
  background-color: #EDF9F9;
  border-right: var(--borderLine);
  text-align: center;
  font-weight: 400;
}
@media (max-width: 767px) {
  .c-table dt {
    padding: 0.25em 0.25em;
  }
}
.c-table dd {
  position: relative;
  padding: 1em 2.5em 1em 2em;
  background-color: #fff;
}
@media (max-width: 767px) {
  .c-table dd {
    padding: 0.25em 2em 0.25em 1em;
    text-align: left;
  }
}
.c-table dd::after {
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--color-blue);
  -webkit-mask-image: url(../img/common/button_arrow02.svg);
          mask-image: url(../img/common/button_arrow02.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 767px) {
  .c-table dd::after {
    right: 1em;
  }
}
@media (max-width: 767px) {
  .c-table dd::after {
    width: 0.5em;
    height: 0.5em;
  }
}

.c-table__row {
  display: flex;
}
.c-table__row:not(:last-child) dt, .c-table__row:not(:last-child) dd {
  border-bottom: var(--borderLine);
}

/* お知らせ一覧のカード */
.c-newsCard__meta {
  display: flex;
  gap: 0 1em;
}
@media (max-width: 767px) {
  .c-newsCard__meta {
    position: relative;
  }
  .c-newsCard__meta::after {
    position: absolute;
    left: auto;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    -webkit-mask-image: url(../img/common/arrow_left.svg);
            mask-image: url(../img/common/arrow_left.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: var(--color-blue);
  }
}

.c-newsCard__link {
  position: relative;
  display: block;
  padding: 1.75em 4.5em 1.75em 0;
  gap: 20px;
  border-bottom: 2px solid rgba(29, 82, 187, 0.5);
}
@media (max-width: 767px) {
  .c-newsCard__link {
    padding: 1.75em 0 1.75em 0;
  }
}
.c-newsCard__link::after {
  position: absolute;
  left: auto;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  -webkit-mask-image: url(../img/common/arrow_left.svg);
          mask-image: url(../img/common/arrow_left.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-blue);
}
@media (max-width: 767px) {
  .c-newsCard__link::after {
    display: none;
  }
}

.c-newsCard__date {
  font-size: clamp(15px, calc(15px + (0 * var(--vw))), 15px);
  font-family: var(--font-en);
  line-height: 220%;
  color: var(--color-blue);
  width: 5em;
}

.c-newsCard__cat {
  font-size: clamp(13px, calc(13px + (0 * var(--vw))), 13px);
  font-weight: 500;
}
.c-newsCard__cat span {
  padding: 0.25em 1em;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  background-color: var(--color-blue);
}

.c-newsCard__cat .c-newsCard__cat-ncat01 {
  background-color: #F1675F;
}

.c-newsCard__cat .c-newsCard__cat-ncat02 {
  background-color: #7ACB70;
}

.c-newsCard__cat .c-newsCard__cat-ncat03 {
  background-color: #8288FF;
}

.c-newsCard__title {
  margin-top: 0.5em;
  position: relative;
  display: block;
  font-weight: 500;
  font-size: clamp(16px, calc(16px + (0 * var(--vw))), 16px);
}

.c-newsCard__link:hover .c-newsCard__title, .c-newsCard__link:focus .c-newsCard__title {
  text-decoration: underline;
}

/*************************
* pagination
**************************/
.c-pagination {
  --buttonColor:#fff;
  --buttonBg:var(--color-blue);
  --buttonSize:38px;
}

* + .c-pagination:not(:empty) {
  margin-top: 60px;
}

@media (max-width: 767px) {
  * + .c-pagination:not(:empty) {
    margin-top: 50px;
  }
}
.c-pagination {
  font-family: var(--font-ja);
  font-optical-sizing: auto;
  font-style: normal;
}

.c-pagination .navigation.pagination .screen-reader-text {
  display: none;
}

.c-pagination .navigation.pagination .nav-links {
  text-align: center;
}

.c-pagination .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  width: var(--buttonSize);
  height: var(--buttonSize);
  line-height: var(--buttonSize);
  color: var(--buttonBg);
  background-color: var(--buttonColor);
  border: var(--borderLine);
  transition: background-color 0.3s ease-in-out;
  transition-property: background-color, color, border;
  text-align: center;
  vertical-align: top;
  font-weight: 400;
}

.c-pagination .navigation.pagination .nav-links .page-numbers:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers:active,
.c-pagination .navigation.pagination .nav-links .page-numbers:hover {
  color: var(--buttonColor);
  background-color: var(--buttonBg);
}

.c-pagination .navigation.pagination .nav-links .page-numbers.current {
  color: var(--buttonColor);
  background-color: var(--buttonBg);
}

.c-pagination .navigation.pagination .nav-links .page-numbers.current:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.current:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.current:hover {
  opacity: 0.8;
}

.c-pagination .navigation.pagination .nav-links .page-numbers.next,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev {
  padding: 0;
  width: var(--buttonSize);
  height: var(--buttonSize);
  line-height: var(--buttonSize);
  background-color: transparent;
  border: none;
}

.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.next:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.next:hover,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover {
  opacity: 0.8;
}

.c-pagination .navigation.pagination .nav-links .page-numbers.next svg,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev svg {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  width: 11px;
  height: 11px;
}

@media (max-width: 767px) {
  .c-pagination .navigation.pagination .nav-links .page-numbers {
    display: inline-block;
    margin: 0 2px;
  }
}
/*************************************
* header
***************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  z-index: 100;
  display: flex;
  background-color: var(--bg-base);
}

.l-header__inner {
  margin: 0 auto 0;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1300px) {
  .l-header__inner {
    padding-left: 12px;
    padding-right: 74px;
    align-items: center;
  }
}

.l-header__row {
  display: flex;
}

.l-header__search {
  margin-left: auto;
  min-height: 48px;
}
@media (max-width: 767px) {
  .l-header__search {
    min-height: auto;
  }
}

.l-header__logo {
  width: 270px;
  margin-bottom: 16px;
}
@media (max-width: 1300px) {
  .l-header__logo {
    width: 76px;
    margin-bottom: 0;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 100%;
}

.l-header__right {
  padding: 16px 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  height: 100%;
}

.c-gNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 1300px) {
  .c-gNav {
    display: none;
  }
}

.c-gNav__item {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
}

.c-gNav__link {
  position: relative;
  display: inline-block;
  padding: 0.3em 1em;
  font-weight: 600;
  line-height: 150%;
}
@media (min-width: 769px) and (max-width: 1279px) {
  .c-gNav__link {
    padding: 0.5em 1em;
  }
}
.c-gNav__link:hover, .c-gNav__link:focus {
  opacity: 0.8;
  text-decoration: underline;
}

/* ドロワーメニュー */
.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 100px;
  color: var(--color-text);
  text-align: center;
  width: 100%;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  max-width: 400px;
}

/* メニュー表示設定*/
.is-drawerActive .c-drawer__panel {
  opacity: 1;
  visibility: visible;
}

.c-hamburger {
  display: none;
}

@media (max-width: 1300px) {
  .c-hamburger {
    position: fixed;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    outline: 0;
    border: 0;
    width: 70px;
    height: 70px;
    background: none;
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .c-hamburger .icon {
    position: relative;
    margin-left: 2px;
    display: block;
    width: 30px;
    height: 17px;
  }
  .c-hamburger__text {
    margin: 14px 15px 0;
    display: block;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    transition-property: opacity, width, margin;
  }
  .c-hamburger__text img {
    width: 100%;
  }
  .c-hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: var(--color-text);
    width: 42px;
    height: 2px;
    background-color: transparent;
  }
  .c-hamburger__line:after,
.c-hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .c-hamburger__line:before {
    top: -17px;
    background-color: var(--color-text);
  }
  .c-hamburger__line:after {
    top: -6px;
    background-color: var(--color-text);
  }
  .is-drawerActive .c-hamburger::after {
    color: var(--color-text);
  }
  .is-drawerActive .c-hamburger__line {
    background-color: transparent;
    color: var(--color-text);
  }
  .is-drawerActive .c-hamburger__line:after,
.is-drawerActive .c-hamburger__line:before {
    top: -10px;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .c-hamburger__line:before {
    transform: rotate(-25deg);
  }
  .is-drawerActive .c-hamburger__line:after {
    transform: rotate(25deg);
  }
  .is-drawerActive .p-hamburger .text {
    margin: 0;
    width: 0;
    opacity: 0;
  }
}
/***********************
* breadcrumb list
************************/
.c-breadcrumb {
  margin-top: 2em;
  padding: 1.5em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: clamp(10px, calc(8.5915492958px + (0.3755868545 * var(--vw))), 14px);
}
.c-breadcrumb li {
  display: flex;
  margin-right: 0;
}
.c-breadcrumb li a {
  margin-right: 0.5em;
  position: relative;
  display: block;
}
.c-breadcrumb li a:hover, .c-breadcrumb li a:focus {
  text-decoration: underline;
}
.c-breadcrumb li:not(:first-child) {
  position: relative;
  padding-left: 1em;
}
.c-breadcrumb li:not(:first-child)::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  content: "";
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  background: var(--color-text);
  -webkit-mask-image: url(../img/common/bread_arrow.svg);
          mask-image: url(../img/common/bread_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.c-breadcrumb li:last-child {
  color: var(--primary-color);
}

/***********************
* footer
************************/
.is-beforeFooter {
  position: relative;
  padding-bottom: calc(10% + 80px);
}
@media (max-width: 767px) {
  .is-beforeFooter {
    padding-bottom: calc(23.3830845771% + 50px) !important;
  }
}
.is-beforeFooter::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  pointer-events: none;
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
  background: url(../img/common/bg_footer.png);
  -webkit-mask-image: url(../img/common/footer_wave_fill.svg);
          mask-image: url(../img/common/footer_wave_fill.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}
@media (max-width: 767px) {
  .is-beforeFooter::after {
    aspect-ratio: 94/402;
    -webkit-mask-image: url(../img/common/footer_wave_fill_sp.svg);
            mask-image: url(../img/common/footer_wave_fill_sp.svg);
  }
}

.l-footer {
  position: relative;
  width: 100%;
  padding: 40px 16px;
  color: #fff;
  background: url(../img/common/bg_footer.png);
}

.l-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.l-footer__logo {
  margin: 0;
  max-width: 506px;
  width: 100%;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo a:hover, .l-footer__logo a:focus {
  opacity: 0.8;
  text-decoration: underline;
}

.l-footer__nav {
  max-width: 496px;
}
@media (max-width: 767px) {
  .l-footer__nav {
    margin-top: 40px;
  }
}

.l-footer__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
}

.l-footer__copy {
  margin: 0;
  padding-top: 0.5em;
  text-align: center;
}

.c-footerNav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 1.75em;
  margin: 0;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}
@media (max-width: 767px) {
  .c-footerNav {
    gap: 1em 2.5em;
  }
}

.c-footerNav__link {
  display: inline-block;
  text-decoration: none;
}
.c-footerNav__link:hover, .c-footerNav__link:focus {
  opacity: 0.8;
  text-decoration: underline;
}

.c-address {
  font-style: normal;
  display: grid;
  gap: 0.25emx;
}

.c-address__name {
  font-size: clamp(20px, calc(20px + (0 * var(--vw))), 20px);
  font-weight: 700;
}

.c-address__name + .c-address__line {
  margin-top: 0.5em;
}

.c-address__line {
  font-size: clamp(14px, calc(14px + (0 * var(--vw))), 14px);
}

.c-address__name,
.c-address__line {
  display: block;
}

.c-tel {
  display: inline-flex;
  text-decoration: none;
  padding: 0;
}

.c-footerBanner {
  margin-top: 1em;
  display: flex;
  gap: 1em 0.75em;
}

.c-footerBanner__link:hover, .c-footerBanner__link:focus {
  opacity: 0.8;
}

.c-footerLinks {
  display: grid;
  align-self: center;
  gap: 1.25em 1.75em;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(13px, calc(12.2957746479px + (0.1877934272 * var(--vw))), 15px);
  font-weight: 500;
  grid-template-columns: repeat(3, auto);
}
@media (max-width: 767px) {
  .c-footerLinks {
    margin-top: 20px;
    justify-content: space-between;
    width: 100%;
  }
}

.c-footerLinks__item:nth-child(4) {
  grid-column: span 3;
}

.c-footerLinks__link {
  display: inline-flex;
  padding: 0;
  text-decoration: none;
}
.c-footerLinks__link:hover, .c-footerLinks__link:focus {
  opacity: 0.8;
  text-decoration: underline;
}

.c-snsList {
  display: flex;
  gap: 0.25em 0.75em;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .l-footer .c-snsList {
    margin-top: 30px;
  }
}

.c-snsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20.5px;
  background-color: #fff;
  border-radius: 50%;
}
.c-snsLink:hover, .c-snsLink:focus {
  opacity: 0.8;
  text-decoration: underline;
}

.c-snsLink img {
  display: block;
}

.c-copyright {
  display: inline-block;
  font-size: clamp(10px, calc(8.9436619718px + (0.2816901408 * var(--vw))), 13px);
}

.c-footer__search {
  margin-top: 1.75em;
}

@media (max-width: 767px) {
  .l-footer {
    padding: 28px 16px;
  }
  .l-footer__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footer__meta--left {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .l-footer__inner {
    gap: 24px;
  }
}
/*****
* SP drawer
**********************/
.c-drawer {
  display: none;
  padding-bottom: 0;
}

@media (max-width: 1300px) {
  .c-drawer {
    display: block;
  }
}
.c-drawer__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}

.c-drawer__inner {
  margin: 0 auto;
  padding-bottom: 15%;
  overflow: auto;
}

.c-drawer__nav {
  margin-top: 70px;
  display: block;
  width: 100%;
}

.c-drawerNav__item {
  padding: 1em 0;
  width: 100%;
  display: flex;
  font-size: 17px;
  font-style: normal;
  flex-direction: column;
  border-bottom: 1px solid var(--color-text);
}

.c-drawerNav__link {
  position: relative;
  display: block;
  padding: 0 1em 0 0;
}
.c-drawerNav__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.15em;
  width: 1.25em;
  height: 1.25em;
  background: url(../img/common/button_arrow.svg) no-repeat center/contain;
}
.c-drawerNav__link:hover, .c-drawerNav__link:focus, .c-drawerNav__link:active {
  opacity: 0.6;
}

.c-drawerLinks {
  margin-top: 60px;
  display: flex;
  align-self: center;
  flex-wrap: wrap;
  gap: 1.25em 1.75em;
  list-style: none;
  font-size: 13px;
}

.c-drawerLinks__link {
  display: inline-flex;
  text-decoration: none;
}

.c-drawer__foot {
  position: relative;
  padding: 50px 0;
  margin-top: auto;
  width: 100%;
}
.c-drawer__foot::before {
  content: "";
  display: block;
  padding-top: 55px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 150, 255, 0.15) 3.14%, rgba(240, 247, 255, 0.15) 80%, rgba(240, 247, 255, 0) 100%), url(../img/common/bg_noise03.png);
  -webkit-mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01_sp.svg);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: 0 0, top center;
  -webkit-mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: source-out;
  mask-image: linear-gradient(#fff, #fff), url(../img/common/wave01_sp.svg);
  mask-repeat: no-repeat, no-repeat;
  mask-position: 0 0, top center;
  mask-size: 100% 100%, 100% auto;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.c-drawer__logo {
  margin: 0 auto;
  max-width: 315px;
}
.c-drawer__logo img {
  width: 100%;
}

/* メニュー表示設定*/
.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  color: var(--color-text);
  background-color: #F0F7FF;
  width: 100%;
  max-width: 410px;
  height: 100vh;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .c-drawer {
    max-width: 100%;
  }
}

.is-drawerActive .c-drawer {
  opacity: 1;
  visibility: visible;
}

/***********************
* 検索ボタン
************************/
/***********************
* 下層ページ見出し
************************/
.p-pageHero {
  --contents-width:1203;
  --hero-deco-size: calc(330 / 604 *100%);
}
@media (max-width: 767px) {
  .p-pageHero {
    --hero-deco-size: calc(131 / 296 *100%);
  }
}

.p-pageHero__media {
  position: relative;
  width: calc(604 / var(--contents-width) * 100%);
}
@media (max-width: 767px) {
  .p-pageHero__media {
    margin: 40px auto 0;
    width: 78.0423280423%;
  }
}

.p-pageHero__thumb {
  aspect-ratio: 604/371;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-pageHero__thumb {
    border-radius: 16px;
  }
}
.p-pageHero__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-pageHero__deco {
  position: absolute;
  left: -4%;
  bottom: -2%;
  z-index: 2;
  width: var(--hero-deco-size);
  height: auto;
}
@media (max-width: 767px) {
  .p-pageHero__deco {
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-pageHero__deco img {
  width: 100%;
  height: auto;
}

.page-about .p-pageHero {
  --hero-deco-size: calc(330 / 604 *100%);
}
@media (max-width: 767px) {
  .page-about .p-pageHero {
    --hero-deco-size: calc(192 / 296 *100%);
  }
}

.page-facility .p-pageHero {
  --hero-deco-size: calc(216 / 604 *100%);
}
@media (max-width: 767px) {
  .page-facility .p-pageHero {
    --hero-deco-size: calc(137 / 296 *100%);
  }
}

.page-training .p-pageHero {
  --hero-deco-size: calc(285 / 604 *100%);
}
@media (max-width: 767px) {
  .page-training .p-pageHero {
    --hero-deco-size: calc(182 / 296 *100%);
  }
}

.page-bookend .p-pageHero {
  --hero-deco-size: calc(198 / 604 *100%);
}
@media (max-width: 767px) {
  .page-bookend .p-pageHero {
    --hero-deco-size: calc(131 / 296 *100%);
  }
}

.post-type-archive-bookend .p-pageHero {
  --hero-deco-size: calc(198 / 604 *100%);
}
@media (max-width: 767px) {
  .post-type-archive-bookend .p-pageHero {
    --hero-deco-size: calc(131 / 296 *100%);
  }
}

@media (max-width: 767px) {
  .single-knowledge .p-pageHero__media {
    width: 100%;
  }
}

.p-pageHero__titleJa {
  font-size: clamp(30px, calc(27.1830985915px + (0.7511737089 * var(--vw))), 38px);
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.002em;
  color: var(--color-blue);
}

.p-pageHero__titleEn {
  font-size: 17px;
  font-weight: 500;
  line-height: 170%;
  font-family: var(--font-en);
  color: var(--color-blue);
}

.p-pageHero__lead {
  margin-top: 58px;
  line-height: 180%;
}
@media (max-width: 767px) {
  .p-pageHero__lead {
    margin-top: 20px;
  }
}

.p-pageHero__lastUpdate {
  font-size: clamp(13px, calc(12.6478873239px + (0.0938967136 * var(--vw))), 14px);
  line-height: 180%;
  margin-top: 1.75em;
}

.p-pageHero.p-pageHero--hasMedia .l-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-pageHero.p-pageHero--hasMedia .l-inner {
    flex-direction: column;
  }
}
.p-pageHero.p-pageHero--hasMedia .p-pageHero__title {
  padding-top: 2em;
}
@media (max-width: 767px) {
  .p-pageHero.p-pageHero--hasMedia .p-pageHero__title {
    padding-top: 0;
  }
}
.p-pageHero.p-pageHero--hasMedia .p-pageHero__content {
  width: calc(480 / var(--contents-width) * 100%);
}
@media (max-width: 767px) {
  .p-pageHero.p-pageHero--hasMedia .p-pageHero__content {
    width: 100%;
  }
}
.p-pageHero.p-pageHero--hasMedia .p-pageHero__lead {
  margin-top: 58px;
}
@media (max-width: 767px) {
  .p-pageHero.p-pageHero--hasMedia .p-pageHero__lead {
    margin-top: 26px;
  }
}

.p-pageHero.p-pageHero--noMedia {
  padding: 1em 0 1em;
}
.p-pageHero.p-pageHero--noMedia .p-pageHero__title {
  text-align: center;
}
.p-pageHero.p-pageHero--noMedia .p-pageHero__lead {
  text-align: center;
}
@media (max-width: 767px) {
  .p-pageHero.p-pageHero--noMedia .p-pageHero__title {
    text-align: left;
  }
  .p-pageHero.p-pageHero--noMedia .p-pageHero__lead {
    text-align: left;
  }
}

/***********************
* 関連ページ
************************/
.p-relationPage {
  padding-bottom: 10%;
}
.p-relationPage .c-section__titleJa::after {
  display: none !important;
}

/***********************
* facility
************************/
.p-facilityCards > * + * {
  margin-top: 51px;
}

.p-facilityContact {
  margin: 108px auto 0;
  max-width: 870px;
}

.p-facilityContact__button {
  margin-top: 42px;
}
.p-facilityContact__button + .p-facilityContact__button {
  margin-top: 20px;
}

.p-facilityCards__lead {
  margin-top: 48px;
}

/***********************
* knowledge 
************************/
.p-knowledgeCards {
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1em;
  max-width: 1200px;
  width: 92%;
}
.p-knowledgeCards .c-card__list {
  padding: 0.5em 1.25em 1em;
}
@media (max-width: 767px) {
  .p-knowledgeCards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em 1em;
    width: 94%;
  }
  .p-knowledgeCards .c-card__link {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 0px 0%;
    grid-template-areas: "c-card__title c-card__title" "c-card__thumb c-card__list";
  }
  .p-knowledgeCards .c-card__title {
    grid-area: c-card__title;
  }
  .p-knowledgeCards .c-card__thumb {
    grid-area: c-card__thumb;
  }
  .p-knowledgeCards .c-card__list {
    grid-area: c-card__list;
  }
}

.p-aboutCards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px 4.0833333333%;
}
@media (max-width: 767px) {
  .p-aboutCards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1em;
  }
}

.p-section__movies {
  padding: 100px 0 80px;
}
@media (max-width: 767px) {
  .p-section__movies {
    padding: 50px 0 40px;
  }
}

.p-movies__lead {
  margin-top: 54px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-movies__lead {
    margin-top: 30px;
    text-align: left;
  }
}

.p-movies__list {
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5.4247697032%;
  max-width: 977px;
}
@media (max-width: 767px) {
  .p-movies__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}

.p-movies__button {
  margin-top: 54px;
}
.p-movies__button > * {
  margin: 0 auto;
  width: 260px;
}

/***********************
* 都道府県アレルギー疾患医療拠点病院
************************/
.p-regionalBase-anchorNavHead {
  --anchorNavHead-mt:60px;
}
@media (max-width: 767px) {
  .p-regionalBase-anchorNavHead {
    --anchorNavHead-mt:30px;
  }
}
@media (max-width: 767px) {
  .p-regionalBase-anchorNavHead .c-anchorNav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 5.5%;
    width: 82%;
  }
}

.p-baseAreas {
  --tableHeaderWidth:156px;
  margin: 84px auto 0;
  max-width: 737px;
}
@media (max-width: 767px) {
  .p-baseAreas {
    margin-top: 40px;
    --tableHeaderWidth:78px;
  }
}

.p-baseAreas__title {
  font-size: clamp(16px, calc(13.8873239437px + (0.5633802817 * var(--vw))), 22px);
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}

* + .p-baseAreas__title {
  margin-top: 40px;
}

.p-baseAreas__table {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .p-baseAreas__table {
    margin-top: 10px;
  }
}
.p-baseAreas__table dt {
  width: var(--tableHeaderWidth);
}
.p-baseAreas__table dd {
  width: calc(100% - var(--tableHeaderWidth));
}
.p-baseAreas__table a:hover, .p-baseAreas__table a:focus {
  color: var(--color-blue);
  text-decoration: underline;
}

/***********************
* お知らせ・最新情報　一覧
************************/
/***********************
* お役立ち情報　bookend
************************/
.p-newsPost__head {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 1em 1em;
  grid-template-areas: "p-newsPost__cate p-newsPost__date" "p-newsPost__title p-newsPost__title";
}

.p-newsCard__date {
  grid-area: p-newsCard__date;
}

.p-newsPost__cate {
  grid-area: p-newsPost__cate;
}

.p-newsPost__title {
  grid-area: p-newsPost__title;
}

.p-newsPost__date {
  font-size: clamp(15px, calc(15px + (0 * var(--vw))), 15px);
  font-family: var(--font-en);
  line-height: 220%;
  color: var(--color-blue);
  width: 5em;
}

.p-newsPost__cate {
  font-size: clamp(13px, calc(13px + (0 * var(--vw))), 13px);
  font-weight: 500;
}
.p-newsPost__cate span {
  padding: 0.25em 1em;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  background-color: #F1675F;
}
.p-newsPost__cate span.cat01 {
  background-color: #F1675F;
}
.p-newsPost__cate span.cat02 {
  background-color: #7ACB70;
}
.p-newsPost__cate span.cat02 {
  background-color: #8288FF;
}

.p-newsPost__title {
  display: block;
  font-weight: 500;
  font-size: clamp(18px, calc(16.5915492958px + (0.3755868545 * var(--vw))), 22px);
  line-height: 182%;
}
@media (max-width: 767px) {
  .p-newsPost__title {
    line-height: 180%;
  }
}

.p-newsPost__contents {
  margin-top: 40px;
  font-weight: 400;
  font-size: clamp(16px, calc(16px + (0 * var(--vw))), 16px);
  line-height: 188%;
  word-break: break-all;
}
.p-newsPost__contents h1, .p-newsPost__contents h2 {
  padding: 0.5em 0 0.5em;
  font-size: clamp(16px, calc(14.5915492958px + (0.3755868545 * var(--vw))), 20px);
  font-weight: 500;
  text-wrap: wrap;
  border-bottom: 1px solid var(--color-blue);
}
.p-newsPost__contents h3 {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(16px, calc(14.5915492958px + (0.3755868545 * var(--vw))), 20px);
  text-wrap: wrap;
}
.p-newsPost__contents h3:before {
  content: "■";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-blue);
}
.p-newsPost__contents h4 {
  position: relative;
  font-size: clamp(16px, calc(14.5915492958px + (0.3755868545 * var(--vw))), 20px);
}
.p-newsPost__contents h5 {
  font-weight: 700;
}
.p-newsPost__contents b, .p-newsPost__contents strong {
  font-weight: 700;
}
.p-newsPost__contents > * + * {
  margin-top: 1.75em;
}
.p-newsPost__contents p {
  font-weight: 400;
  font-size: clamp(16px, calc(16px + (0 * var(--vw))), 16px);
  line-height: 188%;
}
.p-newsPost__contents ul > li {
  position: relative;
  padding-left: 1em;
}
.p-newsPost__contents ol > li {
  position: relative;
}
.p-newsPost__contents ul > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
  color: inherit;
}
.p-newsPost__contents ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.p-newsPost__contents strong {
  color: var(--color-red1);
  font-weight: 400;
}
.p-newsPost__contents ol {
  counter-reset: number 0;
}
.p-newsPost__contents ol > li {
  position: relative;
  padding-left: 1.25em;
}
.p-newsPost__contents ol > li::before {
  content: counter(number);
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  font-size: 0.75em;
  line-height: 1;
  text-align: center;
  color: var(--color-blue);
  border-radius: 100%;
  border: 1px solid var(--color-blue);
}
.p-newsPost__contents a:not(.wp-block-button__link) {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.p-newsPost__contents a:not(.wp-block-button__link):hover, .p-newsPost__contents a:not(.wp-block-button__link):active, .p-newsPost__contents a:not(.wp-block-button__link):focus {
  text-decoration: none;
}
.p-newsPost__contents a:not(.wp-block-button__link)[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 1em;
  aspect-ratio: 19/21;
  background: url(../img/common/icon_pdf.svg) no-repeat center center/contain;
}
.p-newsPost__contents blockquote {
  width: 100%;
  padding: 1em;
  border: 1px solid var(--color-text);
}
.p-newsPost__contents cite {
  display: block;
  color: #7B7B7B;
  font-size: 0.8em;
  text-align: right;
}
.p-newsPost__contents img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-newsPost__contents table {
  border-top: 1px solid var(--color-text);
  border-left: 1px solid var(--color-text);
}
.p-newsPost__contents table tr th {
  color: #fff;
  background-color: var(--color-blue);
}
.p-newsPost__contents table tr th, .p-newsPost__contents table tr td {
  padding: 0.5em 1em;
  border-right: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
.p-newsPost__contents table tr:nth-child(n+2) th {
  color: var(--color-text);
  background-color: #EDF9F9;
}

.p-newsPost__foot {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .p-newsPost__foot {
    margin-top: 32px;
  }
}

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

/***********************
* お役立ち情報　bookend
************************/
.p-bookend__box {
  padding: 75px clamp(15px, calc(-6.8309859155px + (5.8215962441 * var(--vw))), 77px);
}
@media (max-width: 767px) {
  .p-bookend__box {
    padding-top: 28px;
    padding-bottom: 42px;
  }
}

.p-searchBox + .p-serchBox {
  margin-top: 50px;
}

.p-searchBox__title {
  text-align: center;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(22px, calc(18.4788732394px + (0.9389671362 * var(--vw))), 32px);
  line-height: 170%;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}

.p-searchBox__subtitle {
  padding: 0.75em 0;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, calc(16.2394366197px + (0.4694835681 * var(--vw))), 23px);
  line-height: 170%;
  letter-spacing: 0.05em;
  color: var(--color-text);
  border-bottom: 1px solid #000;
}
.p-searchBox__subtitle + * {
  margin-top: 2em;
}

.p-searchBox__group + .p-searchBox__group {
  margin-top: 2em;
}

.p-searchBox__row {
  display: flex;
  gap: 0 1em;
}
@media (max-width: 767px) {
  .p-searchBox__row {
    flex-direction: column;
    gap: 1.5em;
  }
}

* + .p-searchBox__legend {
  margin: 1em;
}

.p-searchBox__legend {
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(16px, calc(14.5915492958px + (0.3755868545 * var(--vw))), 20px);
  line-height: 170%;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
.p-searchBox__legend + * {
  margin-top: 0.5em;
}

.p-searchBox__text {
  padding: 0.5em 1em;
  background-color: #F8F8F8;
  border-radius: 4px;
  border: 1px solid var(--color-blue2);
  max-width: 405px;
  width: 100%;
}

.p-searchBox__submit {
  width: 158px;
}
@media (max-width: 767px) {
  .p-searchBox__submit {
    margin: 0 auto;
    width: 194px;
  }
}

.p-searchBox__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
@media (max-width: 767px) {
  .p-searchBox__actions {
    flex-direction: column;
    align-items: center;
  }
}

.p-searchBox__caution {
  margin-top: 2em;
}

.p-result__titleJa {
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(22px, calc(19.1830985915px + (0.7511737089 * var(--vw))), 30px);
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}

.p-bookendCards {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .p-bookendCards {
    margin-top: 28px;
  }
}
.p-bookendCards .c-mediaCard {
  grid-row: span 5;
}
.p-bookendCards .c-mediaCard__title {
  padding: 0 var(--mediaPd);
}

.p-bookendNodata {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .p-bookendNodata {
    margin-top: 28px;
  }
}
.p-bookendNodata + .c-section__title {
  margin-top: 84px;
}
@media (max-width: 767px) {
  .p-bookendNodata + .c-section__title {
    margin-top: 42px;
  }
}

/***********************
* 災害時の対応
************************/
.p-justincaseCards {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .p-justincaseCards {
    margin-top: 32px;
  }
}
.p-justincaseCards .c-mediaCard {
  grid-row: span 4;
}
.p-justincaseCards .c-mediaCard__title {
  padding: 0 var(--mediaPd);
}

/***********************
* 研修
************************/
.p-trainingCards {
  margin-top: 64px;
}
.p-trainingCards + .c-section__title {
  margin-top: 84px;
}
@media (max-width: 767px) {
  .p-trainingCards {
    margin-top: 32px;
  }
  .p-trainingCards + .c-section__title {
    margin-top: 42px;
  }
}

.p-trainingNodata {
  margin-top: 64px;
}
.p-trainingNodata + .c-section__title {
  margin-top: 84px;
}

/***********************
* Knowledge 投稿
************************/
.p-knowledgePost__contents {
  word-break: break-all;
}

.p-knowledgePost__contents > *:last-child {
  position: relative;
  padding-bottom: calc(10% + 80px);
}
@media (max-width: 767px) {
  .p-knowledgePost__contents > *:last-child {
    padding-bottom: calc(23.3830845771% + 50px) !important;
  }
}
.p-knowledgePost__contents > *:last-child::after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
  background: url(../img/common/bg_footer.png);
  -webkit-mask-image: url(../img/common/footer_wave_fill.svg);
          mask-image: url(../img/common/footer_wave_fill.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents > *:last-child::after {
    aspect-ratio: 94/402;
    -webkit-mask-image: url(../img/common/footer_wave_fill_sp.svg);
            mask-image: url(../img/common/footer_wave_fill_sp.svg);
  }
}

.p-knowledgePost__contents .l-inner > * + * {
  margin-top: 1.75em;
}
.p-knowledgePost__contents .l-inner h2 {
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 0.75em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, calc(21.8873239437px + (0.5633802817 * var(--vw))), 30px);
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}
.p-knowledgePost__contents .l-inner h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.35em;
  height: 4px;
  border-radius: 4px;
  background-color: var(--color-green);
}
.p-knowledgePost__contents .l-inner h2 + * {
  margin-top: 3.5em;
}
.p-knowledgePost__contents .l-inner h3 {
  padding: 0.25em 1em;
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, calc(15.8873239437px + (0.5633802817 * var(--vw))), 24px);
  line-height: 170%;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  background-color: #fff;
  border-radius: 40px;
}
.p-knowledgePost__contents .l-inner h3 + * {
  margin-top: 2.5em;
}
.p-knowledgePost__contents .l-inner h4 {
  position: relative;
  padding-left: 1em;
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: clamp(18px, calc(17.2957746479px + (0.1877934272 * var(--vw))), 20px);
  color: var(--color-blue);
}
.p-knowledgePost__contents .l-inner h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: var(--color-green);
  border-radius: 50%;
}
.p-knowledgePost__contents .l-inner h4.is-style-head-style01 {
  position: relative;
  padding-left: 1em;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: clamp(16px, calc(15.2957746479px + (0.1877934272 * var(--vw))), 18px);
  color: var(--color-text);
}
.p-knowledgePost__contents .l-inner h4.is-style-head-style01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.p-knowledgePost__contents .l-inner p a {
  color: var(--color-blue);
  text-decoration: underline;
}
.p-knowledgePost__contents .l-inner ul > li {
  position: relative;
  padding-left: 1em;
}
.p-knowledgePost__contents .l-inner ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
}

.p-knowledgePost__contents .l-inner {
  max-width: 871px;
  margin-left: auto;
  margin-right: auto;
}

/***********************
  目次
***********************/
.c-toc {
  padding: 50px 1.25em 68px;
  border-radius: var(--radius-lg);
  border: var(--borderLine);
}
@media (max-width: 767px) {
  .c-toc {
    padding: 36px 1.25em;
  }
}

.c-toc__inner {
  margin: 0 auto;
  max-width: 512px;
}

.c-toc__title {
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: clamp(24px, calc(21.8873239437px + (0.5633802817 * var(--vw))), 30px);
  letter-spacing: 0.05em;
  color: var(--color-blue);
  text-align: center;
}

.c-toc__title + .c-toc__group {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-toc__title + .c-toc__group {
    margin-top: 30px;
  }
}

.c-toc__head {
  position: relative;
  border-bottom: 1px solid var(--color-text);
  font-family: var(--font-maru);
  font-weight: 700;
  font-size: clamp(18px, calc(15.8873239437px + (0.5633802817 * var(--vw))), 24px);
  letter-spacing: 0.05em;
  color: var(--color-blue);
}

.c-toc__h2Link {
  position: relative;
  display: block;
  padding: 0.25em 44px 0.25em 0;
}
.c-toc__h2Link::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 44px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: url(../img/common/anchor_arrow.svg) no-repeat center/59.0909090909%;
}

.c-toc__list {
  padding: 1em 0;
  font-weight: 500;
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  line-height: 180%;
  letter-spacing: 0.04em;
}
.c-toc__list:empty {
  padding: 0;
}
.c-toc__list > * {
  position: relative;
  padding-left: 1em;
}
.c-toc__list > *::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.75em !important;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: var(--color-blue);
  border-radius: 50%;
}

/***********************
* よくある質問ブロック
***********************/
.c-faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-faq__item {
  padding: 45px 4.5% 45px;
  background-color: #fff;
  border-radius: 22px 22px;
}
.c-faq__item::before {
  content: "";
  display: none;
}
.c-faq__item + .c-faq__item {
  margin-top: 25px;
}

.c-faq__q,
.c-faq__a {
  display: grid;
  grid-template-columns: 2.2em 1fr;
  gap: 1em;
  align-items: start;
}

.c-faq__q {
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--color-text);
}
.c-faq__q .c-faq__qBody {
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, calc(16.5915492958px + (0.3755868545 * var(--vw))), 22px);
  letter-spacing: 0.05em;
}

.c-faq__a {
  padding-top: 45px;
}

.c-faq__label {
  font-family: var(--font-maru);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(18px, calc(16.5915492958px + (0.3755868545 * var(--vw))), 22px);
  letter-spacing: 0.05em;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em;
  border-radius: 100%;
  color: #fff;
  width: 1.75em;
  height: 1.75em;
  background-color: var(--color-blue);
}

.c-faq__a .c-faq__label {
  background-color: var(--color-red1);
}

.c-faq__qBody > :first-child,
.c-faq__aBody > :first-child {
  margin-top: 0;
}

.c-faq__qBody > :last-child,
.c-faq__aBody > :last-child {
  margin-bottom: 0;
}

/***********************
  合わせて読みたいブロック
***********************/
.c-other {
  background: #FFFFFF;
  background: linear-gradient(90deg, rgba(67, 207, 202, 0.1) 30.77%, rgba(255, 255, 255, 0) 82.21%);
  border: 2px solid #3EC1BD;
  border-radius: 30px;
}

.p-knowledgePost__contents .l-inner > * + .c-other {
  margin-top: 4.5em;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents .l-inner > * + .c-other {
    margin-top: 2.5em;
  }
}

.c-other__link {
  display: flex;
  margin: 0 auto;
  padding: 28px 4% 28px;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 80.3448275862%;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .c-other__link {
    flex-direction: column;
    width: 100%;
  }
}

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

.c-other__label {
  padding: 0.25em 1em;
  display: inline-block;
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  font-weight: 500;
  color: #fff;
  background: #3EC1BD;
  text-align: center;
}
@media (max-width: 767px) {
  .c-other__label {
    margin: 0 auto;
  }
}

.c-other__title {
  margin-top: 1em;
  font-family: var(--font-maru);
  font-size: clamp(20px, calc(18.5915492958px + (0.3755868545 * var(--vw))), 24px);
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.05em;
  color: #3EC1BD;
}

.c-other__thumb {
  aspect-ratio: 27/17;
  width: 30%;
}
@media (max-width: 767px) {
  .c-other__thumb {
    width: 70%;
    max-width: 220px;
  }
}
.c-other__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 27/17;
  -o-object-fit: cover;
     object-fit: cover;
}

/***********************
* 症例写真ブロック
***********************/
.c-blurGallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 6.6666666667%;
}
@media (max-width: 767px) {
  .c-blurGallery {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.p-knowledgePost__contents .l-inner > * + .c-blurGallery {
  margin-top: 2.5em;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents .l-inner > * + .c-blurGallery {
    margin-top: 1.5em;
  }
}

.c-blurGallery__item {
  display: grid;
  gap: 12px;
}

.c-blurGallery__caption {
  text-align: center;
  min-height: 1.5em;
}

.c-blurGallery__media {
  position: relative;
  margin: 0;
  aspect-ratio: 406/229;
  overflow: hidden;
  border-radius: 30px;
}
.c-blurGallery__media::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  background-color: #fff;
}

.c-blurGallery__img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.2s ease;
}

.c-blurGallery__item.is-blurred .c-blurGallery__media::before {
  opacity: 0.3;
}

.c-blurGallery__item.is-blurred .c-blurGallery__img {
  position: relative;
  filter: blur(14px);
}

.c-blurGallery__actions {
  padding: 0.5em;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  background-color: #fff;
}

.c-blurGallery__hint {
  margin: 0;
  font-size: 15px;
}

.c-blurGallery__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  font-size: 13px;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  border-radius: 999px;
  padding: 8px 12px;
  line-height: 1;
  cursor: pointer;
}

.c-blurGallery__btn--on {
  border: 1px solid #E14C67;
  background: #E14C67;
}

.c-blurGallery__btn:disabled {
  opacity: 0.9;
  color: var(--color-blue);
  background: transparent;
  cursor: not-allowed;
}

.c-blurGallery__btn--on:disabled {
  color: #E14C67;
}

/***********************
* 画像のコアブロック調整
***********************/
.p-knowledgePost__contents :where(figure.wp-block-image,
.wp-block-gallery figure.wp-block-image) {
  border-radius: 30px !important;
  overflow: hidden;
}

.p-knowledgePost__contents :where(figure.wp-block-image img,
.wp-block-gallery img) {
  border-radius: 30px !important;
  display: block;
}

.p-knowledgePost__contents :where(figure.wp-block-image) {
  margin-left: auto;
  margin-right: auto;
  width: 85.7471264368%;
  border-radius: 30px !important;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents :where(figure.wp-block-image) {
    width: 100%;
  }
}

.p-knowledgePost__contents :where(figure.wp-block-image img) {
  border-radius: 30px !important;
  display: block;
}

.p-knowledgePost__contents :where(figure.wp-block-image > a,
.wp-block-gallery figure.wp-block-image > a) {
  border-radius: 30px !important;
  overflow: hidden;
  display: block;
}

.p-knowledgePost__contents :where(figure.wp-block-image,
.wp-block-gallery figure.wp-block-image,
.wp-block-gallery.has-nested-images figure.wp-block-image):has(figcaption) {
  display: flex;
  flex-direction: column-reverse !important;
}

.p-knowledgePost__contents .wp-block-gallery.has-nested-images figure.wp-block-image {
  display: flex;
  flex-direction: column-reverse !important;
}

.p-knowledgePost__contents :where(figure.wp-block-image,
.wp-block-gallery figure.wp-block-image):has(figcaption):before {
  display: none;
}

.p-knowledgePost__contents figure.wp-block-image figcaption {
  position: static;
  background: none;
  text-shadow: none;
  color: var(--color-text);
  font-size: clamp(16px, calc(14.5915492958px + (0.3755868545 * var(--vw))), 20px);
  font-weight: 400;
  text-align: center;
  font-family: var(--font-maru);
  padding: 36px 0 32px 0;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents figure.wp-block-image figcaption {
    padding: 24px 0 18px 0;
  }
}

.p-knowledgePost__contents .wp-block-embed + p {
  margin-top: 0.5em;
}

.p-knowledgePost__contents {
  line-height: 180%;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents {
    line-height: 170%;
  }
}
/***********************
* Gallery：1カラムだけの場合　中央寄せ
***********************/
.p-knowledgePost__contents :where(.wp-block-gallery.columns-1, .wp-block-gallery.has-nested-images.columns-1) :where(figure.wp-block-image) {
  width: 85.7471264368%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents :where(.wp-block-gallery.columns-1, .wp-block-gallery.has-nested-images.columns-1) :where(figure.wp-block-image) {
    width: 100%;
  }
}

.p-knowledgePost__contents .wp-block-gallery.columns-1 :where(li, .blocks-gallery-item) {
  width: 85.7471264368%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-knowledgePost__contents .wp-block-gallery.columns-1 :where(li, .blocks-gallery-item) {
    width: 100%;
  }
}

.p-knowledgePost__contents .wp-block-gallery.columns-1 :where(img) {
  width: 100%;
  height: auto;
}

/* 横スクロール（ヘッダー背景・枠線なし） */
.p-knowledgePost__contents .wp-block-table.is-style-scroll-header {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-knowledgePost__contents .wp-block-table.is-style-scroll-header table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content; /* 内容が長い時に横スクロールを発生させやすくする */
}
.p-knowledgePost__contents .wp-block-table.is-style-scroll-header th,
.p-knowledgePost__contents .wp-block-table.is-style-scroll-header td {
  border: 1px solid var(--color-text);
  background-color: #fff;
  padding: 0.75em 1em;
  vertical-align: top;
}
.p-knowledgePost__contents .wp-block-table.is-style-scroll-header th,
.p-knowledgePost__contents .wp-block-table.is-style-scroll-header thead th {
  background: var(--color-blue);
  color: #fff;
}
.p-knowledgePost__contents .wp-block-table.is-style-no-border table {
  border: none;
}
.p-knowledgePost__contents .wp-block-table.is-style-no-border th,
.p-knowledgePost__contents .wp-block-table.is-style-no-border td {
  padding-right: 1em;
  border: none;
}

@media (max-width: 767px) {
  .p-knowledgePost__contents .wp-block-table.is-style-no-border table,
.p-knowledgePost__contents .wp-block-table.is-style-no-border tbody,
.p-knowledgePost__contents .wp-block-table.is-style-no-border th,
.p-knowledgePost__contents .wp-block-table.is-style-no-border td {
    display: block;
  }
}
/***********************
* 動画YouTube埋め込み
***********************/
.p-knowledgePost__contents .is-provider-youtube.wp-block-embed-youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

/***********************
* グループブロックのカスタマイズ
***********************/
.is-style-grid-2col > *,
.is-style-grid-3col > * {
  display: grid !important;
  gap: 1.5em;
  grid-template-columns: 1fr;
}

/* PC（768px以上）のとき */
@media (min-width: 768px) {
  .is-style-grid-2col > * {
    grid-template-columns: repeat(2, 1fr);
  }
  .is-style-grid-3col > * {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* 子要素の余計なマージンをリセット（WordPress標準の挙動対策） */
.is-style-grid-2col > *,
.is-style-grid-3col > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/***********************
* リンク集まとめ
***********************/
.c-linkGroup > * + * {
  margin-top: 1em;
}

/***********************
* この記事の監修ブロック
***********************/
.c-author {
  padding-top: 1em;
  border-top: 1px solid var(--color-text);
}

.c-author .c-author__bunner, .c-author .c-author__bunner img {
  border-radius: 0 !important;
}

.c-author__bunner {
  margin-top: 1em;
}

.c-author__bunner img {
  margin: 0 auto;
  display: block;
  width: 200px;
}

.c-author_description {
  margin-top: 1em;
  text-align: center;
}

/***********************
* お問い合わせ　contactus
************************/
.p-contactUs__box {
  --boxRadius:var(--radius-sm);
  padding: 75px clamp(15px, calc(-6.8309859155px + (5.8215962441 * var(--vw))), 77px);
}
@media (max-width: 767px) {
  .p-contactUs__box {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.p-contactUs__caution {
  padding: 47px clamp(15px, calc(-31.8309859155px + (12.4882629108 * var(--vw))), 148px);
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  border-radius: var(--radius-sm);
  background: rgba(179, 179, 179, 0.2);
}
@media (max-width: 767px) {
  .p-contactUs__caution {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.p-contactUs__subtitle {
  font-size: clamp(16px, calc(15.2957746479px + (0.1877934272 * var(--vw))), 18px);
  font-weight: 700;
  text-align: center;
}
.p-contactUs__subtitle + * {
  margin-top: 1em;
}

.p-contactUs__list {
  margin-top: 1em;
}

.p-contactUs__post {
  margin: 60px auto 0;
  line-height: 180%;
}
@media (max-width: 767px) {
  .p-contactUs__post {
    margin: 30px auto 0;
    line-height: 150%;
  }
}

.p-contactUs__agree {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contactUs__agree > * + * {
  margin-top: 1em;
}

.p-form {
  margin: 60px auto 0;
  max-width: 834px;
}
@media (max-width: 767px) {
  .p-form {
    margin: 30px auto 0;
  }
}

.p-form__row {
  display: flex;
  gap: 0 2em;
}
.p-form__row + .p-form__row {
  margin-top: 42px;
}
@media (max-width: 767px) {
  .p-form__row {
    flex-direction: column;
    gap: 1em;
  }
}

.p-form__label {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 18em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-form__label {
    width: 100%;
  }
}

.p-form__control {
  width: 100%;
}

.u-required {
  margin-top: 0.25em;
  margin-left: 1em;
  padding: 0 0.5em;
  font-size: clamp(13px, calc(12.6478873239px + (0.0938967136 * var(--vw))), 14px);
  line-height: 150%;
  letter-spacing: 0.05em;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: var(--color-red1);
}

.p-form__text {
  height: 3em;
  width: 100%;
  padding: 0 1em;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #C5C5C5;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.p-form__textarea {
  padding: 0 1em;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #C5C5C5;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.p-form__button {
  position: relative;
  margin: 70px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .p-form__button {
    margin: 45px auto 0;
  }
}
.p-form__button > * {
  margin: 0 auto;
  width: 252px;
}
.p-form__button > *:not(:last-child) {
  margin-top: 30px;
}
.p-form__button .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
}

.p-form__button--flex {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-form__button--flex {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }
}

.p-form__submit {
  position: relative;
  padding: 1em 1.25em;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: var(--borderLine);
  border-radius: 38px;
  font-weight: 500;
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-blue);
}
.p-form__submit:disabled {
  cursor: not-allowed;
  background-color: var(--color-text);
  border-color: var(--color-text);
  opacity: 0.5;
}
.p-form__prev {
  position: relative;
  padding: 1em 1.25em;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: var(--borderLine);
  border-radius: 38px;
  font-weight: 500;
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  background-color: #fff;
}
.p-form__prev:hover, .p-form__prev:focus {
  opacity: 0.8;
}

/******************
* 404
*******************/
.p-404__lead {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-404-button__wrap {
  text-align: center;
}
.p-404-button__wrap > * {
  margin: 0 auto;
  max-width: 280px;
}

/******************
* 小児アレルギー診療ウェブ講義
*******************/
.p-pascoCardList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 4%;
  margin-top: 54px;
}
@media (max-width: 767px) {
  .p-pascoCardList {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 4%;
  }
}

.p-pascoCard__thumb {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-pascoCard__thumb iframe {
  width: 100%;
  height: 100%;
}

.p-pascoCard__body {
  margin-top: 1em;
}

.p-pascoCard__title {
  font-size: clamp(16px, calc(15.2957746479px + (0.1877934272 * var(--vw))), 18px);
  line-height: 180%;
  font-weight: 700;
}

.p-pascoCard__author {
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  line-height: 180%;
  font-weight: 700;
}

.p-pascoCard__text {
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  line-height: 180%;
}

/******************
* サイトマップ
*******************/
.p-sitemap {
  font-size: clamp(16px, calc(14.5915492958px + (0.3755868545 * var(--vw))), 20px);
  line-height: 180%;
  letter-spacing: 0.04em;
  font-family: var(--font-maru);
  font-weight: 700;
  color: var(--color-blue);
}

.p-sitemap__link:hover, .p-sitemap__link:focus {
  text-decoration: underline;
}

.p-sitemapSub_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 1em;
  padding-bottom: 1em;
  font-size: clamp(14px, calc(13.2957746479px + (0.1877934272 * var(--vw))), 16px);
  line-height: 180%;
  font-family: var(--font-ja);
  font-weight: 500;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .p-sitemapSub_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-sitemapSub_list > * {
  position: relative;
  padding-left: 1em;
}
.p-sitemapSub_list > *::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0.1em;
}

.p-sitemapSub_link:hover, .p-sitemapSub_link:focus {
  text-decoration: underline;
}

.l-header__search .gsc-input .gsc-input-box {
  position: relative;
  width: 182px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 28px;
}
.l-header__search .gsib_b {
  height: 40px;
  width: 40px;
}

.c-search__field .gsc-input .gsc-input-box {
  position: relative;
  width: 182px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 28px;
}
.c-search__field .gsib_b {
  height: 40px;
  width: 40px;
}