/* ------------------------------------------------------------------------
    title
------------------------------------------------------------------------ */
.commonTitle {
  color: #545454;
  font-size: var(--fontSize20);
  position: relative;
}

.commonTitle::after {
  background: #c6c6c6;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  z-index: -100;
}

.commonTitle span {
  background: var(--colorLightGray);
  display: inline-block;
  padding-right: calc(8px * 4);
}

.mainTitle{
  font-size: var(--fontSize36);
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: calc(8px* 2);
  text-align: center;
}

.mainSubtitle{
  color: #66a3bd;
  font-size: var(--fontSize20);
  font-weight: 500;
  letter-spacing: .05em;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 60px;
}

/* ------------------------------------------------------------------------
    mainvisual
------------------------------------------------------------------------ */
.mainvisual {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 100px);
  position: relative;
  width: 100%;
}

.mainvisualBand {
  background: rgba(248, 248, 225, .5);
  bottom: 10%;
  display: inline-block;
  left: 0;
  padding: calc(8px * 6) calc(8px * 3) calc(8px * 6) 12.6%;
  position: absolute;
	width: 65%;
}

.mainvisualBand.is-white {
  background: rgba(255, 255, 255, .5);
}

.mainvisualBand__box {
  align-items: center;
  display: flex;
}

.js-mainvisualBandBottom {
  opacity: 0;
  transform: translateY(100%);
}

.mainvisualBand__box--title {
  color: #545454;
  font-size: var(--fontSize26);
  font-weight: 500;
}

.mainvisualBand__box--word {
  color: #545454;
  line-height: 1.8;
  padding-left: 10%;
}

.mainvisualBand__box--word.is-red {
  color: var(--colorRed);
}

@media screen and (max-width: 767px) {
  .mainvisual {
    height: calc(60vh - 60px);
  }

  .mainvisualBand {
    padding: calc(8px * 3);
    width: 85%;
  }

  .mainvisualBand__box {
    align-items: baseline;
    column-gap: 5%;
    display: flex;
    flex-direction: column;
    row-gap: calc(8px * 2);
  }

  .mainvisualBand__box--word {
    line-height: 1.8;
    padding-left: 0;
  }
}

/* ------------------------------------------------------------------------
    bread
------------------------------------------------------------------------ */
.breadListArea {
  margin: 20px 0;
}

.breadList {
  display: flex;
  font-size: var(--fontSize14);
  justify-content: flex-end;
}

.breadList__item:nth-child(n+2) {
  padding-left: 20px;
  position: relative;
}

.breadList__item:nth-child(n+2)::before {
  content: ">";
  left: 5px;
  position: absolute;
  top: -2px;
}

.breadList__item a,
.breadList__item span {
  color: #545454;
}

/* ------------------------------------------------------------------------
    button
------------------------------------------------------------------------ */
.buttonOverview {
  background: #fff;
  color: var(--colorBase);
  font-size: var(--fontSize16);
  padding: calc(8px * 1) calc(8px * 8);
}

@media screen and (max-width: 767px) {
  .buttonOverview {
    background: #fff;
    color: var(--colorBase);
    font-size: var(--fontSize14);
    padding: calc(8px * 1) calc(8px * 8);
  }
}

/* ------------------------------------------------------------------------
    tablepress
------------------------------------------------------------------------ */
.tablepress {
  margin: 0 !important;
  padding: 0 !important;
}

.medicalTable__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: calc(8px * 2);
}

.medicalTable__headBox {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  max-width: 360px;
  padding: calc(8px * 1.5) 0 calc(8px * .5);
  position: relative;
  width: 100%;
}

.medicalTable__headBox--title {
  font-size: var(--fontSize22);
}

.medicalTable__headBox--title img {
  height: 30px;
  margin-right: calc(8px * 1);
  position: relative;
  top: -4px;
  width: auto;
}

.medicalTable__headBox--update {
  bottom: calc(8px * 1);
  font-size: 12px;
  position: absolute;
  right: calc(8px * 1);
}

.medicalTable__headButton a {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: calc(8px * 1.5) 0 calc(8px * .5);
  position: relative;
  width: 210px;
}

.medicalTable__headButton--title {
  color: var(--colorBase);
  font-size: var(--fontSize14);
}

.medicalTable__headButton--title img {
  height: 24px;
  margin-right: calc(8px * 1);
  position: relative;
  top: -4px;
  width: auto;
}

.medicalTable__notes {
  font-size: 14px;
  line-height: 1.5;
  margin-top: calc(8px * 2);
}

.itemTable {
  font-size: 16px;
}

.itemTable tbody {
  background: #fff;
  table-layout: fixed;
}

.itemTable tbody tr {
  border: 1px solid #ccc;
}

.itemTable tbody tr td {
  border: 1px solid #ccc;
  padding: calc(8px * 2);
  text-align: center;
  vertical-align: middle;
  width: 120px;
}

.itemTable tbody tr:nth-child(1) {
  background: #f1f1f1;
  font-size: var(--fontSize14);
}

.itemTable tbody tr:nth-child(2) td,
.itemTable tbody tr:nth-child(9) td {
  line-height: 1.5;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .medicalTable {
    overflow: hidden;
  }

  .table__scroll {
    overflow-x: auto;
  }

  .itemTable {
    width: 1000px !important;
  }

  .medicalTable__head {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: calc(8px * 3);
    row-gap: calc(8px * 3);
  }

  .medicalTable__headBox {
    max-width: 100%;
    width: 100%;
  }

  .medicalTable__headBox--title img {
    height: 24px;
    top: -2px;
  }

  .medicalTable__headButton--title img {
    height: 20px;
    top: -2px;
  }
}


