@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
/* ===============================================
# 固定値（px）をvwに変換する
$width デバイスサイズ
$px サイズ
=============================================== */
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* 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: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-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;
}

/* ----------------------------------------------------
ヘッダー
---------------------------------------------------- */
.header {
  width: 100%;
  height: auto;
  background-color: transparent;
}

.header__inner {
  max-width: 1024px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  height: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 375px) {
  .header__inner {
    padding: 0.5rem 0.625rem;
  }
}

.header__logo {
  width: 14.4375rem;
}
@media screen and (max-width: 750px) {
  .header__logo {
    width: 43.6%;
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 36px;
}

.header__item {
  height: inherit;
}

/* ----------------------------------------------------
メインビュー
---------------------------------------------------- */
.mv {
  width: 100%;
}

.mv__title {
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 0.131rem + 2.92vw, 2rem);
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.421875;
}
@media screen and (max-width: 750px) {
  .mv__title {
    font-size: 4vw;
    letter-spacing: -0.05em;
  }
}

.mv__inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.mv__img-wrap {
  background-color: #ecf2f7;
}

.mv__img {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* ----------------------------------------------------
CTA
---------------------------------------------------- */
.cta-button__wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .cta-button__wrap {
    margin-top: 1.875rem;
  }
}

.cta-button__link {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #06C755;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0px 0px 8px 0px #bbeac4;
  max-width: 638px;
  cursor: pointer;
  padding: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .cta-button__link {
    padding: 0.625rem 2.1875rem;
  }
}
@media screen and (max-width: 375px) {
  .cta-button__link {
    padding: 0.625rem 1.25rem;
  }
}

.cta-button__icon {
  width: 2.5rem;
}
@media screen and (max-width: 750px) {
  .cta-button__icon {
    width: 3.125rem;
  }
}
@media screen and (max-width: 375px) {
  .cta-button__icon {
    width: 2.5rem;
  }
}

.cta-button__text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.75;
  color: #fff;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .cta-button__text {
    margin-left: 0.625rem;
    line-height: 1.85;
    font-size: 5.3333333333vw;
    flex-direction: column;
  }
}
@media screen and (max-width: 375px) {
  .cta-button__text {
    margin-left: 0.3125rem;
  }
}

.cta-button__note {
  text-align: center;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  font-feature-settings: "palt";
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .cta-button__note {
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}

/* ----------------------------------------------------
最初にお伝えしたいこと
---------------------------------------------------- */
.intro {
  padding: 3.4375rem 0 3.125rem;
}
@media screen and (max-width: 750px) {
  .intro {
    padding: 1.875rem 0 2.5rem;
  }
}

.intro__inner {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 750px) {
  .intro__inner {
    padding: 0 0.9375rem;
  }
}
@media screen and (max-width: 375px) {
  .intro__inner {
    padding: 0 0.625rem;
  }
}

.intro__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  color: #205C99;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .intro__title {
    font-size: 6.2666666667vw;
    line-height: 1.4;
  }
}

.intro__text:first-of-type {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 750px) {
  .intro__text:first-of-type {
    margin-top: 1.5625rem;
  }
}

.intro__text:not(:first-of-type) {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .intro__text:not(:first-of-type) {
    margin-top: 2.1875rem;
  }
}

