@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* 
  ブレークポイントの考え方：
  - モバイルファースト（320px〜がベース）
  - sm: 540px〜  大型スマートフォン（iPhone 14 Pro Max等）
  - md: 768px〜  タブレット縦向き（iPad縦等）
  - lg: 1024px〜 タブレット横向き、小型ノートPC（iPad横等）
  - xl: 1280px〜 一般的なノートPC、デスクトップ
  - xxl: 1600px〜 大型ディスプレイ、4K対応
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #f7f7f7;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  line-height: 1.6;
}

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

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

section + section {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  section + section {
    padding-top: 2rem;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7-spinner {
  position: absolute !important;
  right: 0;
}

input[type=file] {
  padding: 2rem;
  background-color: #f7f7f7;
  border: 1px dashed rgba(63, 76, 86, 0.2);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.wpcf7-form-control-wrap.is-drag-over input[type=file] {
  background-color: #e8f2ff;
  border-color: #4a90d9;
}

.bg-stack-base {
  position: relative;
  z-index: 0;
  isolation: isolate;
}
.bg-stack-base::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(50vw + 50%);
  z-index: 0;
  pointer-events: none;
}
.bg-stack-base.is-stack-right::before {
  right: 5%;
  border-top-right-radius: 6rem;
}
@media screen and (max-width: 1279px) {
  .bg-stack-base.is-stack-right::before {
    right: 2%;
    border-top-right-radius: 3rem;
  }
}
.bg-stack-base.is-stack-left::before {
  left: 5%;
  border-top-left-radius: 6rem;
}
@media screen and (max-width: 1279px) {
  .bg-stack-base.is-stack-left::before {
    left: 2%;
    border-top-left-radius: 3rem;
  }
}

.js-2section {
  --stack-height: 100%;
}
.js-2section::before {
  height: var(--stack-height);
}
.js-2section > * {
  position: relative;
  z-index: 1;
}

.is-stack-blue::before {
  background-color: #D8F6FD;
}

.is-stack-light::before {
  background: linear-gradient(120deg, #FFFAFE 70%, #D8F6FD);
}

.is-stack-darkblue::before {
  background-color: #3CA3D3;
}

.is-stack-lightblue::before {
  background: linear-gradient(-60deg, #E4F3FA 60%, #F6F0F5);
}

.app-pdf-viewer {
  position: relative;
  width: 100%;
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  user-select: none;
}
.app-pdf-viewer.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #000;
}
.app-pdf-viewer.is-fullscreen .app-pdf-stage-shell {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.app-pdf-viewer.is-fullscreen .app-pdf-stage {
  height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.app-pdf-viewer.is-fullscreen .app-pdf-stage canvas {
  flex: 0 0 auto;
  max-height: 100%;
  max-width: 50%;
  width: auto;
  height: auto;
}
.app-pdf-viewer.is-fullscreen .app-pdf-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.app-pdf-viewer.is-fullscreen.is-controls-visible .app-pdf-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.app-pdf-viewer:fullscreen, .app-pdf-viewer:-webkit-full-screen {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #000;
}
.app-pdf-viewer:fullscreen .app-pdf-stage-shell, .app-pdf-viewer:-webkit-full-screen .app-pdf-stage-shell {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.app-pdf-viewer:fullscreen .app-pdf-stage, .app-pdf-viewer:-webkit-full-screen .app-pdf-stage {
  height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.app-pdf-viewer:fullscreen .app-pdf-stage canvas, .app-pdf-viewer:-webkit-full-screen .app-pdf-stage canvas {
  flex: 0 0 auto;
  max-height: 100%;
  max-width: 50%;
  width: auto;
  height: auto;
}
.app-pdf-viewer:fullscreen .app-pdf-controls, .app-pdf-viewer:-webkit-full-screen .app-pdf-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.app-pdf-viewer:fullscreen.is-controls-visible .app-pdf-controls, .app-pdf-viewer:-webkit-full-screen.is-controls-visible .app-pdf-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.app-pdf-viewer.is-single-page .app-pdf-stage canvas, .app-pdf-viewer[data-single-page] .app-pdf-stage canvas {
  flex: 1 1 100%;
  max-width: 100%;
}
.app-pdf-viewer.is-single-page.is-fullscreen .app-pdf-stage canvas, .app-pdf-viewer.is-single-page:fullscreen .app-pdf-stage canvas, .app-pdf-viewer.is-single-page:-webkit-full-screen .app-pdf-stage canvas, .app-pdf-viewer[data-single-page].is-fullscreen .app-pdf-stage canvas, .app-pdf-viewer[data-single-page]:fullscreen .app-pdf-stage canvas, .app-pdf-viewer[data-single-page]:-webkit-full-screen .app-pdf-stage canvas {
  max-width: 100%;
}

.app-pdf-stage-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  outline: none;
  cursor: pointer;
}

.app-pdf-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}
.app-pdf-hit-prev {
  left: 0;
}
.app-pdf-hit-next {
  right: 0;
}

.app-pdf-viewer.is-fullscreen .app-pdf-hit::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.app-pdf-viewer.is-fullscreen .app-pdf-hit-prev::after {
  content: "‹";
  left: 18px;
}
.app-pdf-viewer.is-fullscreen .app-pdf-hit-next::after {
  content: "›";
  right: 18px;
}
.app-pdf-viewer.is-fullscreen.is-edge-left .app-pdf-hit-prev::after {
  opacity: 1;
}
.app-pdf-viewer.is-fullscreen.is-edge-right .app-pdf-hit-next::after {
  opacity: 1;
}

.app-pdf-close-edge {
  display: none;
}

.app-pdf-viewer.is-fullscreen .app-pdf-close-edge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.app-pdf-viewer.is-fullscreen .app-pdf-close-edge:hover {
  background: rgba(0, 0, 0, 0.75);
}

.app-pdf-stage {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.app-pdf-stage canvas {
  display: block;
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
}

.app-pdf-gutter {
  width: 2px;
  flex-shrink: 0;
  background: #000;
  align-self: stretch;
}

.app-pdf-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}
.app-pdf-controls-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-pdf-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 2px 8px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.app-pdf-btn:hover:not(:disabled) {
  opacity: 1;
}
.app-pdf-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.app-pdf-pageinfo {
  color: #fff;
  font-size: 13px;
  min-width: 80px;
  text-align: center;
}

.app-pdf-fullscreen-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.app-pdf-fullscreen-btn:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .app-pdf-stage canvas {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .app-pdf-viewer.is-fullscreen .app-pdf-stage canvas {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .app-pdf-viewer:fullscreen .app-pdf-stage canvas, .app-pdf-viewer:-webkit-full-screen .app-pdf-stage canvas {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .app-pdf-stage canvas + canvas {
    display: none;
  }
  .app-pdf-gutter {
    display: none;
  }
}
.u-xl-none {
  display: block;
}
@media screen and (min-width: 1600px) {
  .u-xl-none {
    display: none !important;
  }
}

.u-lg-none {
  display: block;
}
@media screen and (min-width: 1024px) {
  .u-lg-none {
    display: none !important;
  }
}

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

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

.u-m0 {
  margin: 0 !important;
}

.u-text-underline {
  text-decoration: underline;
}
.u-text-underline:hover {
  text-decoration: none;
}

.l-header {
  background-color: #fff;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  position: relative;
  z-index: 100;
}

.l-header-inner {
  display: flex;
  flex-direction: column;
}

.l-header-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 1279px) {
  .l-header-branding {
    max-width: 1200px;
  }
}
.l-header-branding__logo {
  flex-shrink: 0;
}
.l-header-branding__logo img {
  display: block;
  height: auto;
}
.l-header-branding__info {
  display: flex;
  align-items: start;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}
.l-header-branding__info-icon {
  display: flex;
  gap: 24px;
  align-items: center;
}
.l-header-branding__info-link {
  position: relative;
  padding-top: 2rem;
  transition: opacity 0.3s ease;
}
.l-header-branding__info-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateX(-50%);
}
.l-header-branding__info-link:first-child::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/icon_member.svg);
}
.l-header-branding__info-link:last-child::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/icon_contact.svg);
}
@media screen and (max-width: 1023px) {
  .l-header-branding__info-link:last-child::before {
    background-image: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/icon_contact_wh.svg);
  }
}
.l-header-branding__info-link:hover {
  opacity: 0.6;
}
.l-header-branding__english {
  position: relative;
  text-decoration: underline;
  transition: all 0.3s ease;
  padding-left: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .l-header-branding__english {
    padding-left: 0;
    padding-top: 1.5rem;
  }
}
.l-header-branding__english--mobile {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  font-size: 10px;
}
@media screen and (min-width: 1024px) {
  .l-header-branding__english--mobile {
    display: none;
  }
}
.l-header-branding__english::before {
  content: "";
  position: absolute;
  background: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/icon_english.svg) no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .l-header-branding__english::before {
    width: 1.2rem;
    height: 1.2rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-header-branding__english:hover {
  color: #6BBAD9;
  text-decoration: none;
  text-underline-offset: 2px;
}
.l-header-branding__button {
  flex-shrink: 0;
  border-radius: 10px;
  background-color: #555;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}
.l-header-branding__button:hover {
  opacity: 0.8;
}

.l-header-toggle {
  display: none;
}

.l-header-navigation {
  position: relative;
  border-top: 4px solid #6BBAD9;
  width: 100%;
}
.l-header-navigation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6BBAD9;
}

.l-header-menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 0;
  position: relative;
  max-width: 1400px;
}
@media screen and (max-width: 1279px) {
  .l-header-menu {
    max-width: 1200px;
  }
}

