@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

.u-blue {
  color: #4B73B9;
}

.u-dark-blue {
  color: #202972;
}

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

.u-fs-14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 500px) {
  .u-fs-14 {
    font-size: 0.75rem;
  }
}

.u-mt-15 {
  margin-top: 0.9375rem;
}

.u-mt-20 {
  margin-top: 1.25rem;
}

.u-mt-25 {
  margin-top: 1.5625rem;
}

.u-mt-40 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 500px) {
  .u-mt-40 {
    margin-top: 1.25rem;
  }
}

.u-mt-55 {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 500px) {
  .u-mt-55 {
    margin-top: 2.1875rem;
  }
}

.u-mt-65 {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 500px) {
  .u-mt-65 {
    margin-top: 2.5rem;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/* バナー
------------------------------------------------ */
.c-banner {
  width: min(100%, 65.5625rem);
  padding: 1.875rem 3.125rem;
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-banner {
    width: 70%;
    padding: 0.625rem 0.9375rem;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
}

.c-banner__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-banner__text {
    gap: 0.625rem;
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .c-banner__text {
    width: 100%;
  }
}
.c-banner__text > span {
  display: block;
}
.c-banner__text .top {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2A3165;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-banner__text .top {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 500px) {
  .c-banner__text .top {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.c-banner__text .bottom {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-banner__text .bottom {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 500px) {
  .c-banner__text .bottom {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.c-banner__tel {
  flex: 0 0 26.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  background-color: #2A3165;
  border-radius: 1.25rem;
  padding: 1.25rem 1.875rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-banner__tel {
    flex: 0 0 auto;
    width: 90%;
    padding: 0.625rem 0.9375rem;
    gap: 0;
  }
}
@media screen and (max-width: 500px) {
  .c-banner__tel {
    width: 100%;
  }
}
.c-banner__tel-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.c-banner__tel-icon {
  display: block;
  width: 2.125rem;
  height: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-banner__tel-icon {
    width: 1.5rem;
    height: 2.1875rem;
  }
}
.c-banner__tel-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-banner__tel-top-text {
  display: block;
  width: 100%;
  height: 100%;
}
.c-banner__tel-top-text img {
  width: 100%;
  height: 100%;
  aspect-ratio: 312/36;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-banner__tel-bottom {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.c-banner__tel-bottom-text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-banner__tel-bottom-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* パンくず
------------------------------------------------ */
.c-breadclumb {
  width: 100%;
  padding: 0.875rem 2.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  border-top: 1px solid #e5e5e5;
  color: #333;
  overflow-x: hidden; /* 必要に応じて親要素にも設定 */
}
@media screen and (max-width: 767px) {
  .c-breadclumb {
    padding: 0.625rem 1.25rem;
    font-size: 0.625rem;
    margin-top: 0.625rem;
  }
}
@media (any-hover: hover) {
  .c-breadclumb a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.c-breadclumb__wrap {
  overflow-x: auto; /* 横スクロールを有効にする */
  white-space: nowrap; /* 子要素を横一列に並べる */
}

.c-breadclumb__wrap a {
  display: inline-block; /* 子要素のアンカーをインラインブロックにする */
}

/* ボタン
------------------------------------------------ */
.c-btn__primary {
  background-color: #4D73B7;
  color: #fff;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media (any-hover: hover) {
  .c-btn__primary:hover, .c-btn__primary:focus {
    background-color: #69A7D3;
  }
}

.c-btn__primary-icon {
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../images/common/contact-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-header__btn-text {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-header__btn-text {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

.c-sns__btn {
  width: 12rem;
  height: 2.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.0769230769;
  letter-spacing: 0.06em;
  border-radius: 0.625rem;
  border: 0.125rem solid #CCDDF1;
}
@media (any-hover: hover) {
  .c-sns__btn:hover, .c-sns__btn:focus {
    background-color: #69A7D3;
  }
}
@media screen and (max-width: 767px) {
  .c-sns__btn {
    width: 100%;
    height: 2.5625rem;
    aspect-ratio: 169/41;
    font-size: 0.625rem;
    line-height: 2.1;
  }
}

.c-sns__icon {
  width: 1.125rem;
  height: 1.125rem;
}
.c-sns__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-info__btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  padding: 0.625rem;
  cursor: pointer;
  color: #fff;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-info__btn {
    border-radius: 0.3125rem;
    gap: 0.375rem;
    padding: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}
@media screen and (max-width: 380px) {
  .c-info__btn {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

.c-info-btn__img {
  display: block;
  width: 10.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-info-btn__img {
    width: 7.5rem;
  }
}

.c-info-btn__icon {
  display: block;
  width: 1.4375rem;
  height: 1.4375rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-info-btn__icon--tel {
  background-image: url(../images/common/tel-icon.svg);
}
.c-info-btn__icon--web {
  background-image: url(../images/common/contact-icon.svg);
}
@media screen and (max-width: 767px) {
  .c-info-btn__icon {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}

.c-more__btn {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  color: #fff;
  cursor: pointer;
}
.c-more__btn.--darkBlue {
  color: #2A3165;
  gap: 1.0625rem;
  justify-content: flex-start;
}
.c-more__btn.--white {
  justify-content: center;
  color: #2A3165;
  gap: 1.25rem;
}
@media (any-hover: hover) {
  .c-more__btn:hover .c-more__btn-icon, .c-more__btn:focus .c-more__btn-icon {
    -webkit-transform: translateX(0.625rem);
            transform: translateX(0.625rem);
  }
  .c-more__btn:hover .text::after, .c-more__btn:focus .text::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.c-more__btn .text {
  display: block;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
  font-weight: 400;
  padding-bottom: 0.3125rem;
  font-size: 1.375rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-more__btn .text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.c-more__btn .text.--darkBlue {
  color: #2A3165;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.c-more__btn .text.--darkBlue::after {
  background-color: #2A3165;
}
.c-more__btn .text.--white {
  color: #2A3165;
}
.c-more__btn .text.--white::after {
  background-color: #2A3165;
}
@media screen and (max-width: 767px) {
  .c-more__btn .text.--white {
    font-size: 1.1875rem;
    line-height: 1.4210526316;
  }
}
.c-more__btn .text::after {
  content: "";
  display: block;
  width: calc(100% + 0.625rem);
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: right;
          transform-origin: right;
}
.c-more__btn .c-more__btn-icon {
  display: block;
  display: grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-more__btn .c-more__btn-icon.--darkBlue {
  width: 1.875rem;
  height: 1.875rem;
  background-color: #2A3165;
}
.c-more__btn .c-more__btn-icon.--message {
  width: 2.375rem;
  height: 2.375rem;
  background-color: #2A3165;
}
.c-more__btn .c-more__btn-icon.--white {
  background-color: #2A3165;
}
@media screen and (max-width: 767px) {
  .c-more__btn .c-more__btn-icon.--white {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.c-more__btn .c-more__btn-icon .arrow {
  display: block;
  width: 1.5625rem;
  height: 0.125rem;
  background-color: #2A3165;
  margin-top: 0.4375rem;
  border-radius: 62.4375rem;
  position: relative;
}
.c-more__btn .c-more__btn-icon .arrow.--darkBlue {
  background-color: #fff;
  width: 0.9375rem;
  height: 0.0625rem;
  margin-top: 0.25rem;
}
.c-more__btn .c-more__btn-icon .arrow.--darkBlue::before {
  background-color: inherit;
  width: 0.5rem;
  height: 0.0625rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.c-more__btn .c-more__btn-icon .arrow.--message {
  background-color: #fff;
  width: 1.25rem;
  height: 0.0625rem;
}
.c-more__btn .c-more__btn-icon .arrow.--message::before {
  background-color: inherit;
  width: 0.625rem;
  height: 0.0625rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.c-more__btn .c-more__btn-icon .arrow.--white {
  background-color: #fff;
  height: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .c-more__btn .c-more__btn-icon .arrow.--white {
    width: 1.0625rem;
    height: 0.0625rem;
    margin-bottom: 0.125rem;
  }
}
.c-more__btn .c-more__btn-icon .arrow.--white::before {
  background-color: inherit;
  height: 0.0625rem;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
@media screen and (max-width: 767px) {
  .c-more__btn .c-more__btn-icon .arrow.--white::before {
    width: 0.5625rem;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
.c-more__btn .c-more__btn-icon .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.0625rem);
  right: 0;
  width: 0.75rem;
  height: 0.125rem;
  border-radius: 62.4375rem;
  background-color: #2A3165;
  -webkit-transform: rotate(44deg);
          transform: rotate(44deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}

.c-fixed__btn {
  width: 8.9375rem;
  height: 7.1875rem;
  border-radius: 0.625rem 0 0 0.625rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8125rem;
  padding: 0.625rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-fixed__btn.--tel {
  background-color: #69A7D3;
}
.c-fixed__btn.--tel .c-fixed__icon {
  width: 2.125rem;
  aspect-ratio: 34/44;
}
.c-fixed__btn.--web {
  background-color: #4D73B7;
}
.c-fixed__btn.--web .c-fixed__icon {
  width: 2.625rem;
  aspect-ratio: 42/43;
}
.c-fixed__btn > * {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-fixed__btn {
    width: 5rem;
    height: 3.75rem;
    padding: 0.3125rem;
    gap: 0.3125rem;
  }
}
@media (any-hover: hover) {
  .c-fixed__btn:hover .c-fixed__icon, .c-fixed__btn:focus .c-fixed__icon {
    -webkit-animation: iconShake 0.6s ease-in-out 1;
            animation: iconShake 0.6s ease-in-out 1;
  }
}

@-webkit-keyframes iconShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes iconShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.c-fixed__icon {
  aspect-ratio: 1/1;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-fixed__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-fixed__icon {
    width: 1.25rem;
  }
}

.c-fixed__number-img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0.25rem 0.5rem rgba(0, 0, 0, .3));
          filter: drop-shadow(0 0.25rem 0.5rem rgba(0, 0, 0, .3));
  width: 6.1875rem;
  height: 0.9375rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-fixed__number-img {
    width: 3.125rem;
    height: 0.625rem;
  }
}

.c-fixed__btn-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-fixed__btn-text {
    font-size: 0.625rem;
    line-height: 1.4;
  }
}

.c-fixed__sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0.4375rem;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-size: 1.125rem;
}
.c-fixed__sp-btn > * {
  display: block;
}
.c-fixed__sp-btn.--tel {
  background-color: #69A7D3;
}
.c-fixed__sp-btn.--tel .c-fixed__sp-icon {
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
  width: 1rem;
  height: 1.25rem;
}
.c-fixed__sp-btn.--web {
  background-color: #4D73B7;
}
.c-fixed__sp-btn.--web .c-fixed__sp-icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media (any-hover: hover) {
  .c-fixed__sp-btn:hover .c-fixed__sp-icon, .c-fixed__sp-btn:focus .c-fixed__sp-icon {
    -webkit-animation: iconShake 0.6s ease-in-out 1;
            animation: iconShake 0.6s ease-in-out 1;
  }
}

.c-fixed__sp-icon {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.16)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, .16));
          filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, .16));
}
.c-fixed__sp-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-fixed__sp-numberImg {
  display: block;
  width: min(100%, 8.625rem);
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 138/16;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.16)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, .16));
          filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, .16));
  pointer-events: none;
}

.c-fixed__sp-btn-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.2222222222;
  text-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}

/***************************************
採用
****************************************/
.c-recruit__btn {
  width: 32.6875rem;
  height: 5.125rem;
  background-color: #2A3165;
  color: #fff;
  border-radius: 0.625rem;
  display: grid;
  place-items: center;
  gap: 0.625rem;
  border: 0.125rem solid transparent;
}
@media (any-hover: hover) {
  .c-recruit__btn:hover, .c-recruit__btn:focus {
    background-color: #fff;
    color: #2A3165;
    border: 0.125rem solid #2A3165;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit__btn {
    width: 90%;
    height: 3.125rem;
    gap: 0.375rem;
  }
}
.c-recruit__btn .text {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-recruit__btn .text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 500px) {
  .c-recruit__btn .text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 1.5625rem;
    height: 1.5625rem;
    border-radius: 50%;
    z-index: 21;
    padding: 0 0;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.1875rem;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
body.home .c-hamburger.open span {
  background-color: #2E386E;
  position: relative;
  z-index: 105;
}
body.home .c-hamburger.open span:nth-child(2) {
  background-color: transparent;
}

/* フロント（home クラスが body に付いてる） */
body.home .c-hamburger span {
  background-color: #fff; /* 白 */
}

/* 下層ページ（home クラス以外） */
body:not(.home) .c-hamburger span {
  background-color: #2E386E;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.375rem 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/***************************************
c-page__list
****************************************/
.c-page__list {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.c-page__list.--bg-white {
  background-color: #fff;
  padding: 1.5rem 1.875rem;
  border-radius: 0.625rem;
  border: solid 0.125rem #A9C4E2;
}
@media screen and (max-width: 767px) {
  .c-page__list.--bg-white {
    padding: 1.25rem 0.9375rem;
  }
}
.c-page__list.--bg-blue {
  background-color: #F0F7FF;
  padding: 2.0625rem 3.4375rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-page__list.--bg-blue {
    padding: 1.25rem 0.9375rem;
  }
}
@media screen and (max-width: 500px) {
  .c-page__list.--bg-blue .c-page__list-item {
    padding-left: 0.9375rem;
  }
  .c-page__list.--bg-blue .c-page__list-item::before {
    width: 0.625rem;
    height: 0.625rem;
    top: 0.625rem;
    aspect-ratio: 10/10;
  }
}

.c-page__list-item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #2A3165;
  position: relative;
}
.c-page__list-item::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  position: absolute;
  top: 0.8125rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #2A3165;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .c-page__list-item {
    padding-left: 1.375rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
  .c-page__list-item::before {
    width: 0.9375rem;
    height: 0.9375rem;
    top: 0.625rem;
  }
}

/***************************************
c-page__smallList
****************************************/
.c-page__small-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.c-page__small-listItem {
  position: relative;
}
.c-page__small-listItem::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #2A3165;
  -webkit-margin-end: 0.3125rem;
          margin-inline-end: 0.3125rem;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .c-page__small-listItem {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

/***************************************
c-inner__list
****************************************/
.c-inner__list {
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.035em;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .c-inner__list {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

/* テーブル
------------------------------------------------ */
.c-schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .c-schedule-table th {
    font-size: 0.75rem;
  }
}

.c-schedule-table td {
  font-size: 0.9375rem;
}

.c-schedule-table th,
.c-schedule-table td {
  text-align: center;
  padding: 0.625rem 0.5rem;
  font-weight: 350;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 500px) {
  .c-schedule-table th,
  .c-schedule-table td {
    padding: 0.3125rem 0.25rem;
  }
}

.c-schedule-table tr {
  border-bottom: 0.0625rem solid rgba(58, 104, 183, .29);
}
.c-schedule-table tr:last-child {
  border-bottom: none;
}

.c-schedule-table thead th {
  border-bottom: 0.0625rem solid rgba(58, 104, 183, .29);
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.c-table__head {
  background-color: #2A3165;
}
.c-table__header {
  background-color: #2A3165;
  color: #fff;
  padding: 0.625rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 0.0625rem solid #A9C4E2;
}
@media screen and (max-width: 767px) {
  .c-table__header {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
}
.c-table__body {
  background-color: #fff;
}
.c-table__cell {
  padding: 0.625rem;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  border: 0.0625rem solid #A9C4E2;
}
.c-table__cell:nth-child(1) {
  width: 30%;
}
.c-table__cell:nth-child(2) {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .c-table__cell:nth-child(2) {
    width: 35%;
  }
}
.c-table__cell:nth-child(3) {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .c-table__cell:nth-child(3) {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .c-table__cell {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .c-table__cell {
    padding: 0.75rem 0.1875rem;
  }
}

.l-page__table.--price .c-table__cell {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page__table.--price .c-table__cell {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .l-page__table.--price .c-table__cell {
    font-size: 0.75rem;
  }
}
.l-page__table.--price .c-table__cell:nth-child(1) {
  width: 45%;
}
.l-page__table.--price .c-table__cell:nth-child(2) {
  width: 28%;
}
.l-page__table.--price .c-table__cell:nth-child(3) {
  width: 27%;
}

.p-rootcanal__table.--price .c-table__cell {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__table.--price .c-table__cell {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-rootcanal__table.--price .c-table__cell {
    font-size: 0.75rem;
  }
}
.p-rootcanal__table.--price .c-table__cell:nth-child(1) {
  width: 40%;
}
.p-rootcanal__table.--price .c-table__cell:nth-child(2) {
  width: 25%;
}
.p-rootcanal__table.--price .c-table__cell:nth-child(3) {
  width: 35%;
}

/***************************************
採用
****************************************/
.c-recruit__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
}

.c-recruit__table-head {
  background-color: #2A3165;
}

.c-recruit__table-title {
  background-color: #2A3165;
  color: #fff;
  padding: 0.9375rem 1.25rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
.c-recruit__table-title:first-child {
  width: 30%;
  border-top-left-radius: 0.625rem;
  border-right: 0.1875rem solid #fff;
}
.c-recruit__table-title:last-child {
  width: 70%;
  border-top-right-radius: 0.625rem;
}
.c-recruit__table-title .small {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-recruit__table-title {
    padding: 0.75rem 0.9375rem;
    font-size: 0.875rem;
  }
  .c-recruit__table-title:first-child {
    width: 25%;
  }
  .c-recruit__table-title:last-child {
    width: 75%;
  }
}
@media screen and (max-width: 500px) {
  .c-recruit__table-title {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  .c-recruit__table-title:first-child {
    width: 25%;
  }
  .c-recruit__table-title:last-child {
    width: 75%;
  }
}

.c-recruit__table-header {
  background-color: #EDF6FF;
  padding: 1.4375rem 0.625rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8125;
  font-weight: 300;
  letter-spacing: 0.06em;
  border-right: 0.1875rem solid #fff;
}
@media screen and (max-width: 767px) {
  .c-recruit__table-header {
    padding: 0.9375rem 0.5rem;
    font-size: 0.875rem;
    width: 26%;
  }
}
@media screen and (max-width: 500px) {
  .c-recruit__table-header {
    width: 26%;
    padding: 0.75rem 0.5rem;
  }
}
.c-recruit__table-header:not(:last-child) {
  border-bottom: 0.1875rem solid #fff;
}

.c-recruit__table-cell {
  background-color: #F7FBFF;
  padding: 1.25rem 1.875rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 300;
  vertical-align: top;
  width: 70%;
  border-bottom: 0.1875rem solid #fff;
}
@media screen and (max-width: 767px) {
  .c-recruit__table-cell {
    padding: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    width: 75%;
  }
}
@media screen and (max-width: 500px) {
  .c-recruit__table-cell {
    width: 75%;
    padding: 0.75rem;
  }
}
.c-recruit__table-cell:has(br) {
  padding: 0.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-recruit__table-cell:has(br) {
    padding: 0.75rem 0.9375rem;
  }
}

/***************************************
テキスト
****************************************/
.c-page__text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-page__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.c-page__text > .text {
  display: block;
}
.c-page__text > .text:not(:first-child) {
  margin-top: 0.9375rem;
}

/***************************************
タイトル
****************************************/
/* メインタイトル */
.c-title {
  text-align: center;
  color: #202972;
  font-size: 2.5rem;
  line-height: 1.675;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
.c-title.--white {
  color: #fff;
}
.c-title.--white > span::before, .c-title.--white > span::after {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.4375rem;
    line-height: 1.4347826087;
  }
}
.c-title .small {
  font-size: 1.875rem;
  line-height: 2.2333333333;
}
@media screen and (max-width: 767px) {
  .c-title .small {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.c-title > span {
  display: inline-block;
  position: relative;
}
.c-title > span::before, .c-title > span::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  background-color: #202972;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .c-title > span::before, .c-title > span::after {
    width: 1rem;
    height: 0.125rem;
  }
}
.c-title > span::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: -2.90625rem;
}
@media screen and (max-width: 767px) {
  .c-title > span::before {
    left: -1.5625rem;
  }
}
.c-title > span::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: -2.90625rem;
}
@media screen and (max-width: 767px) {
  .c-title > span::after {
    right: -1.5625rem;
  }
}

/*ヘディングタイトル*/
.c-heading__title {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.125rem;
  color: #fff;
}
.c-heading__title::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  -webkit-margin-after: 0.3125rem;
          margin-block-end: 0.3125rem;
  background-color: #fff;
}
.c-heading__title::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  -webkit-margin-after: 0.3125rem;
          margin-block-end: 0.3125rem;
  background-color: #fff;
}

.c-heading__title-item {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-heading__title-item {
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 500px) {
  .c-heading__title-item {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

/* 大見出し*/
.c-page__title {
  width: 100%;
  position: relative;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  -webkit-padding-after: 0.4375rem;
          padding-block-end: 0.4375rem;
}
.c-page__title::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2A3165; /* 下線の青色 */
}

.c-page__title-item {
  display: inline-block;
  font-size: 1.875rem;
  border-left: solid 0.625rem #2A3165;
  padding-left: 0.5625rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #2A3165;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-page__title-item {
    font-size: 1.4375rem;
    line-height: 1.4;
    border-left: solid 0.5625rem #2A3165;
    padding-left: 0.4375rem;
  }
}
@media screen and (max-width: 500px) {
  .c-page__title-item {
    font-size: 1.09375rem;
    letter-spacing: 0.06em;
  }
}

/* 小見出し */
.c-page__subTitle {
  font-size: 1.4375rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #2A3165;
}
@media screen and (max-width: 767px) {
  .c-page__subTitle {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .c-page__subTitle {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* ポイント */
.c-page__point-title {
  position: relative;
  padding-left: 2rem;
}
.c-page__point-title::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  display: block;
  width: 1.3125rem;
  height: 1.4375rem;
  background-color: #36A3BE;
}
@media screen and (max-width: 767px) {
  .c-page__point-title::before {
    top: 0.375rem;
    width: 1rem;
    height: 1.0625rem;
  }
}
@media screen and (max-width: 500px) {
  .c-page__point-title::before {
    top: 0.34375rem;
    width: 0.8125rem;
    height: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page__point-title {
    padding-left: 1.6875rem;
  }
}
@media screen and (max-width: 500px) {
  .c-page__point-title {
    padding-left: 1.5rem;
  }
}

.c-page__point-titleItem {
  display: inline-block;
  font-size: 1.5625rem;
  line-height: 1.48;
  letter-spacing: 0.15em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-page__point-titleItem {
    font-size: 1.25rem;
    line-height: 1.28;
  }
}
@media screen and (max-width: 500px) {
  .c-page__point-titleItem {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* ラベル */
.c-page__title-label {
  width: 100%;
  height: 100%;
  min-height: 5.25rem;
  border-radius: 0.625rem;
  background-color: #2A3165;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-page__title-label {
    padding: 0.75rem;
    min-height: 3.75rem;
  }
}

.c-page__title-label-item {
  display: block;
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-page__title-label-item {
    font-size: 1.4375rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 500px) {
  .c-page__title-label-item {
    font-size: 1.125rem;
  }
}
.c-page__title-label-item.--fs-27 {
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .c-page__title-label-item.--fs-27 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .c-page__title-label-item.--fs-27 {
    font-size: 1rem;
  }
}

.l-feature {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/feature-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.9375rem 3.8125rem;
}
@media screen and (max-width: 767px) {
  .l-feature {
    padding-block: 0 3.6875rem;
  }
}

.l-feature__inner {
  width: min(100% - 3.125rem, 72.5rem);
  margin-inline: auto;
  padding-inline: 1.875rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .l-feature__inner {
    width: calc(100% - 2.5rem);
    padding-inline: 0.9375rem 0.5rem;
  }
}

.l-feature__title-wrapper {
  width: 100%;
  margin-inline: auto;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-feature__title-wrapper {
    width: 100%;
  }
}

.l-feature__title {
  margin-left: auto;
  width: 33.9375rem;
  aspect-ratio: 543/186;
  color: #fff;
  letter-spacing: 0.06em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  font-family: "Noto Serif JP", serif;
}
.l-feature__title::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 543/121;
  background-image: url(../images/common/feature-title.svg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-feature__title {
    width: 100%;
    aspect-ratio: 290/72;
  }
  .l-feature__title::before {
    width: 24.4375rem;
    top: 43%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 4rem;
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 500px) {
  .l-feature__title {
    width: 100%;
    aspect-ratio: 290/109;
  }
  .l-feature__title::before {
    width: 80%;
  }
}

.l-feature__title-top {
  font-size: 2.875rem;
  line-height: 1.8913043478;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-feature__title-top {
    font-size: 1.4375rem;
    line-height: 1.3043478261;
  }
}

.l-feature__title-bottom {
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
}
@media screen and (max-width: 767px) {
  .l-feature__title-bottom {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.l-feature__title-bottom .medium {
  font-size: 5.125rem;
  line-height: 1.0609756098;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-feature__title-bottom .medium {
    font-size: 2.5rem;
    line-height: 1.025;
  }
}
.l-feature__title-bottom .small {
  font-size: 3.4375rem;
  line-height: 1.5818181818;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-feature__title-bottom .small {
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}

.l-feature__item-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .l-feature__item-inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.l-feature__item {
  position: relative;
  color: #fff;
}
.l-feature__item:nth-child(odd) {
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .l-feature__item:nth-child(odd) {
    margin-top: 0;
  }
}

.l-feature__item-number {
  display: block;
  width: 5.8125rem;
  aspect-ratio: 93/88;
  position: relative;
  z-index: 1;
  -webkit-margin-after: -3.125rem;
          margin-block-end: -3.125rem;
  margin-left: -1.875rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.16)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, .16));
          filter: drop-shadow(0 0.1875rem 0.375rem rgba(0, 0, 0, .16));
}
@media screen and (max-width: 767px) {
  .l-feature__item-number {
    width: 4rem;
    aspect-ratio: 64/60;
    -webkit-margin-after: -1.75rem;
            margin-block-end: -1.75rem;
    margin-left: -0.9375rem;
  }
}
.l-feature__item-number.--reverse {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-feature__item-number.--reverse {
    margin-left: 0;
  }
}

.l-feature__item-imgWrapper {
  width: 31.625rem;
  aspect-ratio: 506/321;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-feature__item-imgWrapper {
    width: 100%;
    aspect-ratio: 339/212;
  }
}
.l-feature__item-imgWrapper.--left::before {
  content: "";
  display: block;
  width: 30.8125rem;
  height: 19.25rem;
  aspect-ratio: 493/308;
  background-color: #8AA1C7;
  border-radius: 0.625rem;
  position: absolute;
  top: -0.8125rem;
  left: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .l-feature__item-imgWrapper.--left::before {
    width: 100%;
    height: 100%;
    aspect-ratio: 339/212;
    top: -0.5rem;
    left: -0.5rem;
  }
}
.l-feature__item-imgWrapper.--right::before {
  content: "";
  display: block;
  width: 30.8125rem;
  height: 19.25rem;
  aspect-ratio: 493/308;
  background-color: #8AA1C7;
  border-radius: 0.625rem;
  position: absolute;
  top: 0.8125rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-feature__item-imgWrapper.--right::before {
    width: 100%;
    height: 100%;
    aspect-ratio: 339/212;
    top: -0.5rem;
    left: -0.5rem;
  }
}

.l-feature__item-img {
  display: block;
  width: 30.8125rem;
  height: -webkit-fit-content;
  height: fit-content;
  aspect-ratio: 493/308;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .l-feature__item-img {
    width: 100%;
    aspect-ratio: 339/212;
  }
}

.l-feature__item-title {
  margin-top: 1.5625rem;
  font-size: 1.3125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
.l-feature__item-title.--long {
  font-size: 1.25rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .l-feature__item-title {
    margin-top: 0.9375rem;
    font-size: 1.1875rem;
    line-height: 1.4210526316;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.l-feature__item-text {
  width: 90%;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  font-weight: 350;
}
.l-feature__item-text .text {
  display: block;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-feature__item-text {
    width: 100%;
    margin-top: 1.4375rem;
    font-size: 0.84375rem;
    line-height: 1.8518518519;
  }
}

.l-feature__btn-wrapper {
  width: 11.5625rem;
  height: 2.625rem;
  margin-top: 0.8125rem;
  margin-left: auto;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-feature__btn-wrapper {
    width: 11.125rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-container {
  width: min(100%, 71.8125rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: calc(100% - 2.5rem);
  }
}

.l-section {
  width: 100%;
  max-width: 68.6875rem;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-section {
    width: calc(100% - 2.75rem);
    padding-inline: 0;
  }
}

/***************************************
ページ使い回しレイアウト
****************************************/
.l-page-fv {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-margin-before: 7.375rem;
          margin-block-start: 7.375rem;
}
@media screen and (max-width: 767px) {
  .l-page-fv {
    -webkit-margin-before: 3.875rem;
            margin-block-start: 3.875rem;
    height: 100%;
  }
}

.l-page-fv__imgWrapper {
  width: 100%;
  aspect-ratio: 1366/330;
}
@media screen and (max-width: 767px) {
  .l-page-fv__imgWrapper {
    height: auto;
  }
}

.l-page-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-page-fv__body {
  width: -webkit-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #202972;
  font-family: "Noto Serif JP", serif;
}

.l-page-fv__title {
  font-size: 3.125rem;
  line-height: 1.3;
  letter-spacing: 0.15em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-page-fv__title {
    white-space: nowrap;
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 500px) {
  .l-page-fv__title {
    font-size: 1.5625rem;
    line-height: 1.2;
  }
}

.l-page-fv__text {
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-page-fv__text {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}
.l-page-fv__text > span {
  display: inline-block;
}
.l-page-fv__text .text__small {
  font-size: 0.8125rem;
  line-height: 1.9230769231;
}
.l-page-fv__text .text__large {
  -webkit-margin-start: 0.3125rem;
          margin-inline-start: 0.3125rem;
  font-size: 1.125rem;
  line-height: 1.3888888889;
}
@media screen and (max-width: 500px) {
  .l-page-fv__text .text__small {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
  .l-page-fv__text .text__large {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
  }
}

.l-heading__section {
  position: relative;
  width: 100%;
  background-image: url(../images/bg/page-heading-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.625rem;
  color: #fff;
  -webkit-margin-before: -0.1875rem;
          margin-block-start: -0.1875rem;
}
@media screen and (max-width: 500px) {
  .l-heading__section {
    padding-block: 1.875rem;
  }
}

.l-heading__section-body {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 500px) {
  .l-heading__section-body {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.l-heading__section-imgWrapper {
  width: 100%;
  aspect-ratio: 1049/441;
  border-radius: 1.25rem;
}

.l-heading__section-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.l-heading__section-subTitle {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  -webkit-margin-before: 1.6875rem;
          margin-block-start: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .l-heading__section-subTitle {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 500px) {
  .l-heading__section-subTitle {
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}

.l-heading__section-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  text-align: center;
}
.l-heading__section-text .text {
  display: block;
}
.l-heading__section-text .text:not(:first-child) {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-heading__section-text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    text-align: left;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
  .l-heading__section-text .text:not(:first-child) {
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
  }
}

/***************************************
メディアレイアウト
****************************************/
.l-page__media {
  display: flex;
  gap: 1.625rem;
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .l-page__media {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .l-page__media {
    gap: 1.25rem;
  }
}

.l-page__media-imgWrapper {
  flex: 0 0 9.625rem;
  width: 9.625rem;
  aspect-ratio: 154/154;
}

.l-page__media-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.l-page__media-title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.15em;
  -webkit-padding-after: 0.5625rem;
          padding-block-end: 0.5625rem;
  border-bottom: solid 0.1875rem #26449A;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-page__media-title {
    font-size: 1.5625rem;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .l-page__media-title {
    font-size: 1.25rem;
    line-height: 1.25;
    -webkit-padding-after: 0.625rem;
            padding-block-end: 0.625rem;
  }
}

.l-page__media-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-page__media-text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

/***************************************
フレックスレイアウト
****************************************/
.l-page__twoColumn {
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-page__twoColumn {
    flex-direction: column;
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page__twoColumn.--reverse {
    flex-direction: column-reverse;
  }
}
.l-page__twoColumn.--bottom-reverse {
  -webkit-margin-before: -0.9375rem;
          margin-block-start: -0.9375rem;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .l-page__twoColumn.--bottom-reverse {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
}

.l-page__twoColumn-imgWrapper {
  display: block;
  border-radius: 0.625rem;
}

.l-page__twoColumn-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.l-page__twoColumn-item {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.l-page__twoColumn-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page__twoColumn-text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.l-page__twoColumn-text > span {
  display: block;
}
.l-page__twoColumn-text > span:not(:first-child) {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

/***************************************
ページ背景
****************************************/
.l-page__first {
  width: 100%;
  background-image: url(../images/bg/page-section01-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.0625rem 3.4375rem;
}
@media screen and (max-width: 500px) {
  .l-page__first {
    padding-block: 1.875rem 1.25rem;
  }
}

.l-page__second {
  width: 100%;
  background-image: url(../images/bg/page-section02-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.75rem;
}
@media screen and (max-width: 500px) {
  .l-page__second {
    padding-block: 1.875rem;
  }
}

.l-page__third {
  width: 100%;
  background-image: url(../images/bg/page-section01-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.0625rem 3.4375rem;
}
@media screen and (max-width: 500px) {
  .l-page__third {
    padding-block: 1.875rem 1.25rem;
  }
}

.l-page__fourth {
  width: 100%;
  padding-block: 3.75rem;
}
@media screen and (max-width: 500px) {
  .l-page__fourth {
    padding-block: 1.875rem 1.25rem;
  }
}

/***************************************
メッセージレイアウト
****************************************/
.l-service__message {
  -webkit-margin-before: 2.8125rem;
          margin-block-start: 2.8125rem;
  width: 100%;
  background-color: #F0F7FF;
  border: 0.125rem solid #A9C4E2;
  border-radius: 0.625rem;
  padding: 2.0625rem 1.25rem;
  color: #2A3165;
}
@media screen and (max-width: 500px) {
  .l-service__message {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    padding: 1.25rem 0.625rem;
  }
}

.l-service__message-text {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.l-service__message-text .text {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-service__message-text {
    gap: 1.25rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
  }
}

/***************************************
ページカードレイアウト
****************************************/
.l-page__card {
  padding: 1.125rem 1.375rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 0.1875rem solid #2A3165;
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-page__card {
    padding: 1.25rem;
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
}
.l-page__card.--list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.625rem;
  border: none;
  padding: 1.875rem 1.375rem;
}

.l-page__card-item {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.l-page__card-title {
  font-size: 1.5625rem;
  line-height: 1.48;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #2A3165;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .l-page__card-title {
    font-size: 1.125rem;
    line-height: 1.3888888889;
    text-align: center;
  }
}

.l-page__card-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.l-page__card-text > span {
  display: block;
}
.l-page__card-text > span:not(:first-child) {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-page__card-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.l-page__card-imgWrapper {
  flex: 0 0 14.0625rem;
  aspect-ratio: 225/213;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .l-page__card-imgWrapper {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.l-page__card-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.l-page__card-list-title {
  width: 100%;
  font-size: 1.5625rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-weight: 500;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  border-bottom: solid 0.125rem #2A3165;
}

.l-page__card-list {
  font-size: 1rem;
}

.l-page__card-list-item {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-page__card-list-item {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

/*
フロー
*/
.l-page__flow {
  width: min(100%, 59.3125rem);
  margin-inline: auto;
  -webkit-margin-before: 1.375rem;
          margin-block-start: 1.375rem;
}
@media screen and (max-width: 767px) {
  .l-page__flow {
    width: 100%;
  }
}

.l-page__flow-headingText {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-page__flow-headingText {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.l-page__flow-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.l-page__flow-item {
  padding: 1.375rem 2.5625rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border: solid 0.125rem #A9C4E2;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.l-page__flow-item > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-page__flow-item {
    padding: 1.25rem 0.9375rem;
  }
}

.l-page__flow-item-title {
  font-size: 1.5625rem;
  line-height: 1.2;
  letter-spacing: 0.035em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-page__flow-item-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .l-page__flow-item-title {
    font-size: 1rem;
  }
}

.l-page__flow-item-text {
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.035em;
  -webkit-margin-start: 2.125rem;
          margin-inline-start: 2.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page__flow-item-text {
    font-size: 0.875rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.l-page__table.--price {
  width: min(100%, 65.5625rem);
  margin-inline: auto;
  -webkit-margin-before: 1.625rem;
          margin-block-start: 1.625rem;
}
@media screen and (max-width: 500px) {
  .l-page__table.--price {
    width: 100%;
  }
}

/***************************************
採用
****************************************/
.l-recruit-detail {
  width: 100%;
  padding-block: 3.375rem 4.4375rem;
}
@media screen and (max-width: 767px) {
  .l-recruit-detail {
    padding-block: 1.875rem 2.5rem;
  }
}

.l-recruit-btnWrapper {
  -webkit-margin-before: 3.25rem;
          margin-block-start: 3.25rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-recruit-btnWrapper {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

/***************************************
医院紹介のページ
****************************************/
/*
about
*/
.p-about__introduction {
  width: 100%;
  -webkit-margin-before: -0.125rem;
          margin-block-start: -0.125rem;
  padding-block: 4.6875rem 3.9375rem;
  position: relative;
}
.p-about__introduction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/about-bg01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about__introduction {
    padding-block: 3.125rem;
  }
}

.p-about__introduction-headingInner {
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-inline: 25px;
  position: relative;
}
.p-about__introduction-headingInner::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  right: 0;
  width: 41.125rem;
  height: 10.5rem;
  background-image: url(../images/common/about-greeting.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-headingInner {
    width: calc(100% - 2.5rem);
    max-width: none;
    padding-inline: 0;
  }
  .p-about__introduction-headingInner::before {
    width: 80%;
    top: -1.875rem;
    height: auto;
    aspect-ratio: 359/91;
    background-image: url(../images/common/about-greeting-sp.svg);
  }
}
@media screen and (max-width: 500px) {
  .p-about__introduction-headingInner::before {
    width: 100%;
    top: -1.25rem;
  }
}

.p-about__introduction-firstItems {
  position: relative;
  z-index: 2;
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-firstItems {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-about__introduction-firstItem {
  display: flex;
  gap: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-firstItem {
    flex-direction: column;
    gap: 1.875rem;
    align-items: flex-start;
  }
}

.p-about__introduction-imgItem {
  flex: 0 0 44%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-imgItem {
    flex: 0 0 auto;
    width: 95%;
    height: 12.6875rem;
  }
}

.p-about__introduction-heading {
  position: absolute;
  top: 1.6875rem;
  right: 2.9375rem;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-heading {
    top: 0.625rem;
    right: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .p-about__introduction-heading {
    top: 0.625rem;
    right: 0.625rem;
  }
}

.p-about__introduction-heading-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  color: #2A3165;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-heading-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-about__introduction-heading-text .small {
  font-size: 1.3125rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-heading-text .small {
    font-size: 1.0625rem;
    line-height: 1.4117647059;
  }
}
.p-about__introduction-heading-text .large {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-heading-text .large {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.p-about__introduction-imgWrapper img {
  border-radius: 0 1.25rem 1.25rem 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-imgWrapper img {
    -o-object-position: center 25%;
       object-position: center 25%;
    border-radius: 0 0.625rem 0.625rem 0;
    aspect-ratio: 369/203;
  }
}

.p-about__introduction-body {
  flex: 0 0 48%;
  -webkit-padding-end: 1.25rem;
          padding-inline-end: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-body {
    gap: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.p-about__introduction-firstItem-title {
  font-weight: 700;
  color: #2A3165;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-firstItem-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-about__introduction-text {
  width: 80%;
  font-size: 0.875rem;
  line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-text {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-about__introduction-text > span {
  display: block;
}
.p-about__introduction-text > span:not(:first-child) {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media only screen and (min-width: 1700px) {
  .p-about__introduction-text {
    width: 70%;
  }
}

.p-about__introduction-other {
  width: 84.7222222222%;
  max-width: 76.25rem;
  margin-inline: auto;
  margin-top: 3.75rem;
  padding-left: 15.9722222222%;
  padding-top: 2.5rem;
  border-top: 0.125rem solid #8aa1c7;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-other {
    width: 93%;
    padding-left: 0;
    margin-top: 2.5rem;
    padding-top: 1.875rem;
  }
}

.p-about__introduction-other-list li {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-other-list li {
    display: block;
  }
}
.p-about__introduction-other-list li + li {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-other-list li + li {
    margin-top: 1.25rem;
  }
}

.p-about__introduction-other-head {
  display: flex;
  align-items: flex-end;
  gap: 0.9375rem;
}

.p-about__introduction-other-position {
  color: #2a3165;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  min-width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-other-position {
    min-width: 7.5rem;
    font-size: 1rem;
  }
}

.p-about__introduction-other-name {
  color: #2a3165;
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  min-width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-other-name {
    font-size: 1.375rem;
  }
}

.p-about__introduction-other-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-other-text {
    margin-top: 0.5rem;
  }
}

.p-about__equipment {
  width: 100%;
}

.p-about__equipment-inner {
  width: min(100% - 3.75rem, 76.25rem);
  margin-inline: auto;
  position: relative;
  padding-block: 7.125rem 5.125rem;
}
.p-about__equipment-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 56.25rem;
  height: 10.8125rem;
  background-image: url(../images/common/about-equipment.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-about__equipment-inner {
    padding-block: 2.8125rem;
  }
  .p-about__equipment-inner::before {
    width: 100%;
    top: 1.25rem;
    background-image: url(../images/common/about-equipment-sp.svg);
    height: auto;
    aspect-ratio: 391/93;
  }
}

.p-about__equipment-items {
  position: relative;
  z-index: 2;
  width: min(100%, 60.75rem);
  margin-inline: auto;
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__equipment-items {
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
    grid-template-columns: 1fr;
    gap: 1.60625rem;
  }
}

.p-about__equipment-img {
  width: 100%;
}
.p-about__equipment-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 471/301;
}

.p-about__equipment-body {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-about__equipment-subTitle {
  font-weight: 700;
  color: #2A3165;
  font-size: 1.5625rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-about__equipment-subTitle {
    font-size: 1.25rem;
  }
}

.p-about__equipment-text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-about__equipment-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

/*
初めての方へ
*/
.p-about__flow {
  width: 100%;
  position: relative;
}
.p-about__flow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/about-bg03.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-about__flow-inner {
  width: min(100% - 3.75rem, 76.25rem);
  margin-inline: auto;
  padding-block: 6.4375rem;
  position: relative;
  z-index: 2;
}
.p-about__flow-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 4.0625rem;
  right: 0;
  width: 22.3125rem;
  height: 8.25rem;
  aspect-ratio: 357/132;
  background-image: url(../images/common/about-flow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-about__flow-inner {
    padding-block: 2.8125rem;
  }
  .p-about__flow-inner::before {
    width: 11.3125rem;
    height: 4.1875rem;
    background-image: url(../images/common/about-flow-sp.svg);
    top: 1.25rem;
    right: -1.25rem;
    aspect-ratio: 181/67;
  }
}

.p-about__flow-items {
  width: min(100%, 67.625rem);
  margin-inline: auto;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  position: relative;
  z-index: 2;
}

.p-about__flow-item {
  padding: 2.8125rem 3.75rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 0.125rem solid #2A3165;
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-about__flow-item {
    padding: 2.0625rem 1.625rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-about__flow-imgWrapper {
  flex: 0 0 17.5625rem;
  height: 10.6875rem;
}
.p-about__flow-imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 281/171;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about__flow-imgWrapper {
    flex: 0 0 100%;
  }
}

.p-about__flow-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-about__flow-subTitle {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-weight: 700;
  color: #2A3165;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  border-bottom: 2px solid #2A3165;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
.p-about__flow-subTitle > span {
  display: inline-block;
}
.p-about__flow-subTitle .en {
  font-size: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about__flow-subTitle .en {
    font-size: 1.125rem;
  }
}
.p-about__flow-subTitle .number {
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__flow-subTitle .number {
    font-size: 1.5rem;
  }
}
.p-about__flow-subTitle .text {
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__flow-subTitle .text {
    -webkit-margin-start: 0.5rem;
            margin-inline-start: 0.5rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__flow-subTitle {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-about__flow-text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-about__flow-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-about__price {
  width: 100%;
  position: relative;
  scroll-margin-block-start: 6.25rem;
}
.p-about__price::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/about-bg04.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-about__price-inner {
  width: min(100% - 3.75rem, 76.25rem);
  margin-inline: auto;
  padding-block: 5.3125rem 4rem;
  position: relative;
}
.p-about__price-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.875rem;
  left: 0;
  width: 33.5rem;
  height: 11.0625rem;
  aspect-ratio: 536/177;
  background-image: url(../images/common/about-charge.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-about__price-inner {
    padding-block: 2.8125rem;
  }
  .p-about__price-inner::before {
    width: 100%;
    top: -1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about__price-title {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-about__price-items {
  position: relative;
  z-index: 2;
  width: min(100%, 51.75rem);
  margin-inline: auto;
  -webkit-margin-before: 2.8125rem;
          margin-block-start: 2.8125rem;
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__price-items {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    gap: 1.875rem;
  }
}

/*
価格表テーブル
*/
.p-about__price-table {
  border-radius: 0.625rem;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.p-about__price-table .c-table__cell {
  border-color: #f2ebde;
}
.p-about__price-table .c-table__header {
  border-top: 0.125rem solid #2A3165;
  border-left: 0.125rem solid #2A3165;
  border-right: 0.125rem solid #f2ebde;
  border-bottom: 0.125rem solid #f2ebde;
  padding: 0.9375rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__price-table .c-table__header {
    padding: 0.625rem;
  }
}
.p-about__price-table .c-table__header:nth-child(1), .p-about__price-table .c-table__header:nth-child(2) {
  width: 50%;
}
.p-about__price-table .c-table__header:last-child {
  border-right: 0.125rem solid #2A3165;
}
.p-about__price-table .c-table__cell {
  border-top: 0.125rem solid #f2ebde;
  border-right: 0.125rem solid #f2ebde;
  border-bottom: 0.125rem solid #f2ebde;
  padding: 1.4375rem 0.625rem;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6111111111;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-about__price-table .c-table__cell {
    padding: 0.9375rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-about__price-table .c-table__cell:first-child {
  border-left: 0.125rem solid #f2ebde;
}
.p-about__price-table .c-table__cell:nth-child(1), .p-about__price-table .c-table__cell:nth-child(2) {
  width: 50%;
}
@media screen and (max-width: 500px) {
  .p-about__price-table .c-table__cell:nth-child(1) {
    width: 52%;
  }
}
@media screen and (max-width: 500px) {
  .p-about__price-table .c-table__cell:nth-child(2) {
    width: 48%;
  }
}
.p-about__price-table .c-table__cell:has(br) {
  padding: 0.75rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__price-table .c-table__cell:has(br) {
    padding: 0.75rem 0.125rem;
    font-size: 0.75rem;
  }
}
.p-about__price-table .c-table__body tr:last-child .c-table__cell:first-child {
  border-bottom-left-radius: 0.625rem;
}
.p-about__price-table .c-table__body tr:last-child .c-table__cell:last-child {
  border-bottom-right-radius: 0.625rem;
}

/***************************************
ボツリヌス療法のページ
****************************************/
.p-botulinum__first .p-botulinum__first-imgWrapper-01 {
  flex: 0 0 29.375rem;
  aspect-ratio: 470/284;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-botulinum__first .p-botulinum__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-botulinum__first .p-botulinum__first-imgWrapper-02 {
  flex: 0 0 28.0625rem;
  aspect-ratio: 449/295;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-botulinum__first .p-botulinum__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-botulinum__first .p-botulinum__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.p-botulinum__first .p-botulinum__first-item {
  justify-content: space-between;
}

/***************************************
むし歯治療のページ
****************************************/
.p-cavities__first .p-cavities__first-imgWrapper-01 {
  flex: 0 0 28.5625rem;
  aspect-ratio: 457/321;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cavities__first .p-cavities__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-cavities__first .p-cavities__first-imgWrapper-02 {
  flex: 0 0 28.5625rem;
  aspect-ratio: 457/185;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cavities__first .p-cavities__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}

.p-cavities__second .p-cavities__second-imgWrapper-01 {
  flex: 0 0 28.5625rem;
  aspect-ratio: 457/286;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cavities__second .p-cavities__second-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-cavities__second .p-cavities__second-imgWrapper-02 {
  flex: 0 0 26.875rem;
  aspect-ratio: 430/302;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cavities__second .p-cavities__second-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-cavities__second .p-cavities__second-imgWrapper-03 {
  flex: 0 0 26.875rem;
  aspect-ratio: 430/302;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cavities__second .p-cavities__second-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}

.p-cavities__second-item .l-page__twoColumn-imgWrapper {
  flex: 1 1 43%;
}
@media screen and (max-width: 767px) {
  .p-cavities__second-item .l-page__twoColumn-imgWrapper {
    flex: 1 1 auto;
  }
}
.p-cavities__second-item .l-page__twoColumn-item {
  flex: 1 1 57%;
}
@media screen and (max-width: 767px) {
  .p-cavities__second-item .l-page__twoColumn-item {
    flex: 1 1 auto;
  }
}

/***************************************
セラミックページ
****************************************/
.p-ceramic__service-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__service-item {
    gap: 1rem;
  }
}

.p-ceramic__gridItems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__gridItems {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-ceramic__gridItem {
  background-color: #fff;
  border-radius: 0.625rem;
  border: solid 0.125rem #A9C4E2;
  padding: 1.625rem 0.1875rem 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__gridItem {
    padding: 1rem 0.3125rem;
    justify-content: flex-start;
    gap: 0.9375rem;
  }
}

.p-ceramic__gridItem-title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #2A3165;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-ceramic__gridItem-title {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-ceramic__gridItem-title > span {
  display: block;
  font-size: 1rem;
  line-height: 1.375;
}
@media screen and (max-width: 500px) {
  .p-ceramic__gridItem-title > span {
    display: inline;
    -webkit-margin-start: 0.3125rem;
            margin-inline-start: 0.3125rem;
    font-size: 0.6875rem;
    line-height: 1.4545454545;
  }
}

.p-ceramic__gridItem-text {
  font-size: 0.875rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-ceramic__gridItem-text {
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: left;
  }
}

.p-ceramic__first .p-ceramic__first-imgWrapper-01 {
  flex: 0 0 30rem;
  aspect-ratio: 480/282;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__first .p-ceramic__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-ceramic__first .p-ceramic__first-imgWrapper-02 {
  flex: 0 0 30rem;
  aspect-ratio: 480/345;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__first .p-ceramic__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-ceramic__first .p-ceramic__first-imgWrapper-03 {
  flex: 0 0 28.125rem;
  aspect-ratio: 450/355;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__first .p-ceramic__first-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-ceramic__first .p-ceramic__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__first .p-ceramic__first-img {
    width: 100%;
  }
}

.p-ceramic__second-list {
  width: min(100%, 58.1875rem);
  margin-inline: auto;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 500px) {
  .p-ceramic__second-list {
    width: 100%;
  }
}

.p-ceramic__second-alert {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 0.625rem;
}

.p-ceramic__second .p-ceramic__second-item {
  justify-content: space-between;
}
.p-ceramic__second .p-ceramic__second-imgWrapper-01 {
  flex: 0 0 34.6875rem;
  aspect-ratio: 555/244;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-ceramic__second .p-ceramic__second-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-ceramic__second .p-ceramic__second-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

/*
table
*/
.p-ceramic__second-table {
  width: min(100%, 37.25rem);
  margin-inline: auto;
  -webkit-margin-before: 1.625rem;
          margin-block-start: 1.625rem;
}
@media screen and (max-width: 500px) {
  .p-ceramic__second-table {
    width: 100%;
  }
}

/***************************************
入れ歯治療のページ
****************************************/
.p-dentures__first .p-dentures__first-imgWrapper-01 {
  flex: 0 0 29.375rem;
  aspect-ratio: 470/257;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-dentures__first .p-dentures__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-dentures__first .p-dentures__first-imgWrapper-02 {
  flex: 0 0 28.0625rem;
  aspect-ratio: 449/226;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-dentures__first .p-dentures__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-dentures__first .p-dentures__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-dentures__flow .c-inner__list {
  -webkit-margin-start: 1.875rem;
          margin-inline-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-dentures__flow .c-inner__list {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

/* -----------------------------------------------------------------
  フロントページ
----------------------------------------------------------------- */
.p-fv {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/fv-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.0625rem 4.25rem;
  margin-top: 7.375rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-top: 0;
    background-image: url(../images/bg/fv-sp-bg.png);
    padding-block: 4.0625rem 2.9375rem;
  }
}

.p-fv__inner {
  width: min(100% - 3.125rem, 73.5625rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    width: 100%;
  }
}

.p-fv__top {
  position: relative;
}

.p-fv__heading {
  position: absolute;
  top: -2.8125rem;
  left: -1.875rem;
  width: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__heading {
    top: -0.9375rem;
    left: 0;
    width: 24.375rem;
  }
}
@media only screen and (max-width: 389px) {
  .p-fv__heading {
    width: 21.875rem;
  }
}
@media screen and (max-width: 380px) {
  .p-fv__heading {
    width: 20.625rem;
  }
}

.p-fv__heading-top {
  display: block;
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__heading-top {
    width: 90%;
  }
}

.p-fv__heading-bottom {
  display: block;
  width: 26.25rem;
  margin-left: auto;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .p-fv__heading-bottom {
    width: 80%;
  }
}

.p-fv__message {
  position: absolute;
  top: 1.6875rem;
  right: 4.6875rem;
  width: 11rem;
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
  gap: 0.625rem;
  flex-direction: row-reverse;
  font-family: "Noto Serif JP", serif;
  z-index: 2;
}
@media only screen and (max-width: 1320px) {
  .p-fv__message {
    top: 2%;
    right: 8.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__message {
    top: 15%;
    right: 6%;
    width: 15.9375rem;
    height: 30rem;
    font-size: 1.5625rem;
    line-height: 1;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__message {
    top: 18%;
    right: 10%;
    width: 7.0625rem;
    height: 24.125rem;
    font-size: 1.125rem;
    line-height: 1.2222222222;
  }
}

.p-fv__message-text-right {
  width: 5rem;
}
@media only screen and (max-width: 1280px) {
  .p-fv__message-text-right {
    width: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__message-text-right {
    width: 3.1875rem;
    font-size: 1.125rem;
    line-height: 1.3888888889;
    padding-block: 0.3125rem;
  }
}
.p-fv__message-text-right .u-blue {
  display: inline-block;
  -webkit-margin-start: -1.125rem;
          margin-inline-start: -1.125rem;
  font-size: 3.375rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-fv__message-text-right .u-blue {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__message-text-right .u-blue {
    font-size: 1.6875rem;
  }
}
.p-fv__message-text-right .u-fw-bold {
  font-weight: 900;
}
.p-fv__message-text-right .text {
  display: inline-block;
  -webkit-margin-start: -1.125rem;
          margin-inline-start: -1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 500px) {
  .p-fv__message-text-right .text {
    -webkit-margin-start: -0.625rem;
            margin-inline-start: -0.625rem;
  }
}

.p-fv__message-text-left {
  align-self: flex-end;
  width: 5.375rem;
  margin-top: 4.8125rem;
}
@media only screen and (max-width: 1280px) {
  .p-fv__message-text-left {
    width: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__message-text-left {
    width: 3.1875rem;
  }
}
.p-fv__message-text-left .u-fw-bold {
  font-weight: 900;
}
.p-fv__message-text-left .u-dark-blue {
  display: inline-block;
  -webkit-margin-start: -1.125rem;
          margin-inline-start: -1.125rem;
  font-size: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-fv__message-text-left .u-dark-blue {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__message-text-left .u-dark-blue {
    font-size: 1.625rem;
  }
}
.p-fv__message-text-left .text {
  display: inline-block;
  -webkit-margin-start: -0.9375rem;
          margin-inline-start: -0.9375rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 500px) {
  .p-fv__message-text-left .text {
    -webkit-margin-start: -0.625rem;
            margin-inline-start: -0.625rem;
  }
}

.p-fv__bottom {
  position: relative;
  margin-top: 1.875rem;
  color: #fff;
}

.p-fv__title {
  width: 38.4375rem;
  aspect-ratio: 615/124;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  letter-spacing: 0.06em;
  position: relative;
  padding-right: 0.9375rem;
  font-family: "Noto Serif JP", serif;
}
@media only screen and (max-width: 1177px) {
  .p-fv__title {
    padding-right: 1.5625rem;
  }
}
.p-fv__title::before {
  content: "";
  display: block;
  width: 97%;
  height: 100%;
  background-image: url(../images/common/accese-title.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -0.625rem;
}
.p-fv__title > span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    width: 18.875rem;
    aspect-ratio: 302/61;
    padding-right: 0;
  }
  .p-fv__title::before {
    width: 100%;
    height: 3.8125rem;
    background-size: 100% 100%;
  }
}
.p-fv__title .small {
  margin-top: 0.875rem;
  font-size: 2.1875rem;
  line-height: 1.8571428571;
  font-weight: 700;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title .small {
    margin-top: 0.4375rem;
    margin-right: 0.3125rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}
.p-fv__title .large {
  font-size: 3.125rem;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-fv__title .large {
    font-size: 1.5625rem;
    line-height: 1.2;
  }
}

.p-concept {
  width: 100%;
  background-color: #fff;
  padding-block: 2.25625rem 3.65625rem;
  scroll-margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding-block: 0.9375rem 2.0625rem;
  }
}

.p-concept__inner {
  position: relative;
  width: min(100%, 85.375rem);
  margin-inline: auto;
}

.p-concept__title-img {
  display: block;
  position: absolute;
  top: 0;
  right: 4.6875rem;
  width: 40.125rem;
  aspect-ratio: 642/167;
}
@media screen and (max-width: 767px) {
  .p-concept__title-img {
    width: 85%;
    aspect-ratio: 328/85;
    top: 1.25rem;
    right: 0;
  }
}

.p-concept__content {
  position: relative;
  z-index: 1;
}

.p-concept__title {
  text-align: center;
  color: #202972;
  font-size: 2.5rem;
  line-height: 1.675;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 2.96875rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-concept__title {
    font-size: 1.4375rem;
    line-height: 1.4347826087;
    padding-top: 2.5rem;
  }
}
.p-concept__title .small {
  font-size: 1.875rem;
  line-height: 2.2333333333;
}
@media screen and (max-width: 767px) {
  .p-concept__title .small {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.p-concept__title > span {
  display: inline-block;
  position: relative;
}
.p-concept__title > span::before, .p-concept__title > span::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  background-color: #202972;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-concept__title > span::before, .p-concept__title > span::after {
    width: 1rem;
    height: 0.125rem;
  }
}
.p-concept__title > span::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: -2.90625rem;
}
@media screen and (max-width: 767px) {
  .p-concept__title > span::before {
    left: -1.4375rem;
  }
}
.p-concept__title > span::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: -2.90625rem;
}
@media screen and (max-width: 767px) {
  .p-concept__title > span::after {
    right: -1.4375rem;
  }
}

.p-concept__item {
  width: min(100% - 3.125rem, 65.5625rem);
  margin-inline: auto;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-concept__item {
    width: calc(100% - 2.5rem);
    margin-top: 1.25rem;
  }
}

.p-concept__imgWrapper {
  width: 100%;
  aspect-ratio: 1049/373;
}
@media screen and (max-width: 767px) {
  .p-concept__imgWrapper {
    aspect-ratio: 347/244;
  }
}

.p-concept__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept__text {
  margin-top: 1.6875rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-concept__text .text {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-concept__text {
    margin-top: 0.9375rem;
  }
  .p-concept__text .text {
    margin-top: 1.25rem;
  }
}

.p-menu {
  width: 100%;
  background-image: url(../images/bg/menu-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 2.125rem 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-menu {
    padding-block: 1.25rem 2.1875rem;
  }
}

.p-menu__title {
  text-align: center;
  color: #2A3165;
  width: 26.5rem;
  aspect-ratio: 424/124;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-menu__title {
    width: 75%;
    aspect-ratio: 235/68;
  }
}
.p-menu__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/menu-title.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.p-menu__title .p-menu__title-text {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  line-height: 1.675;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-menu__title .p-menu__title-text {
    font-size: 1.4375rem;
    line-height: 1;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 380px) {
  .p-menu__title .p-menu__title-text {
    margin-top: 1.25rem;
  }
}
.p-menu__title > span {
  display: inline-block;
  position: relative;
}
.p-menu__title > span::before, .p-menu__title > span::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  background-color: #202972;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-menu__title > span::before, .p-menu__title > span::after {
    width: 1rem;
  }
}
.p-menu__title > span::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: -2.90625rem;
}
@media screen and (max-width: 767px) {
  .p-menu__title > span::before {
    left: -1.4375rem;
  }
}
.p-menu__title > span::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: -2.90625rem;
}
@media screen and (max-width: 767px) {
  .p-menu__title > span::after {
    right: -1.4375rem;
  }
}

.p-menu__text {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-menu__text {
    margin-top: 0.8125rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-menu__items {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  gap: 0.8125rem 0.5rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-menu__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-menu__item {
  width: 100%;
  height: 100%;
  aspect-ratio: 203/216;
  background-color: #fff;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.9375rem 0.625rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-menu__item {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .p-menu__item {
    width: 100%;
    aspect-ratio: auto;
  }
}
@media (any-hover: hover) {
  .p-menu__item:hover, .p-menu__item:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .16);
  }
  .p-menu__item:hover .p-menu__itemImg, .p-menu__item:focus .p-menu__itemImg {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.p-menu__itemTitle {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #2A3165;
}
@media screen and (max-width: 767px) {
  .p-menu__itemTitle {
    font-size: 1rem;
    line-height: 1.375;
  }
}

.p-menu__itemImgWrapper {
  width: 4.1875rem;
  height: 4.1875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-menu__itemImgWrapper {
    width: 35%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.p-menu__itemImg {
  display: block;
  width: 4.1875rem;
  height: 4.1875rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-menu__itemImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.p-menu__itemText {
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: center;
}

.p-pickup {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/pickup-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 7rem 4.3125rem;
}
@media screen and (min-width: 1440px) {
  .p-pickup {
    padding-block: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup {
    padding-block: 2.8125rem 3.3125rem;
    background-image: url(../images/bg/pickup-bg-sp.png);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
}

.p-pickup__items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__items {
    gap: 2.8125rem;
  }
}

.p-pickup__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.48125rem;
  padding-left: 11.25rem;
  position: relative;
}
.p-pickup__item.--reverse {
  align-self: start;
  padding-left: 0;
  padding-right: 9.375rem;
}
@media only screen and (max-width: 1100px) {
  .p-pickup__item {
    padding-left: 8.125rem;
  }
  .p-pickup__item.--reverse {
    padding-right: 8.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup__item {
    padding-left: 0;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-end;
    gap: 0.9375rem;
  }
  .p-pickup__item.--reverse {
    flex-direction: column;
    padding-right: 0;
  }
}

.p-pickup__title-implant {
  display: block;
  width: 9.125rem;
  height: 32.25rem;
  aspect-ratio: 146/516;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -3.125rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-pickup__title-implant {
    width: 5.25rem;
    height: 19.625rem;
    aspect-ratio: 84/314;
    top: auto;
    bottom: 1.875rem;
  }
}

.p-pickup__title-ceramic {
  display: block;
  width: 6.8125rem;
  height: 29.375rem;
  aspect-ratio: 109/470;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -3.125rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-pickup__title-ceramic {
    width: 4.375rem;
    height: 14.4375rem;
    aspect-ratio: 70/231;
    top: auto;
    bottom: 12.5rem;
  }
}

.p-pickup__title-rootpipe {
  display: block;
  width: 11.25rem;
  height: 29.375rem;
  aspect-ratio: 180/470;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -11.25rem;
  left: -2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__title-rootpipe {
    width: 8.125rem;
    height: 28.5rem;
    aspect-ratio: 130/456;
    top: auto;
    left: -0.9375rem;
    bottom: -1.6875rem;
  }
}

.p-pickup__item-content {
  flex: 1 1 29.75rem;
  min-height: 27.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-right: 1.875rem;
  color: #fff;
}
.p-pickup__item-content.--reverse {
  margin-right: 0;
  margin-left: 1.875rem;
}
@media screen and (min-width: 1440px) {
  .p-pickup__item-content {
    flex: 0 0 auto;
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup__item-content {
    flex: 0 0 auto;
    min-height: auto;
    width: 90%;
    margin-right: 0;
    justify-content: flex-end;
    padding-right: 1.25rem;
  }
  .p-pickup__item-content.--reverse {
    align-self: flex-start;
    margin-left: 1.25rem;
  }
}

.p-pickup__item-title {
  width: 100%;
  font-size: 2.5rem;
  line-height: 1.675;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 1.3125rem;
}
.p-pickup__item-title::after {
  content: "";
  display: block;
  width: 40%;
  height: 0.0625rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-pickup__item-title::after {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup__item-title {
    width: 90%;
    font-size: 1.4375rem;
    line-height: 1;
    gap: 0.9375rem;
  }
}

.p-pickup__item-text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  font-weight: 300;
}
.p-pickup__item-text .text {
  display: block;
  margin-top: 0.9375rem;
}

.p-pickup__btn-wrapper {
  width: 16.25rem;
  height: 4.1875rem;
  margin-top: auto;
  margin-left: auto;
  background-color: #fff;
  border-radius: 0.3125rem;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-pickup__btn-wrapper {
    width: 12.5rem;
    height: 3.5625rem;
    margin-top: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup__btn-wrapper .c-more__btn .text {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup__btn-wrapper .c-more__btn .text::after {
    display: none;
  }
}

.p-pickup__item-imgWrapper {
  flex: 1 1 39.375rem;
  align-self: center;
}
@media screen and (min-width: 1440px) {
  .p-pickup__item-imgWrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}
.p-pickup__item-imgWrapper img {
  display: block;
  width: 100%;
  aspect-ratio: 630/410;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 1.25rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-pickup__item-imgWrapper img {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup__item-imgWrapper {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-pickup__item-imgWrapper:nth-of-type(even) img {
  border-radius: 1.25rem 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__item-imgWrapper:nth-of-type(even) {
    justify-content: flex-end;
  }
}

.p-news {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/news-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, .6);
  padding-block: 2.8125rem 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 1.375rem 2.875rem;
    background-image: url(../images/bg/news-bg-sp.png);
  }
}
.p-news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #AFCDFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-news__inner {
  width: min(100% - 3.125rem, 75rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    width: calc(100% - 2.5rem);
  }
}

.p-news__title {
  width: 25.8125rem;
  aspect-ratio: 413/124;
  color: #2A3165;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    width: 13.3125rem;
    aspect-ratio: 213/64;
    justify-content: flex-start;
    align-items: center;
  }
}
.p-news__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/news-title.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.p-news__title .p-news__title-text {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 1;
  padding-left: 1.25rem;
  border-left: 0.5625rem solid #2A3165;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-news__title .p-news__title-text {
    font-size: 1.4375rem;
    line-height: 1;
    padding-left: 0.625rem;
    padding-right: 0;
    margin-left: 0.3125rem;
    margin-top: 0.625rem;
    border-left: 0.375rem solid #2A3165;
  }
}

.p-news__wrapper {
  width: min(100%, 65.5625rem);
  margin-inline: auto;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-news__wrapper {
    width: 100%;
    margin-top: 0;
  }
}

.p-news__list {
  background-color: #fff;
  padding: 1.6875rem 6rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    padding: 1.6875rem 0.625rem;
  }
}

.p-news__item {
  border-bottom: 0.1875rem dashed rgba(207, 224, 245, .5);
  padding-block: 0.9375rem;
  color: #2A3165;
}
.p-news__item:first-child {
  border-top: 0.1875rem dashed rgba(207, 224, 245, .5);
}
@media screen and (max-width: 767px) {
  .p-news__item {
    padding-block: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.6153846154;
  }
}

.p-news__link {
  display: flex;
  align-items: center;
  gap: 6.25rem;
  margin-left: 2.5rem;
  position: relative;
}
.p-news__link::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 0.625rem);
  position: absolute;
  inset: 0;
}
@media (any-hover: hover) {
  .p-news__link:hover, .p-news__link:focus {
    color: #4D73B7;
  }
}
@media screen and (max-width: 767px) {
  .p-news__link {
    gap: 1.25rem;
    margin-left: 0.625rem;
  }
}

.p-news__btn-wrapper {
  margin-top: 0.8125rem;
  width: 8.125rem;
  height: 1.9375rem;
  margin-left: auto;
}

.p-message {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/message-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 2.40625rem 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-block: 0 1.6875rem;
  }
}

.p-message__title {
  width: 40.3125rem;
  aspect-ratio: 645/168;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-message__title {
    width: 100%;
    aspect-ratio: 355/92;
    position: relative;
    z-index: -1;
  }
}

.p-message__title-img {
  display: block;
  width: 100%;
  aspect-ratio: 645/168;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-message__title-img {
    width: 100%;
    aspect-ratio: 355/92;
  }
}

.p-message__inner {
  margin-top: -6.25rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    margin-top: -3.75rem;
    width: calc(100% - 2.5rem);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-message__content2col {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-message__content2col {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
}

.p-message__imgWrapper {
  width: 100%;
}
.p-message__imgWrapper.--top {
  width: 13.375rem;
  aspect-ratio: 214/260;
  margin-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-message__imgWrapper.--top {
    width: 38%;
    aspect-ratio: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message__imgWrapper:first-child {
    width: 38%;
  }
  .p-message__imgWrapper:last-child {
    width: 62%;
  }
}
.p-message__imgWrapper .p-message__img-top {
  display: block;
  width: 100%;
  height: 16.25rem;
  aspect-ratio: 214/260;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-message__imgWrapper .p-message__img-top {
    border-radius: 0.3125rem;
    height: 7.75rem;
    aspect-ratio: 136/124;
  }
}
.p-message__imgWrapper .p-message__img-bottom {
  display: block;
  width: 100%;
  height: 19.8125rem;
  aspect-ratio: 332/317;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-message__imgWrapper .p-message__img-bottom {
    border-radius: 0.3125rem;
    height: 7.75rem;
    aspect-ratio: 199/124;
  }
}

.p-message__item {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-message__item {
    -webkit-margin-before: 0.125rem;
            margin-block-start: 0.125rem;
    gap: 0.9375rem;
  }
}

.p-message__item-title {
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #2A3165;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-message__item-title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-message__item-text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  font-weight: 350;
}
.p-message__item-text .text {
  display: block;
  margin-top: 1.25rem;
}
.p-message__item-text .text:first-child {
  margin-top: 0;
}

.p-message__more {
  width: 12.5rem;
  height: 3.125rem;
  margin-left: auto;
  font-size: 1.1875rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-message__more {
    width: 10rem;
    height: 2.5rem;
  }
}

.p-message__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-message__content-imgWrapper {
  width: 100%;
}
.p-message__content-imgWrapper .p-message__img-center {
  display: block;
  width: 100%;
  height: 27.6875rem;
  aspect-ratio: 331/443;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-message__content-imgWrapper .p-message__img-center {
    border-radius: 0.625rem;
    height: 7.75rem;
    aspect-ratio: 347/124;
  }
}

.p-store {
  width: 100%;
  height: 100%;
  background-color: rgba(225, 233, 255, .5);
  padding-block: 2.8125rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-store {
    padding-block: 1.375rem 2.875rem;
  }
}

.p-store__inner {
  width: calc(100% - 3.125rem);
  margin-inline: auto;
}
@media screen and (min-width: 1440px) {
  .p-store__inner {
    width: calc(100% - 6.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-store__inner {
    width: calc(100% - 2.5rem);
  }
}

/***************************************
インプラントページ
****************************************/
.p-implant__first .p-implant__first-imgWrapper-01 {
  flex: 0 0 29.9375rem;
  aspect-ratio: 479/274;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__first .p-implant__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__first .p-implant__first-imgWrapper-02 {
  flex: 0 0 29.9375rem;
  aspect-ratio: 479/226;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__first .p-implant__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__first .p-implant__first-imgWrapper-03 {
  flex: 0 0 28.5625rem;
  aspect-ratio: 457/186;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__first .p-implant__first-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__first .p-implant__first-imgWrapper-04 {
  flex: 0 0 29.9375rem;
  aspect-ratio: 479/229;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__first .p-implant__first-imgWrapper-04 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__first .p-implant__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-implant__second .p-implant__second-imgWrapper-01 {
  flex: 0 0 30rem;
  aspect-ratio: 480/242;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__second .p-implant__second-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__second .p-implant__second-imgWrapper-02 {
  flex: 0 0 29.9375rem;
  aspect-ratio: 479/247;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__second .p-implant__second-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__second .p-implant__second-imgWrapper-03 {
  flex: 0 0 30rem;
  aspect-ratio: 480/192;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__second .p-implant__second-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__second .p-implant__second-imgWrapper-04 {
  flex: 0 0 30rem;
  aspect-ratio: 480/229;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__second .p-implant__second-imgWrapper-04 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__second .p-implant__second-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-implant__third-items {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-implant__fourth .p-implant__fourth-imgWrapper-01 {
  flex: 0 0 30rem;
  aspect-ratio: 480/383;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-implant__fourth .p-implant__fourth-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-implant__fourth .p-implant__fourth-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.p-implant__fourth .c-page__list.--bg-white {
  border-color: #2A3165;
}

/***************************************
歯周病治療のページ
****************************************/
.p-perio__first .p-perio__first-imgWrapper-01 {
  flex: 0 0 28.5rem;
  aspect-ratio: 456/274;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-perio__first .p-perio__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-perio__first .p-perio__first-imgWrapper-02 {
  flex: 0 0 28.5rem;
  aspect-ratio: 456/256;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-perio__first .p-perio__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-perio__first .p-perio__first-imgWrapper-03 {
  flex: 0 0 20.8125rem;
  aspect-ratio: 333/233;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-perio__first .p-perio__first-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-perio__first .p-perio__first-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-perio__second {
  width: 100%;
  background-image: url(../images/bg/page-section02-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.125rem 3.4375rem;
}
@media screen and (max-width: 500px) {
  .p-perio__second {
    padding-block: 1.875rem;
  }
}
.p-perio__second .p-perio__second-imgWrapper-01 {
  flex: 0 0 20.8125rem;
  aspect-ratio: 333/233;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-perio__second .p-perio__second-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-perio__second .p-perio__second-imgWrapper-02 {
  flex: 0 0 28.5625rem;
  aspect-ratio: 457/290;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-perio__second .p-perio__second-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-perio__second .p-perio__second-img {
  width: 100%;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-perio__second-text {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}

.p-perio__pro-item {
  -webkit-margin-before: -1.875rem;
          margin-block-start: -1.875rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-perio__pro-item {
    justify-content: center;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.p-perio__pro-item .l-page__twoColumn-item {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-perio__pro-item .l-page__twoColumn-item {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

/* -----------------------------------------------------------------
  予防歯科
----------------------------------------------------------------- */
.p-preventive__first .p-preventive__first-imgWrapper-01 {
  flex: 0 0 29.375rem;
  aspect-ratio: 470/226;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__first .p-preventive__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__first .p-preventive__first-imgWrapper-02 {
  flex: 0 0 29.375rem;
  aspect-ratio: 470/309;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__first .p-preventive__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__first .p-preventive__first-imgWrapper-03 {
  flex: 0 0 30rem;
  aspect-ratio: 480/227;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__first .p-preventive__first-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__first .p-preventive__first-imgWrapper-04 {
  flex: 0 0 30rem;
  aspect-ratio: 480/227;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__first .p-preventive__first-imgWrapper-04 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__first .p-preventive__first-imgWrapper-05 {
  flex: 0 0 28.25rem;
  aspect-ratio: 452/287;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__first .p-preventive__first-imgWrapper-05 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__first .p-preventive__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-preventive__second .p-preventive__second-imgWrapper-01 {
  flex: 0 0 26.4375rem;
  aspect-ratio: 423/197;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__second .p-preventive__second-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__second .p-preventive__second-imgWrapper-02 {
  flex: 0 0 28.3125rem;
  aspect-ratio: 453/294;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__second .p-preventive__second-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-preventive__second .p-preventive__second-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-preventive__info {
  width: 100%;
  background-color: #F0F7FF;
  padding: 2.1875rem 1.875rem;
  border-radius: 0.625rem;
  -webkit-margin-before: 3.4375rem;
          margin-block-start: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__info {
    padding: 1.25rem 0.9375rem;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-preventive__info-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}

.p-preventive__info-title {
  width: 100%;
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  -webkit-padding-after: 0.78125rem;
          padding-block-end: 0.78125rem;
  border-bottom: 0.125rem solid #2A3165;
  color: #2A3165;
}
@media screen and (max-width: 767px) {
  .p-preventive__info-title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.p-preventive__info-title > .title {
  -webkit-margin-start: 1.25rem;
          margin-inline-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__info-title > .title {
    -webkit-margin-start: 0.3125rem;
            margin-inline-start: 0.3125rem;
  }
}
@media screen and (max-width: 500px) {
  .p-preventive__info-title > .title {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-preventive__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__info-item {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-preventive__info-item-text {
  -webkit-margin-start: 2rem;
          margin-inline-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-preventive__info-item-text {
    -webkit-margin-start: 1.6875rem;
            margin-inline-start: 1.6875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-preventive__info-item-text {
    -webkit-margin-start: 1.5rem;
            margin-inline-start: 1.5rem;
  }
}

.p-preventive__second-list {
  width: min(100%, 29.25rem);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  border: 0.125rem solid #2A3165;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.875rem;
  margin-block: 0.9375rem;
}
@media screen and (max-width: 500px) {
  .p-preventive__second-list {
    padding: 0.9375rem 1.25rem;
    width: 100%;
  }
}

.p-preventive__second-listItem {
  width: min(100%, 23.125rem);
  margin-inline: auto;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 500px) {
  .p-preventive__second-listItem {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
  }
}

/***************************************
採用ページ
****************************************/
.p-recruit {
  -webkit-margin-before: 6.875rem;
          margin-block-start: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.p-recruit__fv {
  width: 100%;
}

.p-recruit__fv-firstInner {
  position: relative;
}

.p-recruit__fv-firstImg {
  width: 100%;
}
.p-recruit__fv-firstImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1366/735;
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-firstImg img {
    width: 100%;
    aspect-ratio: 390/450;
  }
}

.p-recruit__fv-heading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-padding-before: 4.8125rem;
          padding-block-start: 4.8125rem;
  padding-inline: 2.5625rem 1.25rem;
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-heading {
    -webkit-padding-before: 2.5rem;
            padding-block-start: 2.5rem;
    padding-inline: 0.9375rem 0.625rem;
  }
}
.p-recruit__fv-heading-item {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  display: inline-block;
  text-shadow: 0 0.1875rem 0.8125rem rgba(0, 0, 0, .8);
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-heading-item {
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__fv-heading-item {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-recruit__fv-banner {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  -webkit-margin-after: 3.875rem;
          margin-block-end: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-banner {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__fv-banner {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    width: 90%;
  }
}

.p-recruit__fv-secondInner {
  width: 100%;
  min-height: 24.1875rem;
  height: 100%;
  background-image: url(../images/photo/recruit-fv02.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-secondInner {
    height: auto;
    padding-block: 1.5625rem;
  }
}

.p-recruit__fv-secondContent {
  width: min(100% - 3.75rem, 65.5625rem);
  min-height: 24.1875rem;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-secondContent {
    width: calc(100% - 3.125rem);
  }
}

.p-recruit__fv-secondText {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__fv-secondText {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
  }
}
.p-recruit__fv-secondText .text {
  display: block;
}
.p-recruit__fv-secondText .text:not(:first-child) {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-recruit__trouble {
  padding-block: 4.375rem 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble {
    padding-block: 3.125rem 3.75rem;
  }
}

.p-recruit__trouble-inner {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-inner {
    width: calc(100% - 3.125rem);
  }
}

.p-recruit__trouble-media {
  width: 100%;
  border: 0.125rem solid #A9C4E2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.625rem;
  gap: 4.375rem;
  padding: 1.75rem 1.625rem 1.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-media {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}

.p-recruit__trouble-media-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-media-body {
    align-self: start;
    gap: 0.625rem;
  }
}

.p-recruit__trouble-heading {
  background-color: #2A3165;
  color: #fff;
  padding: 1.4375rem 2.5rem;
  border-radius: 0 0.625rem 0.625rem 0;
  margin-left: -0.125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-heading {
    border-radius: 0 0.3125rem 0.3125rem 0;
    padding: 0.625rem;
  }
}
.p-recruit__trouble-heading .text {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-heading .text {
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}

.p-recruit__trouble-list {
  -webkit-margin-start: 4rem;
          margin-inline-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-list {
    -webkit-margin-start: 1.25rem;
            margin-inline-start: 1.25rem;
  }
}

.p-recruit__trouble-img {
  flex: 0 0 26.75rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-img {
    flex: 1 1 auto;
    width: 100%;
    -webkit-padding-start: 1.25rem;
            padding-inline-start: 1.25rem;
  }
}
.p-recruit__trouble-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 428/270;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__trouble-img img {
    aspect-ratio: auto;
    max-height: 15.625rem;
    -o-object-position: top center;
       object-position: top center;
  }
}

.p-recruit__about {
  width: 100%;
}

.p-recruit__about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-inner {
    grid-template-columns: 1fr;
  }
}

.p-recruit__about-left,
.p-recruit__about-right {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-left,
  .p-recruit__about-right {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit__about-img {
    flex: 1;
  }
}
.p-recruit__about-img img {
  width: 100%;
  height: 100%;
  max-height: 22rem;
  aspect-ratio: 304/352;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__about-center {
  padding: 4.875rem 4.125rem 3.75rem;
  background-color: #2A3165;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  clip-path: polygon(0 0, 40% 0, 50% 5%, 60% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 1440px) {
  .p-recruit__about-center {
    justify-content: center;
  }
}
@media only screen and (max-width: 1200px) {
  .p-recruit__about-center {
    padding: 3.75rem 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__about-center {
    padding: 3.125rem 1.875rem;
    gap: 1.25rem;
    clip-path: none;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-center {
    padding: 2.5rem 1.25rem;
  }
}

.p-recruit__about-heading {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  text-align: center;
}
.p-recruit__about-heading .text {
  display: block;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-heading .text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-heading .text {
    font-size: 1rem;
  }
}
.p-recruit__about-heading .text-large {
  display: block;
  font-size: 3.75rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-heading .text-large {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-heading .text-large {
    font-size: 1.875rem;
  }
}
.p-recruit__about-heading .text-large .small {
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-heading .text-large .small {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-heading .text-large .small {
    font-size: 1.25rem;
  }
}

.p-recruit__about-text {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  text-align: center;
}
.p-recruit__about-text .text {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-text .text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.p-recruit__about-text .text:not(:first-child) {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-text {
    text-align: left;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-text {
    width: 100%;
  }
}

.p-recruit__about-message {
  width: 100%;
  height: 7.9375rem;
  background-color: #EFF4FF;
  color: #2A3165;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  padding: 0.625rem;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-message {
    width: 80%;
    height: 5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-message {
    width: 100%;
    height: 3.75rem;
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}
.p-recruit__about-message .text-large {
  display: inline-block;
  font-size: 2.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-recruit__about-message .text-large {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__about-message .text-large {
    font-size: 1.125rem;
  }
}

.p-recruit__points {
  width: 100%;
  background-image: url(../images/bg/recruit-bg01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__points {
    padding-block: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points {
    padding-block: 2.1875rem;
  }
}

@media screen and (max-width: 500px) {
  .p-recruit__points-heading .text {
    font-size: 1.25rem;
  }
}

.p-recruit__points-inner {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
  -webkit-margin-before: 2.875rem;
          margin-block-start: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-inner {
    width: calc(100% - 3.125rem);
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points-inner {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-recruit__points-list {
  width: min(100%, 50.1875rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-recruit__points-item {
  width: 100%;
  min-height: 18.125rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
}
.p-recruit__points-item.--item01 {
  background-image: url(../images/photo/recruit-item06.png);
}
.p-recruit__points-item.--item02 {
  background-image: url(../images/photo/recruit-item07.png);
}
.p-recruit__points-item.--item03 {
  background-image: url(../images/photo/recruit-item08.png);
}
@media screen and (max-width: 767px) {
  .p-recruit__points-item {
    min-height: 12.5rem;
  }
}

.p-recruit__points-item-heading {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  padding: 1.125rem 1.875rem;
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background-color: #2A3165;
  color: #fff;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-item-heading {
    border-radius: 0 0.3125rem 0.3125rem 0;
    gap: 0.625rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points-item-heading {
    padding: 0.3125rem 0.625rem;
  }
}
.p-recruit__points-item-heading .number {
  width: 4.1875rem;
  height: 2.9375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-item-heading .number {
    width: 2.1875rem;
    height: 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points-item-heading .number {
    width: 1.5625rem;
    height: 1.125rem;
  }
}
.p-recruit__points-item-heading .number img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__points-item-heading .text {
  display: block;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-item-heading .text {
    font-size: 1.125rem;
  }
}

.p-recruit__points-content {
  width: 100%;
  -webkit-margin-before: 5.0625rem;
          margin-block-start: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-content {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points-content {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-recruit__points-content-text {
  background-color: #2A3165;
  color: #fff;
  padding: 2rem 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-content-text {
    padding: 1.25rem 0.625rem;
  }
}
.p-recruit__points-content-text .text {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-content-text .text {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points-content-text .text {
    font-size: 1.25rem;
  }
}

.p-recruit__points-contentItems {
  width: 100%;
  min-height: 15.3125rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  gap: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-contentItems {
    flex-direction: column;
    gap: 0;
  }
}

.p-recruit__points-contentItem-img {
  flex: 0 0 29.3125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-contentItem-img {
    flex: 1 1 auto;
  }
}
.p-recruit__points-contentItem-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 469/245;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-contentItem-img img {
    aspect-ratio: auto;
  }
}

.p-recruit__points-contentItem-text {
  flex: 1 1 auto;
  padding: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-recruit__points-contentItem-text {
    padding: 1.25rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__points-contentItem-text {
    font-size: 0.875rem;
  }
}

/*
* アピール
*/
.p-recruit__appeal {
  width: 100%;
  background-image: url(../images/bg/recruit-bg02.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.9375rem 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__appeal {
    padding-block: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal {
    padding-block: 2.1875rem;
  }
}

.p-recruit__appeal-inner {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
  position: relative;
}
.p-recruit__appeal-inner::before {
  content: "";
  display: block;
  width: 58.75rem;
  height: 13.3125rem;
  background-image: url(../images/common/recruitment-title.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit__appeal-inner::before {
    top: -0.625rem;
    width: 90%;
    height: 8.75rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-inner::before {
    top: 0;
    width: 100%;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__appeal-inner {
    width: calc(100% - 3.125rem);
  }
}

.p-recruit__appeal-heading {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-heading {
    font-size: 1.25rem;
  }
}

.p-recruit__banner {
  position: relative;
  z-index: 2;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__banner {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    width: 100%;
  }
}

.p-recruit__appeal-kinds {
  -webkit-margin-before: 2.375rem;
          margin-block-start: 2.375rem;
  width: min(100%, 50.5625rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-kinds {
    gap: 0.625rem;
  }
}

.p-recruit__appeal-kind {
  width: 100%;
  min-height: 4.125rem;
  background-color: #F0F7FF;
  color: #2A3165;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 3.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit__appeal-kind {
    min-height: 2.5rem;
    gap: 0.8125rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-kind {
    min-height: 1.875rem;
    gap: 0.625rem;
  }
}
.p-recruit__appeal-kind::before {
  content: "";
  display: block;
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-recruit__appeal-kind::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-kind::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-kind.--item01 {
    gap: 0.125rem;
  }
}
.p-recruit__appeal-kind.--item01::before {
  background-image: url(../images/photo/recruit-item10.png);
}
.p-recruit__appeal-kind.--item02::before {
  background-image: url(../images/photo/recruit-item11.png);
}
.p-recruit__appeal-kind.--item03::before {
  background-image: url(../images/photo/recruit-item12.png);
}
.p-recruit__appeal-kind .text {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__appeal-kind .text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__appeal-kind .text {
    font-size: 0.875rem;
  }
}

.p-recruit__factor {
  width: 100%;
  background-image: url(../images/bg/recruit-bg03.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 5.75rem 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__factor {
    padding-block: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__factor {
    padding-block: 2.1875rem;
  }
}

.p-recruit__factor-inner {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__factor-inner {
    width: calc(100% - 3.125rem);
  }
}

.p-recruit__factor-contentWrapper {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__factor-contentWrapper {
    gap: 1.875rem;
  }
}

.p-recruit__factor-heading {
  width: -webkit-fit-content;
  width: fit-content;
  padding: 1.5625rem 4.375rem;
  background-color: #2A3165;
  color: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__factor-heading {
    padding: 0.9375rem 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__factor-heading {
    padding: 0.625rem 1.25rem;
  }
}
.p-recruit__factor-heading .text {
  display: block;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__factor-heading .text {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__factor-heading .text {
    font-size: 1.125rem;
  }
}

.p-recruit__factor-contentItem {
  background-color: #fff;
  padding: 1.6875rem 3.125rem;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__factor-contentItem {
    padding: 1.25rem 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__factor-contentItem {
    padding: 1.25rem;
  }
}

/*
* 給与・募集要項
*/
.p-recruit__price {
  width: 100%;
  padding-block: 3.125rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__price {
    padding-block: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__price {
    padding-block: 2.1875rem;
  }
}

.p-recruit__price-inner {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-inner {
    width: calc(100% - 3.125rem);
  }
}

@media screen and (max-width: 767px) {
  .p-recruit__price-heading .text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__price-heading .text {
    font-size: 1.125rem;
  }
}

.p-recruit__price-items {
  -webkit-margin-before: 2.6875rem;
          margin-block-start: 2.6875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-items {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-recruit__price-item {
  min-height: 21.5rem;
  background-color: #2A3165;
  color: #fff;
  padding: 1.25rem 0.625rem 1.65625rem;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-item {
    width: 75%;
    margin-inline: auto;
    min-height: auto;
    padding: 1.25rem 0.625rem;
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__price-item {
    width: 85%;
  }
}
@media (any-hover: hover) {
  .p-recruit__price-item:hover .p-recruit__price-item-btn-icon, .p-recruit__price-item:focus .p-recruit__price-item-btn-icon {
    -webkit-transform: translateX(0.3125rem);
            transform: translateX(0.3125rem);
  }
  .p-recruit__price-item:hover .text::after, .p-recruit__price-item:focus .text::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.p-recruit__price-item-img {
  width: 100%;
  max-width: 12.375rem;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-item-img {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    max-width: 7.5rem;
  }
}
.p-recruit__price-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 198/198;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-item-img img {
    aspect-ratio: 120/120;
  }
}

.p-recruit__price-item-text {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-item-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__price-item-text {
    font-size: 1.125rem;
  }
}

.p-recruit__price-item-btn {
  width: 9.375rem;
  height: 1.5625rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  gap: 0.875rem;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .p-recruit__price-item-btn {
    width: 7.8125rem;
    height: 1.25rem;
  }
}
.p-recruit__price-item-btn .text {
  padding-bottom: 0.3125rem;
  font-size: 1.25rem;
  position: relative;
}
.p-recruit__price-item-btn .text::after {
  content: "";
  display: block;
  width: calc(100% + 0.625rem);
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: right;
          transform-origin: right;
}
@media screen and (max-width: 767px) {
  .p-recruit__price-item-btn .text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__price-item-btn .text {
    font-size: 1rem;
  }
}

.p-recruit__price-item-btn-icon {
  display: block;
  width: 1.25rem;
  height: 0.0625rem;
  margin-top: 0.4375rem;
  background-color: #fff;
  border-radius: 62.4375rem;
  position: relative;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 500px) {
  .p-recruit__price-item-btn-icon {
    width: 0.9375rem;
    height: 0.0625rem;
    margin-top: 0.3125rem;
  }
}
.p-recruit__price-item-btn-icon::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.03125rem);
  right: 0;
  width: 0.625rem;
  height: 0.0625rem;
  border-radius: 62.4375rem;
  background-color: inherit;
  -webkit-transform: rotate(44deg);
          transform: rotate(44deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
@media screen and (max-width: 500px) {
  .p-recruit__price-item-btn-icon::before {
    width: 0.4375rem;
  }
}

/*
* メッセージ
*/
.p-recruit__message {
  width: 100%;
  -webkit-padding-before: 3.75rem;
          padding-block-start: 3.75rem;
  background-image: url(../images/bg/recruit-bg04.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit__message {
    padding-block: 2.5rem;
  }
}

.p-recruit__message-itemWrapper {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.125rem;
  -webkit-padding-after: 3.75rem;
          padding-block-end: 3.75rem;
  position: relative;
}
.p-recruit__message-itemWrapper::before {
  content: "";
  display: block;
  width: 40.375rem;
  height: 10.8125rem;
  background-image: url(../images/common/message-title.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: -4.875rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit__message-itemWrapper::before {
    right: -1.25rem;
    width: 25rem;
    height: 6.25rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__message-itemWrapper::before {
    width: 18.75rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__message-itemWrapper {
    width: calc(100% - 3.125rem);
    flex-direction: column;
    gap: 1.875rem;
    -webkit-padding-after: 2.5rem;
            padding-block-end: 2.5rem;
  }
}

.p-recruit__message-item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__message-item {
    gap: 0.9375rem;
  }
}

.p-recruit__message-heading .text {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  color: #2A3165;
}
@media screen and (max-width: 767px) {
  .p-recruit__message-heading .text {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__message-heading .text {
    font-size: 1.5625rem;
  }
}

.p-recruit__message-text {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.p-recruit__message-text .text {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-recruit__message-text .text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-recruit__message-img {
  flex: 0 0 19rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__message-img {
    flex: 1 1 auto;
  }
}
.p-recruit__message-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__shortMessage-content {
  width: 100%;
  background-image: url(../images/bg/recruit-bg05.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.125rem 3.4375rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__shortMessage-content {
    padding-block: 2.5rem;
  }
}

.p-recruit__shortFormAssistant-contentWrapper {
  width: min(100% - 3.75rem, 65.5625rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__shortFormAssistant-contentWrapper {
    width: calc(100% - 3.125rem);
    gap: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__shortFormAssistant-contentWrapper {
    gap: 1.25rem;
  }
}

.p-recruit__shortFormAssistant-heading .text {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit__shortFormAssistant-heading .text {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__shortFormAssistant-heading .text {
    font-size: 1.125rem;
  }
}

.p-recruit__shortFormAssistant-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-recruit__shortFormAssistant-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__shortFormAssistant-text {
    font-size: 0.875rem;
  }
}

/*
* 採用までの流れ
*/
.p-recruit__flow {
  width: 100%;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__flow {
    padding-block: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__flow {
    padding-block: 2.1875rem;
  }
}

.p-recruit__flow-inner {
  width: min(100% - 3.75rem, 72rem);
  margin-inline: auto;
  position: relative;
}
.p-recruit__flow-inner::before {
  content: "";
  display: block;
  width: 22.3125rem;
  height: 8.25rem;
  background-image: url(../images/common/about-flow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -1.5625rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruit__flow-inner::before {
    width: 15.625rem;
    height: 5.625rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__flow-inner::before {
    width: 12.5rem;
    height: 4.375rem;
    top: -0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__flow-inner {
    width: calc(100% - 3.125rem);
  }
}

.p-recruit__flow-items {
  width: min(100%, 68.4375rem);
  margin-inline: auto;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__flow-items {
    width: 100%;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
@media only screen and (max-width: 390px) {
  .p-recruit__flow-items {
    grid-template-columns: 1fr;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-recruit__flow-item {
  border: 0.125rem solid #A9C4E2;
  border-radius: 0.625rem;
}

.p-recruit__flow-item-img {
  width: 100%;
  overflow: hidden;
}
.p-recruit__flow-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 261/180;
}
@media only screen and (max-width: 390px) {
  .p-recruit__flow-item-img img {
    max-height: 10rem;
    -o-object-position: top center;
       object-position: top center;
    aspect-ratio: auto;
  }
}

.p-recruit__flow-item-body {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.p-recruit__flow-item-heading {
  background-color: #2A3165;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  display: flex;
  align-items: center;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__flow-item-heading {
    font-size: 1.125rem;
    padding: 0.3125rem;
  }
}

.p-recruit__flow-item-text {
  padding: 0.9375rem 0.9375rem 1.5625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-recruit__flow-item-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/***************************************
根管治療のページ
****************************************/
.p-rootcanal__first .p-rootcanal__first-imgWrapper-01 {
  flex: 0 0 29.375rem;
  height: 17.75rem;
  aspect-ratio: 470/284;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__first .p-rootcanal__first-imgWrapper-01 {
    flex: 1 1 auto;
    height: auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-rootcanal__first .p-rootcanal__first-imgWrapper-02 {
  flex: 0 0 28.0625rem;
  aspect-ratio: 449/220;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__first .p-rootcanal__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-rootcanal__first .p-rootcanal__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.p-rootcanal__first .p-rootcanal__flow .c-inner__list {
  -webkit-margin-start: 1.875rem;
          margin-inline-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__first .p-rootcanal__flow .c-inner__list {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.p-rootcanal__table .c-table {
  width: min(100%, 37.25rem);
  margin-inline: auto;
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__table .c-table {
    width: 100%;
  }
}
.p-rootcanal__table .c-table .c-table__cell.--small {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__table .c-table .c-table__cell.--small {
    font-size: 0.75rem;
  }
}

.p-rootcanal__heading-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__heading-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-rootcanal__heading-text .text {
  display: block;
}
.p-rootcanal__heading-text .text:not(:first-child) {
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

.p-rootcanal__second {
  -webkit-padding-after: 3.75rem;
          padding-block-end: 3.75rem;
}

.p-rootcanal__table.--price .c-table {
  width: min(100%, 65.5625rem);
  margin-inline: auto;
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-rootcanal__table.--price .c-table {
    width: 100%;
  }
}

/***************************************
顎関節症治療のページ
****************************************/
.p-tmd__first .p-tmd__first-imgWrapper-01 {
  flex: 0 0 29.375rem;
  aspect-ratio: 470/226;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-tmd__first .p-tmd__first-imgWrapper-01 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-tmd__first .p-tmd__first-imgWrapper-02 {
  flex: 0 0 28.0625rem;
  aspect-ratio: 449/220;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-tmd__first .p-tmd__first-imgWrapper-02 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-tmd__first .p-tmd__first-imgWrapper-03 {
  flex: 0 0 28.0625rem;
  aspect-ratio: 449/220;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-tmd__first .p-tmd__first-imgWrapper-03 {
    flex: 1 1 auto;
    aspect-ratio: auto;
    width: 100%;
  }
}
.p-tmd__first .p-tmd__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-tmd__flow .c-inner__list {
  -webkit-margin-start: 1.875rem;
          margin-inline-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-tmd__flow .c-inner__list {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

/***************************************
ホワイトニングページ
****************************************/
.p-whitening__first-title {
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
}

.p-whitening__first-imgWrapper-01 {
  flex: 0 0 20.8125rem;
  aspect-ratio: 333/311;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-whitening__first-imgWrapper-01 {
    flex: 1 1 auto;
    max-height: 20.8125rem;
    aspect-ratio: 1/1;
  }
}

.p-whitening__first-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.c-page__list-item {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-whitening__media-item {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

/*
メディアコンテンツ
*/
.p-whitening__media-wrapper {
  width: min(100%, 59.3125rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-whitening__media-wrapper {
    width: 100%;
  }
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  transition: all 1s;
}
.fadeup.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-top-walk__block.fadeup {
  transition-delay: 0.75s;
}

.p-top-treatment .p-top-treatment__section:nth-child(2).fadeup {
  transition-delay: 0.2s;
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
.swiperFv {
  width: calc(100% - 2.5rem);
  border-radius: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .swiperFv {
    width: calc(100% - 3.125rem);
    border-radius: 1.0625rem;
  }
}

.swiperFv__wrapper {
  display: flex;
  transition-timing-function: ease;
  position: relative;
}

.swiperFv__slide {
  display: block;
  width: 100%;
  position: absolute; /* 必須！ */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .swiperFv__slide {
    width: 100%;
    aspect-ratio: auto;
  }
}

.p-fv__img {
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  -webkit-animation: zoomUp 7s linear forwards;
          animation: zoomUp 7s linear forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 1023px) {
  .p-fv__img {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    border-radius: 1.0625rem;
  }
}

/* active状態でズーム再生 */
.swiper-slide-active .p-fv__img {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-drawer__wrap {
  padding: 1.5rem 1rem 2rem 1rem;
  padding-top: 5.34375rem;
  margin: 0 auto;
}

.p-drawer__nav {
  width: calc(100% - 4.375rem);
  margin-inline: auto;
}
@media screen and (max-width: 500px) {
  .p-drawer__nav {
    width: calc(100% - 3.125rem);
  }
}

.p-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.p-drawer__item {
  padding: 1rem 0.6875rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 0.0625rem solid #C5D3EA;
}
.p-drawer__item:first-child {
  border-top: 0.0625rem solid #C5D3EA;
}
.p-drawer__item.--child {
  cursor: pointer;
  position: relative;
  border-bottom: none;
}
.p-drawer__item.--child::after {
  content: "－";
  position: absolute;
  right: 0.6875rem;
  top: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.25rem;
  color: #262626;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-drawer__item.--child.is-closed::after {
  content: "＋";
}
.p-drawer__item.--child.is-closed {
  border-bottom: 0.0625rem solid #C5D3EA;
}
.p-drawer__item:nth-of-type(4) {
  position: relative;
  border-top: none;
}
.p-drawer__item:nth-of-type(4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background: #C5D3EA;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-drawer__item:nth-of-type(3):not(.is-closed) + .p-drawer__item:nth-of-type(4)::before {
  opacity: 1;
}

.p-drawer__link {
  display: block;
}
@media (any-hover: hover) {
  .p-drawer__link:hover {
    color: #36A3BE;
  }
}

.p-drawer__child-wrap {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.p-drawer__child-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-inline: 0.6875rem;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}

.p-drawer__child-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .p-drawer__child-link:hover {
    color: #4D73B7;
  }
}

.p-drawer__btn {
  margin-top: 2rem;
}

.c-drawer__sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 0.3125rem;
  padding: 1rem 0;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-drawer__sp-btn:hover .c-drawer__sp-icon img {
    -webkit-animation: iconShake 0.5s ease-in-out;
            animation: iconShake 0.5s ease-in-out;
  }
}
.c-drawer__sp-btn.--tel {
  background: #72A9D3;
  color: #fff;
  box-shadow: inset 0 3px 20px #5481D0;
}
.c-drawer__sp-btn.--web {
  background: #4B73B7;
  color: #fff;
  box-shadow: inset 0 3px 20px #5481D0;
}
.c-drawer__sp-btn .c-drawer__sp-icon {
  margin-right: 0.5rem;
}
.c-drawer__sp-btn .c-drawer__sp-icon img {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@keyframes iconShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-drawer__copy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-block: 0.5625rem;
  text-align: center;
  background-color: #8AA1C7;
  color: #fff;
}
.p-drawer__copy .p-drawer__copy-text {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.625rem;
  font-weight: 500;
}

/* 固定ボタン */
.p-fixed {
  position: fixed;
  top: 13.375rem;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-fixed {
    display: none;
  }
}
.js-drawer.open ~ .p-fixed {
  display: none;
}

.p-fixed__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media only screen and (min-width: 768px) {
  .p-fixed__sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-fixed__sp {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4.1875rem;
    z-index: 10;
  }
}
.js-drawer.open ~ .p-fixed__sp {
  display: none !important;
}

.p-fixed__sp-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* フッター
------------------------------------------------ */
.p-footer {
  padding-top: 3.3125rem;
  background-color: #2A3165;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 3.125rem 3.125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 4.1875rem;
  }
}

.p-footer__logo {
  display: block;
  width: 15.6875rem;
  height: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 12.0625rem;
    height: 2.9375rem;
    margin-inline: auto;
  }
}
.p-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__inner {
  margin-top: 2.0625rem;
  display: flex;
  justify-content: space-between;
  gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
  }
}

.p-footer__nav {
  display: flex;
  justify-content: center;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.9285714286;
  letter-spacing: 0.06em;
}

.p-footer__nav-title a {
  font-weight: 700;
}

.p-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2.25rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    gap: 0.75rem 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.625rem;
  }
}
.p-footer__nav-list.--recruit {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list.--recruit {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-footer__nav-link {
  color: inherit;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 350;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
}
.p-footer__nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.p-footer__sns {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    margin-top: 0;
  }
}

.p-footer__sns-items {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-items {
    flex-direction: row;
    gap: 0.3125rem;
  }
}

.p-footer__banner {
  margin-top: 2.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__banner {
    margin-top: 1.0625rem;
    gap: 0.25rem;
  }
}

.p-footer__banner-link {
  display: block;
  width: 12.5rem;
  height: 4.1875rem;
}
@media (any-hover: hover) {
  .p-footer__banner-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__banner-link {
    width: 10.5625rem;
    height: 3.5625rem;
  }
}

.p-footer__banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__copy {
  width: 100%;
  height: 2rem;
  margin-top: 2.5rem;
  background-color: #8AA1C7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__copy-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2.25;
}

.p-form input[type=radio], .p-form input[type=checkbox] {
  display: block;
  opacity: 0;
  position: absolute;
  z-index: -100;
  -webkit-appearance: auto;
          appearance: auto;
}
.p-form input[type=radio] + span,
.p-form input[type=checkbox] + span {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #262626;
  text-align: left;
  width: 100%;
}
.p-form input[type=radio] + span {
  padding: 0.625rem 0.625rem 0.625rem 1.125rem;
}
.p-form input[type=checkbox] + span {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-form input[type=checkbox] + span {
    padding-right: 0;
  }
}
.p-form input[type=radio]:checked + span,
.p-form input[type=checkbox]:checked + span {
  color: #262626;
}
.p-form input[type=radio] + span:before,
.p-form input[type=checkbox] + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:before,
.p-form input[type=checkbox]:checked + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:after {
  background: #262626;
}
.p-form input[type=checkbox]:checked + span:after {
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  -webkit-mask: url(../images/common/icon-check.png) no-repeat center center/contain;
          mask: url(../images/common/icon-check.png) no-repeat center center/contain;
  background-color: #262626;
  width: 20px;
  height: 20px;
}
.p-form input[type=checkbox] + span:hover::after {
  background-color: #262626;
}
.p-form input[type=text], .p-form input[type=password], .p-form input[type=email], .p-form input[type=tel], .p-form input[type=url], .p-form input[type=search], .p-form input[type=number], .p-form input[type=datetime], .p-form input[type=week], .p-form select {
  width: 100%;
  background-color: #fff;
  padding: 0.625rem 0.625rem;
  border-radius: 0.25rem;
}
.p-form textarea {
  min-height: 12.5rem;
  padding: 0.625rem 0.625rem;
  width: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
}

.p-form__table {
  width: 100%;
  font-size: 1.125rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-form__table {
    font-size: 1rem;
  }
}

.p-form__table a {
  border-bottom: 1px solid #262626;
}

@media screen and (max-width: 767px) {
  .p-form__table tr {
    display: flex;
    flex-direction: column;
  }
}

.p-form__table th {
  text-align: left;
  font-weight: 400;
  width: 40%;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-form__table th {
    width: 100%;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}

.p-form__table td {
  width: 55%;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-form__table td {
    width: 100%;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}

.p-form__vertical-top {
  vertical-align: top;
}

.p-form__tel-wrap {
  display: flex;
  align-items: center;
}
.p-form__tel-wrap span {
  font-weight: 100;
  margin-inline: 0.3125rem;
}

.p-form__required:after {
  content: "*";
  display: inline-block;
  font-size: 0.8em;
  vertical-align: top;
  color: #ff0000;
}

@media screen and (max-width: 767px) {
  .submit_button + .submit_button {
    margin-top: 1.25rem;
  }
}

.p-form__btn {
  display: block;
  width: 100%;
  max-width: 16.25rem;
  margin-inline: auto;
  margin-top: 2.8125rem;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form__btn {
    max-width: 12.5rem;
  }
}
.p-form__btn::before {
  content: "";
  display: block;
  width: 1.0625rem;
  height: 0.9375rem;
  background: url(../images/common/arrow_blue.png) no-repeat center center/contain;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form__btn::before {
    width: 0.9375rem;
    height: 0.8125rem;
    right: 0.9375rem;
  }
}
.p-form__btn .submit_button {
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  width: 100%;
  padding: 1.25rem 0.3125rem;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  border-radius: 1.875rem;
  border: 1px solid #404040;
}
@media screen and (max-width: 767px) {
  .p-form__btn .submit_button {
    font-size: 1rem;
    max-width: 12.5rem;
    padding: 0.9375rem 0.3125rem;
  }
}
@media (any-hover: hover) {
  .p-form__btn .submit_button:hover {
    opacity: 1;
  }
  .p-form__btn .submit_button:hover::before {
    -webkit-transform: translate(0.3125rem, -50%);
            transform: translate(0.3125rem, -50%);
  }
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  height: 7.375rem;
  position: relative;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.875rem;
  }
}

/* フロント（home クラスが body に付いてる） */
@media screen and (max-width: 767px) {
  body.home .p-header {
    background-color: transparent;
  }
}

/* 下層ページ（home クラス以外） */
@media screen and (max-width: 767px) {
  body:not(.home) .p-header {
    background-color: #fff;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
  width: calc(100% - 50px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    display: none;
  }
}

.p-header__logo {
  width: 14.4375rem;
  height: 3.5625rem;
  padding-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    display: none;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__logo a {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}

.p-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2.5rem;
}

.p-header__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1.875rem;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .p-header__list {
    gap: 1.25rem;
  }
}

.p-header__item {
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #56473F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-header__link {
  display: block;
  width: 100%;
  color: inherit;
  padding-block: 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .p-header__link:hover .p-header__link-text::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.p-header__link-text {
  display: inline-block;
  position: relative;
  color: #56473F;
}
.p-header__link-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #56473F;
  position: absolute;
  bottom: -0.625rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.p-header__btn {
  width: 16.4375rem;
  height: 4.5rem;
}

.p-header__item.--child {
  position: relative;
  cursor: pointer;
  padding: 1.25rem 0.9375rem;
}

.p-header__child-wrap {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 6.5625rem;
  left: -0.625rem;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: 30;
}
.p-header__child-wrap::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: -0.3125rem;
  right: -0.3125rem;
  height: 0.9375rem;
  background: transparent;
}

.p-header__item.--child:hover .p-header__child-wrap,
.p-header__item.--child .p-header__child-wrap:hover .p-header__child-wrap {
  opacity: 1;
  visibility: visible;
}

.p-header__child-list {
  color: #56473F;
  min-width: 7.5rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  white-space: nowrap;
}

.p-header__child-item {
  width: 7.5rem;
  height: 2.75rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .3);
  transition: all 0.3s ease;
}

.p-header__child-link {
  display: block;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-header__child-link:hover {
    background-color: rgba(86, 71, 63, .6);
    color: #fff;
  }
}

/* スマホ用ヘッダー */
@media only screen and (min-width: 768px) {
  .p-header__sp-inner {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-header__sp-inner {
    width: calc(100% - 40px);
    margin-inline: auto;
    height: 3.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-header__sp-logo {
    width: 7.9375rem;
    height: 1.9375rem;
    aspect-ratio: 127/31;
  }
  .p-header__sp-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-header__sp-inner.open {
  background-color: #fff;
  width: calc(100% - 40px);
  margin-inline: auto;
  position: relative;
  z-index: 120;
  transition: all 0.3s ease-in-out;
}

/* -----------------------------------------------------------------
  info
----------------------------------------------------------------- */
.p-access {
  width: min(100% - 3.125rem, 65.5625rem);
  margin-inline: auto;
  margin-top: 1.09375rem;
  display: flex;
  justify-content: space-between;
  gap: 5.5rem;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-access {
    width: calc(100% - 2.5rem);
    flex-direction: column;
    gap: 1.25rem;
  }
}
.p-access.--info {
  width: 100%;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-access.--info {
    align-items: center;
  }
}

.p-access__inner {
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    width: 100%;
  }
}

.p-access__item {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 350;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-access__item {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-access__address {
  border-top: 0.1875rem dotted rgba(255, 255, 255, .39);
  border-bottom: 0.1875rem dotted rgba(255, 255, 255, .39);
  padding-block: 0.625rem;
}
.p-access__address.--darkBlue {
  border-color: rgba(3, 3, 98, .39);
}

.p-access__train {
  border-bottom: 0.1875rem dotted rgba(255, 255, 255, .39);
  padding-block: 0.625rem;
}
.p-access__train.--darkBlue {
  border-color: rgba(3, 3, 98, .39);
}
.p-access__train > * {
  display: block;
}

.p-access__map {
  margin-top: 1.5rem;
}
.p-access__map iframe {
  border-radius: 0.4375rem;
}
.p-access__map.--info {
  margin-top: 0.625rem;
}
.p-access__map.--info iframe {
  height: 8.75rem;
}

.p-info__inner {
  flex: 0 0 57%;
}
@media screen and (max-width: 767px) {
  .p-info__inner {
    width: 100%;
  }
}

.p-info__title {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.06em;
  border-left: 0.4375rem solid currentColor;
  padding-left: 0.625rem;
  font-family: "Noto Serif JP", serif;
}
.p-info__title.--darkBlue {
  border-color: #2A3165;
}
@media screen and (max-width: 767px) {
  .p-info__title {
    font-size: 0.875rem;
    padding-left: 0.4375rem;
    border-left: 0.3125rem solid currentColor;
  }
}

.p-info__item {
  margin-top: 0.625rem;
  background: #fff;
  color: #232e56;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 0.3125rem;
  padding: 0.4375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-info__item {
    padding: 0.375rem 0.75rem;
  }
}

.p-info__text-wrapper {
  font-size: 0.875rem;
  line-height: 1.3571428571;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
}
.p-info__text-wrapper > * {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-info__text-wrapper {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

.p-info__btn-wrapper {
  margin-top: 1.5625rem;
  display: flex;
  gap: 0.75rem;
}
.p-info__btn-wrapper.--info {
  margin-bottom: 0.625rem;
}

.p-info__btn-tel {
  width: calc(50% - 0.375rem);
  height: 6.0625rem;
  background-color: #69A7D3;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 77, .9), inset 0 3px 20px rgba(163, 181, 214, .25); /* 内側：#A3B5D6 */
}
@media (any-hover: hover) {
  .p-info__btn-tel:hover, .p-info__btn-tel:focus {
    background-color: #7B9EDD;
  }
}
@media screen and (max-width: 767px) {
  .p-info__btn-tel {
    height: 4rem;
  }
}

.p-info__btn-web {
  width: calc(50% - 0.375rem);
  height: 6.0625rem;
  background-color: #4D73B7;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 77, .9), inset 0 3px 20px rgba(84, 129, 208, .25); /* 内側：#5481D0 */
}
@media (any-hover: hover) {
  .p-info__btn-web:hover, .p-info__btn-web:focus {
    background-color: #7B9EDD;
  }
}
@media screen and (max-width: 767px) {
  .p-info__btn-web {
    height: 4rem;
  }
}

.p-news__btn-tel {
  width: calc(50% - 0.375rem);
  height: 6.0625rem;
  background-color: #7B9EDD;
  box-shadow: 0 4px 0 rgba(127, 147, 186, .9), inset 0 3px 20px rgba(163, 181, 214, .25);
}
@media (any-hover: hover) {
  .p-news__btn-tel:hover, .p-news__btn-tel:focus {
    background-color: #69A7D3;
    box-shadow: 0 4px 0 rgba(86, 91, 128, .9), inset 0 3px 20px rgba(84, 129, 208, .25);
  }
}
@media screen and (max-width: 767px) {
  .p-news__btn-tel {
    height: 4rem;
  }
}

.p-news__btn-web {
  width: calc(50% - 0.375rem);
  height: 6.0625rem;
  background-color: #4B73B7;
  color: #fff;
  box-shadow: 0 4px 0 rgba(86, 91, 128, .9), inset 0 3px 20px rgba(84, 129, 208, .25);
}
@media (any-hover: hover) {
  .p-news__btn-web:hover, .p-news__btn-web:focus {
    background-color: #69A7D3;
    box-shadow: 0 4px 0 rgba(127, 147, 186, .9), inset 0 3px 20px rgba(163, 181, 214, .25);
  }
}
@media screen and (max-width: 767px) {
  .p-news__btn-web {
    height: 4rem;
  }
}

/* -----------------------------------------------------------------
  ローディング
----------------------------------------------------------------- */
.p-loading {
  width: 100vw;
  height: 100vh;
  background-color: #676767;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-loading__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.p-loading__img {
  width: 17.5rem;
  height: 17.5rem;
  margin: auto;
  -webkit-animation: fade 3s ease-in;
          animation: fade 3s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-loading__img {
    max-width: 12.5rem;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-loading__imgMain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* アーカイブページのページ送り */
.p-pagenavi {
  position: relative;
  min-width: 17.5rem;
  text-align: center;
  margin-top: 6.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-pagenavi {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

.current {
  display: inline-block;
  padding: 0.625rem 1rem;
  color: #fff;
  background-color: #262626;
  border: 1px solid #262626;
}
.p-pagenavi a:not(.previouspostslink):not(.nextpostslink) {
  display: inline-block;
  padding: 0.625rem 1rem;
  color: #262626;
  border: 1px solid #262626;
}
.extend {
  display: inline-block;
  padding: 0.625rem 1rem;
  color: #262626;
  border: 1px solid #262626;
}

.current,
.larger,
.smaller,
.extend {
  margin-right: 0.3125rem;
}
.larger:nth(:last-of-type) {
  margin-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .larger:nth(:last-of-type) {
    margin-right: 1.25rem;
  }
}

.previouspostslink {
  margin-right: 2.125rem;
  font-size: 1.375rem;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .previouspostslink {
    margin-right: 1.25rem;
    padding: 0.25rem 0.625rem;
  }
}

.nextpostslink {
  font-size: 1.375rem;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .nextpostslink {
    padding: 0.25rem 0.625rem;
  }
}

/* 記事詳細
------------------------------------------------ */
.p-post__inner {
  max-width: 50rem;
}

.p-post__head {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-post__head {
    text-align: left;
  }
}

.p-post__head time {
  font-size: 1.25rem;
  color: #262626;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-post__head time {
    font-size: 0.875rem;
  }
}

.p-post__title {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-post__title {
    font-size: 1.125rem;
  }
}

.p-post__thumbnail {
  margin-top: 2.5rem;
}

.p-post__thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-post__wrap {
  margin-top: 2.5rem;
}

.p-post__wrap h2 {
  margin-top: 4.0625rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #262626;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h2 {
    font-size: 1.375rem;
  }
}

.p-post__wrap h3 {
  margin-top: 4.0625rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #262626;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h3 {
    font-size: 1.125rem;
  }
}

.p-post__wrap h4 {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #262626;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h4 {
    font-size: 1rem;
  }
}

.p-post__wrap p {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  color: #262626;
}
@media screen and (max-width: 767px) {
  .p-post__wrap p {
    font-size: 0.875rem;
  }
}

.p-post__wrap a {
  margin-top: 0.5rem;
  padding-bottom: 0.3125rem;
  font-size: 1rem;
  font-weight: 400;
  color: #44a3cb;
  border-bottom: 0.0625rem solid #44a3cb;
}
@media screen and (max-width: 767px) {
  .p-post__wrap a {
    font-size: 0.875rem;
  }
}

.p-post__wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 2.5rem;
}

.p-post__pagination {
  margin-top: 5rem;
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.p-news-archive {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive {
    padding-block: 3.75rem;
  }
}

.p-news-archive__inner {
  width: 100%;
  max-width: 1024px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-archive__inner {
    padding-inline: 1.25rem;
  }
}

.p-news-archive__list {
  border-top: 1px solid #4D73B7;
}

.p-news-archive__item a {
  display: flex;
  gap: 6.25rem;
  padding: 0.9375rem 2.5rem;
  border-bottom: 1px solid #4D73B7;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news-archive__item a {
    display: block;
    padding: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-news-archive__item a:hover {
    color: #4D73B7;
    text-decoration: underline;
  }
}

.p-news-archive__item-time {
  flex: 1 0 6.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-news-archive__item-title {
  flex: 1 1 calc(100% - 6.25rem);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4705882353;
}
@media screen and (max-width: 767px) {
  .p-news-archive__item-title {
    margin-top: 0.5em;
  }
}

.p-news-archive__pagination {
  margin-top: 1.875rem;
}
.p-news-archive__pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
}
.p-news-archive__pagination .nav-links a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-news-archive__pagination .nav-links a:hover {
    color: #fff;
    background-color: #202972;
  }
}
.p-news-archive__pagination .page-numbers {
  color: #202972;
  border: 1px solid #202972;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.1875rem;
  height: 2.375rem;
}
.p-news-archive__pagination .page-numbers.current {
  color: #fff;
  background-color: #202972;
}

.p-news-post__headingBottom {
  background-image: url(../images/title/news_post_subtitle.svg);
  width: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__headingBottom {
    width: 2.5rem;
  }
}

.p-news-post {
  padding-block: 5rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-news-post {
    padding-block: 3.75rem 2.5rem;
  }
}

.p-news-post__inner {
  width: 100%;
  max-width: 1170px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-post__inner {
    padding-inline: 1.25rem;
  }
}

.p-news-post__wrap {
  display: flex;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__wrap {
    display: block;
  }
}

.p-news-post__left {
  width: 100%;
  max-width: 44.6875rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__left {
    max-width: 100%;
  }
}

.p-news-post__head {
  border-bottom: 0.1875rem solid #26449A;
  padding-bottom: 0.875rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__head {
    padding-inline: 0.625rem;
  }
}

.p-news-post__time {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
  .p-news-post__time {
    font-size: 1rem;
  }
}

.p-news-post__title {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .p-news-post__title {
    font-size: 1.5rem;
  }
}

.p-news-post__content {
  padding: 1.5625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__content {
    padding: 1.5625rem 0;
  }
}
.p-news-post__content h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #26449A;
  padding-bottom: 0.5rem;
  margin-block: 2em 1em;
}
.p-news-post__content h3 {
  font-size: 1.25rem;
  border-left: 3px solid #26449A;
  padding-left: 0.625rem;
  margin-block: 2em 1em;
}
.p-news-post__content h4 {
  color: #26449A;
  font-size: 1.125rem;
  margin-block: 1em;
}
.p-news-post__content p {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2em 1em;
}
.p-news-post__content p + P {
  margin-top: 1.5em;
}
.p-news-post__content p:first-of-type {
  margin-top: 0;
}
.p-news-post__content ul, .p-news-post__content ol {
  margin-left: 1em;
  margin-block: 1em;
}
.p-news-post__content ul {
  list-style: disc outside none;
  list-style: initial;
}
.p-news-post__content ol {
  list-style: decimal;
}
.p-news-post__content figure {
  margin-block: 1em;
}

.p-news-post__back {
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__back {
    margin-top: 1.875rem;
  }
}
.p-news-post__back a {
  display: inline-block;
  background-color: #26449A;
  border: 1px solid #26449A;
  color: #fff;
  border-radius: 2rem;
  font-size: 1.125rem;
  width: 15.625rem;
  padding: 0.65em 2em 0.7em;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news-post__back a {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-news-post__back a:hover {
    background-color: #fff;
    color: #26449A;
  }
}

.p-news-post__right {
  width: 100%;
  max-width: 22.3125rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__right {
    max-width: 100%;
    margin-top: 6.25rem;
  }
}

.p-news-post__right-title {
  background-color: #26449A;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-post__right-title {
    font-size: 1.125rem;
  }
}

.p-news-post__right-item a {
  display: block;
  padding: 0.625rem 0.9375rem;
  border-bottom: 1px solid #354C68;
}
@media (any-hover: hover) {
  .p-news-post__right-item a:hover {
    text-decoration: underline;
  }
}
.p-news-post__right-item time {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
.p-news-post__right-item h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
/*# sourceMappingURL=style.css.map */