.intro__media {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
  gap: 3.75rem;
}
@media screen and (max-width: 750px) {
  .intro__media {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .intro__media {
    gap: 2rem;
  }
}

.intro__items {
  list-style: none;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3846153846;
}
@media screen and (max-width: 1024px) {
  .intro__items {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 750px) {
  .intro__items {
    font-size: 5.6vw;
    line-height: 1.4285714286;
  }
}

.intro__item {
  position: relative;
  color: #4D4D4D;
  padding-left: 3.25rem;
  background: url(../images/intro-check.svg) left 0px top 6px no-repeat;
  background-size: 2.25rem auto;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .intro__item {
    padding-left: 8vw;
    background-size: 6vw auto;
    padding-bottom: 0.625rem;
  }
}
.intro__item::before {
  content: "";
  display: block;
  background: #1A5192;
  background: linear-gradient(90deg, rgb(26, 81, 146) 0%, rgb(43, 187, 234) 100%);
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.intro__item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .intro__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.intro__item:last-child::before {
  content: none;
}

.intro__img {
  width: 412px;
  aspect-ratio: 412/405;
}
@media screen and (max-width: 750px) {
  .intro__img {
    width: 100%;
    aspect-ratio: 727/268;
  }
}

/* ----------------------------------------------------
私たちが大切にしていること
---------------------------------------------------- */
.values {
  background-image: url(../images/bg-values.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 750px) {
  .values {
    background-image: url(../images/bg-values-sp.jpg);
    padding-bottom: 2.1875rem;
  }
}
@media screen and (max-width: 750px) {
  .values {
    padding-bottom: 2.625rem;
  }
}
@media screen and (max-width: 375px) {
  .values {
    padding-bottom: 1.5625rem;
  }
}

.values__title {
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  text-align: center;
  padding: 1.25rem;
}
@media screen and (max-width: 750px) {
  .values__title {
    font-size: 6.2666666667vw;
    line-height: 1.2765957447;
    padding: 0.625rem;
  }
}

.values__inner {
  padding-top: 3.75rem;
}

.values__media {
  display: flex;
  align-items: flex-start;
  margin-top: 3.75rem;
  gap: 3.75rem;
}
.values__media.values__media--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .values__media.values__media--reverse {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .values__media {
    flex-direction: column;
    gap: 6.6666666667vw;
    margin-top: 2.1875rem;
  }
}
@media screen and (max-width: 375px) {
  .values__media {
    gap: 2rem;
  }
}

.values__media .values__body {
  margin-top: 0;
}

.values__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .values__body {
    margin-top: 1.875rem;
  }
}

.values__body .values__text:not(:first-child) {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .values__body .values__text:not(:first-child) {
    margin-top: 2.1875rem;
  }
}

.values__img-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.8125rem;
}

.values__img {
  width: 40.6%;
  aspect-ratio: 407/351;
  box-shadow: 0px 0px 8px 0px #aec3cc;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .values__img {
    width: 100%;
    aspect-ratio: 669/392;
  }
}
@media screen and (max-width: 750px) {
  .values__img.values__img--type02 {
    margin-top: 6.6666666667vw;
  }
}
.values__img.values__img--type03 {
  width: 586px;
  aspect-ratio: 586/255;
}
@media screen and (max-width: 750px) {
  .values__img.values__img--type03 {
    width: 100%;
    aspect-ratio: 675/396;
  }
}
.values__img.values__img--type04 {
  width: 586px;
  aspect-ratio: 586/366;
}
@media screen and (max-width: 750px) {
  .values__img.values__img--type04 {
    width: 100%;
    aspect-ratio: 679/436;
  }
}

.values__subtitle {
  max-width: 625px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  color: #205C99;
  text-align: center;
  padding: 0.625rem 0;
  border-top: 3px solid #205C99;
  border-bottom: 3px solid #205C99;
  margin: 2.8125rem auto 0;
}
@media screen and (max-width: 750px) {
  .values__subtitle {
    font-size: 6.2666666667vw;
  }
}

/* ----------------------------------------------------
こんな方には向いていません
---------------------------------------------------- */
.not-for {
  padding: 4.125rem 0 3.875rem;
}
@media screen and (max-width: 750px) {
  .not-for {
    padding: 3.125rem 0 1.875rem;
  }
}

.not-for__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  color: #606060;
  text-align: center;
}
.not-for__title .not-for__title-accent {
  position: relative;
  display: inline-block;
  background-color: #606060;
  color: #fff;
  padding: 0.3125rem 0.625rem;
}
.not-for__title .not-for__title-accent::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 12px solid #606060;
  border-bottom: 0;
}
@media screen and (max-width: 750px) {
  .not-for__title {
    font-size: 6.2666666667vw;
  }
}
.not-for__title .not-for__title-text {
  display: inline-block;
  margin-top: 0.625rem;
}

.not-for__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.5625rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .not-for__items {
    row-gap: 2.1875rem;
    margin-top: 1.875rem;
  }
}

.not-for__item {
  box-shadow: 0px 0px 6px 0px #666666;
  background-color: #f2f2f2;
}

.not-for__item-title {
  width: 100%;
  background-color: #606060;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7142857143;
  color: #fff;
  text-align: center;
  letter-spacing: -0.07em;
  padding: 0.5rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .not-for__item-title {
    padding: 0.5rem 0.9375rem;
    font-size: 5.0666666667vw;
    line-height: 1.3317073171;
  }
}
@media screen and (max-width: 375px) {
  .not-for__item-title {
    padding: 0.4375rem 0.625rem;
  }
}