.l-header-menu-item {
  flex: 1;
  position: relative;
  background-color: #fff;
}
.l-header-menu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 80%;
  background-color: #6BBAD9;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  z-index: 1;
}
.l-header-menu-item:last-child::before {
  display: none;
}

.l-header-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 32px;
  color: #6BBAD9;
  text-decoration: none;
  font-size: 1vw;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: stretch;
}
@media screen and (max-width: 1023px) {
  .l-header-menu-link {
    font-size: 1.1rem;
  }
}
.l-header-menu-link::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #6BBAD9;
  border-bottom: 2px solid #6BBAD9;
  transform: translateX(-50%) rotate(45deg);
  transition: width 0.3s ease, left 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .l-header-menu-item.has-submenu > .l-header-menu-link::before {
    bottom: auto;
    width: 0.6rem;
    height: 0.6rem;
  }
  .l-header-menu-item:not(.has-submenu) > .l-header-menu-link::before {
    bottom: auto;
    left: auto;
    right: 1.5rem;
    width: 0.6rem;
    height: 0.6rem;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: right center;
  }
}
.l-header-menu-link:hover, .l-header-menu-link.is-active {
  background-color: rgb(147.5806451613, 204.9193548387, 227.4193548387);
  color: #fff;
}
.l-header-menu-link:hover::before, .l-header-menu-link.is-active::before {
  border-color: #fff;
}

.l-header-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  list-style: none;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.l-header-submenu li {
  margin: 0;
}
.l-header-submenu li + li {
  border-top: 1px dashed rgba(63, 76, 86, 0.5);
}
.l-header-submenu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 24px 24px 32px;
  color: #3f4c56;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.l-header-submenu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #6BBAD9;
  border-right: 2px solid #6BBAD9;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}
.l-header-submenu li a:hover {
  background-color: rgba(107, 186, 217, 0.1);
  color: #6BBAD9;
}

@media screen and (max-width: 767px) {
  .l-header-branding {
    padding: 16px 0;
    gap: 24px;
  }
  .l-header-branding__info {
    gap: 24px;
  }
  .l-header-branding__info-icon {
    gap: 16px;
  }
  .l-header-branding__info-icon a {
    font-size: 12px;
  }
  .l-header-branding__info-icon a img {
    width: 18px;
    height: 18px;
  }
  .l-header-menu-link {
    padding: 16px 8px;
    font-size: 12px;
  }
  .l-header-submenu {
    padding: 16px 0;
  }
  .l-header-submenu a {
    padding: 16px 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  body.is-mobile-menu-open {
    overflow: hidden;
  }
  .l-header-branding {
    padding: 10px 16px;
    flex-wrap: nowrap;
  }
  .l-header-branding__logo img {
    width: 150px;
  }
  .l-header-branding__info {
    display: none;
  }
  .l-header-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(63, 76, 86, 0.2);
    border-radius: 8px;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .l-header-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: #6BBAD9;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .l-header-toggle[aria-expanded=true] .l-header-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .l-header-toggle[aria-expanded=true] .l-header-toggle__line:nth-child(2) {
    opacity: 0;
  }
  .l-header-toggle[aria-expanded=true] .l-header-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .l-header-navigation {
    border-top: none;
    position: fixed;
    top: var(--header-mobile-offset, 76px);
    left: 0;
    right: 0;
    bottom: 0;
    max-height: none;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
    z-index: 110;
  }
  .l-header-navigation::before {
    display: none;
  }
  .l-header-navigation.is-open {
    border-top: 4px solid #6BBAD9;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .l-header-menu {
    display: block;
    padding: 0;
  }
  .l-header-menu-item {
    border-right: none;
    border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  }
  .l-header-menu-item::before {
    display: none;
  }
  .l-header-menu-item:hover {
    background-color: #fff;
  }
  .l-header-menu-item:hover .l-header-submenu {
    display: none;
  }
  .l-header-menu-item.is-open .l-header-submenu {
    display: block;
  }
  .l-header-menu-link {
    justify-content: flex-start;
    text-align: left;
    padding: 1rem 1rem;
    line-height: 1.4;
  }
  .l-header-menu-item.has-submenu > .l-header-menu-link::before {
    left: auto;
    right: 1rem;
  }
  .l-header-menu-link::after {
    display: none;
  }
  .l-header-menu-item.has-submenu > .l-header-menu-link {
    padding-right: 2.8rem;
  }
  .l-header-menu-item.has-submenu.is-open > .l-header-menu-link::before {
    transform: translateY(-50%) rotate(-135deg);
    top: 50%;
  }
  .l-header-submenu {
    position: static;
    display: none;
    border-bottom: none;
    box-shadow: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: rgba(107, 186, 217, 0.08);
    overflow: hidden;
  }
  .l-header-submenu li a {
    padding: 0.8rem 1rem 0.8rem 1.8rem;
    font-size: 13px;
  }
  .l-header-submenu li a:hover {
    padding-left: 1.8rem;
  }
}
.l-header-nav-extra, .l-header-nav-search {
  display: none;
}

