@charset "UTF-8";

/* ==========================================================================
  ベース設定
  =========================================================================== */

:root {
  --Text: #333333;
  --Text_grey: #696969;
  --Text_blue: #13465c;
  --Text_red: #df5454;
  --Main: #4ea5b0;
  --Sub: #ff9600;
  --Accent: #00b271;
  --Light_blue: #ecfcff;
  --Back: #f5f5f5;
  --gray: #ccc;
  --Point: #f9f06f;
  --mincho-font: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --gothic-font: "Noto Sans JP", Noto Sans JP, sans-serif;
}

/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src:
    url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src:
    url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src:
    url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src:
    url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  src:
    url("../fonts/Oswald-Light.woff2") format("woff2"),
    url("../fonts/Oswald-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src:
    url("../fonts/Oswald-Regular.woff2") format("woff2"),
    url("../fonts/Oswald-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  src:
    url("../fonts/Oswald-Bold.woff2") format("woff2"),
    url("../fonts/Oswald-Bold.woff") format("woff");
  font-display: swap;
}

html {
  font-size: 10px;
  font-family:
    "Noto Sans JP",
    Noto Sans JP,
    sans-serif;
  color: var(--Text);
  /* scroll-behavior: smooth; */
}

html.html {
  margin-top: 0 !important;
}

#wpadminbar {
  z-index: 10000000 !important;
}

body {
  font-size: 1.6rem;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 1320px;
  counter-reset: number 0;
}

.body {
  text-align: justify;
}

.forPC {
  display: block;
}

.forPC-inline {
  display: inline-block;
}

.forSP {
  display: none;
}

.forSP-inline {
  display: none;
}

/* ==========================================================================
  共通パーツ
  =========================================================================== */

/* ==========================================================================
  HEADER
  =========================================================================== */

.header {
  background-color: #fff;
  height: 100px;
  padding: 32px 25px 32px 96px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1EB6C5;
}

.home .header {
  background-color: transparent;
  width: 100%;
  z-index: 1000;
}

.header__logo {
  display: inline-block;
}

.header__logo > img,
.header__logo a {
  width: 148px;
  height: 36px;
  display: inline-block;
  transition: all 0.2s;
}

.header__logo a:hover {
  opacity: 0.6;
  cursor: pointer;
}

.spMenu,
.spMenu.active,
.header__menuBtn {
  display: none;
}

.header__menu {
  width: calc(100% - 200px);
  text-align: right;
  float: right;
}

.header__menu-item {
  display: inline-block;
  margin-right: 24px;
  margin-top: 5px;
}

.header__menu-item a {
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.2s;
}

.header__menu-item a:hover {
  opacity: 0.6;
  cursor: pointer;
  color: var(--Main);
}

/* ==========================================================================
  FOOTER
  =========================================================================== */

.info.info__top {
  display: none;
}

.map {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.map iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info {
  margin: 56px auto 0;
  background-color: #4EA5B0;
  padding: 53px 24px;
}

.info__inner {
  width: 1020px;
  margin: 0 auto;
  max-width: 100%;
}

.info__clinic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 370pxのカラム、140pxのギャップ、520pxのカラム */
  grid-template-areas: "infoLeft . infoRight";
  /* エリア名を指定 */
  column-gap: 24px;
  /* 行間のギャップを0に設定 */
  align-items: flex-start;
  margin-top: 16px;
}

.info__clinic + .info__clinic {
  margin-top: 24px;
}

.info__left {
  grid-area: infoLeft;
  /* .info__leftをinfoLeftエリアに配置 */
  margin-top: -10px;
}


.info__left-logo {
  width: 219px;
  height: 53px;
  display: inline-block;
}

.info__left-addr {
  margin-top: 6px;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
}

.info__left-addr-jump {
  display: inline-block;
  background: url(../img/ico_window.svg) no-repeat center / 34px;
  width: 34px;
  height: 34px;
  position: absolute;
  bottom: -4px;
  cursor: pointer;
}

.info__left-addr .txt {
  line-height: 1.6;
  font-size: 1.6rem;
  margin-top: 8px;
  text-decoration: none;
  color: var(--Text);
}

.info__left-name {
  font-size: 1.8rem;
  margin-top: 16px;
}

/* .info__left-addr a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/ico_window.svg);
  width: 34px;
  height: 34px;
  position: relative;
  top: 9px;
  left: -7px;
} */

.info__left-access {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.7;
}

.info__left-tel {
  font-size: 2.2rem;
  /* font-weight: bold; */
  color: var(--Text_grey);
}

.info__left-tel::before {
  content: "";
  display: inline-block;
  position: relative;
  background-image: url(../img/ico_phone.svg);
  width: 31px;
  height: 31px;
  top: 7px;
  margin-right: 6px;
  margin-left: -4px;
}

.info__left-tel a {
  color: var(--Text_grey);
  text-decoration: none;
  font-weight: bold;
}

.info__right {
  
}

.schedule {
  margin: 28px auto 0;
  border-collapse: collapse;
}

.schedule tr td,
.schedule tr th {
  text-align: center;
  border: none;
  height: 64px;
  padding: 16px;
  font-size: 1.6rem;

  box-sizing: border-box;
  vertical-align: middle;
  /* border-bottom: 1px solid #696969; */
}

.schedule tr:nth-child(1) td,
.schedule tr:nth-child(1) th {
  height: 52px;
}

.schedule tr {
  border-bottom: 1px solid #696969;
}

.schedule tr td {
  width: 10%;
}

.schedule tr:nth-of-type(1) td:nth-of-type(1) {
  text-align: right;
  width: 26%;
}

.schedule tr td:nth-of-type(1) {
  font-family: var(--gothic-font);
  text-align: left;
  padding-right: 32px;
}

.schedule tr:nth-of-type(1) td {
  font-size: 1.6rem;

  font-weight: 500;
}

.schedule td span.active {
  display: inline-block;
  width: 19px;
  aspect-ratio: 1 / 1;
  border: 0.7px solid var(--Text);
  border-radius: 50%;
  background: var(--Light_blue);
}