.not-for__item-body {
  padding: 1.25rem 5rem;
}
@media screen and (max-width: 750px) {
  .not-for__item-body {
    padding: 0.9375rem 0.9375rem;
  }
}

.not-for__more {
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 750px) {
  .not-for__more {
    margin-top: 1.875rem;
  }
}

.not-for__subtitle {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  color: #205C99;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .not-for__subtitle {
    font-size: 6.9333333333vw;
  }
}

p.not-for__text {
  text-align: center;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 750px) {
  p.not-for__text {
    text-align: justify;
  }
}

.not-for__more-icon {
  width: 0.5625rem;
  aspect-ratio: 9/58;
  margin: 0.9375rem auto 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* テキスト選択を禁止 */
  pointer-events: none; /* ドラッグや右クリック操作を禁止 */
}
@media screen and (max-width: 750px) {
  .not-for__more-icon {
    width: 0.4375rem;
  }
}

/* ----------------------------------------------------
前田歯科で実現できること
---------------------------------------------------- */
.services {
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  padding: 2.8125rem 0 3.4375rem;
}

.services__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 1.75;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .services__title {
    font-size: 10.6666666667vw;
    line-height: 1.3125;
  }
}

.services__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2.8125rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .services__items {
    row-gap: 1.875rem;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .services__items {
    row-gap: 1.25rem;
  }
}

.services__item {
  position: relative;
  background-color: #fff;
  padding: 0.9375rem 2.5rem 1.5625rem;
}
@media screen and (max-width: 1024px) {
  .services__item {
    padding: 0.9375rem 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .services__item {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.services__subtitle-wrap {
  text-align: center;
}

.services__subtitle {
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.75;
  color: #1c82b3;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .services__subtitle {
    font-size: 6.2666666667vw;
  }
}

.services__subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 3px;
  background: linear-gradient(90deg, rgb(26, 81, 146) 0%, rgb(43, 187, 234) 100%);
}

.services__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 750px) {
  .services__body {
    flex-direction: column-reverse;
    row-gap: 0.625rem;
    margin-top: 0.9375rem;
  }
}

.services__item:nth-child(even) .services__body {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .services__item:nth-child(even) .services__body {
    flex-direction: column-reverse;
  }
}

.services__img {
  width: 38.4%;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .services__img {
    width: 100%;
  }
}

.services__text {
  letter-spacing: -0.05em;
}

/* ----------------------------------------------------
実際に働くスタッフの声
---------------------------------------------------- */
.staff-voices {
  background-color: #F8FAFC;
  padding: 3.125rem 0 5rem;
}
@media screen and (max-width: 750px) {
  .staff-voices {
    padding: 2.1875rem 0 3.125rem;
  }
}

.staff-voices__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 1.75;
  color: #205C99;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .staff-voices__title {
    font-size: 8vw;
  }
}

.staff-voices__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 3.125rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__media {
    flex-direction: column-reverse;
    gap: 5.3333333333vw;
  }
}
@media screen and (max-width: 375px) {
  .staff-voices__media {
    gap: 2rem;
  }
}

.staff-voices__info {
  max-width: 380px;
  background-color: #205C99;
  color: #fff;
  flex: 1;
  padding: 0.625rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__info {
    width: 60%;
    padding: 0.3125rem 0.625rem;
  }
}

.staff-voices__name {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 2.1875rem;
  line-height: 1.7428571429;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .staff-voices__name {
    font-size: 5.6vw;
  }
}

.staff-voices__career {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 1.7391304348;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .staff-voices__career {
    font-size: 4.2666666667vw;
  }
}

.staff-voices__photo {
  width: 321px;
  aspect-ratio: 322/381;
  box-shadow: 0px 0px 8px 0px #aec3cc;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .staff-voices__photo {
    width: 53%;
    aspect-ratio: 400/479;
  }
}