@media screen and (max-width: 1023px) {
  .l-header-nav-search {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  }
  .l-header-nav-extra {
    display: flex;
    flex-direction: column;
    /* リンク横並び・アイコン非表示 */
  }
  .l-header-nav-extra__links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  }
  .l-header-nav-extra__links .l-header-branding__info-link {
    padding-top: 0;
    font-size: 13px;
    color: #6BBAD9;
    text-decoration: none;
    width: 100%;
    padding: 1rem 1rem 1rem 2.6rem;
    font-weight: bold;
  }
  .l-header-nav-extra__links .l-header-branding__info-link:last-child {
    background-color: #6BBAD9;
    color: #fff;
  }
  .l-header-nav-extra__links .l-header-branding__info-link::before {
    width: 1.2rem;
    height: 1.2rem;
    top: calc(50% + 0.05rem);
    left: 1rem;
    transform: translateY(-50%);
  }
  .l-header-nav-extra__links .l-header-branding__info-link:hover {
    opacity: 0.6;
  }
  .l-header-nav-extra {
    /* 会員専用ページボタン 100% */
  }
  .l-header-nav-extra__button {
    margin: 1rem;
  }
}
.l-footer {
  background-color: #fff;
  border-radius: 2.4rem 2.4rem 0 0;
  position: relative;
  margin-top: -2.4rem;
  padding-top: 2.4rem;
}
.l-footer-title {
  color: #6BBAD9;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.l-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (max-width: 1599px) {
  .l-footer-inner {
    max-width: 1200px;
    padding: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer-inner {
    padding: 2rem 1rem;
    gap: 2rem;
  }
}

.l-footer-heading {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-heading {
    grid-template-columns: 1fr;
  }
}
.l-footer-heading__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #6BBAD9;
  border-radius: 5px;
  padding: 2rem 10rem;
  min-height: 15vh;
  text-align: center;
  line-height: 1.6;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1599px) {
  .l-footer-heading__link {
    padding: 2rem 6rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer-heading__link {
    padding: 1rem 2rem;
    min-height: 10vh;
  }
}
.l-footer-heading__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-top: 4px solid #6BBAD9;
  border-right: 4px solid #6BBAD9;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}
.l-footer-heading__link:hover {
  background-color: rgb(147.5806451613, 204.9193548387, 227.4193548387);
  color: #fff;
}
.l-footer-heading__link:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.l-footer-connection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .l-footer-connection {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.l-footer-connection__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  height: stretch;
  transition: all 0.3s ease;
}
.l-footer-connection__link:hover {
  opacity: 0.6;
}

.l-footer-sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.l-footer-sponsor__item {
  width: 20%;
}
@media screen and (max-width: 1599px) {
  .l-footer-sponsor__item {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-sponsor__item {
    width: 50%;
  }
}
.l-footer-sponsor__item img {
  max-width: 200px;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .l-footer-sponsor__item img {
    max-width: 150px;
  }
}
@media screen and (max-width: 539px) {
  .l-footer-sponsor__item img {
    max-width: 100px;
  }
}
.l-footer-sponsor__text {
  text-align: center;
  margin: 2rem 0 1rem;
}
.l-footer-sponsor__preparation {
  background-color: #f7f7f7;
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  opacity: 0.4;
}
@media screen and (max-width: 1023px) {
  .l-footer-sponsor__preparation {
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
}

.l-footer-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-foot {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-footer-foot__info {
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-foot__info {
    padding: 0;
  }
}
.l-footer-foot__info:first-child {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .l-footer-foot__info:first-child {
    display: grid;
    grid-template-columns: 20% 1fr;
    margin-bottom: 1rem;
  }
}
.l-footer-foot__title {
  font-size: 1rem;
  color: #6BBAD9;
  margin-bottom: 1rem;
}
.l-footer-foot__text {
  padding-left: 1rem;
}
.l-footer-foot__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}
.l-footer-foot__item a {
  transition: all 0.3s ease;
}
.l-footer-foot__item a:hover {
  color: #6BBAD9;
}

.l-footer-nav {
  position: static !important;
  border-top: 1px solid rgba(63, 76, 86, 0.2);
  padding: 2rem;
}
@media screen and (max-width: 1023px) {
  .l-footer-nav {
    padding: 1rem 0;
  }
}
.l-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .l-footer-nav__list {
    gap: 0 1rem;
  }
}
.l-footer-nav__list li + li {
  border-left: 1px solid rgba(63, 76, 86, 0.2);
}
@media screen and (max-width: 1023px) {
  .l-footer-nav__list li + li {
    border-left: none;
  }
}
.l-footer-nav__item {
  padding: 0 1rem;
}
@media screen and (max-width: 1023px) {
  .l-footer-nav__item {
    margin: 0.5rem 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav__item {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer-nav__item:nth-child(3) {
    border-left: none;
  }
}
.l-footer-nav__link {
  transition: all 0.3s ease;
}
.l-footer-nav__link:hover {
  opacity: 0.6;
}

.l-footer-copyright {
  background-color: #6BBAD9;
  padding: 1rem;
}
.l-footer-copyright__text {
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
}

.c-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 300px;
}
@media screen and (max-width: 1023px) {
  .c-search {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: none;
  }
}

.c-search__form {
  display: flex;
  width: 100%;
}

.c-search-flex {
  display: flex;
  width: 100%;
  align-items: stretch;
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.c-search__wrap {
  display: flex;
  flex: 1;
  align-items: center;
  background-color: #f7f7f7;
  padding: 0 24px;
  transition: all 0.3s ease;
}
.c-search__wrap:focus-within {
  border-color: #6BBAD9;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(107, 186, 217, 0.2);
}

.c-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 0;
  font-size: 14px;
  color: #3f4c56;
  outline: none;
}
.c-search__input::placeholder {
  color: #6b7882;
}

.c-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: stretch;
  padding: 0;
  background-color: #6BBAD9;
  border: none;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .c-search__button {
    display: flex;
  }
}
.c-search__button img {
  width: 20px;
  height: 20px;
}
.c-search__button:hover {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
}

@media screen and (max-width: 767px) {
  .c-search {
    max-width: 100%;
    width: 100%;
  }
  .c-search__wrap {
    padding: 0 16px;
  }
  .c-search__input {
    padding: 10px 0;
    font-size: 13px;
  }
  .c-search__button {
    width: 36px;
    height: 36px;
  }
  .c-search__button img {
    width: 18px;
    height: 18px;
  }
}
.c-page-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media screen and (max-width: 1279px) {
  .c-page-header {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-header {
    padding: 2rem 1rem 4rem;
  }
}

.c-page-title {
  color: #6BBAD9;
  margin-bottom: 1rem;
  font-size: 2.6rem;
}
@media screen and (max-width: 1023px) {
  .c-page-title {
    font-size: 2rem;
  }
}

.c-page-heading--background {
  background: linear-gradient(-180deg, #D8F6FD 80%, #F6F0F5 100%);
}

.c-page-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1599px) {
  .c-page-inner {
    max-width: 1200px;
    padding: 0 1rem;
  }
}
.c-page-inner--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1279px) {
  .c-page-inner--wide {
    max-width: 1200px;
    padding: 0 1rem;
  }
}

.c-page-lead {
  text-align: center;
  line-height: 1.6;
  font-size: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .c-page-lead {
    font-size: 1rem;
  }
}
.c-page-lead--white {
  color: #fff;
}

.c-page-table {
  overflow: scroll;
}

.c-page-banner {
  position: relative;
  background-color: #fff;
  padding: 3rem 0;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .c-page-banner {
    padding: 3rem 0 2rem;
  }
}
.c-page-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1279px) {
  .c-page-banner__inner {
    max-width: 1200px;
    padding: 0 1rem;
  }
}
.c-page-banner__link {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1279px) {
  .c-page-banner__link {
    max-width: 1200px;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-page-banner__link {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-banner__link {
    padding: 0 1rem;
  }
}
.c-page-banner__link:hover {
  opacity: 0.8;
}
.c-page-banner__image {
  margin: auto;
}

.c-page-form {
  padding: 8rem 0;
}
@media screen and (max-width: 1023px) {
  .c-page-form {
    padding: 4rem 1rem;
  }
}
.c-page-form__inner {
  max-width: 650px;
  margin: 0 auto;
}
.c-page-form__inner {
  max-width: 1200px;
  padding: 6rem !important;
}
@media screen and (max-width: 1023px) {
  .c-page-form__inner {
    padding: 4rem 1.5rem !important;
  }
}
.c-page-form__title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 1023px) {
  .c-page-form__title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}

.c-page-single h2 {
  margin: 2rem 0;
  padding: 1rem;
  border-top: 1px solid rgba(63, 76, 86, 0.2);
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
}
.c-page-single h3 {
  border-left: 4px solid #3f4c56;
  margin: 2rem 0;
  padding: 0.5rem 1rem;
}
.c-page-single h4 {
  margin: 2rem 0;
  padding: 0.5rem 1rem;
  background-color: #DAEFF7;
}
.c-page-single .wp-block-separator {
  display: none;
}
.c-page-single p {
  line-height: 1.8;
  margin-bottom: 10px;
}
.c-page-single a:not(.c-button--normal) {
  text-decoration: underline;
  color: #6BBAD9;
}
.c-page-single a:not(.c-button--normal):hover {
  text-decoration: none;
}
.c-page-single img {
  display: inline-block;
  margin: 2rem 0;
}

.c-section-block {
  margin-top: 3rem;
}

.c-card {
  background-color: #fff;
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 20px;
  margin: auto;
  padding: 2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-card {
    padding: 2rem 1.5rem;
  }
}
.c-card-title {
  color: #6BBAD9;
  font-size: clamp(24px, 3vw, 34px);
}
.c-card-foot {
  margin-bottom: 2rem;
}

.c-card--page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: none;
}
.c-card--page p {
  line-height: 1.8;
}
.c-card--page ul {
  padding-left: 1rem;
  line-height: 1.8;
}
.c-card--page + .c-card--page {
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-card--page + .c-card--page {
    margin-top: 2rem;
  }
}

.c-title-h2 {
  margin: 0 0 2.6rem;
  color: #55aeca;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .c-title-h2 {
    margin: 0 0 2rem;
  }
}
.c-title-h2--center {
  text-align: center;
}
.c-title-h2--wh {
  color: #fff;
}

.c-breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-left: 0 !important;
}
.c-breadcrumb li {
  position: relative;
}
.c-breadcrumb li:not(:last-child):after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border: solid #3f4c56;
  border-width: 1.5px 1.5px 0 0;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: -1rem;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #6BBAD9;
  border: 1px solid #6BBAD9;
  border-radius: 999px;
  padding: 0.4rem 2rem;
  font-size: 120%;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .c-button {
    padding: 0.4rem 1rem;
    font-size: 1rem;
  }
}
.c-button__arrow {
  position: relative;
  border-radius: 50%;
  background-color: #fff;
  width: 1.6rem;
  height: 1.6rem;
  float: left;
  vertical-align: middle;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .c-button__arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
  }
}
.c-button__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 4px solid #6BBAD9;
  border-right: 4px solid #6BBAD9;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .c-button__arrow::before {
    width: 0.6rem;
    height: 0.6rem;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}
.c-button:hover {
  background-color: #fff;
  color: #6BBAD9;
}
.c-button:hover > .c-button__arrow {
  background-color: #6BBAD9;
}
.c-button:hover > .c-button__arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.c-button--highlight {
  background-color: #fff;
  color: #6BBAD9;
  border-color: #fff;
}
.c-button--highlight > .c-button__arrow {
  background-color: #6BBAD9;
}
.c-button--highlight > .c-button__arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.c-button--highlight:hover {
  background-color: #6BBAD9;
  color: #fff;
}
.c-button--highlight:hover > .c-button__arrow {
  background-color: #fff;
}
.c-button--highlight:hover > .c-button__arrow::before {
  border-top-color: #6BBAD9;
  border-right-color: #6BBAD9;
}

.c-button--border {
  border: 2px solid #6BBAD9;
  background-color: #fff;
  color: #6BBAD9;
  text-decoration: none;
}
.c-button--border:hover {
  background-color: #6BBAD9;
  color: #fff;
}

.c-button--normal {
  display: block;
  background-color: #6BBAD9;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .c-button--normal {
    font-size: 1rem;
  }
}
.c-button--normal:hover {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
}

.c-link {
  display: block;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}
.c-link-icon {
  position: absolute;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #6BBAD9;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-link-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 1.5px);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-link:hover {
  color: #6BBAD9;
}

.c-link--highlight {
  color: #6BBAD9;
}

.c-link--arrow {
  position: relative;
  color: #6BBAD9;
}
.c-link--arrow::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #6BBAD9;
  border-right: 2px solid #6BBAD9;
  top: 50%;
  margin-left: 0.5rem;
  transform: translateY(-50%) rotate(45deg);
}

.c-pagination {
  margin: 4rem 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.c-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #6BBAD9;
  border-radius: 4px;
  background-color: #6BBAD9;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-pagination .page-numbers:hover {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
}
.c-pagination .page-numbers.current {
  background-color: transparent;
  border-color: rgba(63, 76, 86, 0.2);
  color: #3f4c56;
  pointer-events: none;
}
.c-pagination .page-numbers.dots {
  background-color: transparent;
  border-color: transparent;
  color: #3f4c56;
  pointer-events: none;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #6BBAD9;
}
.c-pagination .page-numbers.prev:hover, .c-pagination .page-numbers.next:hover {
  opacity: 0.8;
}