/* ------------------------------------------------------------------------
    itemNavi
------------------------------------------------------------------------ */
.itemNaviType01:hover {
  opacity: .8;
}
.itemNaviType01.privateContent:hover {
  opacity: 1;
}
.itemNaviType01__thumbnail img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.itemNaviType01__box {
  background: #fff;
  border-radius: 0 0 15px 15px;
  color: var(--colorBase);
  font-size: var(--fontSize18);
  font-weight: 500;
  padding: calc(8px * 3) 0;
  text-align: center;
}
.itemNaviType01__box.private {
  color: #dcdcdc;
}
.itemNaviType02 {
  background: #fff;
  padding: calc(8px * 6) 0;
}

.itemNaviType02__title {
  font-size: var(--fontSize26);
  font-weight: 500;
  text-align: center;
}

.itemNaviType02__title img {
  height: 30px;
  margin-right: calc(8px * 2);
  position: relative;
  top: -4px;
  width: auto;
}

.itemNaviType02__word {
  font-size: var(--fontSize18);
  font-weight: 500;
  margin-top: calc(8px * 2);
  text-align: center;
  line-height: 1.7;
}

.itemNaviType02__link {
  column-gap: calc(8px * 6);
  display: flex;
  font-size: var(--fontSize18);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: calc(8px * 5);
}

.itemNaviType02__link li {
  position: relative;
}

.itemNaviType02__link li a {
  color: var(--colorBase);
}
.itemNaviType02__link--treatment::before,
.itemNaviType02__link--features::before,
.itemNaviType02__link--flow::before,
.itemNaviType02__link--qa::before {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  height: 10px;
  left: calc(-8px * 2);
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 8px;
}

.itemNaviType02__link--treatment::before {
  background: #fa83e5;
}

.itemNaviType02__link--features::before {
  background: #11945a;
}

.itemNaviType02__link--flow::before {
  background: #debe36;
}

.itemNaviType02__link--qa::before {
  background: #9f3324;
}

.itemInfo {
  background: #fff;
  column-gap: calc(8px * 6);
  display: flex;
  padding: calc(8px * 4) calc(8px * 8);
  position: relative;
  margin-bottom: 30px;
}

.itemInfo__title {
  font-size: var(--fontSize18);
  font-weight: 500;
  letter-spacing: 4px;
  padding-top: calc(8px * 3);
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}

.itemInfo__title img {
  height: 24px;
  left: -2px;
  margin-bottom: calc(8px * 3);
  position: relative;
  width: auto;
}

.itemInfoList {
  border-left: 1px solid #545454;
  padding: calc(8px * 2) 0 calc(8px * 2) calc(8px * 4);
}

.itemInfoList__post:nth-of-type(n+2) {
  margin-top: calc(8px * 3);
}

.itemInfoList__post--date {
  color: var(--colorBase);
  font-size: 16px;
  font-weight: 400;
}

.itemInfoList__post--title {
  color: var(--colorBase);
  font-size: var(--fontSize18);
  font-weight: 400;
  line-height: 1.4;
  margin-top: calc(8px * 1);
}

.itemInfoList__more {
  bottom: calc(8px * 3);
  font-size: var(--fontSize14);
  font-weight: 500;
  position: absolute;
  right: calc(8px * 3);
}

.itemInfoList__more::before {
  background: #11945a;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  height: 10px;
  left: calc(-8px * 2);
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 8px;
}

.itemInfoList__more a {
  color: var(--colorBase);
}

@media screen and (max-width: 767px) {
  .itemNaviType01__thumbnail img {
    height: 180px;
  }

  .itemNaviType01__box {
    padding: calc(8px * 2) 0;
  }

  .itemNaviType02 {
    padding: calc(8px * 4) calc(8px * 2);
  }

  .itemNaviType02__title img {
    height: 24px;
    margin-right: calc(8px * 1);
    top: -2px;
  }

  .itemNaviType02__word {
    line-height: 1.6;
  }

  .itemNaviType02__link {
    column-gap: calc(8px * 5);
    margin-top: calc(8px * 3);
  }
  .itemNaviType02__link li{
    margin-bottom: 15px;
  }

  .itemInfo {
    flex-wrap: wrap;
    padding: calc(8px * 4) calc(8px * 3);
    margin-bottom: 0;
  }

  .itemInfo__title {
    border-bottom: 1px solid #545454;
    letter-spacing: 2px;
    padding-bottom: calc(8px * 2);
    padding-top: calc(8px * 0);
    width: 100%;
    -ms-writing-mode: unset;
        writing-mode: unset;
  }

  .itemInfo__title img {
    height: 20px;
    margin-bottom: calc(8px * 0);
    margin-right: calc(8px * 1);
    top: -3px;
  }

  .itemInfoList {
    border-left: none;
    padding: calc(8px * 2) 0 calc(8px * 2) calc(8px * 0);
  }

  .itemInfoList__post:nth-of-type(n+2) {
    margin-top: calc(8px * 3);
  }

  .itemInfoList__more {
    bottom: calc(8px * 2);
    right: calc(8px * 2);
  }
}