.staff-voices__box {
  margin-top: 2.1875rem;
  padding: 1.5625rem 4.375rem 2.1875rem;
  box-shadow: 0px 0px 8px 0px #99ccff;
}
@media screen and (max-width: 750px) {
  .staff-voices__box {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.staff-voices__box-text:first-of-type {
  margin-top: 1.25rem;
}

.staff-voices__box-text:not(:first-of-type) {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__box-text:not(:first-of-type) {
    margin-top: 1.875rem;
  }
}

.staff-voices__box-img {
  width: 75%;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 750px) {
  .staff-voices__box-img {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.staff-voices__schedule {
  padding-top: 5rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__schedule {
    padding-top: 3.125rem;
  }
}

.staff-voices__schedule-title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  color: #205C99;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .staff-voices__schedule-title {
    font-size: 8vw;
  }
}

.staff-voices__schedule-inner {
  position: relative;
  margin-top: 3.125rem;
}

.staff-voices__schedule-inner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 10em;
  width: 4px;
  height: 100%;
  background-color: #9ac7dd;
}
@media screen and (max-width: 750px) {
  .staff-voices__schedule-inner::before {
    left: clamp(5rem, 1.512rem + 17.44vw, 9.688rem);
  }
}

.staff-voices__schedule-items {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.staff-voices__schedule-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.staff-voices__schedule-item:last-child {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__schedule-item:last-child {
    padding-bottom: 1.25rem;
  }
}

.staff-voices__schedule-item + .staff-voices__schedule-item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__schedule-item + .staff-voices__schedule-item {
    margin-top: 1.25rem;
  }
}

.staff-voices-schedule-item__time {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.125rem 0.5rem;
  position: relative;
  border-radius: 6px;
  font-size: 1.6875rem;
  font-weight: 700;
  min-width: 106px;
  max-width: 116px;
  width: 100%;
  background-color: #205C99;
  color: #fff;
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .staff-voices-schedule-item__time {
    font-size: 3.8666666667vw;
    min-width: clamp(3.438rem, 1.065rem + 11.86vw, 6.625rem);
    max-width: clamp(3.75rem, 1.145rem + 13.02vw, 7.25rem);
    margin-top: clamp(1.688rem, -0.173rem + 9.3vw, 4.188rem);
  }
}

.staff-voices-schedule-item__time::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0px;
  transform: translateX(50%) translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  z-index: 0;
  background-color: #205C99;
}

.staff-voices-schedule-item__time::after {
  position: absolute;
  top: 50%;
  left: 155px;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #205C99;
  content: "";
}
@media screen and (max-width: 750px) {
  .staff-voices-schedule-item__time::after {
    width: 0.875rem;
    height: 0.875rem;
    border: 2px solid #fff;
    left: clamp(4.688rem, 1.199rem + 17.44vw, 9.375rem);
  }
}

.staff-voices-schedule-item__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 1.7333333333;
  color: #205C99;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 750px) {
  .staff-voices-schedule-item__title {
    font-size: 4.8vw;
  }
}

.staff-voices-schedule-item__content {
  margin-left: 6.25rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .staff-voices-schedule-item__content {
    margin-left: clamp(3.125rem, 1.73rem + 6.98vw, 5rem);
  }
}

.staff-voices__detail {
  padding-top: 4.0625rem;
}

.staff-voices__detail-title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .staff-voices__detail-title {
    font-size: 7.6vw;
  }
}

.staff-voices__detail-title-text {
  display: inline-block;
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  color: #fff;
  padding: 0.625rem 1.25rem;
  min-width: 572px;
  max-width: 572px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .staff-voices__detail-title-text {
    min-width: unset;
  }
}

.staff-voices__detail-title-text:not(:first-of-type) {
  margin-top: 0.5rem;
}

.staff-voices__detail-media {
  display: flex;
  align-items: flex-start;
  margin-top: 3.4375rem;
  gap: 3.75rem;
}
@media screen and (max-width: 750px) {
  .staff-voices__detail-media {
    flex-direction: column-reverse;
    gap: 6.6666666667vw;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .staff-voices__detail-media {
    gap: 2rem;
  }
}

.staff-voices__detail-text:not(:first-of-type) {
  margin-top: 2.5rem;
}

.staff-voices__detail-img {
  width: 42.9%;
  aspect-ratio: 429/347;
  box-shadow: 0px 0px 8px 0px #aec3cc;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .staff-voices__detail-img {
    width: 100%;
    aspect-ratio: 683/327;
  }
}

/* ----------------------------------------------------
ウェルビーイングへの取り組み
---------------------------------------------------- */
.well-being {
  padding: 3.125rem 0 2.5rem;
}
@media screen and (max-width: 750px) {
  .well-being {
    padding: 1.875rem 0 2.5rem;
  }
}

.well-being__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 1;
  color: #205C99;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .well-being__title {
    font-size: 8vw;
    line-height: 1.3;
  }
}

.well-being__copy {
  margin-top: 1.5625rem;
  color: #666666;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.well-being__copy-en {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.625rem;
  line-height: 1.3076923077;
}
@media screen and (max-width: 750px) {
  .well-being__copy-en {
    font-size: 4.8vw;
  }
}