.c-pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  aspect-ratio: 1/1;
  z-index: 500;
}
@media screen and (max-width: 1023px) {
  .c-pagetop {
    width: 3rem;
    bottom: 1rem;
    right: 1rem;
  }
}
.c-pagetop__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #6BBAD9;
  border: 1px solid #6BBAD9;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.c-pagetop__link:hover {
  background-color: #fff;
}
.c-pagetop__link:hover > span {
  border-color: #6BBAD9;
}
.c-pagetop__link.is-active {
  opacity: 1;
  visibility: visible;
}
.c-pagetop__icon {
  position: absolute;
  top: calc(50% + 1.5px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .c-pagetop__icon {
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
}

.c-sidebar {
  position: relative;
  width: 20vw;
  background-color: #fff;
  border: 1px solid rgba(63, 76, 86, 0.2);
  padding: 4rem 2rem 8rem;
}
@media screen and (max-width: 1279px) {
  .c-sidebar {
    width: 30vw;
    padding: 2rem 1rem 6rem;
  }
}
.c-sidebar__block {
  position: sticky;
  height: auto;
  top: 2rem;
}
.c-sidebar__title {
  color: #6BBAD9;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .c-sidebar__title {
    font-size: 1.6rem;
  }
}
.c-sidebar__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
}
.c-sidebar__head-icon {
  max-width: 2.5rem;
}
.c-sidebar__head-title {
  font-weight: 500;
}
.c-sidebar__nav {
  margin-top: 2rem;
}
.c-sidebar__list {
  list-style: none;
}
.c-sidebar__link {
  display: block;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1279px) {
  .c-sidebar__link {
    padding: 1rem;
  }
}
.c-sidebar__link.is-active {
  position: relative;
  background-color: #f7f7f7;
  color: #6BBAD9;
}
.c-sidebar__link.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background-color: #6BBAD9;
}
@media screen and (max-width: 1279px) {
  .c-sidebar__link.is-active::after {
    width: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-sidebar__link.is-active::after {
    display: none;
  }
}

/* ========================================
   マイページ スマホ用ボトムナビゲーション
======================================== */
@media screen and (max-width: 767px) {
  .c-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    z-index: 10;
    padding: 0 0 env(safe-area-inset-bottom);
    margin: 0.5rem;
    border: none;
    border-top: 1px solid rgba(63, 76, 86, 0.2);
    background-color: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .c-sidebar.is-nav-hidden {
    transform: translateY(calc(100% + 0.5rem));
  }
  .c-sidebar.is-nav-footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .c-sidebar__block {
    position: static;
  }
  .c-sidebar__title, .c-sidebar__head {
    display: none;
  }
  .c-sidebar__nav {
    margin-top: 0;
  }
  .c-sidebar__list {
    display: flex;
    justify-content: space-around;
  }
  .c-sidebar__item {
    flex: 1;
  }
  .c-sidebar__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.25rem 0.5rem;
    border-bottom: none;
    font-size: 0.6rem;
    text-align: center;
    gap: 0.3rem;
    color: rgba(63, 76, 86, 0.5);
  }
  .c-sidebar__link::before {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    content: "";
    background-color: rgba(63, 76, 86, 0.5);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-sidebar__link.is-active {
    background-color: transparent;
    color: #6BBAD9;
    border-right: none;
    border-top: 2px solid #6BBAD9;
  }
  .c-sidebar__link.is-active::before {
    background-color: #6BBAD9;
  }
  .c-sidebar__link {
    /* ボトムナビ アイコン（::before） */
    /* マイページトップ */
  }
  .c-sidebar__link--mypage::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
  }
  .c-sidebar__link {
    /* 会員情報確認・変更 */
  }
  .c-sidebar__link--account::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
  }
  .c-sidebar__link {
    /* パスワード変更 */
  }
  .c-sidebar__link--password::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
  }
  .c-sidebar__link {
    /* 限定コンテンツ */
  }
  .c-sidebar__link--contents::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
  }
  .c-sidebar__link {
    /* ログアウト */
  }
  .c-sidebar__link--logout::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'/%3E%3C/svg%3E");
  }
}
.c-form {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.c-form-title {
  border-bottom: 2px solid rgba(63, 76, 86, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-form-title {
    margin-bottom: 2rem;
  }
}

.c-form-block {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-form-block {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}

.c-form-label {
  width: stretch;
  max-width: 250px;
  padding: 0.8rem 0;
}

.c-form-value {
  width: 100%;
}
.c-form-value .wpcf7-list-item {
  margin: 1rem 2.5rem 1rem 0;
}
@media screen and (max-width: 767px) {
  .c-form-value .wpcf7-list-item {
    margin: 0.5rem 2.5rem 0.5rem 0;
  }
}
.c-form-value p {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #6b7882;
}

.c-form-input {
  width: 100%;
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 4px;
  background-color: #fff;
  padding: 1rem;
  font-size: 100%;
}
.c-form-input--half {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .c-form-input--half {
    width: 100%;
  }
}
.c-form-input::placeholder {
  opacity: 0.6;
}
.c-form-input.is-readonly {
  background-color: #F3F4F6;
  opacity: 0.6;
}

.c-form-required {
  background-color: #6BBAD9;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.c-form-confirmation__section-title {
  padding-bottom: 2rem;
}
.c-form-confirmation__table {
  width: 100%;
  border: solid rgba(63, 76, 86, 0.2);
  border-width: 2px 0 2px 0;
  border-collapse: collapse;
  margin-bottom: 4rem;
}
.c-form-confirmation__table th, .c-form-confirmation__table td {
  padding: 1rem 2rem;
  text-align: left;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
}
.c-form-confirmation__table th {
  width: 30%;
  background-color: #D8F6FD;
  color: #6BBAD9;
}
.c-form-confirmation__table td {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-submit {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.c-submit__button {
  display: block;
  background-color: #6BBAD9;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.c-submit__button:hover {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
}
.c-submit__button.next-btn, .c-submit__button.back-btn {
  width: 50%;
}
.c-submit__button.edit-btn {
  padding: 0.5rem 2rem;
  font-size: 1rem;
  width: max-content;
}
.c-submit__button:disabled {
  background-color: rgba(106.1275167785, 128.0268456376, 144.8724832215, 0.2);
  color: #3f4c56;
  cursor: not-allowed;
}

.c-submit__button--low {
  background-color: rgba(106.1275167785, 128.0268456376, 144.8724832215, 0.2);
  color: #3f4c56;
}
.c-submit__button--low:hover {
  background-color: rgba(84.5637583893, 102.0134228188, 115.4362416107, 0.2);
}

.p-top {
  background: linear-gradient(-135deg, #D8F6FD 10%, #EDF9F1 60%, #F6F0F5 100%);
}

.p-top-mainvisual {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 1023px) {
  .p-top-mainvisual {
    height: 80vh;
  }
}
.p-top-mainvisual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  max-width: 1400px;
  width: 100%;
  background: linear-gradient(135deg, #6BBAD9, #B191A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1599px) {
  .p-top-mainvisual__content {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1279px) {
  .p-top-mainvisual__content {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-mainvisual__content {
    padding: 0 1.5rem;
  }
}
.p-top-mainvisual__title {
  font-size: 6vw;
}
@media screen and (max-width: 539px) {
  .p-top-mainvisual__title {
    font-size: 2rem;
  }
}
.p-top-mainvisual__description {
  font-size: 2vw;
  line-height: 1.6;
  margin-top: 4vw;
}
@media screen and (max-width: 1023px) {
  .p-top-mainvisual__description {
    font-size: 1rem;
  }
}

.p-top-about {
  padding: 6rem 0;
}
@media screen and (max-width: 1023px) {
  .p-top-about {
    padding: 4rem 0;
  }
}
.p-top-about::before {
  background: linear-gradient(-135deg, #E4F3FA 70%, #F6F0F5 100%) !important;
}
.p-top-about__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1599px) {
  .p-top-about__inner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1279px) {
  .p-top-about__inner {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-about__inner {
    padding: 0 1.5rem;
  }
}
.p-top-about__banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(40deg, #6BBAD9, #F18796);
  border-radius: 20px;
  padding: 2rem 4rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-top-about__banner {
    padding: 2rem 2rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__banner {
    flex-direction: column;
  }
}
@media screen and (max-width: 539px) {
  .p-top-about__banner {
    padding: 2rem 1rem 4rem;
    flex-direction: column;
  }
}
.p-top-about__banner:hover {
  opacity: 0.6;
}
.p-top-about__banner-content {
  flex: 1;
  color: #fff;
  padding-right: 10rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about__banner-content {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__banner-content {
    padding-right: 0;
  }
}
.p-top-about__banner-title {
  font-size: clamp(18px, 3vw, 36px);
  font-weight: bold;
  margin-bottom: 1rem;
}
.p-top-about__banner-description {
  line-height: 1.6;
}
.p-top-about__detail {
  position: absolute;
  color: #fff;
  right: 2rem;
  bottom: 2rem;
  padding-right: 2rem;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .p-top-about__detail {
    right: 1.5rem;
  }
}
.p-top-about__detail-arrow {
  position: absolute;
  right: 0.5rem;
  bottom: -0.55rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1023px) {
  .p-top-about__detail-arrow {
    right: 0.25rem;
  }
}
.p-top-about__detail::before {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  right: -0.5rem;
  bottom: -1rem;
  background-color: #6BBAD9;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-top-about__detail::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.p-top-about__detail::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2px;
  background-color: #fff;
  top: calc(50% + 2px);
  right: 0.5rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .p-top-about__detail::after {
    right: 0.25rem;
  }
}
.p-top-about__detail-text {
  position: absolute;
  white-space: nowrap;
  right: 2rem;
  bottom: 0;
}
.p-top-about__detail--half::after {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__detail--half::after {
    width: 5.5rem;
  }
}
.p-top-about__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-about__row {
    grid-template-columns: 1fr;
  }
}
.p-top-about__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 10vh 1rem 1rem;
  color: #fff;
  background-color: #6BBAD9;
  border-radius: 10px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s ease;
}
.p-top-about__col:hover {
  opacity: 0.6;
}
.p-top-about__col::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  -webkit-mask-image: linear-gradient(-70deg, #000 16%, #000 18%, transparent 75%);
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(-70deg, #000 16%, #000 18%, transparent 75%);
  mask-size: 100% 100%;
}
.p-top-about__col:first-child::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/about01.webp);
}
.p-top-about__col:nth-child(2)::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/about02.webp);
}
.p-top-about__col:last-child::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/themes/phrc/assets/images/about03.webp);
}
.p-top-about__title {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: bold;
  z-index: 1;
}

.p-top-news {
  padding: 6rem 0;
}
@media screen and (max-width: 1023px) {
  .p-top-news {
    padding: 4rem 0;
  }
}
.p-top-news::before {
  background: linear-gradient(130deg, #FFFAFE 50%, #D8F6FD 100%) !important;
}

.p-top-magazine {
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 1023px) {
  .p-top-magazine {
    padding: 4rem 0;
  }
}
.p-top-magazine::before {
  background: linear-gradient(180deg, #fff 40%, #E8F3F9 100%) !important;
}
.p-top-magazine__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (min-width: 1600px) {
  .p-top-magazine__inner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-magazine__inner {
    padding: 0 1.5rem;
  }
}
.p-top-magazine__link {
  display: block;
  transition: all 0.3s ease;
}
.p-top-magazine__link:hover {
  opacity: 0.8;
}
.p-top-magazine img {
  display: block;
  margin: auto;
}

.p-news-block {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 48px !important;
  z-index: 2;
}
.p-news-block::before {
  background: linear-gradient(-180deg, #fff 38%, #E8F3F9 100%) !important;
}

.p-news-inner {
  position: relative;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 1599px) {
  .p-news-inner {
    max-width: 1200px;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-news-inner {
    padding: 0 1.5rem;
  }
}

.p-news-placeholder {
  max-width: 1000px;
  margin: auto;
}
.p-news-placeholder__category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-news-placeholder__category {
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.p-news-placeholder__category-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #6BBAD9;
  padding: 0.5rem 1.5rem;
  border: 1px solid #6BBAD9;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  height: stretch;
}
.p-news-placeholder__category-label.is-active, .p-news-placeholder__category-label:hover {
  background-color: #6BBAD9;
  color: #fff;
}
.p-news-placeholder__panel {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  padding: 1rem 0;
}
@media screen and (max-width: 1023px) {
  .p-news-placeholder__panel {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.p-news-placeholder__head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-news-placeholder__head {
    flex-wrap: wrap;
  }
}
.p-news-placeholder__head-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .p-news-placeholder__head-category {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-news-placeholder__label {
  background-color: #E5E5E5;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  width: 10rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-news-placeholder__label {
    width: max-content;
  }
}
.p-news-placeholder__label.is-limit {
  background-color: #F18796;
  color: #fff;
}
.p-news-placeholder__body {
  padding: 0.5rem 0;
}
.p-news-placeholder__body a {
  line-height: 1.6;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.p-news-placeholder__body a:hover {
  text-decoration: none;
  color: #6BBAD9;
}
.p-news-placeholder__detail {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.p-news-grid {
  display: grid;
  grid-template-columns: 75% 1fr;
  gap: 2rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-news-grid {
    display: flex;
    gap: 2rem;
    flex-direction: column-reverse;
    padding-bottom: 4rem;
  }
}

.p-news-archive__inner {
  padding: 4rem 2rem 2rem;
}
@media screen and (max-width: 1023px) {
  .p-news-archive__inner {
    padding: 2rem 1.5rem;
  }
}
.p-news-archive__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  padding-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-news-archive__item {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.p-news-archive__item + .p-news-archive__item {
  margin-top: 2.5rem;
}
.p-news-archive__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
@media screen and (min-width: 1024px) {
  .p-news-archive__head {
    width: 20%;
    flex-direction: column;
    align-items: start;
  }
}
.p-news-archive__category {
  background-color: #F2F2F2;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-size: 0.85rem;
  width: max-content;
  max-width: 180px;
}
@media screen and (max-width: 1023px) {
  .p-news-archive__category {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
}
.p-news-archive__category.is-limit {
  background-color: #F18796;
  color: #fff;
}
.p-news-archive__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-news-archive__body {
    width: 80%;
  }
}
.p-news-archive__title {
  line-height: 1.8;
  font-size: 1rem;
}
.p-news-archive__text {
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-news-archive__footer {
  margin-top: 2rem;
}

.p-news-sidebar__title {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-news-sidebar__title {
    display: none;
  }
}
.p-news-sidebar__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 2rem;
  height: 3px;
  background-color: #6BBAD9;
}
.p-news-sidebar__list {
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-news-sidebar__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.p-news-sidebar__item {
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
}
@media screen and (max-width: 1023px) {
  .p-news-sidebar__item {
    color: #6BBAD9;
    background-color: #fff;
    border: 1px solid #6BBAD9;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
}
.p-news-sidebar__link {
  display: block;
  padding: 1rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-news-sidebar__link {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    width: 100%;
  }
}
.p-news-sidebar__link:hover {
  color: #6BBAD9;
}

.p-personal-health-record__pers {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
.p-personal-health-record__pers-text {
  display: flex;
  gap: 4rem;
  align-items: end;
  padding: 0 2rem;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record__pers-text {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.p-personal-health-record__pers-image-link {
  position: relative;
  display: inline-block;
}
.p-personal-health-record__pers-image-link::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.p-personal-health-record__pers-image-link {
  transition: all 0.3s ease;
}
.p-personal-health-record__pers-image-link:hover::before {
  opacity: 1;
}
.p-personal-health-record__pers-image-link:hover span {
  background-color: rgba(0, 0, 0, 0.6);
}
.p-personal-health-record__pers-image-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record__pers-image-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.p-personal-health-record__pers-image-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #fff;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record__pers-image-icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.p-personal-health-record__pers-image-icon small {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 60%;
}
.p-personal-health-record__pers-block {
  display: flex;
  flex-direction: column;
  width: 50rem;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record__pers-block {
    position: relative;
    flex-direction: initial;
    width: auto;
  }
}
.p-personal-health-record__pers-icon {
  position: relative;
  left: -10%;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record__pers-icon {
    position: absolute;
    left: 0;
    top: -1.5rem;
    width: 50%;
  }
}
.p-personal-health-record__pers-title {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record__pers-title {
    padding-top: 15%;
  }
}

.p-personal-health-record-about {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-radius: 0 0 50px 50px;
  padding: 4rem 0;
}

.p-personal-health-record-lifestyle {
  margin-top: 2rem;
}
.p-personal-health-record-lifestyle__block {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-radius: 10px;
  padding: 1rem 1rem 2rem;
  margin-bottom: 2rem;
}
.p-personal-health-record-lifestyle__block-text {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.p-personal-health-record-lifestyle__image {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-personal-health-record-lifestyle__image {
    flex-direction: column;
    align-items: center;
  }
}
.p-personal-health-record-lifestyle__movie {
  position: relative;
  padding-top: 56.25%;
}
.p-personal-health-record-lifestyle__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-personal-health-record-lifestyle_archive {
  padding-bottom: 6rem;
}
.p-personal-health-record-lifestyle_archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record-lifestyle_archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 539px) {
  .p-personal-health-record-lifestyle_archive__list {
    grid-template-columns: 1fr;
  }
}
.p-personal-health-record-lifestyle_archive__item {
  background-color: #fff;
  border: 1px solid rgba(63, 76, 86, 0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record-lifestyle_archive__item {
    padding: 2rem 1.5rem;
  }
}
.p-personal-health-record-lifestyle_archive__item > a {
  margin-top: auto;
}
.p-personal-health-record-lifestyle_archive__block {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.p-personal-health-record-lifestyle_archive__block > a {
  margin-top: auto;
}
.p-personal-health-record-lifestyle_archive__title {
  color: #6BBAD9;
  font-size: 1.2rem;
  line-height: 1.35;
}
@media screen and (min-width: 1024px) {
  .p-personal-health-record-lifestyle_archive__title {
    min-height: 2.7em;
    font-size: 1.6rem;
  }
}
.p-personal-health-record-lifestyle_archive__company {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
.p-personal-health-record-lifestyle_archive__description {
  position: relative;
  margin-bottom: 2.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.p-personal-health-record-lifestyle_archive__description.is-expanded p {
  height: auto;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}
.p-personal-health-record-lifestyle_archive__more {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
}
.p-personal-health-record-lifestyle_archive__more::after {
  content: "";
  display: inline-block;
  border: solid #3f4c56;
  border-width: 0 2px 2px 0;
  margin-left: 1rem;
  padding: 3px;
  transform: translateY(-50%) rotate(45deg);
}
.p-personal-health-record-lifestyle_archive__description.is-expanded .p-personal-health-record-lifestyle_archive__more::after {
  transform: translateY(-50%) rotate(-135deg);
}
.p-personal-health-record-lifestyle_archive p {
  font-size: 0.95rem;
}

.p-personal-health-record-support {
  padding-top: 6rem;
}

.p-personal-health-record-discussion {
  padding: 4rem 0 6rem;
}

.p-personal-health-record-report {
  padding-bottom: 6rem;
}
.p-personal-health-record-report__list {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record-report__list {
    flex-direction: column;
  }
}
.p-personal-health-record-report__item {
  position: relative;
  width: 33%;
  background-color: #fff;
  padding: 2.5rem 2.5rem 1rem;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record-report__item {
    width: 100%;
    padding: 1.5rem 1.5rem 1rem;
  }
}
.p-personal-health-record-report__slide {
  position: relative;
  min-width: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
}
.p-personal-health-record-report__slide .swiper-button-next, .p-personal-health-record-report__slide .swiper-button-prev {
  top: 50%;
}
.p-personal-health-record-report__slide .swiper-button-next::after, .p-personal-health-record-report__slide .swiper-button-prev::after {
  font-size: 1.4rem;
  color: #3f4c56;
  transition: all 0.3s;
}
.p-personal-health-record-report__slide .swiper-button-next:hover::after, .p-personal-health-record-report__slide .swiper-button-prev:hover::after {
  color: #6BBAD9;
}
.p-personal-health-record-report__slide .swiper-button-next {
  left: 100%;
}
.p-personal-health-record-report__slide .swiper-button-prev {
  left: auto;
  right: 100%;
}
.p-personal-health-record-report__slide .swiper-pagination {
  top: calc(100% + 1.5rem);
}
.p-personal-health-record-report__item {
  min-width: 0;
  background-color: #fff;
}
.p-personal-health-record-report__title {
  color: #6BBAD9;
  font-size: 1.6rem;
}
.p-personal-health-record-report__overview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.p-personal-health-record-report__text {
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: underline;
}
.p-personal-health-record-report__button {
  width: 30%;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .p-personal-health-record-report__button {
    width: 100%;
  }
}

.p-member__contents {
  padding: 2rem 0 6rem;
}
.p-member__list {
  display: grid;
  gap: 0 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
}
.p-member__list a {
  text-decoration: underline;
}
.p-member__list a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-member__list {
    grid-template-columns: auto;
  }
}

.p-recruiting-intro {
  padding-bottom: 2rem;
}
.p-recruiting-intro__lead {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-recruiting-intro__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-intro__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 539px) {
  .p-recruiting-intro__row {
    grid-template-columns: auto;
  }
}
.p-recruiting-intro__column {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20vh 1.5rem 1.5rem;
  color: #fff;
  background: linear-gradient(120deg, #6BBAD9 30%, #F2D8FF);
  border-radius: 10px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-intro__column {
    padding: 1rem;
    height: 200px;
    justify-content: end;
  }
}
.p-recruiting-intro__column::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
  -webkit-mask-image: linear-gradient(-160deg, #000 16%, #000 18%, transparent 60%);
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(-160deg, #000 16%, #000 18%, transparent 60%);
  mask-size: 100% 100%;
  opacity: 0.6;
}
.p-recruiting-intro__column:first-child::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/uploads/2026/04/recruiting01.webp);
}
.p-recruiting-intro__column:nth-child(2)::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/uploads/2026/04/recruiting02.webp);
}
.p-recruiting-intro__column:nth-child(3)::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/uploads/2026/04/recruiting03.webp);
}
.p-recruiting-intro__column:last-child::before {
  background-image: url(http://phrc.an-yaku.com/wp-content/uploads/2026/04/recruiting04.webp);
}
.p-recruiting-intro__text {
  position: relative;
  z-index: 2;
}
.p-recruiting-intro__title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-intro__title {
    font-size: 1.2rem;
  }
}

.p-recruiting-merit__row {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruiting-merit__row {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}
.p-recruiting-merit__title {
  background-color: #fff;
  color: #6BBAD9;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  height: 7rem;
  line-height: 1.4;
  gap: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-merit__title {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    height: auto;
  }
}
.p-recruiting-merit__title img {
  width: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-merit__title img {
    width: 2rem;
  }
}
.p-recruiting-merit p {
  padding: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-merit p {
    padding: 1.2rem;
  }
}

.p-recruiting-about {
  padding-bottom: 4rem;
}
.p-recruiting-about__inner {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-radius: 10px;
  margin: 0 auto;
  padding: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-about__inner {
    padding: 2rem 1rem;
    margin: 0 1rem;
  }
}
.p-recruiting-about img {
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.p-recruiting-guid {
  background: linear-gradient(135deg, #D8F6FD 20%, #F6F0F5 80%);
  border-radius: 50px 50px 0 0;
  padding-bottom: 6rem;
}
.p-recruiting-guid__row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruiting-guid__row {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.p-recruiting-guid__column {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-guid__column {
    padding: 2rem 1rem;
  }
}
.p-recruiting-guid__label {
  position: absolute;
  top: 10px;
  left: 1rem;
  transform: translateY(-50%);
  border: 5px solid #6BBAD9;
  border-radius: 50%;
  background-color: #fff;
  color: #6BBAD9;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  width: 8rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-guid__label {
    width: 6rem;
    font-size: 0.7rem;
    border-width: 2px;
  }
}
.p-recruiting-guid__title {
  color: #6BBAD9;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-guid__title {
    font-size: 1.4rem;
  }
}
.p-recruiting-guid__notice {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-radius: 20px;
  padding: 1rem;
  line-height: 2;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-recruiting-guid__list {
  padding-left: 1rem;
  color: #fff;
  font-weight: bold;
}
.p-recruiting-guid__description {
  font-weight: bold;
  line-height: 2;
}
.p-recruiting-guid__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(217.1518987342, 220.9367088608, 223.8481012658);
  border-radius: 20px;
  padding: 1rem;
}
.p-recruiting-guid__price-column {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-guid__price-column {
    justify-content: left;
  }
}
.p-recruiting-guid__price-label {
  color: #6BBAD9;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-guid__price-label {
    font-size: 1rem;
    width: auto;
  }
}
.p-recruiting-guid__price-value {
  font-size: 2.2rem;
  font-weight: bold;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-guid__price-value {
    font-size: 1.4rem;
  }
}
.p-recruiting-guid__button {
  display: flex;
  justify-content: center;
}

.p-recruiting-flow {
  background-color: rgb(66.4193548387, 167.0806451613, 206.5806451613);
  border-radius: 50px 50px 0 0;
  padding-bottom: 6rem;
}
.p-recruiting-flow__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-flow__row {
    margin-top: 2rem;
  }
}
.p-recruiting-flow__column {
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-flow__column {
    padding: 2rem 1rem;
    flex-direction: column;
  }
}
.p-recruiting-flow__heading {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-flow__heading {
    gap: 1rem;
  }
}
.p-recruiting-flow__label {
  background-color: #6BBAD9;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-flow__label {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.p-recruiting-flow__label > span {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-flow__label > span {
    font-size: 1.6rem;
  }
}
.p-recruiting-flow__title {
  color: #6BBAD9;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .p-recruiting-flow__title {
    font-size: 1.4rem;
  }
}
.p-recruiting-flow__button {
  min-width: 300px;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-recruiting-flow__button {
    min-width: 100%;
  }
}
.p-recruiting-flow__foot {
  margin-top: 3rem;
  text-align: center;
  color: #fff;
}
.p-recruiting-flow__foot-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.p-recruiting-flow__foot p {
  line-height: 1.8;
}

.p-aboutus__table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
  margin-bottom: 2rem;
}
.p-aboutus__table th, .p-aboutus__table td {
  border: 2px solid rgba(63, 76, 86, 0.2);
  text-align: left;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-aboutus__table th, .p-aboutus__table td {
    padding: 1rem;
    max-width: 200px;
  }
}

.p-aboutus-intro {
  padding-bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-aboutus-intro {
    padding-bottom: 2rem;
  }
}
.p-aboutus-intro__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-aboutus-intro__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-aboutus-member {
  padding-bottom: 4rem;
}

.p-aboutus-greeting {
  padding-bottom: 4rem;
}
.p-aboutus-greeting::before {
  border-top-left-radius: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-aboutus-greeting::before {
    border-top-left-radius: 3rem;
  }
}
.p-aboutus-greeting__row {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-aboutus-greeting__row {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-aboutus-greeting__image {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-aboutus-greeting__image {
    min-width: 400px;
  }
}
.p-aboutus-greeting__image img {
  margin: auto;
}
.p-aboutus-greeting__message {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-aboutus-greeting__message p {
  line-height: 1.8;
}

.p-aboutus-phr {
  padding-bottom: 6rem;
}
.p-aboutus-phr__image img {
  margin: auto;
}
.p-aboutus-phr__button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.p-active-report {
  padding-bottom: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-active-report {
    padding-bottom: 4rem;
  }
}
.p-active-report__head {
  margin-bottom: 4rem;
  line-height: 1.8;
}
.p-active-report__image img {
  width: 100%;
}
.p-active-report__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 1.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-active-report__list {
    grid-template-columns: repeat(2, auto);
    gap: 2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-active-report__list {
    grid-template-columns: 1fr;
  }
}
.p-active-report__list.swiper {
  display: block;
}
.p-active-report__list .swiper-wrapper {
  display: flex;
}
.p-active-report__list .swiper-slide {
  width: auto;
  min-width: 0;
}
.p-active-report__item {
  position: relative;
  background-color: #fff;
  padding: 2.5rem 2.5rem 1rem;
}
@media screen and (max-width: 1023px) {
  .p-active-report__item {
    width: 100%;
    padding: 1.5rem 1.5rem 1rem;
  }
}
.p-active-report__slide {
  position: relative;
  min-width: 100%;
  max-width: 100%;
  margin-bottom: 8rem;
}
.p-active-report__slide .swiper-button-next, .p-active-report__slide .swiper-button-prev {
  top: 50%;
}
.p-active-report__slide .swiper-button-next::after, .p-active-report__slide .swiper-button-prev::after {
  font-size: 1.4rem;
  color: #3f4c56;
  transition: all 0.3s;
}
.p-active-report__slide .swiper-button-next:hover::after, .p-active-report__slide .swiper-button-prev:hover::after {
  color: #6BBAD9;
}
.p-active-report__slide .swiper-button-next {
  left: 100%;
}
.p-active-report__slide .swiper-button-prev {
  left: auto;
  right: 100%;
}
.p-active-report__slide .swiper-pagination {
  top: calc(100% + 1.5rem);
}
.p-active-report__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}
.p-active-report__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-active-report__item {
  min-width: 0;
  background-color: #fff;
}
.p-active-report__title {
  color: #6BBAD9;
  font-size: 1.6rem;
}
.p-active-report__overview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-active-report__text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
}
.p-active-report__button {
  width: 30%;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .p-active-report__button {
    width: 100%;
  }
}
.p-active-report--active::before {
  background: linear-gradient(130deg, #FFFAFE 50%, #D8F6FD 100%);
}

.p-activities__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-activities__list a {
  text-decoration: underline;
}
.p-activities__list a:hover {
  text-decoration: none;
}

.p-activities-transition {
  padding-bottom: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-activities-transition {
    padding-bottom: 6rem;
  }
}

.p-login__block {
  padding: 8rem 0;
}
.p-login__card {
  max-width: 650px;
}
.p-login__title {
  text-align: center;
}
.p-login__explanation {
  text-align: center;
  margin: 1rem 0 2rem;
}
.p-login__form {
  margin-bottom: 1rem;
}
.p-login__form-block {
  margin-bottom: 2rem;
}
.p-login__text {
  background-color: #f7f7f7;
  border: none;
  border-radius: 10px;
  margin-top: 0.5rem;
  padding: 0.8rem;
  width: 100%;
  font-size: 1.2rem;
}
.p-login__foot {
  margin: 2rem 0;
}
.p-login__registration {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(63, 76, 86, 0.2);
}
.p-login__registration-btn {
  display: block;
  border: 2px solid rgba(63, 76, 86, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease;
}
.p-login__registration-btn:hover {
  background-color: rgba(247, 247, 247, 0.6);
}

.p-mypage-grid {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-mypage-grid {
    display: block;
  }
}

.p-mypage-content {
  padding: 6rem 4rem 8rem;
  width: 100%;
  max-width: 80vw;
}
@media screen and (max-width: 1279px) {
  .p-mypage-content {
    max-width: 100%;
    padding: 6rem 2rem 8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-mypage-content {
    max-width: 100%;
    padding: 3rem 1.5rem calc(64px + env(safe-area-inset-bottom));
  }
}
@media screen and (max-width: 767px) {
  .p-mypage-content {
    max-width: 100%;
    padding: 3rem 1.5rem calc(64px + env(safe-area-inset-bottom));
  }
}
@media screen and (max-width: 539px) {
  .p-mypage-content {
    max-width: 100%;
    padding: 3rem 1.5rem calc(64px + env(safe-area-inset-bottom));
  }
}

.p-mypage-top {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1023px) {
  .p-mypage-top {
    grid-template-columns: auto;
  }
}
.p-mypage-top__link {
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: #fff;
  border: 2px solid rgba(63, 76, 86, 0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  height: stretch;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .p-mypage-top__link {
    gap: 0.5rem;
    padding: 1rem;
  }
}
.p-mypage-top__link:hover {
  background-color: #f7f7f7;
}
.p-mypage-top__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-mypage-top__title {
  color: #6BBAD9;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-mypage-top__title {
    font-size: 1rem;
  }
}
.p-mypage-top p {
  font-size: 0.9rem;
}

.p-mypage-info {
  display: flex;
  flex-direction: column;
}
.p-mypage-info + .p-mypage-info {
  margin-top: 6rem;
}
.p-mypage-info__card {
  max-width: 700px;
}
.p-mypage-info__title {
  color: #6BBAD9;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-mypage-info__title {
    font-size: 1.6rem;
  }
}
.p-mypage-info__heading {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(63, 76, 86, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-mypage-info__subtitle {
  font-size: 1.2rem;
}
.p-mypage-info__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1rem;
}
.p-mypage-info__form-block {
  background-color: #F9FAFB;
  border-radius: 10px;
  padding: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-mypage-info__form-block {
    padding: 2rem 1rem;
  }
}
.p-mypage-info__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-mypage-info__block + .p-mypage-info__block {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(63, 76, 86, 0.2);
}
.p-mypage-info__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-mypage-info__row {
    grid-template-columns: auto;
  }
}
.p-mypage-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-mypage-info__item-value {
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 4px;
  background-color: #fff;
  padding: 1rem;
}
.p-mypage-info__expansion {
  display: flex;
  justify-content: space-between;
}
.p-mypage-info__expansion-title {
  font-weight: 400;
}
.p-mypage-info__expansion-delete {
  background-color: transparent;
  border: none;
  color: #FB2C36;
  font-size: 0.9rem;
  cursor: pointer;
}
.p-mypage-info__button {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  max-width: max-content;
  font-size: unset;
}
.p-mypage-info__submit {
  width: 50%;
}

.p-mypage-success {
  background-color: #D8F6FD;
  color: #55aeca;
  margin-bottom: 2rem;
  padding: 1rem;
  font-weight: bold;
}

.p-mypage-archive {
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
.p-mypage-archive__head {
  background-color: #F9FAFB;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  padding: 4rem 1.5rem;
}
.p-mypage-archive__title {
  margin-bottom: 1rem;
}
.p-mypage-archive__category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-mypage-archive__category-button {
  background-color: #fff;
  border: 1px solid rgba(63, 76, 86, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.p-mypage-archive__category-button.is-active {
  background-color: #6BBAD9;
  color: #fff;
  border-color: #6BBAD9;
  box-shadow: 3px 3px 5px rgba(63, 76, 86, 0.2);
}
.p-mypage-archive.is-filtering .p-mypage-archive__category-button {
  pointer-events: none;
}
.p-mypage-archive__category-count {
  margin-left: 0.25rem;
  font-size: 0.9em;
  opacity: 0.85;
}
.p-mypage-archive__body {
  padding: 0 2rem 2rem;
  opacity: 1;
  transition: opacity 0.22s ease;
}
.p-mypage-archive__body.is-loading {
  opacity: 0;
}
.p-mypage-archive__item {
  padding: 2rem 0;
}
.p-mypage-archive__item + .p-mypage-archive__item {
  border-top: 1px solid rgba(63, 76, 86, 0.2);
}
.p-mypage-archive__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.p-mypage-archive__label.is-presentation {
  background-color: #DBEAFE;
  color: #1447E6;
}
.p-mypage-archive__label.is-promotion {
  background-color: #DCFCE7;
  color: #008236;
}
.p-mypage-archive__label.is-improve {
  background-color: #F3E8FF;
  color: #8200DB;
}
.p-mypage-archive__label.is-implementation {
  background-color: #FFEDD4;
  color: #CA3500;
}
.p-mypage-archive__label.is-guidelines {
  background-color: #FCE7F3;
  color: #C6005C;
}
.p-mypage-archive__label.is-disaster {
  background-color: #CEFAFE;
  color: #007595;
}
.p-mypage-archive__text {
  margin: 1rem 0 1.2rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p-mypage-archive__foot {
  display: flex;
  justify-content: end;
  padding: 0 1.5rem;
}

.p-disaster-heading {
  position: relative;
  padding: 8rem 2rem;
  margin: 0 auto 6rem;
  max-width: 1400px;
}
@media screen and (max-width: 1279px) {
  .p-disaster-heading {
    padding: 6rem 2rem;
    margin: 0 auto 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-disaster-heading {
    padding: 4rem 1.5rem;
    margin: 0 auto 2rem;
  }
}
.p-disaster-heading::before {
  background-color: #fff;
  height: 100%;
  z-index: 1;
}
.p-disaster-heading__inner {
  position: relative;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 1599px) {
  .p-disaster-heading__inner {
    max-width: 1200px;
  }
}
.p-disaster-heading img {
  width: 80%;
  height: auto;
  display: block;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .p-disaster-heading img {
    width: 100%;
  }
}

.p-disaster-intro {
  position: relative;
  padding: 6rem 48px 172px;
}
@media screen and (max-width: 1023px) {
  .p-disaster-intro {
    padding: 6rem 32px 72px;
  }
}
@media screen and (max-width: 767px) {
  .p-disaster-intro {
    padding: 4rem 0;
  }
}
.p-disaster-intro::before {
  background: linear-gradient(135deg, #D8F6FD 20%, #F6F0F5 80%);
}
.p-disaster-intro__lead {
  margin: 0 0 2.6rem;
  color: #3f4c56;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.45;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .p-disaster-intro__lead {
    margin: 0 0 2rem;
  }
}
.p-disaster-intro__placeholder {
  display: flex;
  gap: 32px;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .p-disaster-intro__placeholder {
    flex-direction: column-reverse;
    gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-disaster-intro__content {
    max-width: 60%;
  }
}
.p-disaster-intro__content p {
  margin: 0 0 14px;
  color: #3f4c56;
  line-height: 1.9;
}
.p-disaster-intro__content p:last-child {
  margin-bottom: 0;
}
.p-disaster-intro__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(63, 76, 86, 0.2);
  color: #6b7882;
  font-size: 14px;
}
.p-disaster-intro__note a {
  color: #3f88bc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-disaster-intro__note a:hover {
  text-decoration: none;
}
.p-disaster-intro__visual {
  position: absolute;
  top: 0;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-disaster-intro__visual {
    position: relative;
    top: auto;
    right: 0;
  }
}
.p-disaster-intro__phone-mock {
  max-width: 25vw;
  margin: 0 auto 16px;
}
@media screen and (max-width: 1023px) {
  .p-disaster-intro__phone-mock {
    max-width: 280px;
  }
}
@media screen and (max-width: 539px) {
  .p-disaster-intro__phone-mock {
    max-width: 180px;
  }
}
.p-disaster-intro__phone-mock img {
  width: 100%;
  height: auto;
  display: block;
}
.p-disaster-intro__release-date {
  margin: 0 0 10px;
  color: #3f4c56;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}
.p-disaster-intro__store-buttons {
  display: flex;
  gap: 10px;
}
.p-disaster-intro__store-buttons a {
  display: inline-block;
}
.p-disaster-intro__store-buttons img {
  width: 176px;
  height: auto;
  display: block;
}

.p-disaster-overview {
  padding: 6rem 0;
}
@media screen and (max-width: 1023px) {
  .p-disaster-overview {
    padding: 4rem 0;
  }
}
.p-disaster-overview::before {
  background: linear-gradient(130deg, #FFFAFE 50%, #D8F6FD 100%) !important;
}

.p-disaster-features {
  padding: 6rem 0;
}
@media screen and (max-width: 1023px) {
  .p-disaster-features {
    padding: 4rem 0;
  }
}
.p-disaster-features::before {
  background: linear-gradient(-180deg, #fff 38%, #E8F3F9 100%) !important;
}
.p-disaster-features__inner img {
  margin: auto;
  display: block;
}

.p-disaster-report {
  padding: 6rem 4rem 8rem;
}
@media screen and (max-width: 1279px) {
  .p-disaster-report {
    padding: 6rem 2rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-disaster-report {
    padding: 3rem 1rem calc(6rem + env(safe-area-inset-bottom));
  }
}
.p-disaster-report::before {
  background: linear-gradient(-180deg, #fff 38%, #E8F3F9 100%) !important;
}

.app-outline-block,
.app-features-block,
.app-development-block {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 48px 72px;
  z-index: 2;
}

.app-outline-block,
.app-development-block {
  border-radius: 44px 44px 0 0;
}

.app-features-block {
  border-radius: 44px 0 0 0;
}

.app-development-block {
  background: linear-gradient(-180deg, #fff 38%, #E8F3F9 100%);
}

.app-development-placeholder {
  max-width: 1000px;
  margin: auto;
}
.app-development-placeholder__panel {
  display: flex;
  gap: 4rem;
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  padding: 2rem 0;
}
@media screen and (max-width: 1023px) {
  .app-development-placeholder__panel {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.app-development-placeholder__head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.app-development-placeholder__body a {
  text-decoration: underline;
  line-height: 1.8;
  transition: color 0.3s;
}
.app-development-placeholder__body a:hover {
  text-decoration: none;
  color: #6BBAD9;
}
.app-development-placeholder__label {
  background-color: #E5E5E5;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  width: max-content;
}
.app-development-placeholder__detail {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .site-main .app-intro-block {
    padding: 48px 24px;
  }
  .site-main .app-intro-block .app-intro-inner {
    grid-template-columns: 1fr;
  }
  .site-main .app-intro-block .app-intro-visual {
    margin-top: 16px;
  }
  .site-main .app-outline-block {
    padding: 48px 24px !important;
  }
  .site-main .app-features-block,
  .site-main .app-development-block {
    padding: 48px 24px !important;
  }
}
@media (max-width: 640px) {
  .site-main .app-intro-block {
    border-radius: 28px;
    margin-bottom: 48px;
  }
  .site-main .app-intro-block .app-intro-title {
    font-size: 30px;
  }
  .site-main .app-intro-block .app-intro-lead {
    font-size: 20px;
  }
  .site-main .app-intro-block .app-intro-content p {
    font-size: 14px;
    line-height: 1.8;
  }
  .site-main .app-intro-block .app-store-buttons img {
    width: 160px;
  }
  .site-main .app-outline-block {
    border-radius: 28px 28px 0 0;
  }
  .site-main .app-outline-block .app-outline-title {
    font-size: 30px;
  }
  .site-main .app-features-block {
    border-radius: 28px 0 0 0;
  }
  .site-main .app-development-block {
    border-radius: 28px 28px 0 0;
  }
  .site-main .app-features-title,
  .site-main .app-development-title {
    font-size: 30px;
  }
  .site-main .js-2section::before {
    width: calc(100% + 24px);
  }
  .site-main .js-2section.is-stack-right::before {
    right: -24px;
    border-top-right-radius: 64px;
  }
  .site-main .js-2section.is-stack-left::before {
    left: -24px;
    border-top-left-radius: 64px;
  }
}
.p-privacypolicy {
  padding-bottom: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-privacypolicy {
    padding-bottom: 6rem;
  }
}
.p-privacypolicy__list {
  padding-left: 1.5rem;
  line-height: 2;
}
.p-privacypolicy__list li {
  margin-bottom: 2rem;
}

.p-privacypolicy-date {
  margin-bottom: 2rem;
}

.p-contact__attention {
  margin: auto;
  padding-bottom: 4rem;
  max-width: 600px;
  line-height: 1.6;
  color: #717182;
}
@media screen and (max-width: 767px) {
  .p-contact__attention {
    padding-bottom: 2rem;
  }
}
.p-contact__attention h3 {
  margin-bottom: 0.5rem;
}
.p-contact__attention ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.p-contact__attention p + p {
  margin-top: 2rem;
}
.p-contact__attention a {
  text-decoration: underline;
}
.p-contact__attention a:hover {
  text-decoration: none;
}

.p-apply-flow {
  margin-bottom: 4rem;
}
.p-apply-flow__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-apply-flow__list {
    gap: 1rem;
  }
}
.p-apply-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-apply-flow__item {
    gap: 0.5rem;
    font-size: 0.65rem;
  }
}
.p-apply-flow__item span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #6BBAD9;
  border-radius: 50%;
  color: #6BBAD9;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .p-apply-flow__item span {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
.p-apply-flow__item span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: calc(100% + 4px);
  height: 2px;
  background-color: #6BBAD9;
}
.p-apply-flow__item[data-step="5"] span::before {
  display: none;
}
.p-apply-flow__item.is-active {
  color: #6BBAD9;
  font-weight: bold;
}
.p-apply-flow__item.is-active span {
  background-color: #6BBAD9;
  color: #fff;
}
.p-apply-flow__item.is-done {
  color: rgba(63, 76, 86, 0.2);
  font-weight: bold;
}
.p-apply-flow__item.is-done span {
  background-color: rgba(63, 76, 86, 0.2);
  color: rgba(63, 76, 86, 0.2);
  border-color: #6b7882;
}
.p-apply-flow__item.is-done span::before {
  background-color: #6b7882;
}

.p-apply-lead {
  margin-bottom: 3rem;
  color: #6b7882;
}
@media screen and (max-width: 1023px) {
  .p-apply-lead {
    margin-bottom: 1.5rem;
  }
}

.p-search {
  padding-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-search {
    padding-top: 4rem;
  }
}

.p-search-archive {
  padding-bottom: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-search-archive {
    padding-bottom: 6rem;
  }
}
.p-search-archive__inner {
  padding: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-search-archive__inner {
    padding: 2rem 1.5rem;
  }
}
.p-search-archive__heading {
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-search-archive__heading {
    font-size: 1.6rem;
  }
}
.p-search-archive__item {
  border-bottom: 1px solid rgba(63, 76, 86, 0.2);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.p-search-archive__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-search-archive__title {
    font-size: 1rem;
  }
}
.p-search-archive__text {
  margin-bottom: 1rem;
}

.p-404 {
  padding-bottom: 8rem;
}
@media screen and (max-width: 1023px) {
  .p-404 {
    padding-bottom: 6rem;
  }
}
.p-404__button {
  margin-top: 4rem;
  max-width: 30%;
}
@media screen and (max-width: 1023px) {
  .p-404__button {
    margin-top: 2rem;
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */