@charset "UTF-8";
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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 */
/* 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;
  -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;
}

.swiper {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .swiper {
    max-width: 72.5rem;
  }
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ページネーション
------------------------------------- */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  display: inline-block;
  width: 15px;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: -34px;
    bottom: -5px;
  }
}

/* 余白を調整 */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 6px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 10px;
  }
}

/* 前へ後ろへボタン
------------------------------------- */
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 46px;
  width: 46px;
  z-index: 19;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 65px;
    width: 65px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 46px;
  width: 46px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 65px;
    height: 65px;
  }
}

/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background-image: url(../images/common/arrow-left.png);
  position: absolute;
  z-index: 19;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev:after {
    top: -6px;
  }
}

/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background-image: url(../images/common/arrow-right.png);
  position: absolute;
  z-index: 19;
}
@media screen and (min-width: 768px) {
  .swiper-button-next:after {
    top: -5px;
  }
}

/* 前への矢印 */
.swiper-button-prev {
  left: -25px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: -30px;
  }
}

/* 次への矢印 */
.swiper-button-next {
  right: -25px;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -30px;
  }
}

.about__heading {
  max-width: 235.95px;
  max-width: 14.746875rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about__heading {
    max-width: 21.185rem;
  }
}

@media screen and (min-width: 768px) {
  .about__inner.inner {
    max-width: 1050px;
  }
}

.archive-card {
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .archive-card {
    display: inline-block;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 1.25rem;
  }
}

.archive-card:not(:first-of-type) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive-card:not(:first-of-type) {
    margin-top: 1.0625rem;
  }
}

.archive-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-card__wrapper {
    padding: 0;
  }
}

.archive-card__wrapper:not(:first-child) {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .archive-card__wrapper:not(:first-child) {
    margin-top: 0.875rem;
  }
}

.archive-card__img {
  height: 100%;
}

.archive-card__image {
  max-width: 133px;
  max-width: 8.3125rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  aspect-ratio: 1.3168;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  border-radius: initial;
}
@media screen and (min-width: 768px) {
  .archive-card__image {
    max-width: 15.3125rem;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1.594;
  }
}

/*  ホバーアクション */
.archive-card__image img {
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* ゆっくり変化させる */
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.3168;
}
.archive-card__image:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1); /* 拡大 */
}

.archive-card__text {
  text-align: left;
  padding-top: 3px;
  padding-left: 10px;
  padding-left: 0.625rem;
  height: 100%;
  padding-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .archive-card__text {
    max-width: 405px;
    padding-top: 0.95rem;
    padding-left: 1.25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.archive-card__category {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  background-color: #1391E6;
  color: #fff;
  line-height: 1.5;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .archive-card__category {
    position: static;
    content: "";
    font-size: 0.6875rem;
    top: 0;
    left: 0rem;
    padding: 0.25rem 0.9375rem;
  }
}

.archive-card__text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.428;
  margin-top: 6.4px;
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) {
  .archive-card__text p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.archive-card__date {
  font-size: 11px;
  font-size: 0.6875rem;
  display: inline-block;
  line-height: 1;
  color: #888888;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .archive-card__date {
    margin-top: 1.3125rem;
  }
}

/* アイコン
------------------------------------- */
.archive-card__new-icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  z-index: 19;
}
@media screen and (min-width: 768px) {
  .archive-card__new-icon {
    width: 3.75rem;
    height: 3.75rem;
    left: -10px;
    top: -17px;
  }
}

.archive-card__new-icon img {
  width: 100%;
  height: 100%;
}

.archive-contents__subitem {
  margin-top: 99.2px;
  margin-top: 6.2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive-contents__subitem {
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
  }
}

.archive-contents__subitem li {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .archive-contents__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .archive-contents__article {
    max-width: 41.8125rem;
    margin-top: 0.4375rem;
  }
}

.archive-contents__items {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .archive-contents__items {
    max-width: 18.75rem;
    margin-top: 3.6rem;
  }
}

.article-post {
  color: #393939;
}

@media screen and (min-width: 768px) {
  .article-contents__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .article-post__item {
    width: 41.875rem;
    margin-top: 0.4375rem;
  }
}

.article-contents__items {
  margin-top: 100.08px;
  margin-top: 6.255rem;
}

/*見出しタグ
------------------------------------- */
.article-post__title {
  font-weight: bold;
  letter-spacing: 0.08em;
}

h1.article-post__title {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  h1.article-post__title {
    font-size: 1.75rem;
    line-height: 1.428;
  }
}

h2.wp-block-heading {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  color: #1391E6;
  border-left: 6px solid #1391e6;
  display: inline-block;
  padding: 3px 16px;
  padding: 0.1875rem 1rem;
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  h2.wp-block-heading {
    font-size: 1.5rem;
    line-height: 1.333;
    margin-top: 3.625rem;
    padding: 0.625rem 1.25rem;
  }
}

h3.wp-block-heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  color: #1391E6;
  margin-top: 35.2px;
  margin-top: 2.2rem;
  border-bottom: 1px solid #1391E6;
}
@media screen and (min-width: 768px) {
  h3.wp-block-heading {
    font-size: 1.25rem;
    line-height: 1.333;
    margin-top: 2.375rem;
    padding-bottom: 0.4375rem;
  }
}

h4.wp-block-heading {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  color: #1391E6;
  margin-top: 51.2px;
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  h4.wp-block-heading {
    font-size: 1rem;
    line-height: 1.333;
    margin-top: 3.5rem;
  }
}

/*  meta情報 */
.article-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .article-post__meta {
    margin-top: 0.8rem;
  }
}

.article-post__date {
  color: #1391E6;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4375;
  margin-left: 7.2px;
  margin-left: 0.45rem;
}
.article-post__icon img {
  width: 14px;
  height: 14px;
}

.article-post_category {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 6.4px 14.4px;
  padding: 0.4rem 0.9rem;
  background-color: #1391E6;
  color: #fff;
  line-height: 1.5;
  border-radius: 50px;
  display: inline-block;
  margin-left: 33px;
  margin-left: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .article-post_category {
    font-size: 0.6875rem;
    top: 0;
    left: 0rem;
    padding: 0.4rem 0.8125rem;
  }
}

.article-post__entry {
  margin-top: 54.4px;
  margin-top: 3.4rem;
}

.article-post__entry p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.69;
  font-weight: 500;
  margin-top: 24px;
}
.article-post__entry p:nth-child(3) {
  margin-top: 14.4px;
  margin-top: 0.9rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.74;
  font-weight: 500;
}
.article-post__entry p:nth-child(4) {
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.74;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .article-post__entry p:nth-child(4) {
    margin-top: 0.8rem;
  }
}

.article-post__entry a {
  color: #1391E6;
  border-bottom: 1px solid #1391E6;
  padding: 0;
  text-decoration: none;
}

.article-post__border {
  margin: 0;
  background-color: #1391E6;
}

.article-post__entry ul {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  list-style: disc outside none;
  list-style: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 31.2px;
  padding-left: 1.95rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .article-post__entry ul {
    margin-top: 0.9375rem;
    padding-left: 1.7rem;
  }
}

.article-post__entry li:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 0;
}

.article-post__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .article-post__pagination {
    margin-top: 6rem;
  }
}

.blog-card:not(:first-of-type) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .blog-card:not(:first-of-type) {
    margin-top: 0;
  }
}

/* ホバーアクション  */
.blog-card:hover .blog-card__text p {
  color: #1391E6;
}

@media screen and (min-width: 768px) {
  .blog-card:hover .blog-card__image img {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1); /* 拡大 */
  }
}