.well-being__copy-jpn {
  font-size: 1.0625rem;
  line-height: 1.5294117647;
}
@media screen and (max-width: 750px) {
  .well-being__copy-jpn {
    font-size: 3.2vw;
  }
}

.well-being__img {
  width: 464px;
  aspect-ratio: 116/41;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .well-being__img {
    width: 100%;
  }
}

.well-being__subtitle {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.6595744681;
  color: #4D4D4D;
  text-align: center;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .well-being__subtitle {
    margin-top: 1.25rem;
    font-size: 7.3333333333vw;
  }
}

.well-being__body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .well-being__body {
    margin-top: 1.25rem;
  }
}

.well-being__text {
  letter-spacing: -0.05em;
}

.well-being__text:not(:first-of-type) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .well-being__text:not(:first-of-type) {
    margin-top: 1.875rem;
  }
}

/* ----------------------------------------------------
体験勤務
---------------------------------------------------- */
.trial__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.4255319149;
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  color: #fff;
  text-align: center;
  padding: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .trial__title {
    font-size: 6.2666666667vw;
    padding: 0.625rem;
  }
}

.trial__content {
  margin-top: 2.8125rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 750px) {
  .trial__content {
    margin-top: 1.5625rem;
    padding-bottom: 1.875rem;
  }
}

p.trial__text {
  text-align: center;
}
@media screen and (max-width: 750px) {
  p.trial__text {
    text-align: justify;
  }
}

.trial__box {
  margin-top: 2.5rem;
  border: 4px solid #205C99;
}

.trial__box-title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  background-color: #205C99;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .trial__box-title {
    font-size: 5.3333333333vw;
  }
}

.trial__box-media {
  display: flex;
  align-items: flex-start;
  gap: 4.375rem;
  padding: 2.1875rem 3.75rem 1.875rem;
}
@media screen and (max-width: 1024px) {
  .trial__box-media {
    gap: 4.8828125vw;
    padding: 1.875rem 5.859375vw;
  }
}
@media screen and (max-width: 750px) {
  .trial__box-media {
    flex-direction: column-reverse;
    align-items: center;
    gap: 5.3333333333vw;
    padding: 0.9375rem;
  }
}
@media screen and (max-width: 375px) {
  .trial__box-media {
    gap: 1.25rem;
  }
}

.trial__box-items {
  flex: 1;
  list-style: none;
}

.trial__box-item {
  position: relative;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 2.0625rem;
  line-height: 1.9393939394;
  color: #4D4D4D;
  padding-left: 0.8em;
}
@media screen and (max-width: 1024px) {
  .trial__box-item {
    font-size: 3.22265625vw;
  }
}
@media screen and (max-width: 750px) {
  .trial__box-item {
    font-size: 5.0666666667vw;
  }
}

.trial__box-item::before {
  position: absolute;
  content: "・";
  left: 0;
}

.trial__box-img {
  width: 49%;
  aspect-ratio: 419/253;
}
@media screen and (max-width: 750px) {
  .trial__box-img {
    width: 100%;
    aspect-ratio: 611/311;
  }
}

.trial__more {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .trial__more {
    margin-top: 1.25rem;
  }
}

/* ----------------------------------------------------
よくある質問
---------------------------------------------------- */
.faq {
  background-color: #F8FAFC;
  width: 100%;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 750px) {
  .faq {
    padding-bottom: 1.875rem;
  }
}

.faq__inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}
@media screen and (max-width: 750px) {
  .faq__inner {
    padding: 0 1.25rem;
  }
}

.faq__title {
  width: 100%;
  background: #205C99;
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.875rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.05em;
  padding: 1.25rem;
}
.faq__title .small-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .faq__title .small-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .faq__title {
    line-height: 1;
    font-size: 7.4666666667vw;
    padding: 0.625rem;
  }
}

.faq__items {
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0;
}
@media screen and (max-width: 750px) {
  .faq__items {
    margin: 40px auto 0;
  }
}

.faq__item {
  width: 100%;
}

.faq__item:not(:first-child) {
  margin-top: 1.5625rem;
}

.faq__item:not(:last-child) {
  border-bottom: 1px solid #799dc2;
}

.faq-item__title {
  width: 100%;
  position: relative;
  cursor: pointer;
  padding-right: 1.875rem;
  padding-bottom: 0.9375rem;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .faq-item__title {
    padding-right: 0;
  }
}

.faq-item__title::before,
.faq-item__title::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 21px;
  height: 3px;
  background-color: #205C99;
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  .faq-item__title::before,
.faq-item__title::after {
    top: clamp(0.625rem, 0.16rem + 2.33vw, 1.25rem);
    width: clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
  }
}

.faq-item__title::before {
  transform: rotate(90deg);
}

.faq-item__title.is-open::before {
  transform: rotate(45deg);
}

.faq-item__title.is-open::after {
  transform: rotate(135deg);
}

.faq-item__title-text {
  font-size: 1.25rem;
  color: #205C99;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  padding-left: 2.1875rem;
}
@media screen and (max-width: 750px) {
  .faq-item__title-text {
    font-size: 4.6666666667vw;
    padding-left: clamp(1.563rem, 0.865rem + 3.49vw, 2.5rem);
  }
}

.faq-item__content {
  display: none;
  width: 100%;
  padding: 0 1.6875rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .faq-item__content {
    padding-left: 2.1875rem;
    padding-right: 0;
  }
}

.faq-item__content-text {
  color: #555555;
  padding-left: 0.3125rem;
}

/* ----------------------------------------------------
院長メッセージ
---------------------------------------------------- */
.incho-message {
  background-color: #205C99;
  padding: 2.8125rem 0 3.4375rem;
}

.incho-message__title {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .incho-message__title {
    font-size: 6.2666666667vw;
  }
}
.incho-message__title .incho-message--accent {
  display: inline-block;
  background-color: #fff;
  padding: 0 0.625rem;
  color: #205C99;
  font-size: 3.75rem;
  line-height: 1.505;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .incho-message__title .incho-message--accent {
    font-size: 3.4375rem;
  }
}
@media screen and (max-width: 750px) {
  .incho-message__title .incho-message--accent {
    font-size: 6.6666666667vw;
    margin-top: 0.625rem;
  }
}

.incho-message__body {
  margin-top: 3.125rem;
}

p.incho-message__text {
  color: #fff;
}

.incho-message__text:not(:first-of-type) {
  margin-top: 2.5rem;
}

.incho-message__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.375rem;
  margin-top: 3.25rem;
}
@media screen and (max-width: 1024px) {
  .incho-message__media {
    gap: 4.8828125vw;
  }
}
@media screen and (max-width: 750px) {
  .incho-message__media {
    flex-direction: column-reverse;
    align-items: center;
    gap: 5.3333333333vw;
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .incho-message__media {
    gap: 1.25rem;
  }
}

.incho-message__info {
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  flex: 1;
  max-width: 320px;
  width: 100%;
}

.incho-message__info-name {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.625;
}
@media screen and (max-width: 750px) {
  .incho-message__info-name {
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.incho-message__info-name .big-title {
  font-size: 2.625rem;
  line-height: 1.619047619;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .incho-message__info-name .big-title {
    font-size: 5.6vw;
  }
}

.incho-message__info-carrier {
  font-weight: 700;
  margin-top: 0.625rem;
  font-size: 1.3125rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 750px) {
  .incho-message__info-carrier {
    text-align: center;
    font-size: 2.8vw;
  }
}
.incho-message__info-carrier .small-text {
  font-size: 0.875rem;
  line-height: 2.2857142857;
}
@media screen and (max-width: 750px) {
  .incho-message__info-carrier .small-text {
    font-size: 0.75rem;
    line-height: 2.3333333333;
  }
}
@media screen and (max-width: 375px) {
  .incho-message__info-carrier .small-text {
    font-size: 0.625rem;
    line-height: 1.8;
  }
}

.incho-profile__img {
  width: 38%;
  aspect-ratio: 324/423;
}
@media screen and (max-width: 750px) {
  .incho-profile__img {
    width: 55%;
  }
}

/* ----------------------------------------------------
当院について
---------------------------------------------------- */
.about {
  padding: 3.4375rem 0 2.1875rem;
}
@media screen and (max-width: 750px) {
  .about {
    padding: 2.1875rem 0 1.25rem;
  }
}

.about__table {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .about__table {
    margin-top: 1.5625rem;
  }
}

/* ----------------------------------------------------
募集要項
---------------------------------------------------- */
.requirements {
  padding: 1.5625rem 0 3.4375rem;
}
@media screen and (max-width: 750px) {
  .requirements {
    padding: 0.625rem 0 1.875rem;
  }
}

.requirements__table {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .requirements__table {
    margin-top: 1.5625rem;
  }
}

/* ----------------------------------------------------
応募・お問い合わせ
---------------------------------------------------- */
.contact {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 750px) {
  .contact {
    padding-bottom: 1.5625rem;
  }
}

.contact__title {
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  text-align: center;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .contact__title {
    font-size: 6.2666666667vw;
    line-height: 1.2765957447;
  }
}

.contact__body {
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .contact__body {
    margin-top: 1.875rem;
  }
}

.contact__button {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 750px) {
  .contact__button {
    margin-top: 1.875rem;
  }
}

/* ----------------------------------------------------
選考プロセス
---------------------------------------------------- */
.recruit-process {
  background-color: #fff;
  width: 100%;
  padding: 0 0 3.125rem;
}
@media screen and (max-width: 750px) {
  .recruit-process {
    padding: 0 0 1.875rem;
  }
}

.recruit-process__title {
  background: linear-gradient(90deg, rgb(32, 92, 153) 0%, rgb(43, 187, 234) 100%);
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.9375rem;
  line-height: 1.2765957447;
  text-align: center;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .recruit-process__title {
    font-size: 6.2666666667vw;
    line-height: 1.2765957447;
  }
}

.recruit-process__steps {
  margin-top: 4.25rem;
}
@media screen and (max-width: 750px) {
  .recruit-process__steps {
    margin-top: 2.5rem;
  }
}

.recruit-process__step {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 750px) {
  .recruit-process__step {
    display: flex;
    padding-bottom: 1.25rem;
  }
}

.recruit-process__step::before {
  content: "";
  position: absolute;
  left: 26.5px;
  top: 2.875rem;
  bottom: 0;
  border-left: 2px solid #205C99;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .recruit-process__step::before {
    left: 50%;
    top: 100%;
    transform: translateY(-80%);
    height: 3.125rem;
  }
}
@media screen and (max-width: 750px) {
  .recruit-process__step::before {
    transform: translateY(-60%);
    height: 1.5625rem;
  }
}

.recruit-process__step:last-child::before {
  display: none;
}

.recruit-process__step:not(:first-child) {
  margin-top: 0.9375rem;
}

.recruit-process__body {
  width: 100%;
}

.recruit-process__content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .recruit-process__content {
    flex-direction: column;
  }
}

.recruit-process__number {
  width: 3.3125rem;
  height: 3.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9375rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  background-color: #205C99;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .recruit-process__number {
    width: 9.8666666667vw;
    height: 9.8666666667vw;
    font-size: 5.8666666667vw;
  }
}

.recruit-process__subtitle {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.9375rem;
  line-height: 1.6129032258;
  font-weight: 700;
  color: #205C99;
  margin-left: 1.125rem;
}
@media screen and (max-width: 750px) {
  .recruit-process__subtitle {
    font-size: 6.5333333333vw;
    line-height: 1.2244897959;
    margin-left: 0;
    margin-top: 0.3125rem;
    text-align: center;
  }
}
.recruit-process__subtitle .small-text {
  font-size: 1.375rem;
  line-height: 2.380952381;
}
@media screen and (max-width: 750px) {
  .recruit-process__subtitle .small-text {
    font-size: 4.5333333333vw;
    line-height: 1.3235294118;
  }
}

.recruit-process__description {
  margin-left: 4.5625rem;
  padding-bottom: 2.8125rem;
  padding-right: 1.25rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 750px) {
  .recruit-process__description {
    margin-top: 0.625rem;
    margin-left: 0;
    padding-bottom: 1.25rem;
    padding-right: 0;
  }
}

.recruit-process__step:last-child .recruit-process__description {
  padding-bottom: 0;
}

.recruit-process__button {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .recruit-process__button {
    margin-top: 1.25rem;
  }
}

/* ----------------------------------------------------
フッター
---------------------------------------------------- */
footer {
  background-color: #F3F6F9;
  padding: 1.5625rem 0;
}

.footer__items {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

.footer__item {
  color: #333333;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .footer__item {
    font-size: clamp(0.75rem, 0.489rem + 1.49vw, 1.188rem);
  }
}

.footer__item:not(:last-of-type) {
  border-right: 1px solid #333333;
}

.footer__link {
  color: #333333;
  display: block;
  text-decoration: none;
  padding: 0 10px;
}

.footer__link:visited {
  color: #333333;
}

.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333333;
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .footer__copyright {
    font-size: clamp(0.75rem, 0.489rem + 1.49vw, 1.188rem);
  }
}