.schedule__note {
  font-size: 1.6rem;
  margin-top: 8px;
  line-height: 1.7;
  color: #696969;
  width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  margin-top: 18px;
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.footer__under {
  background-color: #346F77;
    padding: 42px 24px;
  margin: 0 auto 0;
}

.footer__under-link {
  display: flex;
  justify-content: flex-end;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  gap: 8px;
  color: #fff;
  margin-top: 16px;
}

.footer__under-link a {
  font-size: 16px;
  color: #fff;
}

.footer__under-link a:hover {
  text-decoration: none;
}

.info__left-sns {
  display: flex;
  gap: 24px;
}

.info__left-sns li {
  display: inline-block;
  width: 48px;
}

.info__left-sns li img {
  width: 100%;
  vertical-align: bottom;
}

.info__left-sns li a:hover {
  cursor: pointer;
  opacity: 0.6;
}

.info__right .info__list-item {
  margin-bottom: 15px;
}

.cm__btn {
  background-color: var(--Main);
  border-radius: 8px;
  height: 62px;
  width: 340px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4.8rem;
}
.cm__btn a {
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  text-decoration: none !important;
  position: relative;
  transition: ease all 0.2s;
  letter-spacing: 0.2em;
}
.cm__btn a::after {
  content: "";
  display: block;
  background-image: url(../img/ico-circlearrow-wh-r.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.cm__btn a:hover {
  opacity: 0.7;
}
.cm__ctabnr img {
  max-width: 100%;
}
.cm__box-bgw {
  background-color: #fff;
  text-align: center;
  border: 2px solid var(--Main);
  padding: 2rem 1rem;
}
.cm__box-bgw {
}
/* ==========================================================================
  トップページ
  =========================================================================== */
.topMv {
  height: 680px;
  /* overflow: hidden; */
  background-color: #dbebf5;
  position: relative;
}

.topMv__inner {
  height: 665px;
  position: relative;
  background-image: url("../img/topMv.png");
  background-size: cover;
}

.topMv__copy {
  position: absolute;
  top: 50%;
  margin-top: -53.5px;
  left: 6%;
}

.topMv__copy-txt {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 16px;
  text-shadow: 0px 0px 4px #fff;
}

.topContents {
  margin: 0px auto;
}

.topContents__inner {
  width: 1020px;
  position: relative;
  margin: 0 auto;
}

.topContents section {
  padding: 100px 0;
}

.topContents section:last-child {
}

.topContents__h2 {
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  padding-top: 32px;
  margin: 0 0 24px;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 0;
}

.topContents__h2::before {
  content: attr(data-en);
  color: var(--Main);
  font-size: 2rem;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  top: 0;
  font-weight: 400;
  font-family: oswald;
}

.topCase .topContents__h2::before,
.topClinicFeature .topContents__h2::before,
.topFeature .topContents__h2::before,
.topPrice .topContents__h2::before,
.topAbout .topContents__h2::before,
.topReason .topContents__h2::before {
  content: attr(data-en);
  color: var(--Main);
  font-size: 2rem;
  position: static;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  top: 0;
  font-weight: 400;
  font-family: oswald;
}

.topContents section.topAbout {
  padding-top: 93px;
  background-color: #f0f4f8;
}
.topAbout .topContents__inner {
  position: relative;
}

.topAbout__copy {
  color: var(--Main);
  width: 338px;
  line-height: 1.5;
  font-size: 3.2rem;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.topAbout_txt {
  width: 520px;
  margin: 16px 0 0;
  line-height: 2;
  position: relative;
  z-index: 100;
}

.topAbout_txt p + p {
  margin-top: 15px;
}

.topAbout__wrap {
  display: flex;
  gap: 30px;
}
.topAbout_img {
  z-index: 10;
}

.topReason {
  background-color: #f0f4f8;
  padding-top: 100px;
}
.topReason__title .blue {
  color: var(--Main);
}
.topReason__list {
  max-width: 790px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 5.8rem;
}
.topReason__item + .topReason__item {
  margin-top: 3rem;
}
.topReason__item {
  display: flex;
  align-items: center;
  background-color: #fff;
  gap: 4.8rem;
  padding: 2.8rem 3.2rem 3.8rem;
}
.topReason__title {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--Main);
  margin-bottom: 2.2rem;
}
.topReason__title span {
  font-weight: bold;
}
.topReason__txt {
  letter-spacing: 0.14em;
}
.topReason__txt strong {
  background: linear-gradient(transparent 40%, #f9f06f 60%);
}
.topReason__title .num {
  font-family: oswald;
  font-size: 3rem;
  font-weight: 400;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.topReason__icon img {
  width: 110px;
}
.topReason__note {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}
.topClinicFeature h2 {
}

.topClinicFeature__list {
  display: grid;
  gap: 18px;
  margin-top: 76px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.topClinicFeature__item {
  display: inline-block;
  background-color: #f0f4f8;
  padding: 20px 20px 25px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}

.topClinicFeature__item small {
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 4px;
}

.topClinicFeature__item-txt {
  margin: 16px auto;
}
.topClinicFeature__item .num {
  font-family: Oswald;
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--Main);
}
.topClinicFeature__item img {
  display: block;
  margin: 10px auto 0;
  width: auto;
}

@media screen and (max-width: 768px) {
}

.topPrice__table {
  width: 720px;
  margin: 32px auto 0;
  table-layout: fixed;
  border-collapse: collapse;
}

.price__note {
  width: 720px;
  margin: 10px auto 0;
}

.topPrice__table th,
.topPrice__table td {
  border: 1px solid #333;
  font-size: 2rem;
  text-align: center;
}

.topPrice__table th {
  background-color: var(--Light_blue);
  font-weight: bold;
  line-height: 1;
  padding: 17px 0;
}

.topPrice__table th:first-child {
  width: 26%;
}

.topPrice__table td {
  padding: 35px 20px;
  box-sizing: border-box;
  background-color: #fff;
  vertical-align: middle;
}

.topPrice__table td:last-child {
  font-size: 2.4rem;
}

.topPrice__table td:last-child small {
  font-size: 1.2rem;
  margin-left: 2px;
}

.topPrice__table td span {
  font-size: 2.8rem;
  margin-right: 2px;
}

.topPrice__table .green {
  color: var(--Main);
}

.topPrice__table .red {
  color: var(--Text_red);
}
.topFlow {
  background-color: #f0f4f8;
}
.topFlow__inner {
  position: relative;
}
.topFlow .topContents__inner {
  position: relative;
}
.topFlow {
  overflow: hidden;
}
.topFlow__btn {
  position: absolute;
  right: 0;
  top: 40px;
  width: 140px;
  text-align: right;
}

.topFlow__btn li {
  width: 40px;
  height: 40px;
  border-radius: 300px;
  line-height: 40px;
  text-align: center;
  color: #999;
  border: 1px solid #999;
  margin: 0 8px;
  display: inline-block;
  transition: all 0.2s;
}

.topFlow__btn li:hover {
  cursor: pointer;
  opacity: 0.6;
}

.topFlow__box {
}

.topFlow__box::-webkit-scrollbar {
  display: none;
}

.topFlow__boxList {
  margin: 7.2rem auto 0 15%;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.topFlow__boxList-item {
  display: inline-block;
  position: relative;
  background-color: #fff;
  /* max-width: 322px; */
  margin-right: 16px;
}

.topFlow__box ul li:nth-child(4)::after {
  display: none;
}

.topFlow__boxList-item img {
  /* width: 322px; */
  height: 220px;
  object-fit: cover;
}

.topFlow__boxList-itemCopy {
  font-size: 2rem;
  text-align: left;
  color: var(--Main);
  padding: 24px 0;
  font-weight: bold;
  line-height: 1;
  padding-left: 3.2rem;
  display: flex;
  justify-content: start;
  align-items: center;
}

.topFlow__boxList-itemTxt {
  line-height: 1.75;
  padding: 0 2.8rem 2.4rem;
  letter-spacing: 0.03em;
}
.topFlow__boxList-item .num {
  font-family: Oswald;
  font-weight: 400;
  font-size: 3.5rem;
  margin-right: 12px;
  position: relative;
}
.topFlow__boxList-item .num::after {
  content: "";
  display: block;
  width: 1px;
  height: 35px;
  position: absolute;
  left: 37px;
  top: 2px;
  background-color: var(--Main);
}
.topFlow__btn-prev,
.topFlow__btn-next {
  width: 40px;
  height: 40px;
  background-image: url("../img/ico-arrow-circle-bl-r.svg");
  display: inline-block;
  cursor: pointer;
  background-size: cover;
  margin: 0 10px;
  position: absolute;
  top: 60%;
}
.slick-track {
  display: flex!important;
}
.slick-slide {
  height: auto!important;
}
.topFlow__btn-prev {
  transform: scale(-1, 1);
  left: 13%;
}
.topFlow__btn-next {
  right: 13%;
}
.topFlow__dots {
  margin-top: 10px;
  position: relative;
  text-align: center;
  margin-top: 15px;
}
.topCase__inner {
  position: relative;
}
.topCase__h2 .sm {
  font-size: 2.2rem;
}
.topCase__list {
}

.topCase__item {
  padding: 0 15px;
}
.topCase__item img {
  /* width: 710px; */
}
.topContents__inner {
  position: relative;
}
.topCase__control {
  text-align: center;
  margin-top: 10px;
}

.topCase__prev {
  left: 22%;
}

.topCase__next {
  right: 22%;
}
.topCase__prev {
  transform: scale(-1, 1);
}
.topCase__prev,
.topCase__next {
  width: 48px;
  height: 48px;
  background-image: url("../img/ico-arrow-circle-bl-r.svg");
  display: inline-block;
  cursor: pointer;
  background-size: cover;
  margin: 0 10px;
  position: absolute;
  top: 60%;
}

.topCase__paging {
  margin-top: 10px;
  position: relative;
  text-align: center;
  margin-top: 15px;
}

.topCase__paging .slick-dots {
  bottom: 0;
  top: 0;
}

.slick-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  list-style: none;
  margin: 0 5px;
}

.slick-dots li button {
  border: none;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  outline: none;
}

.slick-dots li button:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #cdcdcd;
  color: #cdcdcd !important;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  width: 14px !important;
  height: 14px !important;
  line-height: 14px !important;
}

.slick-dots li.slick-active button:before {
  background-color: var(--Main);
  color: var(--Main) !important;
}
.topContents__h3 {
  font-size: 140%;
  font-weight: normal;
  margin: 60px auto 30px;
}

.topLaser__txt {
  margin: 60px auto 0;
}

.topLaser__txt p + p {
  margin-top: 15px;
}

.topLaser__img {
  max-width: 760px;
  margin: 30px auto;
}
.topKuchikomi {
  background-color: #f0f4f8;
}
.topKuchikomi__ttl .sm {
  font-size: 2.2rem;
}
.topKuchikomi__list {
  margin: 32px auto 0;
  box-sizing: border-box;
}

.topKuchikomi__item {
  padding: 4rem;
  position: relative;
  display: flex;
  min-height: 172px;
  background-color: #fff;
  box-shadow: 1px 1px 8px #ccc;
  align-items: center;
}
.topKuchikomi__item + .topKuchikomi__item {
  margin-top: 30px;
}

.topKuchikomi__item-ico {
  width: auto;
}

.topKuchikomi__item-ttl {
  font-size: 20px;
  color: var(--Main);
  font-weight: bold;
}

.topKuchikomi__item-txt {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-left: 32px;
  letter-spacing: 0.1em;
}
.topKuchikomi__item-txt strong {
  background: linear-gradient(transparent 40%, var(--Point) 60%);
}
.topKuchikomi__item + .topKuchikomi__item {
  border-top: 1px solid #d3d3d3;
}
.topKuchikomi__img {
  min-width: 200px;
  border-right: 1px solid var(--Main);
}
.topKuchikomi__img .num {
  font-family: oswald;
  color: var(--Main);
  font-size: 4rem;
  font-weight: 400;
}
.topKuchikomi__item-ttl {
  text-align: center;
  margin-top: 24px;
}
.topKuchikomi__item-ico {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: -22px;
}

.point {
  margin-top: 6.2rem;
}
.point__wrap {
  display: flex;
  justify-content: center;
}
.point__wrap img {
  width: 365px;
}
.point .caution {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 18px;
  line-height: 1.7;
}
.point__ttl {
  color: var(--Main);
  font-weight: 400;
  font-size: 3rem;
  border-radius: 100px;
  border: 1px solid var(--Main);
  width: 165px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  font-family: oswald;
}
.point__catch {
  font-weight: bold;
  font-size: 4rem;
  margin-top: 1rem;
}
.point__num {
  color: var(--Text_red);
  font-weight: bold;
  font-size: 8rem;
  line-height: 1;
  padding-left: 13px;
}
.point__num .md {
  font-size: 5rem;
}
.point__num .sm {
  font-size: 3rem;
  position: relative;
  top: -15px;
}
.point__content {
  text-align: center;
}

.topFeature {
}
.topFeature__ttl .sm {
  font-size: 2.2rem;
}
.topFeature__inner {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.topFeature__box {
  margin: 40px auto 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
}
.topFeature__list {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin-top: 6rem;
}
.topFeature__item {
  background-color: #f0f4f8;
  border-radius: 100px;
  width: 187px;
  height: 187px;
  text-align: center;
}
.topFeature__num {
  color: var(--Main);
  font-family: oswald;
  font-size: 4.2rem;
  font-weight: 400;
  margin-top: 30px;
  display: block;
}
.topFeature__text {
  font-size: 2rem;
  font-weight: bold;
}
.topFeature__box-item {
  display: inline-block;
  margin-top: 8px;
}

.topFeature__box-item img {
  width: 325px;
  height: 229px;
  object-fit: cover;
}

.topFeature__box-itemCopy {
  font-size: 2rem;
  text-align: center;
  color: var(--Main);
  padding: 24px 0;
  font-weight: bold;
}

.topFeature__box-itemTxt {
  line-height: 1.75;
}
.topFeature__desc {
  margin-top: 4.8rem;
  letter-spacing: 0.11em;
  line-height: 1.6;
}
.topFeature__desc strong {
  background: linear-gradient(transparent 40%, #f9f06f 60%);
}
.topFeature__btn {
  line-height: 0.6;
}
.topFeature__btn .sm {
  font-size: 1.4rem;
  line-height: 1.1;
}

.topNews {
  background-color: #f7f7f7;
  padding-bottom: 100px;
}
.topNews .topContents__h2::after {
  display: none;
}

.topNews__area {
}

.topNews__item a {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 44px;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  position: relative;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
.topNews__item a::after {
  content: "";
  background-image: url(../img/ico-arrow-circle-bl-r.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%r);
}

.topNews__item a:hover {
  opacity: 0.6;
  cursor: pointer;
}

.topNews__item a time {
  line-height: 1.5;
  color: #20a3af;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: oswald;
}

.topNews__item-txt {
  display: block;
  line-height: 1.5;
  margin-top: 1rem;
}

.topContents section.topHospital {
  padding-top: 16px;
  padding-bottom: 0;
}

.topHospital__img {
  overflow: hidden;
}

.topHospital__imgList {
  display: grid;
  gap: 8px;
  grid-template-columns: 424px 424px 424px 424px;
  justify-items: center;
  align-items: center;
  width: fit-content;
  margin: 16px auto 0;
}

.topHospital__imgList-item {
  width: 424px;
  height: 300px;
  overflow: hidden;
  display: inline-block;
  border-radius: 4px;
}

.topHospital__imgList-item img {
  height: auto;
  width: 100%;
  vertical-align: bottom;
}

.topContents__inner .qaBox__area {
  text-align: right;
  padding-top: 32px;
}
/* Q&A */
.pageQuestion {
  padding: 10rem 2rem 7.7rem;
}
.qaBox {
  text-align: left;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 1px 1px 3px #ccc;
  padding: 10px 13px;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
}
.qaBox + .qaBox {
  margin-top: 2rem;
}

.qaBox:hover {
  cursor: pointer;
}

.qaBox::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/ico-plus-bl.svg);
  background-size: 20px;
  display: inline-block;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
}

.qaBox.active::after {
  background-image: url(../img/ico-minus-bl.svg);
  top: 32px;
}

.qaBox__q {
  font-size: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
}
.qaBox__q p {
  margin-top: 0 !important;
  color: #20A3AF;
}
.qaBox__q::before {
  content: "Q";
  width: 21px;
  height: 37px;
  display: inline-block;
  color: #20A3AF;
  font-weight: 400;
  font-family: oswald;
  font-size: 19px;
  margin-right: 9px;
  line-height: 37px;
  text-align: center;
}

.qaBox__a {
  margin-top: 16px;
  font-size: 1.8rem;
  line-height: 1.5;
  display: none;
  height: 1px;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  padding-right: 2.4rem;
}

.active .qaBox__a {
  display: flex;
  height: auto;
  overflow: visible;
  padding-top: 1.8rem;
  padding-bottom: 13px;
  border-top: 1px solid #20A3AF;

}

.qaBox__a::before {
  content: "A";
  min-width: 21px;
  height: 37px;
  font-family: oswald;
  color: #20A3AF;
  font-size: 19px;
  font-weight: 400;
  display: inline-block;
  margin-right: 9px;
  text-align: center;
}

.topContents__inner .qaBox {
  float: right;
}

.topQuestion .topContents__h2 {
  position: absolute;
}

.topQuestion .topContents__h2::after {
  display: none;
}

.topQuestion .qaBox__area::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.topQuestion::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.fixedLink {
  position: fixed;
  right: 0;
  top: 34%;
  width: 57px;
  z-index: 900;
}

.fixedLink__item {
  display: inline-block;
}

.fixedLink__item a {
  margin-top: 10px;
  width: 57px;
  padding: 24px 17px 24px 20px;
  font-size: 1.8rem;
  display: inline-block;
  border-radius: 4px 0px 0 4px;
  color: #fff;
  background-color: var(--Main);
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid var(--Main);
  border-right: none;
  transition: all 0.2s;
}

.fixedLink__item__en a {
  writing-mode: vertical-rl;
}

.fixedLink__item a::before {
  content: "";
  background-image: url(../img/reservation_ico.svg);
  width: 20px;
  height: 20px;
  background-size: 20px;
  display: inline-block;
  margin-bottom: 4px;
  position: relative;
}

.fixedLink__item:nth-of-type(2) a {
  background-color: var(--Light_blue);
  color: var(--Main);
}

.fixedLink__item:nth-of-type(2) a:before {
  background-image: url(../img/contact_ico.svg);
}

.fixedLink__item a:hover {
  cursor: pointer;
  opacity: 0.6;
}

.moreLink {
  margin: 32px auto 0;
  padding-bottom: 8px;
  text-align: right;
}

.moreLink a {
  display: inline-block;
  padding: 0 30px;
  text-decoration: none;

  font-size: 1.8rem;
  color: #333 !important;
  position: relative;
  transition: all 0.2s;
  text-decoration: none !important;
}

.moreLink a::after {
  content: "";
  width: 64px;
  height: 12px;
  background-image: url(../img/morelink_ico.svg);
  position: absolute;
  right: 2px;
  bottom: -8px;
  background-size: 64px 12px;
}

.moreLink a:hover {
  cursor: pointer;
  opacity: 0.6;
}

/* ==========================================================================
  下層ページ共通
  =========================================================================== */
.cm__h3 {
  color: var(--Main);
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid var(--Main);
  margin-top: 5.4rem;
}
.cm__h3 + * {
  margin-top: 2.4rem;
}
.bg__gray {
  background-color: #f0f4f8;
}
.gray {
  color: #969696;
}
.full_img {
  width: 100%;
}
.full_img img {
  width: inherit;
  max-width: 100%;
}
.pageinner__sm {
  max-width: 750px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.pageinner__md {
  max-width: 760px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.pageinner__lg {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.pageContents,
.singleContents {
  font-size: 1.6rem;
  line-height: 2;
}

.singleContents {
  text-align: left;
}

.pageContents__ttl,
.singleContents__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--Main);
  height: 295px;
  padding: 0 60px;
  text-align: center;
  color: #fff;
}
.singleContents__ttl-p {
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
}
.pageContents__ttl-h1,
.singleContents__ttl-p {
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* .pageContents__ttl-h1:not(:has(> span)) {
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
} */

.pageContents__ttl-h1:has(> br) {
  background: none;
}
.pageContents__ttl-h1:has(> br:not([class])) span {
  padding: 6px 12px;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
}
.pageContents__ttl-h1:has(> br:not([class])) span:first-of-type {
  position: relative;
  top: -5px;
  font-size: 3.8rem;
}
.pageContents__ttl-h1,.pageContents__ttl-h1:has(> br.forSP) {
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
}

p.pageContents__ttl-en,
.singleContents__ttl-en {
  font-size: 3.5rem;
  color: var(--Main);
  font-family: oswald;
  line-height: 1;
  margin-top: 0 !important;
}

.pageContents__container,
.singleContents__container {
  /* width: 760px; */
  margin: 0 auto;
  /* padding-top: 80px; */
}

.pageContents__container > *:first-child {
  margin-top: 0;
}

.pageContents__container h2 {
  text-align: center;
  font-size: 4rem;
  line-height: 1.4;
  margin-top: 20px;
}

.pageArchive h2 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 20px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.pageContents__en {
  color: var(--Main);
  line-height: 1;
  font-size: 2rem;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: oswald;
  padding-top: 100px;
  letter-spacing: 0.07em;
}

.pageContents__container h2 + * {
  /* margin-top: 40px; */
}

.columnPage__contents .cm__btn {
  /* max-width: 284px; */
}
.pageContents__ttl,
.singleContents__ttl {
  background-image: url(../img/contents-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.cm__list li,.n_check li {
  position: relative;
  padding-left: 18px;
}
.cm__list li::before,.n_check li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 100px;
  background-color: var(--Main);
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 0;
}
.cm__cta {
  background: linear-gradient(to bottom, #4ea5b0, #14b9ce);
  padding: 6rem 2.5rem;
}
.cm__cta a.clinic__info-btn {
  background: var(--Point);
  border-radius: 8px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--Main);
  line-height: 57px;
  min-width: 280px;
  max-width: 340px;
  display: block;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
}

a.clinic__info-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/ico-circlearrow-wh-r.svg);
  display: inline-block;
  margin-right: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

a.clinic__info-btn:hover {
  opacity: 0.6;
}

.cm__cardlist__list {
  margin-top: 8rem;
}
.cm__cardlist__item {
  display: flex;
  padding: 4.2rem 5rem;
  box-shadow: 0 0 5.24px rgba(0, 0, 0, 0.1);
}
.cm__cardlist__item + .cm__cardlist__item {
  margin-top: 30px;
}
.cm__cardlist__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 325px;
  max-width: 100%;
}
.cm__cardlist__heading {
  border-right: 1px solid var(--Main);
}
.cm__cardlist__heading h3 {
  border-bottom: none;
  padding-right: 4.5rem;
  width: 100%;
  margin-top: 0 !important;
  font-size: 2.4rem;
  letter-spacing: 0;
  padding-bottom: 0;
  line-height: 1.4;
}

.cm__cardlist__number {
  font-family: oswald;
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--Main);
  line-height: 1;
}
.cm__cardlist__content {
  padding-left: 4.5rem;
}
.cm__cardlist__content a {
  position: relative;
  text-decoration: underline;
  color: var(--Main);
  display: flex;
  align-items: center;
  margin-top: 3px;
  gap: 5px;
}

.cm__cardlist__content a::before {
  content: "";
  display: block;
  background-image: url(../img/ico-arrow-circle-bl-r.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ==========================================================================
  投稿ページ
  =========================================================================== */
.singlePage {
  padding: 10rem 2rem;
}
.singleContents__article {
  background-color: #F0F4F8;
}
.columnPage__container {
  padding: 10rem 0;
}
.singlePage__ttl {
  padding-bottom: 2.8rem;
}
.singlePage__ttl-date {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 1.8rem;
  width: 100%;
  font-size: 15px;
  border-bottom: 1px solid var(--Main);
  display: inline-block;
  padding-bottom: 13px;
}

.singlePage__ttl-h1 {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: bold;
  line-height: 1.4;
}
.singlePage__contents {
  margin-top: 40px;
}
.singleContents h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--Main);
  border-bottom: 1px solid var(--Main);
  margin-top: 6.2rem;
}
.singleContents h3 {
  border-bottom: 1px solid #333;
  margin-top: 50px;
}
.singleContents p {
  margin-top: 32px;
}
.singleContents .n_check li::before {
  top: 13px;
  transform: initial;
}

/* ==========================================================================
  よくある質問
  =========================================================================== */

/* ==========================================================================
  お問い合わせ
  =========================================================================== */
/* 進捗 */
.contactPage__progress-list {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.contactPage__progress-item {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  position: relative;
}

.contactPage__progress-item:nth-child(n + 2)::before {
  content: "";
  display: inline-block;
  background: var(--Text);
  width: 118px;
  height: 1px;
  position: absolute;
  left: -99px;
  bottom: 8px;
}

.contactPage__progress-dot {
  background: #f5f3ed;
  border: 1px solid var(--Text);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: relative;
}

.contactPage__progress-dot[data-dot="on"]::after {
  content: "";
  display: inline-block;
  background: var(--Main);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.contactPage__progress-txt {
  line-height: 1;
  text-align: center;
  margin-top: 40px;
}

.contactPage__contents {
  margin-top: 64px;
}

/* 送信フォーム */
.formSubmit__item-heading {
  font-size: 1.8rem;
  line-height: 1;
}

.formSubmit__item-heading::after {
  content: "*";
  color: #ff0000;
  margin-left: 2px;
}

.formSubmit__item:nth-child(n + 2) {
  margin-top: 24px;
}

.formSubmit__item input {
  font-size: 1.6rem;
  box-sizing: border-box;
  border: 1px solid var(--Main);
  border-radius: 3px;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  margin-top: 8px;
}

.formSubmit__item textarea {
  font-size: 1.6rem;
  font-family: var(--gothic-font);
  line-height: 1.5;
  box-sizing: border-box;
  border: 1px solid var(--Main);
  border-radius: 3px;
  width: 100%;
  height: 248px;
  padding: 16px;
  margin-top: 8px;
}

.formSubmit__item input::placeholder,
.formSubmit__item textarea::placeholder {
  font-size: 1.6rem;
  color: #cacaca;
}

/* フォームボタン */
.form__btn {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.form__btn-submit {
  position: relative;
  border-radius: 4px;
  background: var(--Main);
  border-radius: 4px;
  transition: all 0.2s;
}

.form__btn-submit:hover {
  opacity: 0.6;
}

.form__btn-submit input[type="submit"] {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  width: 246px;
  height: 56px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1;
}

.form__btn-submit input[type="submit"]:hover {
  opacity: 0.6;
}

.form__btn-submit::after {
  content: "";
  display: inline-block;
  background: url(../img/cm_arrow_right_wh.svg) no-repeat center / 9px 16px;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

/* 内容確認 */
.contactPage__contents--confirm .formSubmit__item {
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 64px;
  border-bottom: 1px solid #dcdcdc;
  margin: 0;
  padding: 40px 14px;
}

.contactPage__contents--confirm .formSubmit__item-heading {
  width: 9em;
  flex-shrink: 0;
}

.form__btn-back {
  position: relative;
}

.form__btn-back button {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: var(--Main);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Light_blue);
  border: 2px solid var(--Main);
  border-radius: 4px;
  width: 246px;
  height: 56px;
  cursor: pointer;
  transition: all 0.2s;
}

.form__btn-back button:hover {
  opacity: 0.6;
}

.form__btn-back:has(button)::after {
  content: "";
  display: inline-block;
  background: url(../img/cm_arrow_left_bl.svg) no-repeat center / 9px 16px;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

/* 送信完了 */
.formSuccess__message {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: var(--Main);
}

.formSuccess__txt {
  text-align: center;
  margin-top: 32px;
}

/* エラー */
.mw_wp_form_send_error {
  text-align: center;
}

/* ==========================================================================
  404
  =========================================================================== */
.errorMessage {
  text-align: center;
}

.errorMessage div {
  font-size: 3.2rem;
  color: var(--Main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.errorMessage__num {
  display: flex;
  align-items: center;
  gap: 20px;
}

.errorMessage__num::after {
  content: "";
  display: inline-block;
  background: var(--Main);
  width: 1px;
  height: 40px;
}

.errorMessage__ttl {
  font-size: 2rem;
  margin-top: 8px;
}

.errorMessage__txt {
  font-size: 1.4rem;
  margin-top: 16px;
}

.backToTop {
  width: 200px;
  margin: 48px auto 0;
  display: block;
  line-height: 1;
  padding: 16px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--Main);
  color: #fff;
  border: 2px solid var(--Main);
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.backToTop::after {
  content: "";
  display: inline-block;
  background: url(../img/cm_arrow_right_wh.svg) no-repeat center / 9px 16px;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.backToTop:hover {
  opacity: 0.6;
}

/* ==========================================================================
アーカイブページ
=========================================================================== */

.pageArchive__ttl-en {
  font-size: 18px;
  line-height: 1;
  color: var(--Main);
  text-align: center;
}

.pageArchive__category-h1 {
  font-size: 32px;

  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 10px;
}

.pageArchive__ttl-p {
  font-size: 24px;

  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.pageArchive__ttl-p::before,
.pageArchive__ttl-p::after {
  content: "";
  display: inline-block;
  background: var(--Text);
  width: 30px;
  height: 1px;
}
.pageArchive__list {
  padding: 10rem 0;
}
.pageArchive__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
  row-gap: 26px;
  margin-top: 50px;
}

.pageArchive__contents-item {
  width: 100%;
  transition: all 0.2s;
}

.pageArchive__contents-item:hover {
  opacity: 0.6;
}

.pageArchive__contents-item a {
  color: var(--Text);
}

.pageArchive__contents-item-img {
  width: 316px;
  height: 195px;
  object-fit: cover;
}

.pageArchive__contents-item-badgeList {
  line-height: 1;
  height: 25px;
  margin-top: 10px;
}

.pageArchive__contents-item-badgeList .badge {
  font-size: 13px;
  line-height: 23px;
  height: 25px;
}

.pageArchive__contents-item-ttl {
  font-size: 18px;
  line-height: 1.61;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 4px;
}

.pageArchive__ranking {
  padding-bottom: 8.6rem;
}

.pageArchive__ranking-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 3.8rem;
}

.pageArchive__ranking-item {
  width: 100%;
  transition: all 0.2s;
  position: relative;
}
.pageArchive__ranking-item img {
  width: 240px;
}
.pageArchive__ranking-item::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 45px auto;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

.pageArchive__ranking-item:nth-child(1):before {
  background-image: url(../img/column_rank_01.png);
}

.pageArchive__ranking-item:nth-child(2):before {
  background-image: url(../img/column_rank_02.png);
}

.pageArchive__ranking-item:nth-child(3):before {
  background-image: url(../img/column_rank_03.png);
}

.pageArchive__ranking-item:nth-child(4):before {
  background-image: url(../img/column_rank_04.png);
}

.pageArchive__ranking-item:nth-child(5):before {
  background-image: url(../img/column_rank_05.png);
}

.pageArchive__ranking-item:hover {
  opacity: 0.6;
}

.pageArchive__ranking-item a {
  color: var(--Text);
}

.pageArchive__ranking-item-ttl {
  height: 96px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 6px;
}

.pageArchive__ranking-item-badgeList {
  margin-top: 6px;
}

h2.pageArchive__h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 50px;
}

/* h2.pageArchive__h2 + * {
  border-bottom: none;
} */

/* ==========================================================================
コラム
=========================================================================== */
/* パンくず */
.breadcrumbs {
  width: 1020px;
  margin: 0 auto;
}

.breadcrumbs,
.breadcrumbs a {
  font-size: 16px;
  line-height: 1.5;
  color: var(--Text_grey);
  transition: all 0.2s;
  text-decoration: none;
  padding: 13px 0;
}
.breadcrumbs a.home span {
  color: var(--Main);
  text-decoration: underline;
}
.breadcrumbs a {
  color: var(--Main) !important;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs_separator {
  display: inline-block;
  background: url(../img/ico-arrow-bl-r.svg) no-repeat center / 14px auto;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  position: relative;
  top: 1px;
}

.pageContents__container .breadcrumbs {
}

.breadcrumb_adj {
  margin-bottom: 40px;
}

/* コラム記事 */
.columnPage__container {
  display: flex;
  justify-content: space-between;
  width: 1020px;
  margin: 0 auto;
  background-color: #F0F4F8;
}

.columnPage__container-left {
  width: 660px;
}

.columnPage__container-right {
  width: 264px;
}

.badge {
  font-size: 13px;
  line-height: 1;
  display: inline-block;
  background-color: #DDEEEF;
  padding: 6px 5px 7px;
  display: -webkit-inline-flex;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-items: center;
  overflow: hidden;
  border-radius: 100px;
}

.badge a {
  color: inherit;
  transition: all 0.2s;
}

.badge a:hover {
  opacity: 0.6;
}

.columnPage__top-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.columnPage__top-info-badge {
  font-size: 13px;
  line-height: 23px;
  height: 25px;
}

.singlePage__ttl-date {
  
}

.columnPage__top-ttl {
  font-size: 32px;

  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 10px;
}

.columnPage__top-thumbnail {
  margin-top: 10px;
}

.columnPage__top-thumbnail img {
  width: 100%;
  height: auto;
}

.columnPage__contents  {
  /*   margin-top: 14px; */
}

.columnPage__contents > *:first-child {
}

.columnPage__contents h2 {
}

.columnPage__contents h2 + p {
  margin-top: 20px;
}

.columnPage__contents h3 + p {
  margin-top: 2rem;
}

.columnPage__contents h4 {
  font-size: 20px;
  line-height: 1.33;
  letter-spacing: 0.08em;
  margin-top: 20px !important;
}

.columnPage__contents h4 + p {
  margin-top: 8px !important;
}

.subhead {
  font-size: 20px;
  font-weight: bold;
  color: var(--Main);
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-left: 32px;
  margin-top: 20px !important;
  position: relative;
  border-bottom: 1px solid var(--Main);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.simplebox .subhead {
  margin-top: 0px !important;

}

.subhead::before {
  content: "";
  display: inline-block;
  background: url(../img/ico-check-circle-bl-r.svg) no-repeat center / 20px auto;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 3px;
  left: 1px;
  background-size: cover;
  background-repeat: no-repeat;
}

.subhead + p {
  margin-top: 8px !important;
}

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

.columnPage__contents p + p {
  margin-top: 0.75em;
}

.columnPage__contents a,
.columnPage__contents a:visited {
  /* color: var(--Text); */
  color: #1a0dab;
  text-decoration: underline;
  transition: all 0.2s;
}

.columnPage__contents a.causeBtnLink__btn:visited {
  color: #fff;
}

.columnPage__contents ul:not([id]) li:nth-child(n + 2) {
  /* margin-top: 10px; */
}

.columnPage__contents ul:not([id]) li::before {
}

.columnPage__contents a:hover {
  opacity: 0.6;
}

.caution {
  font-size: 12px;
  color: var(--Text_grey);
}

.columnPage__contents img {
  margin-top: 20px;
}

.columnPage__contents > #mokuji_area > img + p,
.columnPage__contents > img + p {
  margin-top: 8px;
}

.green {
  font-weight: bold;
  color: var(--Main);
}

.red,.orange {
  font-weight: bold;
  color: #E57941;
}

.table {
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 1px solid #999;
  width: 100%;
  margin-top: 12px;
}

.table + p {
  margin-top: 8px !important;
}

.table thead th {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.33;
  text-align: center;
  background: var(--Main);
  color: #fff;
  border-bottom: 1px solid #999;
  padding: 12px;
}

.table thead th:nth-child(n + 2) {
  border-left: 1px solid #999;
}

.table thead th:first-child {
  border-left: 1px solid #999;
  width: 28%;
}

.table thead th:last-child {
  border-right: 1px solid #999;
}

.table tbody th {
  font-size: 13px;
  line-height: 1.7;
  font-weight: bold;
  color: var(--Main);
  text-align: center;
  border-bottom: 1px solid #999;
  background: #f4f6f8;
  padding: 0 4px;
}

.table td {
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  border-bottom: 1px solid #999;
  padding: 12px;
  vertical-align: top;
}

.table td:nth-child(n + 2),
.table tbody th:nth-child(n + 2) {
  border-left: 1px solid #999;
}

.table td:first-child,
.table tbody th:first-child {
  border-left: 1px solid #999;
}

.table td:last-child,
.table tbody th:last-child {
  border-right: 1px solid #999;
}

.columnPage__contents ol:not([class]) {
  margin: 10px 0;
}

.columnPage__contents ol:not([class]) li {
  padding-left: 24px;
  position: relative;
}

.columnPage__contents ol:not([class]) li:nth-child(n + 2) {
  margin-top: 10px;
}

.columnPage__contents ol:not([class]) li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.columnPage__contents ul:not([id]) {
  /* margin: 10px 0; */
}

.columnPage__contents ul:not([id]) li {
  /* padding-left: 24px; */
  position: relative;
}

.simplebox {
  background-color: #fff;
  box-shadow: 1px 1px 8px rgb(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 26px 30px;
  margin-top: 20px;
}

.simplebox p:first-child {
  margin-top: 0;
}

.simplebox > *:first-child {
  margin-top: 0;
}

.simplebox > *:last-child {
  margin-bottom: 0;
}

.simplebox > ul:only-child,
.simplebox > ol:only-child {
  margin: 0;
}

.simplebox[data-type="bg"] {
  background: #fff;
  box-shadow: none;
}
.simplebox  > .simplebox {
  background-color: #F4F6F8;
}
.txt_img__keep {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
}

.txt_img__keep img {
  max-width: 45%;
}

.txt_img__keep img,
.txt_img_box img {
  margin-top: 0;
}

.txt_img__keep img + p,
.txt_img_box img + p {
  margin-top: 0 !important;
}

.txt__flex p:first-child {
  margin-top: 0;
}

.txt_img_box {
  margin-top: 20px;
}

.left_img {
  float: left;
  margin-right: 10px;
  max-width: 48%;
}

.arrow_down {
  background: url(../img/flow_ico.svg) no-repeat center / 62px auto;
  width: 62px;
  height: 62px;
  margin: 20px auto;
  transform: rotate(90deg);
}

.arrow_down + * {
  margin-top: 0 !important;
}

.single-column > .reservation {
  display: none;
}

.columnPage__container-left .reservation__inner {
  width: 100%;
  padding: 50px 58px 54px;
  margin-bottom: 0;
}

.columnPage__container-left .reservation__h2,
.columnPage__container-left .reservation__h2::before {
  line-height: 1;
}

/* 関連記事 */
.related {
  margin-top: 60px;
}
.related__ttl {
  display: flex;
  align-items: center;
  gap: 18px;
}
p.related__ttl-en {
  font-size: 18px;
  line-height: 1;
  color: var(--Main);
  text-align: center;
  margin-top: 0;
  font-family: oswald;
}

p.related__ttl-p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-top: 0;
}

.related__list {
  margin-top: 30px;
}

.related__list-item {
  color: var(--Text);
  display: flex;
  gap: 14px;
  position: relative;
  transition: all 0.2s;
  border-bottom: 1px solid var(--Main);
padding-bottom: 12px;
}
.related__list-item:last-of-type {
  border-bottom: none;
}

.related__list-item:hover {
  opacity: 0.6;
}

.related__list-item:nth-child(n + 2) {
  margin-top: 16px;
}

.related__list-item-img {
  width: 120px;
  height: 74px;
  flex-shrink: 0;
}

p.related__list-item-ttl {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0;
  padding-top: 12px;
}

.related__list-item-badgeList {
  font-size: 13px;
  position: absolute;
  bottom: 20px;
}

.related__list-item-badgeList .badge {
  font-size: 13px;
}

/* サイドバー */
.columnPage__sidebar-ttl {
  display: flex;
  align-items: center;
  gap: 12px;
}
.columnPage__sidebar-ttl-en {
  font-size: 20px;
  font-family: oswald;
  line-height: 1; 
  color: var(--Main);
  text-align: center;
}

.columnPage__sidebar-ttl-p {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.columnPage__sidebar-ranking-list {
  margin-top: 20px;
}

.columnPage__sidebar-ranking-item {
  position: relative;
  transition: all 0.2s;
}

.columnPage__sidebar-ranking-item a {
  color: var(--Text);
}

.columnPage__sidebar-ranking-item:hover {
  opacity: 0.6;
}

.columnPage__sidebar-ranking-item::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 45px auto;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

.columnPage__sidebar-ranking-item:nth-child(1):before {
  background-image: url(../img/column_rank_01.png);
}

.columnPage__sidebar-ranking-item:nth-child(2):before {
  background-image: url(../img/column_rank_02.png);
}

.columnPage__sidebar-ranking-item:nth-child(3):before {
  background-image: url(../img/column_rank_03.png);
}

.columnPage__sidebar-ranking-item:nth-child(4):before {
  background-image: url(../img/column_rank_04.png);
}

.columnPage__sidebar-ranking-item:nth-child(5):before {
  background-image: url(../img/column_rank_05.png);
}

.columnPage__sidebar-ranking-item-img {
  width: 264px;
  aspect-ratio: 1.618 / 1;
  object-fit: cover;
}

p.columnPage__sidebar-ranking-item-ttl {
  margin-top: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.columnPage__sidebar-ranking-item-badgeList {
  line-height: 1;
  margin-top: 6px;
}

.columnPage__sidebar-ranking-item:nth-child(n + 2) {
  margin-top: 30px;
}

.columnPage__sidebar-hotWord {
  margin-top: 40px;
}

.columnPage__sidebar-hotWord-list {
  display: flex;
  column-gap: 13px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* パーツ置き場用CSS */
.partPage textarea {
  margin-top: 30px !important;
  height: 200px;
}

.num input[type="checkbox"],
.num input[type="radio"] {
  width: 20px;
  height: 20px;
}

.num input[type="checkbox"]:checked::before {
  width: 20px;
}

.quote {
  border-left: 2px solid #817e7e;
  padding-left: 29px;
  margin-left: 0;
  position: relative;
  margin-top: 64px !important;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.quote:before {
  content: "";
  display: block;
  background-image: url("https://sleep-medical.net/wp/wp-content/uploads/ico-quote.png");
  width: 40px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -46px;
  left: 0;
}

.quotefrom {
  position: relative;
  left: 20px;
  text-align: right;
  font-size: 10px;
}

.quote__img img {
  margin-top: 0;
}

.fukidashi__ttl {
  text-align: center;
  color: #fff;
  background-color: var(--Main);
  font-weight: bold;
  padding: 10px;
  line-height: 1.7;
  position: relative;
  margin-top: 24px;
}

.fukidashi__ttl::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid var(--Main);
}

.matomebox {
  border: 2px solid var(--Main);
  padding: 24px;
  margin-top: 24px;
  background-color: #DDEEEF;
}

.matomebox__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--Main);
  position: relative;
}



.surveybox {
  background-color: #f4f6f8;
  margin-top: 24px;
  padding: 24px;
}

.surveybox__ttl {
  margin-bottom: 20px;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
}

.columnPage__contents .surveybox ul {
  font-size: 12px;
  margin: 0;
}

.columnPage__contents .surveybox ul:not([id]) li:nth-child(n + 2) {
  margin-top: 0;
}

.columnPage__contents .surveybox ul:not([id]) li::before {
  top: 8px;
}

.columnPage__contents .surveybox ul li {
  padding-left: 18px;
}

.b {
  font-weight: bold;
}

.introbox {
  margin-top: 24px;
  background-color: #f4f6f8;
  padding: 24px;
  font-size: 13px;
}

.introbox__ttl {
  font-weight: bold;
}

.right__link {
  text-align: right;
  margin-top: 12px;
  margin-left: auto;
  display: table;
}

.right__link a {
  color: #1a0dab;
  text-decoration: underline;
  font-size: 13px;
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

.right__link a::before {
  content: "";
  display: block;
  background-image: url("https://sleep-medical.net/wp/wp-content/uploads/ico-link-arrow.png");
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 6px;
}

.marker__txt {
  border-bottom: dashed 1px var(--Main);
  font-weight: bold;
  color: var(--Main);
}

/* ==========================================================================
  料金ページ
  =========================================================================== */
#mokuji_area > div.pageContents__container.pricePage > div.priceTable.type01 {
  margin-top: -40px;
}
.pagePrice .treatment {
  padding-bottom: 10rem;
}
.pagePrice .treatment .cm__box-bgw {
  max-width: 464px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 35px;
}

.pagePrice .price__icon {
  margin: 18px auto !important;
  padding: 18px 0;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pagePrice .price__icon-item {
  font-size: 18px;
  line-height: 66px;
  padding: 0;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
  gap: 10px;
  font-weight: bold;
}
.pagePrice .price__icon-item .num {
  font-size: 3.5rem;
  font-weight: 400;
  font-family: oswald;
  color: #20a3af;
  margin-right: 10px;
}
.pagePrice .price__icon-item img {
  margin-top: 0;
  width: 64px;
}
.priceTable {
  width: 100%;
}

.priceTable table {
  min-width: 760px;
  margin: 20px auto 10px;
  box-sizing: border-box;
}

.priceTable table {
  border-collapse: collapse;
  /* テーブルのボーダーを重ねる */
}

.priceTable table th,
.priceTable table td {
  text-align: center;
}

.priceTable table td {
  vertical-align: middle;
  min-height: 57px;
}

.priceTable__th-txt {
  display: inline-block;
  padding: 12px 0;
  text-align: center;
  min-width: 120px;
  background-color: #ecfcff;
  border-radius: 4px 4px 0 0;
  line-height: 1;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  font-weight: normal;
  margin: 5px auto;
  max-width: 254px;
  min-width: 164px;
}

.priceTable__th-txt.orange {
  color: #e57941;
  background-color: #fff;
  border-color: #e57941;
  min-width: 190px;
}

.priceTable__th-txt.green {
  background-color: #fff;
  color: #20a3af;
  border-color: #20a3af;
}

.priceTable thead {
  background-color: var(--Main);
  color: #fff;
}

.priceTable thead tr {
  border-top: 2px solid #999;
  border-bottom: 2px solid #999;
}

.priceTable tbody tr td {
  padding: 13px 0;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #999999;
  text-align: center;
}

.trial td {
  background-color: var(--Point) !important;
}

.priceTxt__num {
  font-size: 16px;
}

.greenTxt {
  color: #20a3af;
}

.waribiki {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #e57941;
  color: #fff;
  font-size: 15px;
  text-align: center;
  border-radius: 300px;
  margin: 3px auto;
  line-height: 1.2;
  font-weight: bold;
  padding: 8px 0;
}

.waribiki small {
  display: block;
  font-size: 14px;
}

.note.txtRight {
  font-size: 12px;
  color: #696969;
  text-align: right;
  line-height: 1.5;
}

.priceData {
  margin: 40px auto 0;
}

.priceData__img {
  display: inline-block;
  width: 370px;
  height: auto;
  float: right;
}

.priceData__txt {
  display: inline-block;
  width: calc(100% - 380px);
}

.priceData::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

ul.price__list li {
  padding-left: 0 !important;
}

.price__list li::before {
  content: none !important;
}

.monitor_txt {
  margin: 15px auto 0;
}

.pageContents__container h2.price__h2 + * {
  margin-top: 0;
}
.pagePrice .plan {
  padding-bottom: 10rem;
}
.pagePrice .plan .cm__list {
  color: #696969;
}

.pagePrice .mechanism {
  padding-bottom: 10rem;
}
.pagePrice .mechanism h2 + .full_img {
  margin-top: 4rem;
}
.pagePrice .mechanism p:first-of-type {
  margin-top: 4rem;
}
.orangeTxt {
  color: #c52907;
  font-weight: bold;
}

.linethrough {
  text-decoration: line-through;
}
.pagePrice .types {
  padding-bottom: 10rem;
}
.pagePrice .types h2 + p {
  text-align: center;
  margin: 4.7rem 2.4rem;
}
.pagePrice .types table {
  margin-top: 3.8rem;
  border: none;
  max-width: 920px;
}
.pagePrice .types .table thead th:first-child {
  background-color: #fff;
  border-left: none;
  width: 140px;
}
.c__btn {
  background-color: #e57941;
  width: 100%;
  text-align: center;
  position: relative;
  height: 72px;
  border-radius: 10px;
  margin-top: 24px;
  transition: all ease 0.3s;
}

.c__btn:hover {
  opacity: 0.6;
}

.c__btn a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  line-height: 1.5;
  position: relative;
  transition: all ease 0.3s;
  font-weight: bold;
  font-size: 16px;
  padding: 0 28px 0 20px;
  text-decoration: none !important;
}

.c__btn a::after {
  content: "";
  display: inline-block;
  background: url(../img/cm_arrow_right_wh.svg) no-repeat center / 9px 16px;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.c__btn a:visited {
  color: #fff;
}

.taglist {
  margin-top: 24px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-content: center;
}

.tagitem {
  background-color: #f4f6f8;
  margin-top: 0 !important;
  border-radius: 4px;
  color: #8b9195;
  font-size: 12px;
  letter-spacing: 0.04em;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  height: 30px;
  padding: 0 1rem;
  margin-bottom: 0.5rem;
  margin-right: 0.2rem;
  margin-right: 1px;
  line-height: 30px;
  list-style: none;
  padding-left: 8px !important;
}

.tagitem::before {
  content: none !important;
}

.tagitem.on {
  background-color: var(--Main);
  color: #fff;
}

/*　フッターリンク　*/
.info__left {
  width: 1000px;
  max-width: 100%;
  justify-content: space-between;
  display: flex;
  text-align: center;
  margin-right: 40px;
  margin-right: auto;
  margin-left: auto;
}

.info__clinic-name {
  text-align: center;
  vertical-align: top;
  color: #fff;
  font-size: 1.6rem;
}

.info__right {
  max-width: 874px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  vertical-align: top;
}

.info__right .info__list {
  width: 100%;
  vertical-align: top;
  text-align: left;
  letter-spacing: 0.1em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 44px;
}



.info__right .info__list-item {
  font-size: 16px;
  line-break: 1.2;
  margin-bottom: 25px;
}

.info__right .info__list-item a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: all ease .2s;
}
.info__right .info__list-item a::after {
  content: '';
  display: block;
  background-image: url(../img/ico-circlearrow-wh-r.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
}
.info__right .info__list-item a:hover {
  opacity: 0.6;
}

/*　SPメニューアコーディオン　*/
.accordion__list {
  display: none;
}

.spMenu .acoBtn {
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  gap: 16px;
  line-height: 1;
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 1.6rem;
  line-height: 1;
}

.spMenu .acoBtn:hover {
  cursor: pointer;
  opacity: 0.6;
}

/*
.spMenu .acoBtn::before{
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url("../img/aco_ico01.svg");
  font-weight: normal;
  position: relative;
  top: 2px;
  display: inline-block;
}*/
.spMenu .acoBtn::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url(../img/aco_ico01.svg);
  font-weight: normal;
  position: absolute;
  top: 20px;
  display: inline-block;
  right: 0;
}

.spMenu .acoBtn.active::before {
  background-image: url("../img/aco_ico02.svg");
}

.accordion__list-item {
}

.accordion__list-item a {
  color: #696969;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
  position: relative;
  display: block;
  margin-top: 20px;
}

.accordion__list-item a::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMSIgdmlld0JveD0iMCAwIDcgMTEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDEwTDYgNS41TDEgMSIgc3Ryb2tlPSIjNjk2OTY5Ii8+Cjwvc3ZnPgo=);
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 9px;
  height: 12px;
  position: relative;
  background-repeat: no-repeat;
  top: 1px;
}

.category__bnr {
  margin-top: 24px;
  display: block;
}

.cat_bottom-cont,
.cat_top-cont {
  margin-top: 24px;
}

.category__bnr {
  margin-top: 24px;
  display: block;
}

/*
.taglist {
	  margin-top: 24px;
}
.tagitem {
    background-color: #F4F6F8;
    border-radius: 4px;
    color: #8b9195;
    font-size: 12px;
    letter-spacing: .04em;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    height: 30px;
    padding: 0 1rem;
    margin-bottom: .5rem;
    margin-right: .2rem;
    margin-right: 1px;
    line-height: 30px;
	list-style: none;
	padding-left: 8px!important;
} */
.tagitem::before {
  content: none !important;
}

.tagitem.on {
  background-color: var(--Main);
  color: #fff;
}

.breadcrumbs li {
  display: inline;
}

.header.ver2 {
  position: static;
}

.topMV {
  height: 665px;
  position: relative;
  background-image: url(../img/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.topMV__inner {
  height: 665px;
  position: relative;
  background-size: cover;
}

.topMV__copy {
}

.topMV__copy-txt {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.33;
}
.topMV__copy-ttl {
  color: #fff;
  font-size: 5.6rem;
  font-weight: bold;
  margin-top: 1rem;
  line-height: 1.6;
}
.topMV__copy-ttl span {
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
  letter-spacing: 0.2rem;
  padding: 8px 12px;
  line-height: 1.1;
  display: inline-block;
}

.topMV__bnr {
  display: block;
  width: 447px;
  margin-top: 1.5rem;
}

.topMV__btn {
  display: block;
  width: 390px;
  text-align: center;
  margin: 0 auto;
  margin-top: 4rem;
}

.topMV__btn a {
  position: relative;
  display: block;
  border-radius: 4px;
  background-color: var(--Main);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 56px;
}
.topMV__btn a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/ico-calender.svg);
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -10px;
  background-size: cover;
}

.topMV__btn a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/ico-circlearrow-wh-r.svg");
  background-size: cover;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -10px;
}

.topMV__btn a:hover {
  cursor: pointer;
  opacity: 0.6;
}

.topMV__btn a.line {
  display: none;
}

.topMV__innerArea {
  width: 1020px;
  margin: 0 auto;
  height: 665px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__gnav {
}

.header__gnav-list {
  width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.header__gnav-item {
  display: inline-block;
  margin: 0;
  line-height: 50px;
}

.header__gnav-item a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.header__gnav-item a:hover {
  opacity: 0.6;
  cursor: pointer;
}

.header__linkBtn {
  display: inline-block;
}

.header__linkBtn a {
  width: 177px;
  display: inline-block;
  box-sizing: border-box;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
  background-color: var(--Main);
  color: #fff;
  border-radius: 4px;
  transition: all 0.2s;
  line-height: 48px;
  text-align: center;
}

.header__linkBtn a::before {
  content: "";
  background-image: url(https://sleep-medical.net/wp/wp-content/themes/sleep-medical-clinic-renew/assets/img/reservation_ico.svg);
  width: 28px;
  height: 28px;
  background-size: 28px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 6px;
  margin-top: -11px;
}

.header__linkBtn a:hover {
  opacity: 0.6;
}

a.line {
  background-color: #06c766;
}
a.line::before {
  margin-top: 0px;
  top: 8px;
  background-image: url(https://sleep-medical.net/wp/wp-content/themes/sleep-medical-clinic-renew/assets/img/icon-line.svg);
}

.pageArchive__category-bottom {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
}

.topClinic13 {
  margin-top: 3.6em;
}
.topNayami {
  background-color: #f0f4f8;
  padding: 0 !important;
}
.topNayami__inner {
  background-image: url(../img/topContentsnayami-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 200px;
}

.topNayami__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.topNayami__icons li {
  background-color: #fff;
  width: 95px;
  min-width: 95px;
  height: 95px;
  border-radius: 100px;
  text-align: center;
  color: var(--Main);
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  line-height: 95px;
  transform: rotate(-25deg);
}

.topNayami__ttl {
  text-align: center;
  color: #fff;
  font-family: initial;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-size: 4rem;
  margin-top: 3.2rem;
}
.topNayami__list {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 532px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 56px;
}
.topNayami__list li {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  justify-content: center;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-left: 40px;
}
.topNayami__list li + li {
  margin-top: 12px;
}
.topNayami__list li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/ico-check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 16px;
  position: absolute;
  left: 0;
  top: 6px;
}
.topNayami__list .color {
  color: var(--Point);
  font-weight: bold;
}
.topSolution {
  background-color: #f1f5f8;
  position: relative;
}
.topSolution__catch {
  width: 442px;
  height: 142px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -160px;
  z-index: 2;
}
.topSolution__wrap {
  display: flex;
  max-width: 807px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  gap: 2rem;
}
.topSolution__mainimg {
  width: 267px;
  max-width: 19vw;
}
.topSolution__desc {
  padding-top: 52px;
}
.topSolution__desc-ttl {
  font-size: 3.2rem;
}
.topSolution__desc-catch {
  color: var(--Text_red);
  margin-top: 20px;
  font-size: 5.4rem;
  letter-spacing: 0.04em;
}
.topSolution__desc-catch .sm {
  font-size: 4rem;
}
.topSolution__desc-txt {
  line-height: 2;
  margin-top: 2.2rem;
  letter-spacing: 0.1em;
}
.topContents section.topLinks {
  background: linear-gradient(to bottom, #4ea5b0, #25927f);
  padding: 4.8rem 0;
}
.topLinks__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 540px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.topLinks__list li {
  background-color: #ddeeef;
  border-radius: 8px;
  max-width: 175px;
  height: 63px;
}
.topLinks__list li a {
  color: var(--Main);
  font-weight: bold;
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: ease 0.2s;
}
.topLinks__list li a:hover {
  opacity: 0.7;
}
.topLinks__list li a::after {
  content: "";
  display: block;
  background-image: url(../img/ico-arrow-bl-r.svg);
  width: 8px;
  height: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.pageArchive_category {
  margin-bottom: 24px;
  margin-top: 24px;
}

/*  2024/10/28 */

.topClinic__area {
  text-align: right;
}

.topClinic__area::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.topClinic details {
  margin-top: 12px;
  text-align: left;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 1px 1px 3px #ccc;
  padding: 32px 44px;
  box-sizing: border-box;
  position: relative;
  background-color: #ddeeef;
  cursor: pointer;
}

.topClinic summary {
  color: var(--Main);
  font-size: 18px;
  font-weight: bold;
}

.topClinic summary::marker {
  content: none;
}

.topClinic details summary::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/ico-plus-bl.svg);
  background-size: 24px;
  display: inline-block;
  position: absolute;
  right: 32px;
  top: 32px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all ease 0.2s;
}

.topClinic details[open] summary::after {
  background-image: url(../img/ico-minus-bl.svg);
}

.topClinic details ul {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.topClinic details ul li a {
  color: var(--Main);
  font-weight: bold;
  padding: 2rem 2.4rem;
  display: block;
  width: 100%;
  height: 100%;
  transition: all ease 0.2s;
}
.topClinic details ul li a:hover {
  opacity: 0.7;
}
.topClinic details ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 196px;
  background-color: #fff;
  border-radius: 4px;
  height: 64px;
  position: relative;
  box-shadow: 1px 1px 3px #ccc;
}

.topClinic details ul li::before {
  content: "";
  background-size: 9px;
  background-repeat: no-repeat;
  width: 9px;
  height: 9px;
  background-image: url(../img/ico-arrow-bl-r.svg);
  display: block;
  right: 16px;
  position: absolute;
}

.TopColumn {
  margin-top: 120px;
  margin-bottom: 100px;
}

.TopColumn h2 {
  text-align: center;
}

.TopColumn__box {
  display: grid;
  gap: 15px;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr;
}
.TopColumn__box img {
  margin-bottom: 2rem;
  object-fit: cover;
  width: 320px;
  height: 198px;
}
.TopColumn__box a {
  color: inherit;
}

.TopColumn__box a:hover {
  opacity: 0.6;
  cursor: pointer;
}

/* 追記 */
.header__fixed.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
}

img.table__ico {
  width: 32px;
  display: block;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
}

.cm__jumplist {
  background: linear-gradient(to bottom, #4ea5b0, #25927f);
}
.cm__jumplist ul.jump {
  margin-top: 0;
}
ul.jump {
  display: flex;
  gap: 14px 21px;
  margin-top: 16px;
  justify-content: center;
}

ul li.jump-item::before {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px 20px;
  margin-top: 16px;
}

ul li.jump-item {
  border: 1px solid var(--Main);
  border-radius: 4px;
  list-style: none;
  margin-top: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
  background-color: #ddeeef;
  text-align: center;
  max-width: 191px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
}

ul li.jump-item::before {
  content: none !important;
}

ul li.jump-item a {
  text-decoration: none;
  color: var(--Main);
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
ul li.jump-item a:visited {
  color: var(--Main);
}
ul li.jump-item::after {
  content: "";
  background-size: 14px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  background-image: url("../img/ico-arrow-bl-r.svg");
  display: block;
  position: relative;
  right: 10px;
}

ul:not([id]) li.cm__boxlist__item {
  border: 1px solid var(--Main);
  border-radius: 4px;
  min-height: 54px;
  padding-left: 54px;
  padding-right: 16px;
  background-color: #fff;
  display: table;
  width: 100%;
  position: relative;
}

ul:not([id]) li.cm__boxlist__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: var(--Main);
  position: absolute;
  left: 32px;
  top: 50%;
}
ul:not([id]) li.cm__boxlist__item + li.cm__boxlist__item {
  margin-top: 1rem;
}

li.cm__boxlist__item p {
  display: table-cell;
  margin-top: 0;
  text-align: left;
  vertical-align: middle;
}

ul.cm__listnav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px 21px;
}

ul:not([id]) li.cm__listnav__item {
  border: 1px solid var(--Main);
  border-radius: 4px;
  min-height: 68px;
  color: var(--Main);
  list-style: none;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px;
}

ul:not([id]) li.cm__listnav__item img {
  min-width: 40px;
  max-width: 40px;
  margin-top: 0;
}

ul:not([id]) li.cm__listnav__item::before {
  content: none;
}

ul:not([id]) li.cm__boxlist__item::before {
  left: 32px;
  top: 50%;
  transform: translatey(-50%);
}

/* ==========================================================================
  当院について
  =========================================================================== */
.aboutPage__message {
  background-color: #f0f4f8;
  padding-top: 100px;
  padding-bottom: 100px;
}
p.aboutPage__message-catch {
  text-align: center;
  color: var(--Main);
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 0;
  line-height: 1.6;
}
.pageAbout .about__inner {
  max-width: 786px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.pageAbout .about__list {
  margin-top: 6.8rem;
}
.pageAbout .about__item {
  display: flex;
}
.pageAbout .about__item + .about__item {
  margin-top: 40px;
}
.pageAbout .about__img {
  max-width: 390px;
  width: 100%;
}
.pageAbout .about__img img {
  width: 390px;
  margin-top: 0;
}
.pageAbout .about__text {
  background-color: #f0f4f8;
  padding: 4rem 5rem;
  max-width: 436px;
  min-width: 436px;
  width: 100%;
  margin-top: 7rem;
  position: relative;
  z-index: 2;
  margin-left: -40px;
}
.pageAbout .about__item:nth-of-type(2) .about__text {
  margin-left: 0;
}
.pageAbout .about__item:nth-of-type(2) .about__img {
  position: relative;
  right: 40px;
}
.pageAbout .about__text h3 {
  font-weight: bold;
  border-bottom: 1px solid var(--Main);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}
.pageAbout .about__text h3 span {
  font-family: oswald;
  font-size: 3.5rem;
  color: var(--Main);
  font-weight: 400;
  letter-spacing: 0;
}
.pageAbout .aboutcommit {
  background-color: #f0f4f8;
  padding: 0 26px 100px;
  margin-top: 100px;
}
.pageAbout .aboutcommit__list {
  margin-top: 8rem;
}
.pageAbout .aboutcommit__item {
  background-color: #fff;
  display: flex;
  padding: 4.2rem 5rem;
  box-shadow: 0 0 5.24px rgba(0, 0, 0, 0.1);
}
.pageAbout .aboutcommit__item + .aboutcommit__item {
  margin-top: 30px;
}
.pageAbout .aboutcommit__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 325px;
  max-width: 100%;
}
.aboutcommit__heading {
  border-right: 1px solid var(--Main);
}
.aboutcommit__heading h3 {
  border-bottom: none;
  padding-right: 4.5rem;
  width: 100%;
  margin-top: 0 !important;
  font-size: 2.4rem;
  letter-spacing: 0;
  padding-bottom: 0;
}

.aboutcommit__number {
  font-family: oswald;
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--Main);
}
.aboutcommit__content {
  padding-left: 4.5rem;
}
.aboutcommit__content a {
  position: relative;
  text-decoration: underline;
  color: var(--Main);
  display: flex;
  align-items: center;
  margin-top: 3px;
  gap: 5px;
}

.aboutcommit__content a::before {
  content: "";
  display: block;
  background-image: url(../img/ico-arrow-circle-bl-r.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}

/* クリニック概要 */
.aboutPage__clinic {
  padding: 0 80px;
}

.aboutPage__clinic-wrap:nth-child(n + 2) {
  margin-top: 72px;
}

.aboutPage__clinic-item {
  line-height: 1.5;
  display: flex;
  gap: 80px;
}

.aboutPage__clinic-item:nth-of-type(n + 2) {
  margin-top: 32px;
}

.aboutPage__clinic dt {
  font-weight: bold;
  text-align: right;
  width: 6em;
  flex-shrink: 0;
}

.aboutPage__clinic dd a {
  color: var(--Text);
  text-decoration: none;
}

.aboutPage__clinic-name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

/* .aboutPage__clinic-name + * {
  margin-top: 32px;
} */

.aboutPage__clinic hr {
  background-color: var(--gray);
  margin: 56px 0;
}

.aboutPage__clinic-map {
  position: relative;
  height: 320px;
  overflow: hidden;
  margin-top: 12px;
}

.aboutPage__clinic-map iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
  レーザー治療について
  =========================================================================== */
.featurePage__summary-txt {
  padding: 0 48px;
  margin: 32px auto 0;
}

.featurePage__summary > img {
  display: block;
  margin: 40px auto 0;
}

.featurePage__detail {
  margin-top: 74px;
}

.featurePage__detail-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.featurePage__detail-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.featurePage__detail-item:nth-child(n + 2) {
  margin-top: 64px;
}

.featurePage__detail-item > img {
  width: 325px;
  height: 229px;
  object-fit: cover;
  flex-shrink: 0;
}

.featurePage__detail-heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  color: var(--Main);
}

.featurePage__detail-txt {
  line-height: 1.75;
  margin-top: 12px;
}

/* ==========================================================================
  お知らせ
  =========================================================================== */
.newsPage__inner {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.newsPage__contents-item {
  line-height: 1.5;
  border-bottom: 1px solid #d3d3d3;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  padding-bottom: 2.8rem;
}
.newsPage__contents-item + .newsPage__contents-item {
  margin-top: 2.8rem;
}
.newsPage__contents-item:hover dt,
.newsPage__contents-item:hover dd {
  opacity: 0.6;
}

.newsPage__contents-item dt {
  font-family: oswald;
  color: var(--Main);
  font-size: 1.8rem;
  font-weight: 400;
  flex-shrink: 0;
}

.newsPage__contents-item dd {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: left;
  margin-top: 10px;
}

.newsPage__contents-item a {
  color: var(--Text);
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  z-index: 1;
}

.newsPage__contents-item a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/ico-arrow-circle-bl-r.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 30px;
}
/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 58px;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.pagination a {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--Main);
  transition: all 0.2s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination__left {
  display: inline-flex;
  justify-content: flex-start;
  width: 50px;
  height: 50px;
  position: relative;
  right: 28px;
}

.pagination__right {
  display: inline-flex;
  justify-content: flex-end;
  width: 50px;
  height: 50px;
  position: relative;
  left: 28px;
}

.pagination__prev,
.pagination__next {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination__prev::before {
  content: "";
  background-image: url(../img/ico-arrow-circle-bl-r.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 50px;
  height: 50px;
  transform: rotate(180deg);
}

.pagination__next::after {
  content: "";
  background-image: url(../img/ico-arrow-circle-bl-r.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 50px;
  height: 50px;
}

.pagination__link--num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--Main);
  border-radius: 8px;
  color: var(--Main);
  line-height: 50px;
}

.pagination .current {
  border: 1px solid var(--Main);
  display: block;
  text-align: center;
  background-color: var(--Main);
  color: #fff;
}

.pageClinic .topContents__h2::after {
  content: none;
}

.pageClinic.topClinic details ul a {
  color: var(--Main) !important;
  text-decoration: none;
}

.pageClinic.topClinic details ul li {
  margin-top: 0 !important;
}

.pageClinic.topClinic details ul li::before {
  content: "";
  background-size: 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background: none;
  border-radius: initial;
  background-image: url(../img/ico-arrow-bl-dw.svg);
  display: block;
  transform: rotate(-90deg);
  top: initial;
}

.pageClinic h2 {
  font-size: 3.2rem;
  position: relative;

  padding-top: 32px;
  padding-bottom: 16px;
  margin: 24px 0;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #333;
  border-bottom: none;
}

.pageClinic .topClinic__area {
  margin-top: -100px;
}

.pageClinic .topContents__h2::after {
  content: "";
  height: 1px;
  width: 39px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #333;
}

.clinic__about-inner {
  display: flex;
  gap: 24px;
  margin-top: 8rem;
  gap: 4.2rem;
}

.clinic__about-inner img {
  max-width: 450px;
  width: 32vw;
  margin-top: 0;
  object-fit: cover;
}

.clinic__about-inner p {
  margin-top: 0;
}
.clinic__access-txt p {
  padding: 14px 14px 20px;
  line-height: 1.5;
  margin-top: 0;
}
.clinic__reason {
  padding-bottom: 10rem;
}
.clinic__reason-wrap {
  display: flex;
  gap: 16px;
  margin-top: 6.2rem;
}

.clinic__reason-box {
  max-width: 320px;
  background-color: #fff;
  box-shadow: 0 0 5.24px rgba(0, 0, 0, 0.1);
}

.clinic__reason-box-ttl {
  padding: 0 6px;
  font-weight: bold;
  padding: 2rem 0;
  margin: 0 auto;
  font-size: 2rem;
  border-bottom: 1px solid var(--Main);
  width: calc(100% - 40px);
  line-height: 1;
  display: flex;
  align-items: center;
}
.clinic__reason-box-ttl .num {
  color: var(--Main);
  font-weight: 400;
  font-size: 3.5rem;
  font-family: oswald;
  padding-right: 11px;
}
.clinic__reason-box-desc {
  padding: 16px 24px 52px;
  position: relative;
  line-height: 1.6;
}

.clinic__reason-box img {
  margin-top: 0;
  aspect-ratio: 9 / 6;
  object-fit: cover;
  width: 320px;
}

.columnPage__contents ul:not([id]) li.clinic__accodion-item {
  padding-left: 0;
}

.columnPage__contents ul:not([id]) li.clinic__accodion-item:nth-child(n + 2) {
  margin-top: 0;
}

.clinic__accodion-kyoto02 img {
  height: 158px;
  object-fit: cover;
}

.ft24 {
  font-size: 24px;
}

.ft32 {
  font-size: 32px;
}

.ft40 {
  font-size: 40px;
}

.causeBtnLink {
  margin: 32px auto 0;
}
.causeBtnLink a > img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
.causeBtnLink__mess {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

a.causeBtnLink__btn {
  margin: 16px auto;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  background-color: var(--Main);
  display: block;
  max-width: 600px;
  line-height: 62px;
  position: relative;
}

a.causeBtnLink__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  margin-top: -10px;
  right: 30px;
  background-image: url(../assets/img/btn_arrow_ico.svg);
  width: 20px;
  height: 20px;
}

a.causeBtnLink__btn:hover {
  opacity: 0.6;
  cursor: pointer;
}

.profile {
  background-color: #f7f7f7;
  padding: 48px 0;
  width: 100vw;
  margin: 16px calc(50% - 50vw) 0;
}

img.profile__img {
  margin-top: 0;
  max-width: 240px;
  width: 17vw;
}

.profile__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.profile__detail-title {
  color: var(--Main);
  font-size: 20px;
  line-height: 1;
}

.profile__detail-name {
  font-size: 26px;
}

p.profile__detail-desc {
  padding: 14px 0;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  margin-top: 6px;
}

.fukidashi {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
}

.fukidashi__img {
  min-width: 130px;
  width: 100%;
}

.fukidashi__title {
  font-size: 13px;
  color: var(--Main);
  text-align: center;
  line-height: 1;
  margin-top: 10px;
}

.fukidashi__name {
  text-align: center;
  font-size: 16px;
}

.fukidashi__desc {
  background-color: #f7f7f7;
  border-radius: 4px;
  border: 1px solid var(--Main);
  padding: 20px 16px;
  position: relative;
}

.fukidashi__desc p {
  margin-top: 0;
}

.fukidashi__desc::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 22px solid transparent;
  margin-top: -17px;
  z-index: 2;
}

.fukidashi__desc::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  margin-top: -17px;
  border: 22px solid transparent;
}

.--imgleft .fukidashi__desc::before {
  border-left: 0;
  border-right-color: #f5f5f5;
}

.--imgleft .fukidashi__desc::after {
  border-left: 0;
  border-right-color: var(--Main);
}

.--imgright .fukidashi__desc::before {
  left: initial;
  right: -21px;
  border-left-color: #f5f5f5;
  border-right: 0;
}

.--imgright .fukidashi__desc::after {
  left: initial;
  right: -22px;
  border-left-color: var(--Main);
  border-right: 0;
}

.reservation {
  background: linear-gradient(to bottom, #4ea5b0, #14b9ce);
  color: #fff;
}

.reservation__inner {
  width: 1020px;
  margin: 0 auto;
  border-radius: 4px;
  padding: 64px 100px 267px;
  box-sizing: border-box;
  position: relative;
}

.reservation__bnr {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 336px;
}
.reservation__h2,
#reservation .reservation__h2 {
  font-size: 4rem;
  font-weight: 500;
  position: relative;
  margin: 0;
  font-weight: normal;
  text-align: center;
  letter-spacing: 3px;
  color: initial;
  border-bottom: none;
  color: #fff;
  font-weight: bold;
}

.reservation__h2::before {
  content: attr(data-en);
  color: var(--Point);
  font-size: 1.8rem;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
  font-family: oswald;
  font-weight: 400;
}

.reservation__txt {
  margin: 32px auto 0;
  line-height: 2;
  text-align: center;
}

.reservation__link {
  margin: 48px auto 0;
  text-align: center;
}

.reservation__link-item {
  display: inline-block;
  position: relative;
  margin: 0 12px;
}

.reservation__link-item a,
#reservation__link .reservation__link-item a {
  width: 339px;
  box-sizing: border-box;
  display: inline-block;
  line-height: 1;
  padding: 18px;
  box-sizing: border-box;
  font-weight: bold;
  background-color: var(--Point);
  color: #fff;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--Main);
  font-size: 15px;
}

.reservation__link-item a::before {
  content: "";
  background-image: url("../img/ico-circlearrow-wh-r.svg");
  width: 28px;
  height: 28px;
  background-size: 28px;
  display: inline-block;
  margin-right: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.reservation__link-item:nth-of-type(2) a:before {
  content: "";
  background-image: url("../img/ico-arrow-circle-bl-r.svg");
  width: 28px;
  height: 28px;
  background-size: 28px;
  display: inline-block;
  margin-right: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.reservation__link-item:nth-of-type(2) a,
#reservation__link .reservation__link-item:nth-of-type(2) a {
  border: 2px solid var(--Main);
  background-color: #fff;
  color: var(--Main);
  text-decoration: none;
}

.reservation__link-item a:hover {
  cursor: pointer;
  opacity: 0.6;
  text-decoration: none;
}

.singleContents .profile {
  margin: 16px 0;
  width: 100%;
  padding: 48px 16px;
}

/* 診断パーツ */
.shindan {
  background: #f7f7f7;
  border: 1px solid var(--Main);
  padding: 30px;
  margin-top: 24px;
}

.shindan-top {
  width: 100%;
}

.shindan-wrap {
  margin-top: 20px;
}

.columnPage__contents .shindan-ttl {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto;
  width: fit-content;
  background: linear-gradient(transparent 66%, #d3fbfe 60%);
}

.columnPage__contents .shindan-txt {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.shindan .btn-wrap {
  width: fit-content;
  margin: 36px auto 0;
}

.shindan .btn-wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e57941;
  width: 200px;
  height: 74px;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.shindan .btn-wrap button.finish {
  background-color: #5c5e65;
}

.shindan .btn-wrap button:hover {
  opacity: 0.6;
}

.shindan .btn-wrap button:disabled,
.shindan .btn-wrap button:disabled:hover {
  background: #9e9898;
  opacity: 1;
  cursor: default;
}

.faq-q .shindan-faq-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

.faq-q .shindan-faq-box + .shindan-faq-box {
  margin-top: 10px;
}

.columnPage__contents .shindan-faq-box .ttl {
  margin: 0;
}

.shindan-faq-box .ttl .num {
  font-weight: 700;
  color: var(--Main);
}

.shindan-faq-box .select-wrap {
  flex-shrink: 0;
}

.shindan-faq-box .select-wrap .select {
  padding: 8px 10px;
  background: #fff;
  border: 2px solid #d2d2d2;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.shindan-faq-box .select-wrap .select.yes {
  color: #e57941;
}

.shindan-faq-box .select.yes.is-active {
  background-color: #ffe8dc;
  border: 2px solid #e57941;
}

.shindan-faq-box .select-wrap .select.no {
  color: var(--Main);
}

.shindan-faq-box .select.no.is-active {
  background-color: var(--Light_blue);
  border: 2px solid var(--Main);
}

.shindan-faq-box.result .ttl {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.shindan .faq-a {
  display: none;
}

.postid-2549 .message-background {
  display: none;
}

.postid-2549 .video-choose-launcher {
  display: none;
}

.postid-3572 .message-background {
  display: none;
}

.postid-3572 .video-choose-launcher {
  display: none;
}

/* いびき治療について .page-about-snoring-treatment */
.page-about-snoring-treatment .cm__jumplist {
  padding: 5.4rem 2.4rem;
}
.page-about-snoring-treatment .ibitiTreatment p:first-of-type {
  margin-top: 7rem;
}
.page-about-snoring-treatment .ibitiTreatment .full_img {
  width: 100%;
}
.page-about-snoring-treatment .ibitiTreatment .full_img img {
  width: inherit;
}
.page-about-snoring-treatment .ibikiType {
  background-color: #f0f4f8;
  margin-top: 8.7rem;
  padding-bottom: 10rem;
}
.page-about-snoring-treatment .ibikiType__list {
  display: grid;
  gap: 16px 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8rem;
}
.page-about-snoring-treatment .ibikiType__list .ibikiType__item {
  background-color: #fff;
  padding: 2.4rem 3rem 3.6rem;
  box-shadow: 0 0 5.24px rgba(0, 0, 0, 0.1);
}
.ibikiType__list .ibikiType__item + .ibikiType__item {
  margin-top: 0;
}
.page-about-snoring-treatment .ibikiType__list h3 {
  border-bottom: 1px solid var(--Main);
  font-weight: bold;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 0;
  padding-bottom: 1.6rem;
}
.page-about-snoring-treatment .ibikiType__list h3 .num {
  font-weight: 400;
  color: var(--Main);
  font-family: oswald;
  letter-spacing: 0;
  font-size: 3.5rem;
  margin-right: 1.6rem;
  line-height: 1;
}
.page-about-snoring-treatment .ibikiType__list p {
  margin-top: 2rem;
  line-height: 1.9;
}
.page-about-snoring-treatment .ibikiType__list .ibikiType__item .cm__list {
  margin-top: 2rem;
}
.page-about-snoring-treatment .ibikiType__list .ibikiType__item .cm__list li {
  line-height: 1.5;
  font-size: 1.4rem;
}
.page-about-snoring-treatment .ibikiType__list .ibikiType__item .cm__list li + li {
  margin-top: 6px;
}
.page-about-snoring-treatment table.ibikiCost__table {
  margin-top: 5.8rem;
}
.page-about-snoring-treatment .ibikiAbout {
  margin-bottom: 110px;
}
.page-about-snoring-treatment .ibikiCost__comparetable {
  margin-top: 4rem;
}
.page-about-snoring-treatment .ibikiCost__comparetable table {
  border-top: none;
}
.page-about-snoring-treatment .ibikiCost__comparetable table td {
  padding: 2rem 2.4rem;
  font-size: 14px;
}
.page-about-snoring-treatment .ibikiCost__comparetable thead th:first-child {
  background-color: #fff;
  border-right: none;
  border-left: none;
}
.page-about-snoring-treatment .ibikiCost__comparetable table thead th:first-child {
  width: 158px;
}
.page-about-snoring-treatment .ibikiFlow {
  margin-top: 10rem;
  padding-bottom: 10rem;
}
.page-about-snoring-treatment .flowPage__contents {
  margin-top: 8rem;
}
.page-about-snoring-treatment .flowPage__contents-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  background-color: #fff;
  box-shadow: 1px 1px 3px #ccc;
  padding: 3.5rem 3.8rem;
}
.page-about-snoring-treatment .flowPage__contents-item .num {
  font-family: oswald;
  font-weight: 400;
  font-size: 35.4px;
  margin-right: 15px;
  display: inline-block;
}
.page-about-snoring-treatment .flowPage__contents-item:nth-child(n + 2) {
  margin-top: 3rem;
}

.page-about-snoring-treatment .flowPage__contents-item > img {
  width: 340px;
  height: 208px;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0;
}

.columnPage__contents p.flowPage__contents-heading {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  color: var(--Main);
  width: 100%;
  border-bottom: 1px solid var(--Main);
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.columnPage__contents p.flowPage__contents-txt {
  line-height: 1.75;
  margin-top: 3.2rem;
}

/* いびきのメカニズム page-mechanism */
.pageMechanism .mechanism {
  padding-bottom: 10rem;
}
.pageMechanism .mechanism .full_img {
  margin-top: 4rem;
}
.pageMechanism .sign {
  margin-bottom: 6rem;
}
.pageMechanism .sign p:first-of-type {
  margin-top: 5rem;
}
.pageMechanism .cause_img {
  margin: 10px auto;
}
.pageMechanism .causeRisk__item-list {
  display: inline-block;
}
.pageMechanism .sign .cause_imgList {
  margin: 26px auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.pageMechanism .sign .cause_imgList__item {
  color: var(--Main);
  text-align: center;
}
.pageMechanism .sign .cause_imgList__item img {
  width: 175px;
  margin-bottom: 1.4rem;
}
.pageMechanism .cm__causeBtnLink {
  margin: 32px auto 0;
  background: linear-gradient(to bottom, #4ea5b0, #14b9ce);
  padding: 6rem 0;
  color: #fff;
}

.pageMechanism .cm__causeBtnLink__mess {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

.pageMechanism a.cm__causeBtnLink__btn {
  margin: 4px auto 50px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  background-color: #fff;
  color: var(--Main);
  display: block;
  max-width: 340px;
  line-height: 62px;
  position: relative;
}
.pageMechanism a.cm__causeBtnLink__btn:nth-of-type(2) {
  background-color: var(--Point);
  margin-top: 16px;
  margin-bottom: 0;
}
.pageMechanism a.cm__causeBtnLink__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  right: 30px;
  background-image: url("../img/ico-arrow-circle-bl-r.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
}
.pageMechanism a.cm__causeBtnLink__btn:nth-of-type(2)::after {
  background-image: url("../img/ico-circlearrow-wh-r.svg");
}

.pageMechanism a.cm__causeBtnLink__btn:hover {
  opacity: 0.6;
  cousor: pointer;
}

.pageMechanism .risk {
  padding-bottom: 10rem;
}

.pageMechanism .causeRisk {
  margin: 26px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 26px;
}
.pageMechanism .causeRisk__item {
  background-color: #fff;
  box-shadow: 1px 1px 3px #ccc;
  padding: 8px 1.6rem 2.2rem;
}
.pageMechanism .causeRisk__item {
  display: inline-block;
}
.pageMechanism .causeRisk__item-ttl {
  text-align: center;
  display: block;
  text-align: center;
  color: var(--Main);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--Main);
}

.pageMechanism .causePage {
  padding-bottom: 10rem;
}

.causeRisk__item-img {
  display: inline-block;
  border-radius: 100px;
  background-color: #ecfcff;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  vertical-align: top;
  margin-right: 10px;
  position: relative;
}
.pageMechanism .causeRisk__item-img img {
  margin-right: auto;
  margin-left: auto;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  transform: translate(-50%, -50%);
}

.pageMechanism .causeRisk__item-listItem::before {
  content: "";
  width: 6px !important;
  height: 6px !important;
  display: inline-block;
  border-radius: 300px;
  position: absolute;
  left: 0 !important;
  top: 7px !important;
  background-color: var(--Main);
}

.pageMechanism .causeRisk__item-listItem {
  position: relative;
  padding-left: 13px;
  font-size: 14px;
  width: 150px;
  line-height: 1.6;
}
.pageMechanism .treatment__img {
  max-width: 100%;
  margin-top: 7rem;
  margin-bottom: 7.2rem;
}
.pageMechanism .treatment .cm__list {
  padding: 2.4rem;
  color: #696969;
  margin-top: 3rem;
}
.pageMechanism .treatment .cm__ctabnr {
  margin-top: 4rem;
  margin-bottom: 10rem;
}
.pageMechanism .flow {
  padding-bottom: 10rem;
}
.pageMechanism .flow__list-item {
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #999;
  position: relative;
}
.pageMechanism .flow__list {
  margin-top: 9.3rem;
  max-width: 1025px;
  margin: 9.2rem auto 5.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0 25px;
}
.pageMechanism .flow__list-flex {
  display: flex;
  gap: 13px;
}
.pageMechanism .flow__list-item {
  text-align: center;
  padding: 20px 15px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #999;
  position: relative;
}
.pageMechanism li.flow__list-item::before {
  content: "";
  position: absolute !important;
  top: 50%;
  right: -24px;
  margin-top: -24px;
  display: block;
  width: 0px !important;
  height: 0px !important;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
  background: none !important;
  left: initial;
  border-radius: 0;
}
.pageMechanism li.flow__list-item:last-of-type:before {
  content: none;
}
.pageMechanism .flow__list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -25px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 26px 0 26px 26px;
  border-color: transparent transparent transparent #ccc;
  z-index: 1;
}
.pageMechanism li.flow__list-item:last-of-type::after {
  content: none;
}
.pageMechanism .flow__list-txt {
  font-weight: bold;
  color: var(--Main);
  font-size: 2rem;
  margin-top: 2rem;
  display: inline-block;
  line-height: 1.4;
}
.pageMechanism .flow__list-item:first-of-type,
.pageMechanism .flow__list-item:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pageMechanism .flow__list-item img {
  width: 170px;
  height: 119px;
  object-fit: cover;
}
.pageMechanism .flow__list-item .step {
  display: table;
  width: 113px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  background-color: var(--Main);
  border-radius: 100px;
  font-family: oswald;
  font-size: 22px;
  line-height: 35px;
  height: 35px;
}

.pageMechanism .flow__list-item .step span {
  display: inline-block;
  padding: 0 5px;
  position: relative;
  font-size: 25px;
}

.pageMechanism .flow__list-item .itemRight {
  background-color: #f0f4f8;
  padding: 9px 12px;
  min-width: 158px;
}
.pageMechanism .flow__list-item .itemRight__ttl {
  text-align: left;
  border-bottom: 1px solid var(--Main);
  color: var(--Main);
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  width: 100%;
}
.pageMechanism .flow__list-item .itemRight__ttl + p {
  margin-top: 0;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: left;
}
/* クリニック一覧　 page-clinic-list　*/
.page-clinic-list {
  padding: 8rem 1.6rem 19.4rem;
}
.pageCliniclist__nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}
.pageCliniclist__item {
  background-color: var(--Main);
  color: #fff;
  width: 100%;
  border-radius: 8px;
  text-align: center;
  height: 63px;
  line-height: 63px;
  transform: all ease 0.2s;
}
.pageCliniclist__item:hover {
  opacity: 0.7;
}
.pageCliniclist__item a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.pageCliniclist__item a::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../img/ico-arrow-circle-wh-d.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.page-clinic-list .area__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 3.5rem;
  margin-top: 163px;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--Main);
}
.pageCliniclist__contents {
  margin-top: 3.6rem;
}
.pageCliniclist__contents-item {
  background-color: #fff;
  padding: 4.3rem 5rem;
  gap: 6rem;
}
.pageCliniclist__contents-item + .pageCliniclist__contents-item {
  margin-top: 4rem;
}
.pageCliniclist__contents-item {
  display: flex;
  box-shadow: 1px 1px 3px #ccc;
}
.pageCliniclist__contents-item .thumb img {
  width: 340px;
    height: 210px;
}
.page-clinic-list .information {
  width: 100%;
}
.page-clinic-list .information .clinic__name {
  color: var(--Main);
  font-weight: 400;
  font-size: 2rem;
  border-bottom: 1px solid var(--Main);
  padding-bottom: 11px;
}
.page-clinic-list .information .clinic__address {
  margin-top: 2rem;
}
.page-clinic-list .information .clinic__station {
  margin-top: 1.6rem;
}
.page-clinic-list .information .clinic__img {
  width: 340px;
  height: 210px;
}
.page-clinic-list .information .cm__list {
  font-size: 1.4rem;
  color: #696969;
}
.page-clinic-list .information .cm__list li {
  line-height: 1.7;
}
.page-clinic-list .information .cm__btn {
  margin-top: 2.4rem;
  margin-left: 0;
}

/* クリニック詳細ページ */
.singleClinic .pageContents__ttl {
  gap: 4px;
}

.singleClinic .pageContents__ttl-h1:has(> span) {
  line-height: 1.6;
  padding: 0;
}
.singleClinic .pageContents__ttl-h1 {
  background: none;
}
.singleClinic .pageContents__ttl-h1 span {
  padding: 8px 20px;
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
}
.singleClinic .pageContents__ttl-h1 span:first-of-type {
  font-size: 3.8rem;
}

.singleClinic__thumbnail {
  padding-top: 10rem;
}
.singleClinic__thumbnail img {
  margin-top: 0;
  width: 100%;
}
.clinic__desc {
  padding: 3rem 2rem 10rem;
}
.clinic__hospital-list {
    padding: 20px;
    box-sizing: border-box;
    margin: 20px auto 0;
    display: grid;
    text-align: center;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .clinic__hospital-item img {
    width: 100%;
    vertical-align: bottom;
  }
.clinic__info {
  padding-bottom: 10rem;
}

.clinic__info-table tbody th {
  color: var(--Main);
}
.clinic__access {
  padding-bottom: 10rem;
}

.clinic__way-list {
  display: grid;
  gap: 25px 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.clinic__way-item {
  width: 240px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.clinic__way-item:nth-of-type(4n)::after {
  display: none;
}

.clinic__way-item:last-of-type::after {
  display: none;
}

.clinic__way-item .num {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  text-align: center;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background: #20a3af;
  font-family: oswald;
  z-index: 100;
  font-size: 3.5rem;
}

.clinic__way-item img {
  position: relative;
  width: 100%;
  position: relative;
  z-index: 90;
  width: 100%;
  margin-top: 0;
  height: 154px;
  object-fit: cover;
  margin-top: 0;
}

.clinic__about {
  padding-bottom: 10rem;
}

.clinic__about .cm__btn {
  margin-left: 0;
  margin-right: 0;
}
.pageContents__container.clinicDetailPage h2 {
  position: relative;
  padding-left: 30px;
}

.clinic__flow-inner h2::before,
.pageContents__container.clinicDetailPage h2::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_check_greeb.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
}

.clinic__desc {
  margin: 0 auto;
}

.clinic__desc img {
  width: 100%;
  vertical-align: bottom;
}

.clinic__desc-txt {
  margin: 0 auto;
  text-align: left;
}
.clinic__desc-txt p:first-of-type {
  margin-top: 0 !important;
}

.clinic__desc-txt p + p {
  margin-top: 10px;
}

.clinic__info {
  width: 100%;
  margin: 0 auto;
}

.clinic__info-tableFrame {
  box-shadow: 0px 0px 5px #ccc;
  background: #fff;
  padding: 0 32px;
  box-sizing: border-box;
  margin-top: 6rem;
}

.clinic__info-table {
  width: 100%;
  margin: 0 auto;
}

.clinic__info-table {
  border-collapse: collapse;
  /* 隙間なくセルを寄せる */
}

.clinic__info-table tbody tr {
  border-bottom: 1px solid #ccc !important;
}

.clinic__info-table tbody tr:last-child {
  border-bottom: none !important;
}

.clinic__info-table tbody th {
  font-weight: bold;
  padding: 30px;
  box-sizing: border-box;
  vertical-align: top;
  text-align: center;
  min-width: 150px;
  font-size: 16px;
}

.clinic__info-table tbody td {
  padding: 30px 0;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 16px;
}

.clinic__access-txt h3.h3 {
  font-weight: normal;
  font-size: 20px;
  position: relative;
  padding-bottom: 18px;
  line-height: 1;
  border-bottom: none;
}

.clinic__access-txt h3.h3::before {
  content: "";
  width: 39px;
  height: 1px;
  border-bottom: 1px solid #333;
  position: absolute;
  bottom: 1px;
  left: 1px;
}
a.clinic__access-link {
  margin-top: 50px;
  display: inline-block;
  padding: 0;
  text-decoration: none;
  font-family: var(--mincho-font);
  font-size: 1.8rem;
  color: #333;
  position: relative;
  transition: all 0.2s;
}
.clinic__access-map {
  margin-top: 3rem;
}
.clinic__access-map a.clinic__access-link {
  display: none;
}

a.clinic__access-link:after {
  content: "";
  width: 64px;
  height: 12px;
  background-image: url(../img/morelink_ico.svg);
  position: absolute;
  right: -30px;
  bottom: -2px;
  background-size: 64px 12px;
}
.singleClinic .flowPage__contents {
  margin-top: 8rem;
}
.singleClinic .clinic__flow {
  padding-bottom: 8rem;
}
.singleClinie .clinic__flow .flowPage__contents-heading {
  padding-bottom: 13px;
}
.singleClinic .clinic__flow .flowPage__contents-item {
  background-color: #f0f4f8;
  display: flex;
  padding: 3.5rem;
  gap: 37px;
  box-shadow: 1px 1px 3px #ccc;
}
.singleClinic .clinic__flow .flowPage__contents-item + .flowPage__contents-item {
  margin-top: 3rem;
}
.singleClinic .clinic__flow .flowPage__contents-item .num {
  font-family: oswald;
    font-weight: 400;
    font-size: 35px;
    margin-right: 12px;
    display: block;
}
.singleClinic .clinic__flow .flowPage__contents-item img {
  margin-top: 0;
  min-width: 340px;
max-width: 340px;
object-fit: cover;
}

/* .pageIbikisnorelase */

.pageIbikisnorelase .full__video {
  margin-top: 16px;
}
.pageIbikisnorelase .snorelase {
  padding-bottom: 10rem;
}
.pageIbikisnorelase .treatment {
  padding-bottom: 10rem;
}
.pageIbikisnorelase .treatment .full_img {
  margin-top: 5.4rem;
}
.pageIbikisnorelase .treatment .cm__cardlist {
  margin-top: 5.4rem;
}
.pageIbikisnorelase .treatment .cm__cardlist__content p {
  margin-top: 0;
}
.pageIbikisnorelase .symptoms {
  padding-bottom: 10rem;
}
.pageIbikisnorelase .symptoms h2 + p {
  text-align: center;
  margin-top: 4.8rem;
}
.pageIbikisnorelase .symptoms .cm__boxlist {
  margin-top: 5.4rem;
}
.pageIbikisnorelase .symptoms .caution {
  margin-top: 2.8rem;
  display: inline-block;
  line-height: 1;
}
.pageIbikisnorelase .types {
  padding-bottom: 10rem;
}
.pageIbikisnorelase .types p:first-of-type {
  text-align: center;
}
.pageIbikisnorelase .types .cm__listnav {
  margin-top: 4.7em;
  margin-bottom: 4.7rem;
}
.pageIbikisnorelase .types .table {
  margin-top: 4.2rem;
  border-top: none;
}
.pageIbikisnorelase .types .table td {
  background-color: #fff;
  vertical-align: top;
}
.pageIbikisnorelase .types .table thead th:first-child {
  background-color: #f0f4f8;
  width: 140px;
  border-left: none;
}
.pageIbikisnorelase .types .types__box {
  padding: 3.5rem;
  margin-top: 3rem;
}
.pageIbikisnorelase .types .types__box .num {
  color: var(--Main);
  font-family: oswald;
  font-weight: 400;
  font-size: 3.5rem;
}
.pageIbikisnorelase .types .types__box h3 {
  display: flex;
  border-bottom: 1px solid var(--Main);
  padding-bottom: 18px;
  align-items: center;
  gap: 18px;
  line-height: 1;
}
.pageIbikisnorelase .types .types__box p {
  text-align: left;
  margin-top: 1.6rem;
  line-height: 1.6;
}
.pageIbikisnorelase .price {
  padding-bottom: 10rem;
}
.pageIbikisnorelase .price table {
  margin-top: 8rem;
}
.pageIbikisnorelase .price table td:last-child {
  background-color: #fff;
}
.pageIbikisnorelase .flow {
  padding-bottom: 10rem;
}
.pageIbikisnorelase .flow__list-item {
  
}
.pageIbikisnorelase .flow__list {
  max-width: 1025px;
  margin: 9.2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0 25px;
}
.pageIbikisnorelase .flow__list-flex {
  display: flex;
  gap: 13px;
}
.pageIbikisnorelase .flow__list-item {
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #999;
  position: relative;
  text-align: center;
  padding: 20px 15px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #999;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.pageIbikisnorelase li.flow__list-item::before {
  content: "";
  position: absolute !important;
  top: 50%;
  right: -24px;
  margin-top: -24px;
  display: block;
  width: 0px !important;
  height: 0px !important;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
  background: none !important;
  left: initial;
  border-radius: 0;
}
.pageIbikisnorelase li.flow__list-item:last-of-type:before {
  content: none;
}
.pageIbikisnorelase .flow__list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -25px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 26px 0 26px 26px;
  border-color: transparent transparent transparent #999;
  z-index: 1;
}
.pageIbikisnorelase li.flow__list-item:last-of-type::after {
  content: none;
}
.pageIbikisnorelase .flow__list-txt {
  font-weight: bold;
  color: var(--Main);
  font-size: 2rem;
  margin-top: 2rem;
  display: inline-block;
  line-height: 1.4;
}
.pageIbikisnorelase .flow__list-item:first-of-type,
.pageIbikisnorelase .flow__list-item:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pageIbikisnorelase .flow__list-item img {
  width: 170px;
  height: 119px;
  object-fit: cover;
}
.pageIbikisnorelase .flow__list-item .step {
  display: table;
  width: 113px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  background-color: var(--Main);
  border-radius: 100px;
  font-family: oswald;
  font-size: 22px;
  line-height: 35px;
  height: 35px;
}

.pageIbikisnorelase .flow__list-item .step span {
  display: inline-block;
  padding: 0 5px;
  position: relative;
  font-size: 25px;
}

.pageIbikisnorelase .flow__list-item .itemRight {
  background-color: #f0f4f8;
  padding: 9px 12px;
  min-width: 158px;
}
.pageIbikisnorelase .flow__list-item .itemRight__ttl {
  text-align: left;
  border-bottom: 1px solid var(--Main);
  color: var(--Main);
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  width: 100%;
}
.pageIbikisnorelase .flow__list-item .itemRight__ttl + p {
  margin-top: 0;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: left;
}

.pageMonitor .about {
  padding-bottom: 10rem;
}
.pageMonitor .about .note {
  color: #696969;
  font-size: 14px;
  margin-top: 2.7rem;
}
.pageMonitor .about img {
  margin-top: 5rem;
}
.pageMonitor .coorperation {
  padding-bottom: 10rem;
}
.pageMonitor .coorperation h2 + p {
  margin-top: 6rem;
}
.pageMonitor .coorperation .cm__list {
  background-color: #f0f4f8;
  padding: 3rem;
  margin-top: 3rem;
}
.pageMonitor .coorperation .note {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}
.pageMonitor .coorperation img {
  max-width: 100%;
  width: 100%;
}
.pageMonitor .coorperation .cm__list li::before {
  top: 12px;
  transform: initial;
}

/* .pagePrivacy  */
.pagePrivacy {
  padding: 10rem 2.4rem;
}
.pagePrivacy h2 {
  color: var(--Main);
  border-bottom: 1px solid var(--Main);
  font-size: 2.4rem;
  text-align: left;
  padding-bottom: 2rem;
}

/* .pageCpap  */

.pageCpap .cpap {
  padding-bottom: 10rem;
}

.pageCpap .cpap .cpap__wrap {
  display: flex;
  gap: 2rem;
}
.pageCpap .cpap .cpap__wrap .cm__list {
  background-color: #fff;
  min-width: 332px;
  padding: 2rem;
  font-size: 14px;
}
.pageCpap .cpap .cpap__wrap .cm__list li::before {
  top: 12px;
  transform: none;
}
.pageCpap .plan {
  padding-bottom: 10rem;
}
.pageCpap .plan .cm__cardlist {
  margin-top: 6rem;
}
.pageCpap .plan .full_img {
  width: auto;
  text-align: center;
}
.pageCpap .plan .full_img img {
  margin-right: auto;
  margin-left: auto;
}
.pageCpap .benefits {
  padding-bottom: 10rem;
}
.pageCpap .benefits .cm__list {
  background-color: #ddeeef;
  min-width: 332px;
  padding: 2rem;
  font-size: 14px;
}
.pageCpap .benefits__wrap {
  display: flex;
  margin-top: 7rem;
  gap: 2rem;
}
.pageCpap .benefits__wrap p {
  margin-top: 0;
}
.pageCpap .plan .cm__cardlist__item {
  background-color: #fff;
}
.pageCpap .types {
  padding-bottom: 10rem;
}
.pageCpap .types h2 + p {
  text-align: center;
}
.pageCpap .types .types__list {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.pageCpap .types .types__list__item {
  background-color: #fff;
  padding: 2.2rem 3rem;
  box-shadow: 0 0 5.24px rgba(0,0,0,0.1);
}
.pageCpap .types .types__list__item h3 {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--Main);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 2rem;
}
.pageCpap .types .types__list__item .num {
  font-family: oswald;
  color: var(--Main);
  font-size: 3.5rem;
  font-weight: 400;
}
.pageCpap .types .mask_img {
  width: 250px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pageCpap .rental {
  padding-bottom: 10rem;
}
.pageCpap .rental p:first-of-type {
  margin-top: 3.2rem;
}
.pageCpap .cost {
  padding-bottom: 10rem;
}
.pageCpap .cost .table {
  border: none;
  margin-top: 6rem;
  background-color: #fff;
}
.pageCpap .cost .table thead th {
  font-weight: bold;
}
.pageCpap .cost .table th {
  font-weight: initial;
 }
.pageCpap .cost .table thead th:first-child {
  background: #f0f4f8;
  border-left: none;
}
.pageCpap .cost .table tbody th {
  color: var(--Text);
}
.pageCpap .cost .table tbody tr:first-child {
  background-color: var(--Point);
}
.pageCpap .cost .table tbody tr:nth-of-type(1) th {
  background-color: var(--Point);
}
.pageCpap .cost .table tbody tr:nth-of-type(2) th,
.pageCpap .cost .table tbody tr:nth-of-type(3) th {
  background-color: #fff;
}
.pageCpap .flow {
  padding-bottom: 10rem;
}
.pageCpap .interested {
  padding-bottom: 10rem;
}
.pageCpap .flow__list {
  margin-top: 6.4rem;
}
.pageCpap .flow__list-item {
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid #999;
  position: relative;
}
.pageCpap .flow__list-item::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -25px;
  width: 0px;
  top: auto;
  height: 0px;
  border-style: solid;
  border-width: 25px 25px 0 25px;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
  border-radius: 0;
}
.pageCpap .flow__list-item::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  top: auto;
  right: auto;
  margin: 0 0 0 -26px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 26px 0 26px;
  border-color: #999 transparent transparent transparent;
  z-index: 1;
}
.pageCpap .flow__list-item + .flow__list-item {
  margin-top: 3.5rem;
}
.pageCpap .flow__list-item:last-of-type:before,
.pageCpap .flow__list-item:last-of-type:after {
  content: none;
}
.pageCpap .flow__list-item {
  display: flex;
  align-items: center;
  padding-left: 2.4rem;
}
.pageCpap .flow__list-item .step {
  border-radius: 100px;
  background-color: var(--Main);
  color: #fff;
  min-width: 104px;
  max-width: 104px;
  text-align: center;
  height: 35px;
  display: block;
  line-height: 35px;
  font-family: oswald;
  font-weight: 400;
  font-size: 2.2rem;
  margin-right: auto;
  margin-left: auto;
}
.pageCpap .flow__list-item .step span {
  font-size: 2.5rem;
}
.pageCpap .flow__list-item .flow__list-heading {
  color: var(--Main);
  font-weight: bold;
  font-size: 2rem;
  min-width: 290px;
  max-width: 290px;
  text-align: center;
  border-right: 1px solid var(--Main);
}
.pageCpap .flow__list-item .flow__list-txt {
  padding-left: 4.5rem;
}
.pageCpap .flow__list-item .flow__list-txt {
  max-width: 360px;
}
.pageCpap .interested h2::first-line {
  font-size: 3rem;
}

.bottomBox{
		max-width:1020px;
		margin:42px auto 0;
		background-color:#f7f7f7;
		padding:42px;
		box-sizing:border-box;
		color:#696969;
		font-size:16px;
		text-align:center;
		line-height:2.0;
	}