/* アーカイブ用  */
.blog-card--archive {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .blog-card--archive {
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.blog-card__wrapper {
  position: relative;
  /*コレ*/
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .blog-card__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.blog-card {
  position: relative;
  display: inline-block;
  line-height: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog-card {
    width: calc(33.3333% - 2.08333rem);
    border-radius: 20px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
    display: inline-block;
  }
}

/*  スマホ横並び */
.blog-card__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .blog-card__flex {
    display: inline-block;
  }
}

/* アーカイブ用  */
@media screen and (min-width: 768px) {
  .blog-card__wrapper--archive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

.blog-card__image {
  width: 35.4vw;
}
@media screen and (min-width: 768px) {
  .blog-card__image {
    width: 100%;
  }
}

.blog-card__image {
  height: auto;
  position: relative;
  aspect-ratio: 244/153;
}
@media screen and (min-width: 768px) {
  .blog-card__image {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 300/188;
  }
}

/*  ホバーアクション */
.blog-card__image img {
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* ゆっくり変化させる */
  width: 100%;
}

/*  アーカイブ用 */
@media screen and (min-width: 768px) {
  .blog-card__image--archive img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.blog-card__text {
  text-align: left;
  width: 51.5vw;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .blog-card__text {
    position: relative;
    padding: 1.25rem 1.5625rem 0.9375rem 1.5625rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: auto;
    width: 100%;
  }
}

/* アーカイブ用  */
@media screen and (min-width: 768px) {
  .blog-card__text--archive {
    padding: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.blog-card__category {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 4.8px 8px;
  padding: 0.3rem 0.5rem;
  background-color: #1391E6;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .blog-card__category {
    position: absolute;
    content: "";
    font-size: 0.6875rem;
    top: -0.625rem;
    left: 1.25rem;
  }
}

/* アーカイブ用  */
.blog-card__category--archive {
  position: static;
  top: 0;
  left: 0px;
  left: 0rem;
}

.blog-card__text p {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 4.8px;
  margin-top: 0.3rem;
  line-height: 1.428;
  color: #393939;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .blog-card__text p {
    font-size: 1rem;
    margin-top: 0;
  }
}

.blog-card__date {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  line-height: 1;
  display: inline-block;
  color: #888888;
}
/* アイコン
------------------------------------- */
.blog-card__new-icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  position: absolute;
  content: "";
  left: -8px;
  top: -7px;
  z-index: 19;
}
@media screen and (min-width: 768px) {
  .blog-card__new-icon {
    width: 3.75rem;
    height: 3.75rem;
    left: -10px;
    top: -20px;
  }
}

.blog-pagination {
  margin-top: 57.6px;
  margin-top: 3.6rem;
}
@media screen and (min-width: 768px) {
  .blog-pagination {
    margin-top: 5.8rem;
  }
}

.Pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 335px;
  width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .Pagination {
    width: 32.875rem;
  }
}

.Pagination--post {
  position: relative;
}
@media screen and (min-width: 768px) {
  .Pagination--post {
    width: 23.625rem;
  }
}

.Pagination-Item__prev span {
  margin-left: 5.76px;
  margin-left: 0.36rem;
}

.Pagination-Item__next span {
  margin-right: 5.76px;
  margin-right: 0.36rem;
}

.Pagination-Item {
  border: solid 1px #1391E6;
  color: #1391E6;
  border-radius: 4px;
  height: 100%;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.Pagination-Item a {
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
}

.Pagination-Item img {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.Pagination-Item p {
  display: inline-block;
}

.Pagination-Item__prev,
.Pagination-Item__next {
  width: 71px;
  width: 4.4375rem;
  height: 30px;
  height: 1.875rem;
  line-height: 1;
  background: #1391E6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .Pagination-Item__prev,
  .Pagination-Item__next {
    width: 5.125rem;
    height: 2.25rem;
  }
}

.Pagination-Item__prev,
.Pagination-Item__next {
  width: 108px;
  width: 6.75rem;
  height: 39px;
  height: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .Pagination-Item__prev,
  .Pagination-Item__next {
    width: 7.75rem;
    height: 2.25rem;
  }
}

.Pagination-Item__prev {
  position: absolute;
  left: 0;
  color: #fff;
}

.Pagination-Item__next {
  position: absolute;
  right: 0;
}

.Pagination-Item__post {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
/* 投稿ページ  */
.Pagination-Item__post {
  width: 95px;
  width: 5.9375rem;
  height: 41px;
  height: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .Pagination-Item__post {
    width: 5.625rem;
    height: 2.6rem;
  }
}

.Pagination-Item-Link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
@media screen and (min-width: 768px) {
  .Pagination-Item-Link {
    font-size: 0.875rem;
  }
}

.Pagination-Item.is-active {
  background: #1391E6;
  color: #fff;
}

.Pagination-Item__arrow {
  display: inline-block;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  overflow: auto;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .breadcrumb__inner.inner {
    max-width: 71.875rem;
  }
}

.breadcrumb a {
  color: #393939;
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  cursor: pointer;
}

.breadcrumb span {
  padding-right: 3.4px;
  color: #c2c2c2;
}

.breadcrumb span:not(:first-child) span {
  color: #393939;
  padding-left: 5px;
}

/* 各ページの上の余白
------------------------------------- */
.breadcrumb__margin {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb__margin {
    margin-top: 0.7rem;
  }
}

svg {
  fill: currentColor;
}

.button__wrapper {
  background-color: #fff;
  border: 1px solid #1391E6;
  color: #1391E6;
  display: inline-block;
  position: relative;
  border-radius: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button__wrapper {
    border-radius: 1.875rem;
  }
}

.button__wrapper--contact {
  border-radius: 1.1875rem;
  position: static;
  width: 100%;
  margin: 0 auto;
}

.button__wrapper--blue {
  background-color: #1391E6;
  border: 1px solid #1391e6;
  color: #fff;
}

.button {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 12.5px 0;
  padding: 0.78125rem 0;
  display: inline-block;
  line-height: 1;
  width: 100%;
}

.button--contact {
  max-width: 273px;
  max-width: 17.0625rem;
  width: 100%;
  padding: 11px 0;
  padding: 0.6875rem 0;
  border-radius: 19px;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  border: 1px solid #1391e6;
}
@media screen and (min-width: 768px) {
  .button--contact {
    max-width: 22.5rem;
    padding: 1.3rem 0;
    border-radius: 28px;
  }
}

/* ホバーアクション
------------------------------------- */
.button__wrapper:hover {
  background-color: #1391E6;
  border: 1px solid #fff;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button--common {
  width: 164px;
  width: 10.25rem;
}
@media screen and (min-width: 768px) {
  .button--common {
    width: 11rem;
  }
}

.button--web {
  padding: 8px 0;
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  width: 9.375rem;
  height: 36px;
  height: 2.25rem;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .button--web {
    width: 13.75rem;
    height: 3.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.button--web span {
  margin-left: 7px;
  margin-left: 0.4375rem;
}

.button--mail {
  padding: 8px 0;
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1391E6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  width: 9.375rem;
  height: 36px;
  height: 2.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .button--mail {
    padding: 0;
    width: 13.75rem;
    height: 3.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.button--mail span {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.button--mail svg {
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
}

.button--mail:hover {
  color: #fff;
  fill: #1391e6;
  background: transparent;
}

.button--contact:hover {
  background: #1391e6;
  color: #fff;
}

.button-arrow {
  display: inline-block;
  position: relative;
}

.button-arrow:before {
  content: "";
  position: absolute;
  top: 16px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #1391E6;
  border-top: 1px solid #1391E6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.button-arrow:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  background: #1391E6;
  height: 1px;
}

.button-arrow:hover::before {
  right: 16px;
}

.button-arrow:hover::after {
  right: 16px;
}

.button__wrapper:hover {
  background-color: #1391E6;
  border: 1px solid #fff;
  color: #fff;
  opacity: 1;
}

.button-arrow:hover:before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  opacity: 1;
}

.button-arrow:hover:after {
  background: #fff;
  opacity: 1;
}

/* button-reserve
------------------------------------- */
.button-reserve__wrapper {
  width: 92px;
  width: 5.75rem;
  text-align: center;
}

.button-reserve {
  background: #1391E6;
  color: #fff;
  padding: 16px 0;
  padding: 1rem 0;
  border-top-left-radius: 20px;
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 20px;
  border-bottom-left-radius: 1.25rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.button-reserve p {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.pc-icon__text {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.button-reserve:hover {
  background-color: #0060A0;
  opacity: 1;
}

/* button（フッター）
------------------------------------- */
.card-list {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .card-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .card-list__item:nth-child(n+4) {
    margin-top: 4rem;
  }
}

.category__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category__general h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .category__general h3 {
    font-size: 1.75rem;
  }
}

.category__label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  background-color: #1391E6;
  border-radius: 17.5px;
  margin-left: 20.8px;
  margin-left: 1.3rem;
  display: inline-block;
  line-height: 1;
}
.category__label--red {
  background-color: #EE5A6D;
}

.category__list {
  margin-top: 30.88px;
  margin-top: 1.93rem;
}
@media screen and (min-width: 768px) {
  .category__list {
    margin-top: 2.0625rem;
  }
}

.category__item {
  border: 1px solid #1391E6;
  width: 100%;
  color: #1391E6;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .category__item {
    display: inline-block;
    width: auto;
    border-radius: 12px;
    font-size: 1.5rem;
  }
}

.category__item:not(:first-child) {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .category__item:not(:first-child) {
    margin-top: 0;
    margin-left: 0.4375rem;
  }
}

.category__link {
  padding: 14.4px 0;
  padding: 0.9rem 0;
  width: 100%;
  display: inline-block;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .category__link {
    padding: 1.1rem 2rem;
  }
}

.category__special h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .category__special h3 {
    font-size: 1.75rem;
  }
}

.category__special-margin {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .common {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
}

.common__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .common__inner {
    margin-left: 5.625rem;
    width: 32%;
    padding: 0;
    margin-top: -3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .common__inner--right {
    margin-right: 5.8125rem;
    margin-top: 8px;
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .common--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.common__text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .common__text--top {
    margin-top: 2.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .common__text--right {
    padding-left: 0;
  }
}

.common__header {
  color: #1391E6;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .common__header {
    font-size: 0.875rem;
  }
}

.common__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .common__title {
    font-size: 1.75rem;
    line-height: 1.5714;
    margin-top: 1.75rem;
  }
}

.common__detail {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71428;
  margin-top: 27.7px;
  margin-top: 1.73125rem;
}
@media screen and (min-width: 768px) {
  .common__detail {
    margin-top: 2.125rem;
  }
}

.common__flex {
  text-align: center;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .common__flex {
    text-align: left;
  }
}

.common__img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding-right: 40px;
  padding-right: 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .common__img {
    padding: 0;
    overflow: hidden;
    margin-top: 0;
    height: inherit;
    width: 50%;
  }
}

.common__img--right {
  padding-right: 0;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .common__img--right {
    padding-left: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.common__img img {
  width: 100%;
  height: 100%;
}

.contact-form__row {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-top: 1px solid #c2c2c2;
}
@media screen and (min-width: 768px) {
  .contact-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.625rem;
    padding-bottom: 1.8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-form__row--check {
  padding-top: 27.7px;
  padding-top: 1.73125rem;
  padding-bottom: 22.4px;
  padding-bottom: 1.4rem;
}
@media screen and (min-width: 768px) {
  .contact-form__row--check {
    padding-top: 0.8rem;
    padding-bottom: 0.9375rem;
  }
}

.contact-form__row--radio {
  padding-top: 26px;
  padding-top: 1.625rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form__row--radio {
    padding-bottom: 2rem;
    padding-top: 1.8rem;
  }
}

.contact-form__row--select {
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .contact-form__row--select {
    padding-bottom: 1.7rem;
  }
}

.contact-form__row--select p {
  width: 100%;
}

.contact-form__row--carender {
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .contact-form__row--carender {
    padding-top: 0.8rem;
    padding-bottom: 1.875rem;
  }
}

.contact-form__row--margin {
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}

.contact-form__label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .contact-form__label p {
    width: 15rem;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__label p br {
    display: none;
  }
}

.contact-form__check {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.2;
}

.contact-form__check span {
  color: #888888;
  font-size: 11px;
  font-size: 0.6875rem;
}

.contact-form__is-required {
  color: #fff;
  background: #EE5A6D;
  padding: 2px 6px;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  margin-left: 12px;
  margin-left: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contact-form__is-required {
    margin-left: 0.9rem;
    padding: 0.17rem 0.375rem;
  }
}

[type=text],
[type=search],
[type=tel],
[type=email],
[type=date],
textarea {
  background: #f6f6f6;
  padding-top: 12.8px;
  padding-top: 0.8rem;
  padding-bottom: 12.8px;
  padding-bottom: 0.8rem;
  padding-left: 16px;
  padding-left: 1rem;
}

select {
  background: #f6f6f6;
}

.contact-form__input {
  width: 100%;
  margin-top: 12px;
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    margin-top: 0;
  }
}

.contact-form__input p {
  width: 100%;
}

.contact-form__input:focus {
  outline: none;
  border: 3px solid #016ec0;
}

.contact-form__input--checkbox {
  margin-top: 22px;
  margin-top: 1.375rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__input--checkbox {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__flex {
    width: 100%;
  }
}

.contact-form__input input {
  width: 100%;
}
.contact-form__input--date {
  margin-top: 0;
}

.contact-form__input--date + .contact-form__input--date {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .contact-form__input--date + .contact-form__input--date {
    margin-top: 1.25rem;
  }
}

textarea {
  width: 100%;
  height: 160px;
  height: 10rem;
  color: #c2c2c2;
  resize: none;
}
@media screen and (min-width: 768px) {
  textarea {
    height: 12.8125rem;
  }
}

/* ボタン  */
.contact-form__button {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60.8px;
  margin-top: 3.8rem;
}
@media screen and (min-width: 768px) {
  .contact-form__button {
    margin-top: 4rem;
  }
}

.contact-form__button input {
  color: #1391E6;
  max-width: 273px;
  max-width: 17.0625rem;
  width: 100%;
  padding: 11px 0;
  padding: 0.6875rem 0;
  border-radius: 19px;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  border: 1px solid #1391e6;
}
@media screen and (min-width: 768px) {
  .contact-form__button input {
    max-width: 22.5rem;
    padding: 1.3rem 0;
    border-radius: 28px;
  }
}

/* ラジオボタン
------------------------------------- */
.my-radio {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .my-radio {
    margin-top: 0.9rem;
  }
}

.Radio-Input span {
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .Radio-Input span {
    padding-right: 2rem;
  }
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のラジオボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #1391E6;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 24px;
  margin-bottom: auto;
  margin-right: 8px;
  margin-right: 0.5rem;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 24px;
}

/* チェック後のラジオボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #1391E6; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}

/* チェックボックス
------------------------------------- */
.wpcf7-list-item {
  margin: 0;
}

.Radio-Input span .last {
  margin: 0;
}

.wpcf7-list-item-label span {
  padding-right: 0;
}

.wpcf7-list-item span {
  padding-right: 0;
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.my-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20.8px;
  margin-top: 1.3rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .my-check {
    margin-top: 0;
  }
}

/* チェックボックスのデザイン */
.my-checkbox span label span::before {
  border-radius: 0%;
  content: "";
  display: inline-block;
  margin-right: 10px;
  top: -1px;
  vertical-align: middle;
  height: 24px; /* checkboxの大きさ */
  width: 24px; /* checkboxの大きさ */
}

.my-checkbox span label span {
  position: relative;
}

.my-checkbox span label span::after {
  /* チェックアイコン */
  position: absolute;
  border-bottom: 4px solid #1391e6;
  border-left: 4px solid #1391e6;
  content: "";
  display: inline-block;
  height: 14.4px;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 24px;
}

.my-checkbox input[type=checkbox] {
  display: none;
}

.my-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* 余白  */
.my-checkbox span {
  padding-right: 10px;
  padding-right: 0.625rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .my-checkbox span {
    padding-right: 0.75rem;
  }
}

.my-checkbox span:nth-of-type(3n) {
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .my-checkbox span:nth-of-type(3n) {
    padding-right: 14.2px;
  }
}

.my-checkbox span:nth-child(n+4) {
  margin-top: 10.1px;
  margin-top: 0.63125rem;
}
@media screen and (min-width: 768px) {
  .my-checkbox span:nth-child(n+4) {
    margin-top: 0.7rem;
  }
}

/*  レスポンシブ */
/* ドロップダウン
------------------------------------- */
.select-test {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #f6f6f6 url(../images/common/dropdown-Icon.svg) no-repeat center right 13px/18px 18px;
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
  padding-top: 13px;
  padding-top: 0.8125rem;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

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

.contact-form__input select:focus {
  outline: none;
  border: 3px solid #016ec0;
}

/* カレンダー
------------------------------------- */
.contact-form__input--date {
  background: #f6f6f6;
}

.contact-form__flex p {
  height: 15px;
  width: 100%;
}

.contact-form__input--date {
  height: 49px;
}

input[type=date] {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  color: #999;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}

input[type=date]::after {
  content: "";
  background-image: url(../images/common/calendar-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*  スピナーの位置変更  */
div.wpcf7 .wpcf7-spinner {
  display: block;
}

@media screen and (min-width: 768px) {
  .contact-thanks__inner.inner {
    max-width: 48.625rem;
    width: 100%;
  }
}

.contact-thanks__message {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks__message {
    margin-top: 4.7rem;
  }
}

.contact-thanks__message p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.714;
}

.contact-thanks__message p span {
  color: #EE5A6D;
}

@media screen and (min-width: 768px) {
  .contact__inner.inner {
    max-width: 48.625rem;
    width: 100%;
  }
}

.contact__form {
  margin-top: 76.8px;
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 4.6rem;
  }
}

.contact__item--reserve {
  margin-top: 62.4px;
  margin-top: 3.9rem;
}
@media screen and (min-width: 768px) {
  .contact__item--reserve {
    margin-top: 4.2rem;
  }
}

.contact__message p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.714;
}

.contact__message p span {
  color: #EE5A6D;
}

/* お問い合わせフォーム
------------------------------------- */
.contact__heading {
  max-width: 257px;
  max-width: 16.0625rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 105px;
  margin-top: 6.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__heading {
    max-width: 30.6625rem;
    margin-top: 9.8rem;
  }
}

/* エラーメッセージ
------------------------------------- */
#errorMessage {
  color: red;
  font-weight: bold;
  margin-top: 10px;
  display: none;
}

.feature {
  position: relative;
  padding-top: 99px;
  padding-top: 6.1875rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 7rem;
    overflow: hidden;
  }
}

.top-concept__bg {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 4%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 102.4219%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top-concept__bg {
    -o-object-fit: cover;
       object-fit: cover;
    width: 102.4219%;
    top: 1.25rem;
    left: 32%;
  }
}

@media screen and (min-width: 768px) {
  .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-contents__left {
  padding-top: 32px;
  padding-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-contents__left {
    max-width: 29.8125rem;
    width: 100%;
    display: inline-block;
    padding-top: 0;
  }
}

.footer-contents__name img {
  max-width: 309.38px;
  max-width: 19.33625rem;
  width: 100%;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .footer-contents__name img {
    max-width: 25.25rem;
  }
}

.footer-contents__address {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer-contents__address {
    margin-top: 0.25rem;
  }
}

.footer-contents__address-space {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.footer-contents__contact {
  margin-top: 17px;
  margin-top: 1.0625rem;
  max-width: 260px;
  max-width: 16.25rem;
  width: 100%;
  height: auto;
  display: inline-block;
}

.footer-contents img {
  width: 100%;
  vertical-align: bottom;
  display: inline-block;
}

.footer-contents__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .footer-contents__button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
    margin-top: 1.3rem;
  }
}

.footer-contents__clinic-timesheet {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* スケジュール
------------------------------------- */
.clinic-timesheet {
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: relative;
  width: 100%;
}

.clinic-timesheet::before {
  content: "";
  padding-top: 34.925%;
  display: block;
}

.clinic-timesheet img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.footer-contents__right {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-right: 10.5px;
  padding-right: 0.65625rem;
  padding-left: 10.5px;
  padding-left: 0.65625rem;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .footer-contents__right {
    margin-top: 0;
    padding: 0;
    display: inline-block;
    max-width: 24.0625rem;
    width: 100%;
    min-height: 100%;
  }
}

.footer-contents__map iframe {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer-contents__map iframe {
    display: inline-block;
    max-width: 24.0625rem;
    width: 100%;
    height: 100%;
  }
}

.footer-nav__items {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 62.4px;
  padding-bottom: 3.9rem;
  font-size: 16px;
  font-size: 1rem;
  color: #393939;
}
@media screen and (min-width: 768px) {
  .footer-nav__items {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.75rem;
    margin-bottom: 3.6rem;
  }
}

.footer-nav__item {
  margin-bottom: 0;
}

.footer-nav__item:not(:first-child) {
  margin-top: 37.8px;
  margin-top: 2.3625rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__item:not(:first-child) {
    margin-top: 0;
  }
}

.footer-nav__item a {
  font-weight: bold;
}

.footer-nav-sub {
  font-weight: 500;
}

.footer-nav__subitem {
  display: block;
  position: relative;
  margin-bottom: 0;
  padding: 0;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.footer-nav__subitem a {
  padding-left: 12px;
  padding-left: 0.75rem;
  font-weight: 500;
}

.footer-nav__subitem:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1391E6;
}

.footer-nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav-sub--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-nav-sub--flex:nth-child(n+2) {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.footer {
  background-color: #DFF1FD;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../images/common/footer-line-pc.png);
  background-size: cover;
  top: -32px;
  top: -2rem;
  width: 100%;
  height: 32px;
  height: 2rem;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .footer::before {
    background: url(../images/common/footer-line-pc.png);
    background-size: cover;
  }
}

.footer__inner {
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 3.5rem;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0;
  }
}

.footer__body {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 0 10.5px;
  padding: 0 0.65625rem;
}
@media screen and (min-width: 768px) {
  .footer__body {
    margin: 0 auto;
    max-width: 62.5rem;
    padding: 2.3125rem 3.125rem;
  }
}

/* コピーライト
------------------------------------- */
.footer__copyright {
  background: #1391E6;
  color: #fff;
  padding-top: 17px;
  padding-top: 1.0625rem;
  padding-bottom: 86px;
  padding-bottom: 5.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-top: 0.8125rem;
  }
}

.footer__copyright p {
  font-size: 14px;
  font-size: 0.875rem;
}

.for-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}

/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  z-index: 99;
  height: 60px;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, .85);
  border-top: 1px solid #1391E6;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

/*メニューを横並びにする*/
.for-sp__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px 0 16px;
  padding: 0 1.25rem 0 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.for-sp__tel a {
  height: 41px;
  height: 2.5625rem;
  width: 45.3333vw;
  max-width: 170.04px;
  display: inline-block;
  opacity: 1;
}

.for-sp__tel img {
  height: auto;
  width: 100%;
}

.for-sp__reserve a {
  height: 47px;
  height: 2.9375rem;
  max-width: 157.07px;
  width: 41.888vw;
  display: inline-block;
  opacity: 1;
}

.for-sp__reserve img {
  height: auto;
  width: 100%;
}

.garally-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .garally-items {
    margin-top: 3.8rem;
  }
}

.garally-item {
  width: calc(50% - 5.5px);
}
@media screen and (min-width: 768px) {
  .garally-item {
    width: calc(33.3333% - 16px);
  }
}

.garally-item:nth-child(n+3) {
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .garally-item:nth-child(n+3) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .garally-item:nth-child(n+4) {
    margin-top: 1.125rem;
  }
}

.general__items {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .general__items {
    margin-top: 2.5rem;
  }
}

a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hamburger {
  width: 32px;
  width: 2rem;
  height: 22px;
  height: 1.375rem;
  position: relative;
  display: block;
  -webkit-transition: 1s;
  transition: 1s;
}
@media screen and (min-width: 1100px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  width: 27px;
  width: 1.6875rem;
  height: 2px;
  height: 0.125rem;
  background-color: #1391E6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 15%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}

.hamburger span:nth-child(3) {
  top: 85%;
}

.hamburger.is-active span {
  background: #1391E6;
}

.hamburger.is-active span:nth-child(1) {
  top: 60%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  top: 50%;
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 60%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

li {
  margin-bottom: 10px;
}

/* メニューにopenクラスがついたときのスタイル */
.sp-nav.is-active {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: block;
}

.header__logo {
  z-index: 40;
}

.hamburger__body {
  z-index: 40;
}

.menu__sp-nav {
  z-index: 20;
}

header {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  header {
    height: 5rem;
  }
}

.header__inner {
  padding: 14px 17px 14px 19px;
  padding: 0.875rem 1.0625rem 0.875rem 1.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}

.header__logo {
  width: 270px;
  width: 16.875rem;
  height: 32px;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 270px;
    height: 30px;
  }
}

.header__logolink img {
  display: block;
  width: 100%;
  height: 100%;
}
.header__logolink {
  z-index: 40;
}

@media screen and (min-width: 768px) {
  .header__pc-nav {
    margin-top: 0.625rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.inner--footer {
  padding-top: 45px;
  padding-top: 2.8125rem;
}

.medical-item {
  background: #DFF1FD;
}

@media screen and (min-width: 768px) {
  .medical-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
}

/*記事カード*/
.medical-item__box {
  background: #fff;
  border-radius: 20px;
  padding-top: 20.8px;
  padding-top: 1.3rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .medical-item__box {
    padding-top: 3.4375rem;
    padding-right: 3.75rem;
    padding-bottom: 3.75rem;
    padding-left: 3.75rem;
    margin-top: 2.375rem;
  }
}

.medical-item__box:not(:first-child) {
  margin-top: 41.6px;
  margin-top: 2.6rem;
}
@media screen and (min-width: 768px) {
  .medical-item__box:not(:first-child) {
    margin-top: 2.7rem;
  }
}

@media screen and (min-width: 768px) {
  .medical-item__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.medical-item__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .medical-item__title {
    font-size: 1.75rem;
  }
}

.medical-item__subtitle {
  color: #1391E6;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .medical-item__subtitle {
    margin-top: 0;
    margin-left: 2.3rem;
  }
}

.medical-item__border {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
  color: #c2c2c2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .medical-item__border {
    margin-top: 2.5rem;
  }
}

/* 余白  */
.medcal-item__body {
  margin-top: 14.4px;
  margin-top: 0.9rem;
}
@media screen and (min-width: 768px) {
  .medcal-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 2.5rem;
  }
}

.medical-item__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.73;
  letter-spacing: 0;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .medical-item__text {
    width: calc(50% - 1.25rem);
    margin-top: 0;
  }
}

.medical-item__image {
  margin-top: 16px;
  margin-top: 1rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .medical-item__image {
    width: calc(50% - 1.25rem);
    margin-top: 0;
  }
}

.medical-item__image::before {
  content: "";
  padding-top: 74.9152%;
  display: block;
}

.medical-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タグ */
.medical-item__tag {
  width: 80px;
  width: 5rem;
  height: 60px;
  height: 3.75rem;
  position: absolute;
  content: "";
  top: 0;
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .medical-item__tag {
    width: 6.25rem;
    height: 5rem;
    right: 3.75rem;
  }
}

.medical-item__tag img {
  width: 100%;
  height: 100%;
}

.member__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .member__wrapper {
    margin-top: 4rem;
  }
}

.member__wrapper--support {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .member__wrapper--support {
    margin-top: 4rem;
  }
}

.member__heading {
  max-width: 257.95px;
  max-width: 16.121875rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .member__heading {
    max-width: 23.125rem;
  }
}

.member__position {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .member__position {
    line-height: 1;
  }
}

.member__border {
  display: block;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
  color: #707070;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .member__border {
    margin-top: 9px;
  }
}

.member__items {
  margin-top: 36.8px;
  margin-top: 2.3rem;
}
@media screen and (min-width: 768px) {
  .member__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}

.member__item:not(:first-child) {
  margin-top: 51.6px;
  margin-top: 3.225rem;
}
@media screen and (min-width: 768px) {
  .member__item:not(:first-child) {
    margin-top: 0;
  }
}

.news-topic {
  width: 100%;
  display: inline-block;
}

.news-topic:not(:first-child) {
  margin-top: 14.4px;
  margin-top: 0.9rem;
}

.news-topic:first-of-type {
  margin-top: 20px;
}

.news-topic__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .news-topic__wrapper {
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-topic__image {
  max-width: 133px;
  max-width: 8.3125rem;
  width: 100%;
  height: 101px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .news-topic__image {
    max-width: 7.625rem;
    height: 90px;
  }
}

.news-topic__image img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .news-topic__image img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.news-topic__text {
  text-align: left;
  padding-left: 10px;
  padding-left: 0.625rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .news-topic__text {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-top: 0;
    padding-right: 0;
    font-size: 0.875rem;
  }
}

.news-topic__title {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .news-topic__title {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.news-topic__category {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  background-color: #1391E6;
  color: #fff;
  line-height: 1.5;
  border-radius: 50px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .news-topic__category {
    font-size: 0.6875rem;
    top: 0;
    left: 0rem;
  }
}

.news-topic__date {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 11.2px;
  margin-top: 0.7rem;
  line-height: 1;
  display: inline-block;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .news-topic__date {
    margin-top: 0.625rem;
  }
}

/* アイコン
------------------------------------- */
.news-topic__new-icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  position: absolute;
  content: "";
  left: -8px;
  top: -7px;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .news-topic__new-icon {
    width: 3.75rem;
    height: 3.75rem;
    left: -10px;
    top: -20px;
  }
}

.blog-pagination {
  margin: 0 auto;
}

.pagination {
  margin-top: 58px;
  margin-top: 3.625rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .pagination {
    font-size: 0.875rem;
    margin-top: 6.2rem;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .nav-links {
    width: 42.4375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pagination .page-numbers {
  display: inline-block;
  color: #1391E6;
  border-radius: 4px;
  background: #fff;
  border: solid 1px #1391e6;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 7px 0;
  margin-right: 7px;
}
@media screen and (min-width: 768px) {
  .pagination .page-numbers {
    margin-right: 10px;
  }
}

.pagination .current {
  padding: 7px 0;
  background: #1391E6;
  color: #fff;
  width: 30px;
  height: 30px;
}
.pagination .prev,
.pagination .next {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  width: 71px;
  width: 4.4375rem;
  height: 30px;
  height: 1.875rem;
  background: #1391E6;
  padding: 7px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .pagination .prev,
  .pagination .next {
    width: 5.125rem;
    height: 2.25rem;
  }
}

.pagination .prev {
  background-image: url(../images/common/pagination-arrow-left.svg);
  background-position: left 3px center;
  background-repeat: no-repeat;
  padding-left: 35px;
}
@media screen and (min-width: 768px) {
  .pagination .prev {
    padding-left: 35px;
    background-position: left 14px center;
  }
}

.pagination a.next {
  background-image: url(../images/common/pagination-arrow-right.svg);
  background-position: right 3px center;
  background-repeat: no-repeat;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .pagination a.next {
    padding-left: 15px;
    background-position: right 14px center;
  }
}

.pagination .dots {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 30px;
  height: 30px;
}

.pc-nav__flex {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-nav__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.pc-nav {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-nav {
    display: block;
  }
}

.pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
}

.pc-nav__item:hover a {
  fill: #1391E6;
  color: #1391E6;
}

.pc-nav__item a {
  position: relative; /*アンダーラインの位置を決めるための基準 */
}

.pc-nav__item:hover a::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  bottom: -6px;
  bottom: -0.375rem;
  left: 15px;
  content: ""; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
  width: 20px; /*アンダーラインを各aタグの幅に合わせる*/
  height: 2px; /*アンダーラインの高さ（太さ）*/
  background: #1391E6; /*アンダーラインの色*/
}

.pc-nav__item a {
  fill: #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}

.pc-nav__item a p {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.pc-nav__contact {
  display: none;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: end;
}
@media screen and (min-width: 1100px) {
  .pc-nav__contact {
    display: block;
    width: 100%;
    margin-left: 2rem;
  }
}

.pc-nav__contact p {
  line-height: 1;
}

.pc-nav__contact img {
  width: 260px;
  width: 16.25rem;
  height: 44px;
  height: 2.75rem;
}

.policy__bg {
  margin-top: 33.6px;
  margin-top: 2.1rem;
}
@media screen and (min-width: 768px) {
  .policy__bg {
    margin-top: 0;
  }
}

.policy__heading {
  margin-right: auto;
  margin-left: auto;
  margin-top: 52px;
  margin-top: 3.25rem;
  max-width: 279.95px;
  max-width: 17.496875rem;
  width: 100%;
  letter-spacing: 0.8em;
}
@media screen and (min-width: 768px) {
  .policy__heading {
    max-width: 25rem;
    margin-top: 5rem;
  }
}

.profile-card {
  max-width: 460px;
  max-width: 28.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .profile-card {
    margin-left: 0;
    margin-right: 0;
    width: calc(33.3% - 53.33333px);
  }
}

@media screen and (min-width: 768px) {
  .profile-card:not(:nth-child(3n+1)) {
    margin-left: 5rem;
  }
}

.profile-card:nth-child(n+4) {
  margin-top: 50.4px;
  margin-top: 3.15rem;
}
@media screen and (min-width: 768px) {
  .profile-card:nth-child(n+4) {
    margin-top: 3.4rem;
  }
}

/* 画像の比率管理  */
.profile-card__image {
  width: 100%;
  position: relative;
}

.profile-card__image::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.profile-card__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.profile-card__title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 15.3px 0;
  padding: 0.95625rem 0;
}
.profile-card__position {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.profile-card__name {
  margin-left: 9.6px;
  margin-left: 0.6rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
/*  詳細情報 */
.profile-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.profile-card__info dt {
  width: 41.7910447761%;
  background-color: #DFF1FD;
  padding-top: 12.8px;
  padding-top: 0.8rem;
  padding-bottom: 12.8px;
  padding-bottom: 0.8rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .profile-card__info dt {
    width: 50%;
  }
}

.profile-card__info dd {
  width: 58.2089552239%;
  padding-top: 12.8px;
  padding-top: 0.8rem;
  padding-bottom: 12.8px;
  padding-bottom: 0.8rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .profile-card__info dd {
    width: 50%;
  }
}

.profile-card__info dt,
.profile-card__info dd {
  border: 1px solid #fff;
}

.profile__heading {
  max-width: 279px;
  max-width: 17.4375rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .profile__heading {
    max-width: 25.01625rem;
  }
}

.profile__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .profile__wrapper {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .profile__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .profile__info {
    width: calc(50% - 40px);
  }
}

.profile__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .profile__title {
    font-size: 1.75rem;
  }
}

.profile__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.714;
  margin-top: 25.6px;
  margin-top: 1.6rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .profile__text {
    margin-top: 2rem;
  }
}

.profile__sign {
  text-align: right;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .profile__sign {
    margin-top: 1.3rem;
  }
}

.profile__image {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .profile__image {
    width: calc(50% - 40px);
    margin-top: 0;
  }
}

.profile__image img {
  aspect-ratio: 335/446;
}
@media screen and (min-width: 768px) {
  .profile__image img {
    aspect-ratio: 460/613;
  }
}

.profile__list {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .profile__list {
    margin-top: 3.625rem;
  }
}

.profile__head {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.profile_border {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
  color: #c2c2c2;
}
@media screen and (min-width: 768px) {
  .profile_border {
    margin-top: 2.5rem;
  }
}

.profile__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 11.2px;
  margin-top: 0.7rem;
  line-height: 1.714;
}
@media screen and (min-width: 768px) {
  .profile__block {
    margin-top: 0.7rem;
    letter-spacing: 0;
  }
}

.profile__year {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.714;
  letter-spacing: 0;
}

.profile__history {
  margin-left: 16px;
  margin-left: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.714;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .profile__history {
    margin-left: 0.9375rem;
  }
}

.profile__qualification {
  margin-top: 36.8px;
  margin-top: 2.3rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .profile__qualification {
    margin-top: 1.7rem;
  }
}

.profile__qualification p {
  margin-top: 19.2px;
  margin-top: 1.2rem;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .profile__qualification p {
    margin-top: 1.2rem;
    letter-spacing: 0;
  }
}

.reserve {
  color: #393939;
}

@media screen and (min-width: 768px) {
  .reserve__inner.inner {
    max-width: 48.625rem;
    width: 100%;
  }
}

.reserve__method {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .reserve__method {
    font-size: 1.75rem;
    margin-top: 4.9rem;
  }
}

.reserve__method:nth-of-type(2) {
  margin-top: 35.2px;
  margin-top: 2.2rem;
}

.reserve__form {
  margin-top: 64px;
  margin-top: 4rem;
}

.reserve__tel {
  max-width: 260px;
  max-width: 16.25rem;
  width: 100%;
  margin-top: 25.6px;
  margin-top: 1.6rem;
}

.reserve__tel img {
  width: 100%;
  height: 100%;
}

.reserve__message p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.714;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .reserve__message p {
    margin-top: 1.5rem;
  }
}

.reserve-heading {
  max-width: 257px;
  max-width: 16.0625rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 90px;
  margin-top: 5.625rem;
  width: 100%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .reserve-heading {
    max-width: 23.14125rem;
    margin-top: 9.8rem;
  }
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 39px;
  height: 2.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .section-header {
    width: 100%;
    height: 2.4375rem;
  }
}

.section-header__title {
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #393939;
}
@media screen and (min-width: 768px) {
  .section-header__title {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .section-header__title--contact {
    letter-spacing: 0.08em;
  }
}

.section-header__deco {
  max-width: 48.98px;
  max-width: 3.06125rem;
  width: 100%;
  height: 12.84px;
  height: 0.8025rem;
}
@media screen and (min-width: 768px) {
  .section-header__deco {
    max-width: 4.195625rem;
    width: 100%;
    height: 1.25rem;
  }
}

.sidebar-topic {
  margin-top: 19.2px;
  margin-top: 1.2rem;
}
.sidebar__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .sidebar__title {
    padding-bottom: 0.25rem;
  }
}

.sidebar__name {
  font-size: 16px;
  font-size: 1rem;
  color: #393939;
  letter-spacing: 0;
}

.sidebar__title img {
  width: 24px;
  width: 1.5rem;
  height: 26px;
  height: 1.625rem;
  margin-right: 9.6px;
  margin-right: 0.6rem;
}

.sidebar__border {
  display: block;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
  color: #888888;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sidebar__border {
    margin-top: 0;
  }
}

.sidebar__image {
  margin-top: 19.2px;
  margin-top: 1.2rem;
}
.sidebar__image img {
  width: 100%;
  height: auto;
}

.sidebar__info {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.sidebar__head {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25;
}

.sidebar__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.7;
  font-weight: 500;
  margin-top: 12.8px;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .sidebar__text {
    margin-top: 0.8rem;
  }
}

.sidebar__link {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sidebar__link {
    margin-top: 0.5rem;
  }
}

.sidebar__link a {
  color: #1391E6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  margin-left: 2px;
}

.cat-item {
  display: block;
  position: relative;
  margin-bottom: 0;
  padding: 0;
  margin-top: 14px;
  margin-top: 0.875rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.cat-item-3 {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .cat-item-3 {
    margin-top: 0.95rem;
  }
}

.cat-item a {
  padding-left: 12px;
  padding-left: 0.75rem;
  font-weight: 500;
}

.cat-item:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5px;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1391E6;
}

.sp-nav {
  display: none;
}

.sp-nav {
  width: 100%;
  background: #0060a0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.sp-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 100px 0;
  margin: 6.25rem 0;
}

.sp-nav__items:first-child {
  background-image: linear-gradient(to right, #fff 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: top;
}

.sp-nav__inner {
  padding: 0 60px;
  padding: 0 3.75rem;
}

/* メニューにis-activeクラスがついたときのスタイル */
.sp-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: #fff;
}

.sp-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 0;
  padding: 0.875rem 0;
  background-image: linear-gradient(to right, #fff 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  fill: #fff;
}

.sp-nav__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sp-nav__flex img {
  margin-right: 14px;
  margin-right: 0.875rem;
  fill: #fff;
}

.menu-icon {
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
}

.right-icon {
  height: 14px;
  height: 0.875rem;
  width: 14px;
  width: 0.875rem;
}

.hamburger {
  z-index: 60;
}

.header__logo {
  z-index: 40;
}

.sp-nav {
  z-index: 30;
}

.staff-swiper {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .staff-swiper {
    margin-top: 10.5rem;
  }
}

.staff-swiper__item {
  overflow: hidden;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.staff-swiper__item.swiper-wrapper.swiper-slide {
  width: 53.33vw;
  height: auto;
  display: inline-block;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .staff-swiper__item.swiper-wrapper.swiper-slide {
    width: 23.82vw;
  }
}

.staff-swiper__item.swiper-wrapper.swiper-slide img {
  width: 100%;
  border-radius: 20px;
}

/*  なめらかにする　 */
.staff-swiper__item .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media screen and (min-width: 768px) {
  .subpage-mv__inner.inner {
    max-width: 75.625rem;
  }
}

.subpage-mv__title {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .subpage-mv__title {
    margin-top: 2.5rem;
  }
}

.subpage-mv__title::before {
  content: "";
  padding-top: 56.119%;
  display: block;
}
@media screen and (min-width: 768px) {
  .subpage-mv__title::before {
    padding-top: 29.31%;
  }
}

.subpage-mv__title img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.subpage-mv__text {
  color: #fff; /* テキストの色 */
  position: absolute;
  content: "";
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
}

.subpage-mv__text h1 {
  font-size: 24px;
  font-size: 1.5rem;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-left: 3px;
}
@media screen and (min-width: 768px) {
  .subpage-mv__text h1 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.subpage-mv__text h2 {
  font-size: 24px;
  font-size: 1.5rem;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-left: 3px;
}
@media screen and (min-width: 768px) {
  .subpage-mv__text h2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.subpage-mv__text p {
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 20px;
  margin-top: 1.25rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .subpage-mv__text p {
    margin-top: 1.7rem;
    font-size: 0.875rem;
  }
}

/* ページトップボタン */
.to-top a {
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  position: fixed;
  right: 10px;
  right: 0.625rem;
  bottom: 108px;
  bottom: 6.75rem;
  display: inline-block;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .to-top a {
    right: 1.25rem;
    bottom: 6.5rem;
  }
}

.to-top a img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.top-blog__inner {
  text-align: center;
}

.top-blog__heading {
  max-width: 279px;
  max-width: 17.4375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-blog__heading {
    max-width: 25.0625rem;
  }
}

.top-blog__items {
  margin-top: 40.96px;
  margin-top: 2.56rem;
}
@media screen and (min-width: 768px) {
  .top-blog__items {
    margin-top: 5rem;
  }
}

/* ボタン
------------------------------------- */
.top-blog__button {
  margin-top: 36.8px;
  margin-top: 2.3rem;
  width: 262px;
  width: 16.375rem;
}
@media screen and (min-width: 768px) {
  .top-blog__button {
    margin-top: 4rem;
    width: 17.125rem;
  }
}

.top-blog__button:hover {
  background: #1391e6;
  color: #fff;
}

.top-concept {
  position: relative;
  padding-top: 113px;
  padding-top: 7.0625rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .top-concept {
    padding-top: 11.25rem;
    padding-bottom: 9.375rem;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .top-concept__inner {
    max-width: 100%;
    margin-left: 5.9rem;
    width: 32%;
    padding: 0;
    margin-top: -3.4375rem;
  }
}

.top-concept__bg {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 4%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 149.72%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top-concept__bg {
    -o-object-fit: cover;
       object-fit: cover;
    width: 102.4219%;
    top: 62px;
    left: 32%;
  }
}

.top-content__bg-top {
  width: 100%;
  height: 22.66667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-content__bg-top {
    height: 15.7812vw;
  }
}

.top-content__bg-top::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/content-bg-top-sp.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: inherit;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: inherit;
}
@media screen and (min-width: 768px) {
  .top-content__bg-top::before {
    background-image: url(../images/common/content-bg-top.png);
  }
}

.top-content__bg-color {
  background: #DFF1FD;
}

.top-content__heading {
  padding-top: 43.2px;
  padding-top: 2.7rem;
  max-width: 213px;
  max-width: 13.3125rem;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-content__heading {
    max-width: 19.26625rem;
    padding-top: 0;
  }
}

.top-content__heading--medical.top-content__heading {
  padding-top: 49px;
  padding-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .top-content__heading--medical.top-content__heading {
    padding-top: 0;
  }
}

.top-content__wrapper {
  margin-top: 52.8px;
  margin-top: 3.3rem;
}
@media screen and (min-width: 768px) {
  .top-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 3.75rem;
  }
}

.top-content__item {
  position: relative;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-content__item {
    max-width: 460px;
  }
}

.top-content__item img {
  height: auto;
  width: 100%;
}

/*  マスク */
.top-content__item::before {
  background: rgba(0, 0, 0, .4); /* マスクの色(黒の40%) */
  bottom: 0;
  content: "";
  height: auto;
  left: 0;
  opacity: 0; /* 最初は透明(非表示) */
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease; /* ゆっくりopacityのみへ変化させる */
  width: 100%;
  transition: opacity 0.6s ease; /* ゆっくりopacityのみへ変化させる */
  outline: 3px solid #fff;
  outline-offset: -12px;
  outline-offset: -0.75rem;
  border-radius: 20px;
}

.top-content__item:hover::before {
  opacity: 1; /* hoverしたら透過しない(表示させる) */
}

/*  余白 */
.top-content__item:last-child {
  margin-top: 14.4px;
  margin-top: 0.9rem;
}
@media screen and (min-width: 768px) {
  .top-content__item:last-child {
    margin-top: 0;
  }
}

.top-content__item img {
  height: auto;
  width: 100%;
}

.top-content__text {
  color: #fff; /* テキストの色 */
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-content__text {
    top: 46%;
  }
}

.top-content__text--special.top-content__text {
  top: 54%;
}
@media screen and (min-width: 768px) {
  .top-content__text--special.top-content__text {
    top: 50%;
  }
}

.top-content__title {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-content__title {
    font-size: 1.75rem;
  }
}

.top-content__title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0; /*線の上下位置*/
  display: inline-block;
  width: 40px; /*線の長さ*/
  height: 2px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #fff; /*線の色*/
  border-radius: 2px; /*線の丸み*/
}

.top-content__detail {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-content__detail {
    font-size: 1rem;
  }
}

.top-content__description {
  background: #fff;
  padding-top: 16px;
  padding-top: 1rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.714;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .top-content__description {
    line-height: 2;
    margin-top: 3.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.6rem;
  }
}

.top-content__description p span {
  color: #EE5A6D;
}

.top-content__bg-deco {
  height: 62px;
  height: 3.875rem;
  width: 100%;
  background: #DFF1FD;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-content__bg-deco {
    height: 4.8rem;
  }
}

.top-content__bg-deco::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/content-bottom-deco1.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  height: inherit;
  left: 12px;
  left: 0.75rem;
  top: 24px;
  top: 1.5rem;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-content__bg-deco::before {
    width: 3.5625rem;
    height: 3.5625rem;
  }
}

.top-content__bg-deco::after {
  content: "";
  position: absolute;
  background-image: url(../images/common/content-bottom-deco2.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  right: 12px;
  right: 0.75rem;
  top: 5px;
  top: 0.3125rem;
  width: 54.16px;
  width: 3.385rem;
  height: 59px;
  height: 3.6875rem;
}
@media screen and (min-width: 768px) {
  .top-content__bg-deco::after {
    max-width: 7.8125rem;
    width: 100%;
    height: 8.625rem;
    top: -3.5rem;
    right: 1.275rem;
  }
}

.top-content__bg-bottom {
  width: 100%;
  height: 7.46vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-content__bg-bottom {
    height: 7.578vw;
  }
}

.top-content__bg-bottom::after {
  content: "";
  position: absolute;
  background-image: url(../images/common/content-bottom-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: inherit;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: inherit;
}

@media screen and (min-width: 768px) {
  .top-info__inner.inner {
    max-width: 1125px;
  }
}

.top-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .top-info__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-info-news {
  width: 100%;
  margin-top: 32px;
  margin-top: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-info-news {
    display: inline-block;
    max-width: 33.8125rem;
    margin-top: 1rem;
  }
}

.top-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-info__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.top-info__title h3 {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 2;
  font-weight: bold;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-info__title h3 {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-left: 0.625rem;
  }
}

.top-info__title p {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #1391E6;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 16px;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .top-info__title p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 3;
  }
}

.top-info__link {
  font-size: 11px;
  font-size: 0.6875rem;
  border-bottom: 1px solid #888888;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .top-info__link {
    font-size: 0.75rem;
    margin-top: -5px;
  }
}

.top-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  padding: 0.75rem 0;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-info__item {
    padding: 0.5625rem 0;
  }
}

/* ホバーアクション
------------------------------------- */
.top-info__item:hover {
  color: #1391E6;
}

.top-info__item:hover .top-info__text {
  color: #1391E6;
}

.top-info__item:hover::before {
  border-right: 2px solid #1391E6;
  border-top: 2px solid #1391E6;
  right: 2px;
}

.top-info__item:hover::after {
  background: #1391E6;
  right: 2px;
}

.top-info__date {
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}

.top-info__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 24px;
  margin-left: 1.5rem;
  font-weight: 600;
  color: #393939;
}

.top-info__item::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #393939;
  border-top: 1px solid #393939;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top-info__item:after {
  content: "";
  position: absolute;
  top: 22px;
  right: 8px;
  width: 10px;
  background: #393939;
  height: 1px;
}

.top-info__timesheet {
  z-index: 2;
  margin-top: -23px;
  margin-top: -1.4375rem; /* 上方向にネガティブマージンを取る */
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-info__timesheet {
    margin-top: -2.1875rem;
    max-width: 29.8125rem;
    margin-left: 3.75rem;
  }
}

.top-info__timesheet img {
  display: inline-block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .top-mv__inner.inner {
    max-width: 1210px;
  }
}

.top-mv__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
  max-width: 72.5rem;
  position: relative;
}

.swiper-slide--mask {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, .1); /* マスクの色(黒の10%) */
  width: 100%;
  height: auto;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  border-radius: 20px;
}

.top-mv__title {
  color: #fff;
  position: absolute;
  left: 19.2px;
  left: 1.2rem;
  bottom: 39.6px;
  bottom: 2.475rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-mv__title {
    left: 3.75rem;
    bottom: 3.25rem;
  }
}

.top-mv__title h2 {
  max-width: 264.44px;
  max-width: 16.5275rem;
}
@media screen and (min-width: 768px) {
  .top-mv__title h2 {
    max-width: 25.9375rem;
  }
}

.top-mv__title h2 img {
  width: 100%;
  height: auto;
}

.top-mv__button {
  position: fixed;
  content: "";
  top: 176px;
  top: 11rem;
  right: 0;
  z-index: 21;
}

/* タイトル部分
------------------------------------- */
.top-recommend__inner.inner {
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .top-recommend__inner.inner {
    max-width: 63.5rem;
  }
}

.top-recommend__heading {
  margin: 0 auto;
  max-width: 335px;
  max-width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .top-recommend__heading {
    max-width: 30rem;
  }
}

/* アイテム
------------------------------------- */
.top-recommend__items {
  display: block;
  margin-top: 32px;
  margin-top: 2rem;
  padding-right: 27px;
  padding-right: 1.6875rem;
  padding-left: 27px;
  padding-left: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .top-recommend__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.875rem;
    padding: 0;
  }
}

.top-recommend__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .top-recommend__item {
    width: calc(33.3% - 2.5rem);
  }
}

.top-recommend__item + .top-recommend__item {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .top-recommend__item + .top-recommend__item {
    margin-top: 0;
    margin-left: 3.75rem;
  }
}

.top-recommend__point {
  text-align: center;
  width: 177.36px;
  width: 11.085rem;
  height: 36px;
  height: 2.25rem;
}
@media screen and (min-width: 768px) {
  .top-recommend__point {
    width: 10.71rem;
    height: 2rem;
  }
}

.top-recommend__point img {
  width: 100%;
}

.top-recommend__image {
  width: 276px;
  width: 17.25rem;
  height: 255px;
  height: 15.9375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.top-recommend__image img {
  width: 100%;
  height: 100%;
}

.top-recommend__text {
  margin-top: 23px;
  margin-top: 1.4375rem;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  width: 100%;
  letter-spacing: 0;
}

.top-recommend__text span {
  color: red;
}

.archive-page {
  margin-top: 60.8px;
  margin-top: 3.8rem;
}
@media screen and (min-width: 768px) {
  .archive-page {
    margin-top: 4.1rem;
  }
}

.archive-category {
  margin-top: 57.6px;
  margin-top: 3.6rem;
}
@media screen and (min-width: 768px) {
  .archive-category {
    margin-top: 3.9rem;
  }
}

.company-about {
  margin-top: 92.8px;
  margin-top: 5.8rem;
}
@media screen and (min-width: 768px) {
  .company-about {
    margin-top: 10.3125rem;
  }
}

.company-policy {
  position: relative;
  padding-top: 144px;
  padding-top: 9rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .company-policy {
    padding-bottom: 9.375rem;
    overflow: hidden;
  }
}

.company-policy--feature.company-policy {
  padding-top: 105px;
  padding-top: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .company-policy--feature.company-policy {
    padding-top: 0.9rem;
    padding-bottom: 0;
  }
}

.contact-page {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .contact-page {
    margin-top: 4.7rem;
  }
}

.contact-footer.footer {
  margin-top: 132.8px;
  margin-top: 8.3rem;
}
@media screen and (min-width: 768px) {
  .contact-footer.footer {
    margin-top: 12rem;
  }
}

.medical-category {
  margin-top: 57.6px;
  margin-top: 3.6rem;
}
@media screen and (min-width: 768px) {
  .medical-category {
    margin-top: 5.3rem;
  }
}

.general {
  margin-top: 95.2px;
  margin-top: 5.95rem;
}
@media screen and (min-width: 768px) {
  .general {
    margin-top: 9.95rem;
  }
}

.special {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .special {
    margin-top: 9.6rem;
  }
}

.single {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .single {
    margin-top: 5rem;
  }
}

.staff-member {
  margin-top: 93px;
  margin-top: 5.8125rem;
}
@media screen and (min-width: 768px) {
  .staff-member {
    margin-top: 10rem;
  }
}

.staff-profile {
  letter-spacing: 0.08em;
  margin-top: 83px;
  margin-top: 5.1875rem;
}
@media screen and (min-width: 768px) {
  .staff-profile {
    margin-top: 5.1875rem;
  }
}

.top-blog-page {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-blog-page {
    margin-top: 0;
  }
}

.top-concept-page {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .top-concept-page {
    margin-top: 4rem;
  }
}

.top-content-page {
  margin-top: 58px;
  margin-top: 3.625rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 57px;
  padding-bottom: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .top-content-page {
    margin-top: 0;
    padding-top: 8.5rem;
    padding-bottom: 10rem;
  }
}

.top-footer {
  margin-top: 132px;
  margin-top: 8.25rem;
}
@media screen and (min-width: 768px) {
  .top-footer {
    margin-top: 12rem;
  }
}

.top-mv-page {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .top-mv-page {
    margin-top: 2.5rem;
  }
}

.top-mv-news {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.top-recommend-page {
  margin-top: 94px;
  margin-top: 5.875rem;
}
@media screen and (min-width: 768px) {
  .top-recommend-page {
    margin-top: 4.6875rem;
  }
}
/*# sourceMappingURL=styles.css.map */