/* ----------------------------------------------------
固定メニュー
---------------------------------------------------- */
.fixed-menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: block;
  left: auto;
  /* iOS Safari の safe-area（ノッチ）を加算して「右端ベタ付きを防ぐ」 */
  right: calc(30px + env(safe-area-inset-right, 0px));
  bottom: calc(30px + env(safe-area-inset-bottom, 0px));
}
@media screen and (max-width: 750px) {
  .fixed-menu {
    width: 100%;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 0.3125rem 0.5rem;
    text-align: center;
  }
}
.fixed-menu .fixed-menu__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06C755;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0px 0px 7px 0px #8d94a3;
}
@media screen and (max-width: 750px) {
  .fixed-menu .fixed-menu__button {
    border-radius: unset;
    width: 100%;
    height: auto;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    padding: 0.3125rem 0.5rem;
    box-shadow: 0px 0px 8px 0px #bbeac4;
  }
}
@media screen and (max-width: 375px) {
  .fixed-menu .fixed-menu__button {
    padding: 0.3125rem;
  }
}
.fixed-menu .fixed-menu__icon {
  width: 2.0625rem;
}
@media screen and (max-width: 750px) {
  .fixed-menu .fixed-menu__icon {
    width: 6.9333333333vw;
  }
}
.fixed-menu .fixed-menu__link {
  color: #fff;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (max-width: 750px) {
  .fixed-menu .fixed-menu__link {
    width: auto;
    flex-direction: row;
    font-size: 5.0666666667vw;
    line-height: 1.7647058824;
  }
}
.fixed-menu .fixed-menu__text {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

/* ----------------------------------------------------
共通
---------------------------------------------------- */
.inner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}
@media screen and (max-width: 750px) {
  .inner {
    padding: 0 1.25rem;
  }
}

.inner-s {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}
@media screen and (max-width: 750px) {
  .inner-s {
    padding: 0 1.25rem;
  }
}

.text {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.0555555556;
  text-align: justify;
  color: #555555;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 750px) {
  .text {
    font-size: 4vw;
    line-height: 1.7333333333;
  }
}
.text .accent {
  font-weight: 700;
  color: #205C99;
}

.underline-heading-wrap {
  text-align: center;
}

.underline-heading {
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.75;
  color: #205C99;
}
@media screen and (max-width: 750px) {
  .underline-heading {
    font-size: 6.6666666667vw;
  }
}

.underline-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 3px;
  background-color: #205C99;
}

table {
  border: 3px solid #E6E6E6;
  border-collapse: collapse;
  width: 100%;
}

table tr:not(:last-child) {
  border-bottom: 3px solid #E6E6E6;
}

table th {
  background-color: #edf8fd;
  width: 22%;
  color: #205C99;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 900;
  font-size: 1.3125rem;
  line-height: 1.2;
  padding: 0.625rem 0.9375rem 0.625rem 3.5rem;
  text-align: left;
  border-right: 3px solid #E6E6E6;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  table th {
    width: 24%;
    padding: 0.625rem;
    line-height: 1.9333333333;
    font-size: 3.7333333333vw;
  }
}

table th .small-text {
  font-size: 0.9375rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  table th .small-text {
    font-size: 0.75rem;
  }
}

table td {
  background-color: #fff;
  width: 78%;
  color: #555555;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 2.1523809524;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 750px) {
  table td {
    padding: 0.625rem;
    line-height: 1.7857142857;
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 375px) {
  table td {
    padding: 0.9375rem 0.625rem;
  }
}
table td .small-text {
  font-size: 1.125rem;
  line-height: 2.5111111111;
}
@media screen and (max-width: 750px) {
  table td .small-text {
    font-size: 3.2vw;
  }
}

.center {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .md-show {
    display: block;
  }
}

.minus-ls05 {
  letter-spacing: -0.5em;
}

.marker-yellow {
  background: linear-gradient(transparent 70%, #FFFF00 50%);
}

.navy-blue {
  color: #205C99;
}

.line-break-adjust {
  display: block;
  height: 0.3125rem;
}
@media screen and (max-width: 750px) {
  .line-break-adjust {
    height: 0.625rem;
  }
}

.kakko-start {
  display: inline-block;
  margin-left: -0.5rem;
  margin-right: 0.125rem;
}

.kakko-end {
  display: inline-block;
  margin-left: 0.0625rem;
  margin-right: -0.25rem;
}

.kutouten {
  margin-right: -0.375rem;
}

.dot {
  letter-spacing: -0.1em;
  display: inline-block;
}