@charset "UTF-8";
.c-Accordion__Button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  background: transparent;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.c-ColumnList__Item + .c-ColumnList__Item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #DDDDDD;
}

.c-ColumnList__Link {
  display: grid;
  gap: 10px 40px;
  grid-template-columns: 180px 1fr;
  grid-template-rows: repeat(auto-fill, minmax(auto 1fr));
  padding-right: 60px;
  position: relative;
}

@media (max-width: 767px) {
  .c-ColumnList__Link {
    padding-right: 0;
    grid-template-columns: min(100px, 26.66vw) 1fr;
    gap: min(15px, 4vw) min(18px, 4.8vw);
  }
}

.c-ColumnList__Link::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-top: solid 1px #707070;
  border-right: solid 1px #707070;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .c-ColumnList__Link::before {
    display: none;
  }
}

.c-ColumnList__Thumbnail {
  grid-column: 1;
  grid-row: 1 / 3;
}

@media (max-width: 767px) {
  .c-ColumnList__Thumbnail {
    grid-row: 1;
  }
}

.c-ColumnList__Img {
  display: block;
  max-width: none;
}

.c-ColumnList__Headline {
  --c-columnlist--headline: $COLOR-PRIMARY-BLACK;
  grid-column: 2;
  grid-row: 1;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  position: relative;
  color: var(--c-columnlist--headline);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .c-ColumnList__Headline {
    width: 100%;
    padding-right: min(18px, 4.8vw);
    font-size: 3.85vw;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .c-ColumnList__Headline::before {
    content: '';
    display: block;
    width: min(10px, 2.66vw);
    height: min(10px, 2.66vw);
    border-top: solid 1px #707070;
    border-right: solid 1px #707070;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.c-ColumnList__Headline::after {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--c-columnlist--headline);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.c-ColumnList__Headline.--Yellow {
  --c-columnlist--headline: #F7CE46;
}

.c-ColumnList__Headline.--Pink {
  --c-columnlist--headline: #ED7386;
}

.c-ColumnList__Headline.--Blue {
  --c-columnlist--headline: #65ADC6;
}

@media (min-width: 1025px) {
  .c-ColumnList__Link:hover .c-ColumnList__Headline::after {
    width: 100%;
  }
}

.c-ColumnList__LeadText {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 767px) {
  .c-ColumnList__LeadText {
    grid-column: 1 / 3;
    font-size: min(14px, 3.73vw);
  }
}

.c-Box.--Preset1 {
  padding-top: 80px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .c-Box.--Preset1 {
    padding-top: min(50px, 13.33vw);
    padding-bottom: min(70px, 18.66vw);
  }
}

.c-Box.--Preset2 {
  padding-top: 60px;
  padding-bottom: 80px;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .c-Box.--Preset2 {
    padding-top: min(40px, 10.66vw);
    padding-bottom: min(40px, 10.66vw);
  }
}

.c-Box.--Preset3 {
  padding: 40px;
  border-radius: 20px;
}

.c-Box.--Gray {
  background: #F5F5F5;
}

.c-Box.--White {
  background: #fff;
}

.c-LinkBorder {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.c-LinkBorder::before {
  content: '';
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  background: #ED7386;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
}

@media (min-width: 768.1px) {
  .c-LinkBorder:hover {
    color: #ED7386;
  }
  .c-LinkBorder:hover::before {
    width: 100%;
  }
}

.c-LinkIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-LinkIcon__Icon {
  margin-right: min(5px, 1.33vw);
}

.c-LinkIcon__Icon img {
  display: block;
}

.c-LinkIcon__Icon.--Pin {
  width: 28px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .c-LinkIcon__Icon.--Pin {
    width: min(20px, 5.33vw);
  }
}

.c-LinkIcon__Text {
  -ms-flex-item-align: center;
  align-self: center;
  font-weight: bold;
  position: relative;
}

.c-LinkIcon__Text::before {
  content: '';
  display: block;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #24272A;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media (max-width: 767px) {
  .c-LinkIcon__Text {
    font-size: min(14px, 3.73vw);
  }
}

@media (min-width: 1025px) {
  .c-LinkIcon:hover .c-LinkIcon__Text::before {
    width: 100%;
  }
}

.c-ListAccess__Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-ListAccess__Item + .c-ListAccess__Item {
  margin-top: min(10px, 2.66vw);
}

.c-ListAccess__Icon {
  width: 28px;
  margin-right: min(10px, 2.66vw);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .c-ListAccess__Icon {
    width: min(34px, 9.06vw);
  }
}

.c-ListAccess__Text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 18px;
}

@media (max-width: 767px) {
  .c-ListAccess__Text {
    font-size: min(14px, 3.73vw);
  }
}

.c-Accordion__Button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  font-size: 22px;
  width: 100%;
}

@media (max-width: 767px) {
  .c-Accordion__Button {
    font-size: min(19px, 5.06vw);
    min-height: min(60px, 16vw);
  }
  .c-Accordion__Button.is_SpS {
    font-size: min(16px, 4.26vw);
  }
  .c-Accordion__Button.is_Splh {
    line-height: 1.3;
  }
}

.c-Accordion__Button.--Pink::before, .c-Accordion__Button.--Pink::after {
  background: #ED7386;
}

.c-Accordion__Button.--Blue::before, .c-Accordion__Button.--Blue::after {
  background: #65ADC6;
}

.c-Accordion__Button.--Active::after {
  display: none;
}

.c-Accordion__Button::before, .c-Accordion__Button::after {
  content: '';
  width: 18px;
  height: 2px;
  position: absolute;
  right: 30px;
  top: calc(50% - 1px);
}

@media (max-width: 767px) {
  .c-Accordion__Button::before, .c-Accordion__Button::after {
    width: min(18px, 4.8vw);
    right: min(15px, 4vw);
  }
}

.c-Accordion__Button::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-Accordion__Body {
  display: none;
}

.c-Accordion__Inner {
  padding-bottom: 50px;
  padding-top: min(10px, 2.66vw);
}

.c-Accordion__Inner.--Max900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .c-Accordion__Inner {
    padding-bottom: min(40px, 10.66vw);
  }
}

.c-ListPrice {
  border-bottom: solid 1px var(--p-list-price--border-color, #24272A);
}

.c-ListPrice.--Pink {
  --p-list-price--border-color: #ED7386;
}

.c-ListPrice.--Blue {
  --p-list-price--border-color: #65ADC6;
}

.c-ListPrice__Item {
  border-top: solid 1px var(--p-list-price--border-color, #24272A);
}

.c-TablePrice__Row {
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

@media (max-width: 767px) {
  .c-TablePrice:not(.is_SpGrid) .c-TablePrice__Row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .c-TablePrice.is_SpGrid .c-TablePrice__Row {
    gap: 2px;
  }
}

.c-TablePrice__Row + .c-TablePrice__Row {
  margin-top: 5px;
}

@media (max-width: 767px) {
  .c-TablePrice__Row + .c-TablePrice__Row {
    margin-top: min(10px, 2.66vw);
  }
  .c-TablePrice.is_SpGrid .c-TablePrice__Row + .c-TablePrice__Row {
    margin-top: min(5px, 1.33vw);
  }
}

.c-TablePrice__Data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  font-size: 18px;
}

.is_BgColorGray .c-TablePrice__Data {
  background-color: #f4f4f4;
}

@media (max-width: 767px) {
  .c-TablePrice__Data {
    font-size: min(16px, 4.26vw);
    padding: min(10px, 2.66vw) min(20px, 5.33vw);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 50px;
  }
}

.c-TablePrice:not(.is_SpGrid) .c-TablePrice__Data.--Header {
  font-weight: bold;
}

.c-TableSummary {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .c-TableSummary {
    font-size: min(16px, 4.26vw);
  }
}

.c-TableSummary:not(:first-child) {
  margin-top: 3rem;
}

.c-ButtonRound {
  --c-button-round: #888888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: min(30px, 8vw);
  padding-left: min(30px, 8vw);
  min-height: 65px;
  position: relative;
  border-radius: min(35px, 9.33vw);
  border: solid 2px var(--c-button-round);
  color: var(--c-button-round);
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-ButtonRound {
    min-height: min(55px, 14.66vw);
    font-size: min(16px, 4.26vw);
  }
}

.c-ButtonRound.--Pink {
  --c-button-round: #ED7386;
}

.c-ButtonRound.--Blue {
  --c-button-round: #65ADC6;
}

.c-ButtonRound.--Yellow {
  --c-button-round: #F7CE46;
}

.c-ButtonRound.--Green {
  --c-button-round: #4AA636;
}

.c-ButtonRound.--Pink2 {
  --c-button-round: #FF8FA0;
  color: #fff;
  background-color: #FF8FA0;
}

.c-ButtonRound.--Pink2::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (min-width: 768.1px) {
  .c-ButtonRound.--Pink2:hover {
    color: #FF8FA0;
    background-color: #fff;
  }
  .c-ButtonRound.--Pink2:hover::after {
    border-top-color: #FF8FA0;
    border-right-color: #FF8FA0;
  }
}

.c-ButtonRound.--Blue2 {
  --c-button-round: #9ADDF2;
  color: #fff;
  background-color: #9ADDF2;
}

.c-ButtonRound.--Blue2::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (min-width: 768.1px) {
  .c-ButtonRound.--Blue2:hover {
    color: #9ADDF2;
    background-color: #fff;
  }
  .c-ButtonRound.--Blue2:hover::after {
    border-top-color: #9ADDF2;
    border-right-color: #9ADDF2;
  }
}

.c-ButtonRound.--Green2 {
  --c-button-round: #4AA636;
  color: #fff;
  background-color: #4AA636;
}

.c-ButtonRound.--Green2::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (min-width: 768.1px) {
  .c-ButtonRound.--Green2:hover {
    color: #4AA636;
    background-color: #fff;
  }
  .c-ButtonRound.--Green2:hover::after {
    border-top-color: #4AA636;
    border-right-color: #4AA636;
  }
}

.c-ButtonRound.--Red {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  --c-button-round: #f65275;
  --p-icon--fill: #fff;
  color: #fff;
  background-color: #f65275;
}

.c-ButtonRound.--Red::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (min-width: 768.1px) {
  .c-ButtonRound.--Red:hover {
    --p-icon--fill: #f65275;
    color: #f65275;
    background-color: #fff;
  }
  .c-ButtonRound.--Red:hover::after {
    border-top-color: #f65275;
    border-right-color: #f65275;
  }
}

.c-ButtonRound.--Red .c-ButtonRound__Icon {
  width: 40px;
  margin-right: 14px;
}

@media (max-width: 767px) {
  .c-ButtonRound.--Red .c-ButtonRound__Icon {
    width: 30px;
  }
}

.c-ButtonRound.--Red .c-ButtonRound__Icon img {
  display: block;
  max-width: none;
}

.c-ButtonRound::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: solid 2px var(--c-button-round);
  border-right: solid 2px var(--c-button-round);
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

@media (max-width: 767px) {
  .c-ButtonRound::after {
    width: min(10px, 2.66vw);
    height: min(10px, 2.66vw);
    right: min(20px, 5.33vw);
  }
}

@media (min-width: 768.1px) {
  .c-ButtonRound:hover {
    background: var(--c-button-round);
    color: #fff;
  }
  .c-ButtonRound:hover::after {
    border-color: #fff;
  }
}

.c-ButtonRound__Small {
  font-size: 14px;
}

.c-ButtonRoundCorner {
  --c-button-round: #888888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: min(30px, 8vw);
  padding-left: min(30px, 8vw);
  min-height: 50px;
  max-width: 280px;
  position: relative;
  border-radius: min(5px, 1.33vw);
  border: solid 2px var(--c-button-round);
  color: var(--c-button-round);
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-ButtonRoundCorner {
    min-height: min(50px, 13.33vw);
    font-size: min(16px, 4.26vw);
    max-width: 100%;
  }
}

.c-ButtonRoundCorner.--Green {
  --c-button-round: #4AA636;
}

.c-ButtonRoundCorner.--Green2 {
  --c-button-round: #4AA636;
  color: #fff;
  background-color: #4AA636;
}

.c-ButtonRoundCorner.--Green2::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (min-width: 768.1px) {
  .c-ButtonRoundCorner.--Green2:hover {
    color: #4AA636;
    background-color: #fff;
  }
  .c-ButtonRoundCorner.--Green2:hover::after {
    border-top-color: #4AA636;
    border-right-color: #4AA636;
  }
}

.c-ButtonRoundCorner.--Center2 {
  padding-left: min(40px, 10.66vw);
}

.c-ButtonRoundCorner_icon-pen {
  display: inline;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  background: url("/_materials/images/common/icon/icon_pen2_white.svg") no-repeat center center;
  background-size: contain;
}

.c-ButtonRoundCorner::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: solid 2px var(--c-button-round);
  border-right: solid 2px var(--c-button-round);
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

@media (max-width: 767px) {
  .c-ButtonRoundCorner::after {
    width: min(10px, 2.66vw);
    height: min(10px, 2.66vw);
    right: min(20px, 5.33vw);
  }
}

.c-ButtonRoundCorner.--NoArrow::after {
  display: none;
}

@media (min-width: 768.1px) {
  .c-ButtonRoundCorner:hover {
    background: var(--c-button-round);
    color: #fff;
  }
  .c-ButtonRoundCorner:hover::after {
    border-color: #fff;
  }
  .c-ButtonRoundCorner:hover .c-ButtonRoundCorner_icon-pen {
    background: url("/_materials/images/common/icon/icon_pen2_green.svg") no-repeat center center;
    background-size: contain;
  }
}

.c-Postage {
  max-width: 590px;
  margin: 90px auto 0;
  padding: 42px 73px;
  background: #F5F5F5;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .c-Postage {
    padding: 40px 24px;
  }
}

.c-Postage__Title {
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}

.c-Postage__Detail {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .c-Postage__Detail {
    margin-top: 30px;
  }
}

.c-Postage__DetailBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .c-Postage__DetailBox {
    padding-right: 0px;
    padding-left: 20px;
  }
}

.c-Postage__DetailTitle {
  width: 50%;
  color: #f65275;
  font-size: 18px;
  font-weight: 600;
}

.c-Postage__DetailText {
  width: 50%;
}

@media (max-width: 767px) {
  .c-Postage__DetailText {
    font-size: 16px;
  }
}

main {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #4D4E53;
}

@media (min-width: 768.1px) {
  .p-Visible--768 {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .p-Hidden--768 {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .p-Visible--1200 {
    display: none !important;
  }
}

@media (max-width: 1199.9px) {
  .p-Hidden--1200 {
    display: none !important;
  }
}

.p-HeadlineBorder {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-HeadlineBorder {
    font-size: 5.77778vw;
  }
}

.p-HeadlineBorder::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(165deg, #FF8FA0 50%, #B7D6E1 90%, #B7D6E1);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-HeadlineBorder::after {
    width: 17.77778vw;
    margin-top: 3.33333vw;
  }
}

.p-HeadlineBorder_small {
  font-size: 16px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-HeadlineBorder_small {
    font-size: 3.11111vw;
    font-weight: 500;
  }
}

.p-HeadlineBorder.--Margin {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-HeadlineBorder.--Margin {
    margin-bottom: 6.66667vw;
  }
}

.p-Section {
  padding-top: 77px;
}

@media screen and (max-width: 768px) {
  .p-Section {
    padding-top: 8.88889vw;
  }
}

.p-Section_inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .p-Section_inner {
    margin: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-Section_inner {
    margin: 0 5.11111vw;
  }
}

.p-Section_inner.is-950 {
  max-width: 950px;
  margin: 0 auto;
}

@media (min-width: 1030.1px) and (max-width: 1199px) {
  .p-Section_inner.is-950 {
    margin: 0 auto;
  }
}

@media (max-width: 1030px) {
  .p-Section_inner.is-950 {
    margin: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-Section_inner.is-950 {
    margin: 0 5.11111vw;
  }
}

.p-text {
  font-size: 18px;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .p-text {
    font-size: 3.33333vw;
  }
}

.p-text.is-center {
  text-align: center;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-text.is-center {
    text-align: left;
  }
}

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

@media screen and (max-width: 768px) {
  .p-text.is-sp-center {
    text-align: center;
  }
}

.p-Mainvisual {
  background-color: #FFEBED;
}

.p-Mainvisual__Layer {
  position: relative;
  width: 100%;
  height: 803px;
  background: url(/_materials/images/diet/mv_bg.jpg) no-repeat center center;
  background-size: cover;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-Mainvisual__Layer {
    height: 75vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Layer {
    height: 104vw;
    background: url(/_materials/images/diet/mv_bg--sp.jpg) no-repeat center top;
    background-size: contain;
  }
}

.p-Mainvisual__Layer h1 {
  display: none;
}

.p-Mainvisual__Layer_inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.p-Mainvisual__Layer_title {
  position: absolute;
  width: 747px;
  top: 24px;
  left: 101px;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-Mainvisual__Layer_title {
    width: 62.25vw;
    top: 2vw;
    left: 0vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Layer_title {
    width: 89.88889vw;
    top: 5.11111vw;
    left: -1.33333vw;
  }
}

.p-Mainvisual__Info {
  position: absolute;
  background-color: #fff;
  width: 1080px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .p-Mainvisual__Info {
    bottom: 91px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-Mainvisual__Info {
    max-width: 90vw;
    bottom: 7.58333vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Info {
    position: relative;
    width: 83.11111vw;
    top: 65.33333vw;
    border-radius: 2.22222vw;
  }
}

.p-Mainvisual__Info_tit {
  background-color: #1745AC;
  padding: 20px 41px 23px 38px;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Info_tit {
    padding: 2vw 7.44444vw 3.55556vw;
  }
}

.p-Mainvisual__Info_list {
  padding: 29px 0 20px 56px;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-Mainvisual__Info_list {
    padding: 2.41667vw 0 1.66667vw 4.66667vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Info_list {
    padding: 1.11111vw 0 3.55556vw 8.88889vw;
  }
}

.p-Mainvisual__Info_list_item {
  position: relative;
  font-size: 19px;
  padding: 0 38px 0 34px;
  display: inline-block;
  line-height: 1.2;
}

.p-Mainvisual__Info_list_item::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/_materials/images/diet/ico_check_lined.svg) no-repeat center center;
  background-size: contain;
  left: 0;
  top: 0;
  width: 27px;
  height: 27px;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-Mainvisual__Info_list_item {
    font-size: 1.58333vw;
    padding: 0 2.83333vw 0 2.83333vw;
  }
  .p-Mainvisual__Info_list_item::before {
    width: 2.25vw;
    height: 2.25vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Info_list_item {
    display: block;
    font-size: 3.33333vw;
    padding: 1.55556vw 0 0 6.22222vw;
    line-height: 1.6;
  }
  .p-Mainvisual__Info_list_item::before {
    top: 0.6rem;
    width: 3.77778vw;
    height: 3.77778vw;
  }
}

.p-Mainvisual__Info_list_item .is-dotted {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Info_list_item .is-dotted {
    border-bottom: dotted 2px #B2DEFF;
  }
}

.p-Mainvisual__Info_list_item .is-strong {
  font-weight: 700;
  color: #1745AC;
}

.p-Mainvisual__Info_list_annotation {
  position: relative;
  font-size: 16px;
  margin-top: 15px;
  display: block;
  text-align: center;
  line-height: 1.2;
  color: #1745AC;
  font-weight: 700;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .p-Mainvisual__Info_list_annotation {
    font-size: 1.25vw;
    margin-top: 0 1.25vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Info_list_annotation {
    text-align: left;
    font-size: 2.93333vw;
    margin-top: 3.33333vw;
    padding-left: 4vw;
  }
}

.p-Mainvisual__Btn {
  background-color: #FFEBED;
  padding-top: 54px;
  padding-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Btn {
    padding-top: 8.88889vw;
    padding-bottom: 8vw;
  }
}

.p-Mainvisual__Btn.is-second {
  padding-top: 70px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Btn.is-second {
    padding-top: 6.66667vw;
    padding-bottom: 9.33333vw;
  }
}

.p-Mainvisual__Btn_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  color: #E36074;
  letter-spacing: 0.2rem;
  font-size: 30px;
}

.p-Mainvisual__Btn_tit:before, .p-Mainvisual__Btn_tit:after {
  border-top: 2px solid #FF8FA0;
  content: "";
  width: 4rem;
}

.p-Mainvisual__Btn_tit:before {
  margin-right: 1.2rem;
}

.p-Mainvisual__Btn_tit:after {
  margin-left: 1.2rem;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Btn_tit {
    font-size: 4vw;
    letter-spacing: 0;
  }
  .p-Mainvisual__Btn_tit:before, .p-Mainvisual__Btn_tit:after {
    border-top: 1px solid #FF8FA0;
    content: "";
    width: 2rem;
  }
  .p-Mainvisual__Btn_tit:before {
    margin-right: 0.9rem;
  }
  .p-Mainvisual__Btn_tit:after {
    margin-left: 0.9rem;
  }
}

.p-Mainvisual__Btn_Column {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 864px;
  padding: 0 20px;
  margin: 35px auto 0;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Btn_Column {
    width: 90vw;
    gap: 2.66667vw;
    margin: 2.66667vw auto 0;
    font-size: 3.55556vw;
    padding: 0;
  }
}

.p-Mainvisual__Btn_Column .c-ButtonRound {
  font-size: 18px;
  min-height: 77px;
  border-radius: 77px;
}

@media screen and (max-width: 768px) {
  .p-Mainvisual__Btn_Column .c-ButtonRound {
    font-size: 3.55556vw;
    min-height: 12.44444vw;
  }
  .p-Mainvisual__Btn_Column .c-ButtonRound::after {
    right: 3.33333vw;
  }
}

.m_breadcrumb {
  background-color: #fff;
}

.p-Space {
  padding-top: 50px;
  background-color: #FFEBED;
}

@media screen and (max-width: 768px) {
  .p-Space {
    padding-top: 1rem;
  }
}

.p-Navi {
  background-color: #FFEBED;
}

.p-Navi_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  color: #E36074;
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .p-Navi_tit {
    font-size: 4vw;
  }
}

.p-Navi_tit:before, .p-Navi_tit:after {
  content: "";
  width: 25px;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .p-Navi_tit:before, .p-Navi_tit:after {
    width: 3.55556vw;
    height: 5.55556vw;
  }
}

.p-Navi_tit:before {
  margin-right: 1.5rem;
  background: url(/_materials/images/diet/ico_navi_tit_left.svg) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .p-Navi_tit:before {
    margin-right: 0.7rem;
    background: url(/_materials/images/diet/ico_navi_tit_left--sp.svg) no-repeat center center;
    background-size: contain;
  }
}

.p-Navi_tit:after {
  margin-left: 1.5rem;
  background: url(/_materials/images/diet/ico_navi_tit_right.svg) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .p-Navi_tit:after {
    margin-left: 0.7rem;
    background: url(/_materials/images/diet/ico_navi_tit_right--sp.svg) no-repeat center center;
    background-size: contain;
  }
}

.p-Navi__Column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 990px;
  padding: 0 20px 78px;
  margin: 6px auto 0;
}

@media screen and (max-width: 768px) {
  .p-Navi__Column {
    padding: 0 5.77778vw 5.77778vw;
    margin: 3.11111vw auto 0;
  }
}

.p-Navi__Column_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
  height: 99px;
  overflow: hidden;
  margin-top: 17px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Navi__Column_item {
    height: 9.66797vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Navi__Column_item {
    width: 49%;
    height: 14.22222vw;
    margin-top: 2.44444vw;
    margin-right: 0;
    margin-left: 2%;
  }
}

@media screen and (max-width: 768px) {
  .p-Navi__Column_item:nth-child(odd) {
    margin-left: 0;
  }
}

.p-Navi_anchor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding-left: 27px;
  padding-bottom: 1px;
  font-size: 22px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #FF8FA0;
  color: #4D4E53;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Navi_anchor {
    border-radius: 0.78125vw;
    padding-left: 2.63672vw;
    font-size: 2.14844vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Navi_anchor {
    font-size: 3.33333vw;
    padding-left: 3.77778vw;
  }
}

.p-Navi_anchor::after {
  content: '';
  display: block;
  position: absolute;
  background: url(/_materials/images/diet/ico_navi_link.svg) no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  .p-Navi_anchor::after {
    width: 3.11111vw;
    height: 2.66667vw;
    right: 2.22222vw;
  }
}

@media screen and (min-width: 769px) {
  .p-Navi_anchor {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .p-Navi_anchor:hover {
    background-color: #f65275;
    color: #fff;
  }
  .p-Navi_anchor:hover::after {
    background: url(/_materials/images/diet/ico_navi_link_white.svg) no-repeat center center;
    background-size: contain;
  }
}

.p-Navi_anchor ._text {
  display: table-cell;
  vertical-align: middle;
}

.p-About {
  padding-bottom: 97px;
}

@media screen and (max-width: 768px) {
  .p-About {
    padding-bottom: 9.77778vw;
  }
}

.p-About__detail_arrowbox {
  margin-top: 42px;
  position: relative;
  background: #3AA9FF;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 9px 0 14px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-About__detail_arrowbox {
    margin-top: 4.44444vw;
    font-size: 4vw;
    padding: 0.88889vw 0 1.33333vw;
  }
}

.p-About__detail_arrowbox:before {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  border-color: rgba(58, 169, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 8px;
  border-right-width: 8px;
  margin-left: -8px;
  border-top-color: #3AA9FF;
}

@media screen and (max-width: 768px) {
  .p-About__detail_arrowbox:before {
    border-top-width: 2.22222vw;
    border-bottom-width: 2.22222vw;
    border-left-width: 1.77778vw;
    border-right-width: 1.77778vw;
    margin-left: -1.77778vw;
  }
}

.p-About__detail_set1 {
  margin-top: 55px;
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2.44444vw;
    margin-bottom: 11.33333vw;
  }
}

.p-About__detail_set1_item {
  position: relative;
  width: 32.5%;
  background-color: #E6F4FF;
  padding: 47px 24px 20px;
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1_item {
    width: 100%;
    margin-top: 5.55556vw;
    padding: 2.66667vw 4vw 2.66667vw;
  }
}

.p-About__detail_set1_item.is-arrow {
  position: relative;
}

.p-About__detail_set1_item.is-arrow::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .p-About__detail_set1_item.is-arrow::after {
    background: url(/_materials/images/diet/about_ico_arrow.svg) no-repeat center center;
    background-size: contain;
    width: 57px;
    height: 45px;
    right: -33px;
    top: 48%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1_item.is-arrow::after {
    background: url(/_materials/images/diet/about_ico_arrow--sp.svg) no-repeat center center;
    background-size: contain;
    width: 8vw;
    height: 9.77778vw;
    bottom: -4.88889vw;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.p-About__detail_set1_item_num {
  position: absolute;
  width: 56px;
  top: -27px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-About__detail_set1_item_num {
    width: 5.46875vw;
    top: -2.63672vw;
  }
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1_item_num {
    width: 6.66667vw;
    top: -3.33333vw;
    left: 2.22222vw;
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
  }
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1_item_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-About__detail_set1_item_img {
  width: 140px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1_item_img {
    width: 17.77778vw;
    margin: 0;
    margin-right: 3.33333vw;
  }
}

.p-About__detail_set1_item_txt {
  font-size: 18px;
  text-align: center;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .p-About__detail_set1_item_txt {
    font-size: 1.40625vw;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-About__detail_set1_item_txt {
    font-size: 1.26761vw;
  }
}

@media screen and (min-width: 769px) {
  .p-About__detail_set1_item_txt {
    margin-top: 15px;
    height: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-About__detail_set1_item_txt {
    font-size: 4vw;
    text-align: left;
  }
  .p-About__detail_set1_item_txt.is-small {
    font-size: 3.33333vw;
  }
}

.p-About__detail_set2 {
  margin: 50px 50px 0;
}

@media screen and (max-width: 768px) {
  .p-About__detail_set2 {
    margin: 6.22222vw 11.77778vw 0;
  }
}

.p-Medicine {
  background-color: #F1F5FE;
  padding-bottom: 94px;
}

@media screen and (max-width: 768px) {
  .p-Medicine {
    padding-bottom: 6.66667vw;
  }
}

.p-Medicine__detail_set1 {
  margin-top: 52px;
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1 {
    margin-top: 6.66667vw;
  }
}

.p-Medicine__detail_set1_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  margin-top: 16px;
  padding: 17px 18px 17px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1_item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3.33333vw;
    padding: 3.55556vw 3.55556vw 3.55556vw;
  }
}

.p-Medicine__detail_set1_item_img {
  width: 147px;
  margin-right: 25px;
}

@media (max-width: 1030px) {
  .p-Medicine__detail_set1_item_img {
    width: 14.27184vw;
    margin-right: 2.42718vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1_item_img {
    width: 32.66667vw;
    margin-right: 4.22222vw;
  }
}

.p-Medicine__detail_set1_item_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1_item_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 46.44444vw;
  }
}

.p-Medicine__detail_set1_item_name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (min-width: 769px) {
  .p-Medicine__detail_set1_item_name {
    width: 166px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1030px) {
  .p-Medicine__detail_set1_item_name {
    width: 16.1165vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1_item_name {
    font-size: 3.55556vw;
    line-height: 1.25;
  }
}

.p-Medicine__detail_set1_item_name .is-small {
  display: inline;
  color: #989BAA;
  font-weight: 500;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1_item_name .is-small {
    font-size: 2.66667vw;
  }
}

.p-Medicine__detail_set1_item_name h3 {
  display: inline;
}

.p-Medicine__detail_set1_item_txt {
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .p-Medicine__detail_set1_item_txt {
    min-height: 80%;
    padding-left: 34px;
    border-left: 1px solid #DCE4F6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 542px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1030px) {
  .p-Medicine__detail_set1_item_txt {
    width: 52.62136vw;
    padding-left: 3.30097vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set1_item_txt {
    font-size: 2.88889vw;
    margin-top: 1.33333vw;
  }
}

.p-Medicine__detail_set1_item_txt_medicine {
  margin-top: 1rem;
  font-size: 84%;
  color: #989BAA;
}

.p-Medicine__detail_set1_item_txt .is-bold {
  font-weight: bold;
}

.p-Medicine__detail_set2 {
  background-color: #fff;
  margin-top: 36px;
  font-size: 15px;
  padding: 26px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-Medicine__detail_set2 {
    margin-top: 3.55556vw;
    font-size: 2.44444vw;
    padding: 3.33333vw;
    line-height: 1.55;
  }
}

.p-Price {
  padding-bottom: 130px;
}

@media screen and (max-width: 768px) {
  .p-Price {
    padding-bottom: 11.11111vw;
  }
}

.p-Price__detail {
  margin-top: 68px;
}

@media screen and (max-width: 768px) {
  .p-Price__detail {
    margin-top: 6vw;
  }
}

.p-Price__detail_s {
  margin-top: 48px;
}

@media screen and (max-width: 768px) {
  .p-Price__detail_s {
    margin-top: 5.33333vw;
  }
}

.p-Price__detail ul {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-Price__detail ul {
    margin-top: 5.11111vw;
  }
}

.p-Price__detail ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 15px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .p-Price__detail ul li {
    font-size: 2.44444vw;
    margin-top: 0vw;
  }
}

.p-PriceTable {
  width: 100%;
  border-collapse: collapse;
  color: #4D4E52;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-PriceTable {
    font-size: 2.22222vw;
  }
}

.p-PriceTable.is-blue {
  border-collapse: separate;
}

.p-PriceTable + .p-PriceTable {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-PriceTable + .p-PriceTable {
    margin-top: 3.55556vw;
  }
}

.p-PriceTable thead th:not(.p-PriceTable_Label), .p-PriceTable thead td,
.p-PriceTable tbody th:not(.p-PriceTable_Label),
.p-PriceTable tbody td {
  border: 1px solid #DDD;
  font-weight: normal;
  padding: 8px 0;
}

@media screen and (max-width: 768px) {
  .p-PriceTable thead th:not(.p-PriceTable_Label), .p-PriceTable thead td,
  .p-PriceTable tbody th:not(.p-PriceTable_Label),
  .p-PriceTable tbody td {
    padding: 0.66667vw 0;
    min-height: 6.66667vw;
  }
}

.p-PriceTable thead th:not(.p-PriceTable_Label) a, .p-PriceTable thead td a,
.p-PriceTable tbody th:not(.p-PriceTable_Label) a,
.p-PriceTable tbody td a {
  color: #4D4E52;
}

.p-PriceTable thead th:not(.p-PriceTable_Label) .is-small, .p-PriceTable thead td .is-small,
.p-PriceTable tbody th:not(.p-PriceTable_Label) .is-small,
.p-PriceTable tbody td .is-small {
  font-size: 10px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .p-PriceTable thead th:not(.p-PriceTable_Label) .is-small, .p-PriceTable thead td .is-small,
  .p-PriceTable tbody th:not(.p-PriceTable_Label) .is-small,
  .p-PriceTable tbody td .is-small {
    display: inline-block;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: left;
    transform-origin: left;
    width: 133%;
  }
}

.p-PriceTable thead th:not(.p-PriceTable_Label) {
  vertical-align: middle;
}

.p-PriceTable tbody .m-PriceTable_Header {
  background-color: #FCEBEC;
}

.p-PriceTable tbody .m-PriceTable_Header-wrapper {
  padding: 5px 0;
  font-size: 28px;
}

.p-PriceTable tbody .m-PriceTable_Header-wrapper .is_medium {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody .m-PriceTable_Header-wrapper {
    font-size: 3.55556vw;
  }
  .p-PriceTable tbody .m-PriceTable_Header-wrapper .is_medium {
    font-size: 3.11111vw;
  }
}

.p-PriceTable tbody td {
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
  width: 20.52%;
  padding: 12px 10px 13px;
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td {
    width: 25.8%;
    padding: 2.66667vw 0;
  }
}

.p-PriceTable tbody td.is-radiusLB {
  border-bottom-left-radius: 4px;
}

.p-PriceTable tbody td.is-radiusRB {
  border-bottom-right-radius: 4px;
}

.p-PriceTable tbody td.--Name1 {
  width: 38.44%;
  padding: 20px 0 20px 80px;
  padding: 20px 0 20px;
  text-align: left;
}

@media (max-width: 860px) {
  .p-PriceTable tbody td.--Name1 {
    padding: 1.95312vw 0 1.95312vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td.--Name1 {
    width: 32.8%;
    padding: 2.66667vw 1.33333vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}

@media screen and (min-width: 769px) {
  .p-PriceTable tbody td.--Name1.is-1col {
    padding-left: 20px;
  }
}

.p-PriceTable tbody td.--spec1 {
  width: 23%;
  font-size: 18px;
  border-right: none;
}

@media (max-width: 860px) {
  .p-PriceTable tbody td.--spec1 {
    font-size: 1.81818vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td.--spec1 {
    width: 33.6%;
    font-size: 3.11111vw;
  }
}

.p-PriceTable tbody td.--spec1.is-noborderTop {
  border-top: none;
}

.p-PriceTable tbody td.--Price1 {
  width: 56.56%;
  font-size: 15px;
  border-left: none;
  text-align: center;
}

.p-PriceTable tbody td.--Price1-padding {
  padding-right: 5%;
}

@media (max-width: 860px) {
  .p-PriceTable tbody td.--Price1 {
    font-size: 1.51515vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td.--Price1 {
    width: 33.6%;
    font-size: 2.22222vw;
  }
}

.p-PriceTable tbody td.--Price1.is-noborderTop {
  border-top: none;
}

.p-PriceTable tbody td.--Price1 .is-large {
  font-size: 30px;
}

@media (max-width: 860px) {
  .p-PriceTable tbody td.--Price1 .is-large {
    font-size: 3.0303vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td.--Price1 .is-large {
    font-size: 4vw;
    display: inline-block;
  }
}

.p-PriceTable tbody td.--Price1.is-1col {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td.--Price1.is-1col {
    width: 67.2%;
  }
}

.p-PriceTable tbody td.--trial {
  width: 23%;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  border-left: none;
  border-bottom: none;
  padding: 10px 10px 0;
}

@media (max-width: 824px) {
  .p-PriceTable tbody td.--trial {
    font-size: min(18px, 4.8vw);
    padding: min(8px, 2.13vw) min(8px, 2.13vw) 0;
  }
}

@media screen and (max-width: 640px) {
  .p-PriceTable tbody td.--trial {
    width: 28%;
    font-size: min(11px, 2.93vw);
    padding: min(5px, 1.33vw) min(5px, 1.33vw) 0;
  }
}

.p-PriceTable tbody td.--trial .is-label {
  background-color: #FCEBEC;
  padding: 3px 3px 4px;
}

.p-PriceTable tbody td .is_small_Gray {
  color: #A7A7A7;
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td .is_small_Gray {
    font-size: 2.44444vw;
  }
}

.p-PriceTable tbody td .is_medium {
  font-size: 20px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable tbody td .is_medium {
    font-size: 1.95312vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable tbody td .is_medium {
    font-size: 2.44444vw;
  }
}

.p-PriceTable_Label {
  background-color: #F195A0;
  color: #fff;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  padding: 12px 0 15px;
  font-size: 20px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable_Label {
    padding: 1.17188vw 0 1.46484vw;
    font-size: 1.95312vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable_Label {
    padding: 3.55556vw 0;
    font-size: 3.33333vw;
  }
}

.p-PriceTable_Label.is-blue {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 1px solid #3AA9FF;
  background-color: #3AA9FF;
}

@media screen and (max-width: 768px) {
  .p-PriceTable_Label.is-blue {
    padding: 3.11111vw 0;
    font-size: 4.44444vw;
    width: 32.8%;
  }
}

.p-PriceTable_Label.is-blue_waku {
  border: 1px solid #3AA9FF;
  border-left: none;
  background-color: #fff;
  color: #3AA9FF;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 24px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable_Label.is-blue_waku {
    font-size: 2.34375vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable_Label.is-blue_waku {
    padding: 2.22222vw 0;
    font-size: 4.66667vw;
    width: 67.2%;
    line-height: 1.2;
  }
}

.p-PriceTable_Label.is-borderR {
  border-right: 1px solid #DDD;
  width: 40%;
}

@media screen and (max-width: 768px) {
  .p-PriceTable_Label.is-borderR {
    width: auto;
  }
}

.p-PriceTable_Label .is-black {
  font-size: 28px;
  color: #333;
  margin-right: 24px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable_Label .is-black {
    font-size: 2.73438vw;
    margin-right: 2.34375vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable_Label .is-black {
    font-size: 3.55556vw;
    margin-right: 0vw;
  }
}

.p-PriceTable_Label .is-small {
  font-size: 20px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable_Label .is-small {
    font-size: 1.95312vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable_Label .is-small {
    font-size: 3.55556vw;
  }
}

.p-PriceTable .is-red {
  color: #E36074;
}

.p-PriceTable__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 77%;
  margin: 0 auto;
}

.p-PriceTable__2col.is-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .p-PriceTable__2col {
    max-width: 90%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable__2col {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable__2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-PriceTable__2col.is-center {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-PriceTable__2col h3 {
  display: inline;
}

.p-PriceTable__2col__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .p-PriceTable__2col__title {
    font-size: 1.95312vw;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable__2col__title {
    font-size: 1.75781vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable__2col__title {
    text-align: center;
    font-size: 3.11111vw;
    margin-top: 1.33333vw;
  }
}

.p-PriceTable__2col__title .is-small2 {
  display: inline-block;
  color: #989BAA;
  font-size: 16px;
  font-weight: 400;
  margin-top: 6px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable__2col__title .is-small2 {
    font-size: 1.5625vw;
    margin-top: 0.97656vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable__2col__title .is-small2 {
    text-align: center;
    font-size: 2vw;
    margin-top: 1.33333vw;
  }
}

.p-PriceTable__2col__title.is-center {
  text-align: center;
}

.p-PriceTable__2col__img {
  max-width: 164px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-PriceTable__2col__img {
    max-width: 16.01562vw;
  }
}

@media screen and (max-width: 768px) {
  .p-PriceTable__2col__img {
    max-width: 18vw;
  }
}

.p-PriceTable__1col {
  text-align: center;
}

@media (min-width: 900.1px) {
  .p-PriceTable .p-Visible--900 {
    display: none !important;
  }
}

@media (min-width: 950.1px) {
  .p-PriceTable .p-Visible--950 {
    display: none !important;
  }
}

.p-Flow {
  background-color: #FFEBED;
  padding-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .p-Flow {
    padding-bottom: 12vw;
  }
}

.p-Flow__detail {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 769px) and (max-width: 940px) {
  .p-Flow__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-Flow__detail {
    margin-top: 0vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-Flow__detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32.33%;
}

@media (min-width: 769px) and (max-width: 940px) {
  .p-Flow__detail_item {
    width: 100%;
  }
  .p-Flow__detail_item + .p-Flow__detail_item {
    margin-top: 2.76596vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Flow__detail_item {
    width: 100%;
  }
  .p-Flow__detail_item + .p-Flow__detail_item {
    margin-top: 3.55556vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents {
    margin-top: 8.88889vw;
    margin-left: -5.11111vw;
    margin-right: -5.11111vw;
  }
}

.p-Flowtab_contents_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents_head {
    width: 100%;
    padding-left: 5.11111vw;
    padding-right: 5.11111vw;
  }
}

.p-Flowtab_contents_head.is-small {
  width: 100%;
}

.p-Flowtab_contents_tab {
  display: table-cell;
  width: 49.5%;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents_tab {
    width: 48.7%;
  }
}

.p-Flowtab_contents_title {
  display: grid;
  text-align: center;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 10px 13px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 20px 20px 0 0;
  position: relative;
  border-top: 3px solid #f65275;
  border-left: 3px solid #f65275;
  border-right: 3px solid #f65275;
  background-color: #fff;
}

.p-Flowtab_contents_title.js_tabMultiBtn, .p-Flowtab_contents_title.js_tabSmallBtn {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .p-Flowtab_contents_title {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-Flowtab_contents_title:hover {
    background-color: #f65275;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents_title {
    font-size: min(16px, 4.26vw);
    padding: min(13px, 3.46vw) min(0px, 0vw) min(11px, 2.93vw);
    border-radius: min(16px, 4.26vw) min(16px, 4.26vw) 0 0;
  }
}

.p-Flowtab_contents_title.is-Disabled {
  pointer-events: none;
  border-color: gray;
  color: gray;
  cursor: default;
}

.p-Flowtab_contents_title.is_active, .p-Flowtab_contents_title.is_active2 {
  background-color: #f65275;
  color: #fff;
  cursor: default;
}

.m_pricetab_contents_wrap.is-TopPill .p-Flowtab_contents_title.is_active, .m_pricetab_contents_wrap.is-TopPill .p-Flowtab_contents_title.is_active2 {
  background-color: #9ADDF2;
  color: #fff;
}

.p-Flowtab_contents_title .is_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents_title .is_sp {
    display: block;
  }
}

.p-Flowtab_contents_body {
  border-top: 3px solid #f65275;
  overflow: hidden;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents_body {
    padding-left: 5.11111vw;
    padding-right: 5.11111vw;
  }
}

.p-Flowtab_contents_body.is_noBorder {
  border-top: none;
}

.p-Flowtab_contents_body.is-smallBody {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 768px) {
  .p-Flowtab_contents_body.is-smallBody {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-Flowtab_contents_container {
  display: none;
}

.p-Flowtab_contents_container.is_show {
  display: block !important;
  -webkit-animation: fade_in 0.3s both;
  animation: fade_in 0.3s both;
}

/*
// 診察の予約等の説明ブロック
---------------------------------------*/
.p-Flow_howto__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list {
    gap: min(20px, 5.33vw);
  }
}

.p-Flow_howto__list.is-col3 {
  gap: 15px;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list.is-col3 {
    gap: min(20px, 5.33vw);
  }
}

.p-Flow_howto__list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: calc(50% - 10px);
  padding: 40px;
  border-radius: 8px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list_item {
    padding: min(30px, 8vw);
    gap: min(20px, 5.33vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.is-col3 .p-Flow_howto__list_item {
  width: calc(33% - 10px);
}

@media screen and (max-width: 768px) {
  .is-col3 .p-Flow_howto__list_item {
    width: 100%;
  }
}

.p-Flow_howto__list_text {
  width: 53%;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list_text {
    width: 100%;
  }
}

.is-col3 .p-Flow_howto__list_text {
  width: 100%;
}

.p-Flow_howto__list_img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list_img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-Flow_howto__list_title {
  font-size: 22px;
  color: #f65275;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) and (max-width: 1160px) {
  .p-Flow_howto__list_title {
    font-size: 1.81034vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list_title {
    font-size: min(22px, 5.86vw);
  }
}

.p-Flow_howto__list_title_icon {
  display: inline-block;
  background-color: #f65275;
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
  padding: 3px 8px;
  margin-right: 12px;
}

@media screen and (min-width: 769px) and (max-width: 1160px) {
  .p-Flow_howto__list_title_icon {
    font-size: 1.46552vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list_title_icon {
    font-size: min(18px, 4.8vw);
    padding: w-min(3px) w-min(8px);
    margin-right: w-min(12px);
  }
}

.p-Flow_howto__list_annotation {
  position: relative;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
  padding-left: 1.2rem;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__list_annotation {
    font-size: min(12px, 3.2vw);
  }
}

.p-Flow_howto__list_annotation:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.p-Flow_howto__icon {
  display: inline-block;
  position: relative;
  width: 48px;
  top: 4px;
}

@media screen and (max-width: 768px) {
  .p-Flow_howto__icon {
    width: min(34px, 9.06vw);
    top: min(3px, 0.8vw);
  }
}

.p-Benefits {
  padding-bottom: 34px;
}

@media screen and (max-width: 768px) {
  .p-Benefits {
    padding-bottom: 5.33333vw;
  }
}

.p-Benefits__detail_set2, .p-Benefits__detail_set3 {
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .p-Benefits__detail_set2, .p-Benefits__detail_set3 {
    margin-top: 11.11111vw;
  }
}

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

@media screen and (max-width: 768px) {
  .p-Benefits__Column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-Benefits__Column_img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .p-Benefits__Column_img {
    width: 100%;
  }
}

.p-Benefits__Column_text {
  width: 55.5%;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Benefits__Column_text {
    font-size: 1.95312vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Benefits__Column_text {
    width: 100%;
    font-size: 3.33333vw;
    margin-top: 3.33333vw;
  }
}

.p-Benefits__Column_text ul {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-Benefits__Column_text ul {
    margin-top: 0.88889vw;
  }
}

.p-Benefits__Column_text ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  margin-top: 5px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Benefits__Column_text ul li {
    font-size: 1.36719vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Benefits__Column_text ul li {
    font-size: 2.44444vw;
    margin-top: 0vw;
  }
}

.p-Benefits__link {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .p-Benefits__link {
    margin-top: 6.66667vw;
    width: 71.11111vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-Faq {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-Faq {
    padding-bottom: 9.77778vw;
  }
}

.p-Faq__detail {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-Faq__detail {
    margin-top: 7.11111vw;
  }
}

.u-FaqList__Item {
  border: 1px solid #F195A0;
  border-radius: 8px;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .u-FaqList__Item {
    border-radius: 1.77778vw;
    margin-top: 2.66667vw;
  }
}

.p-FaqItem__Question {
  position: relative;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  width: 100%;
  padding: 25px 50px 25px 27px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-FaqItem__Question {
    font-size: 3.55556vw;
    padding: 3.33333vw 11.11111vw 3.33333vw 4.44444vw;
  }
}

@media screen and (max-width: 768px) {
  .p-FaqItem__QuestionTitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 9.33333vw;
  }
}

.p-FaqItem__Question.--Active .icon_Circle::before {
  opacity: 0;
}

.p-FaqItem__Question.--Active .icon_Circle::after {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.p-FaqItem__Question .icon_Circle {
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #F195A0;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .p-FaqItem__Question .icon_Circle {
    width: 5.11111vw;
    height: 5.11111vw;
    right: 2.88889vw;
  }
}

.p-FaqItem__Question .icon_Circle::before, .p-FaqItem__Question .icon_Circle::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 768px) {
  .p-FaqItem__Question .icon_Circle::before, .p-FaqItem__Question .icon_Circle::after {
    width: 3.11111vw;
    height: 0.44444vw;
  }
}

.p-FaqItem__Question .icon_Circle::before {
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.p-FaqItem__Question .icon_Circle::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.p-FaqItem__Answer {
  display: none;
  color: #878787;
  font-size: 15px;
  padding: 0 27px 32px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-FaqItem__Answer {
    font-size: 3.11111vw;
    padding: 0 4.44444vw 5.33333vw 4.44444vw;
  }
}

.p-FaqItem__AnswerDetails {
  padding-top: 10px;
  border-top: 1px solid #E3E3E3;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .p-FaqItem__AnswerDetails {
    padding-top: 2.22222vw;
  }
}

.p-FaqItem__AnswerDetails a.p_text_link, .p-FaqItem__AnswerDetails a.p_text_link:hover, .p-FaqItem__AnswerDetails a.p_text_link:active, .p-FaqItem__AnswerDetails a.p_text_link:visited {
  color: #6881FF;
  text-decoration: underline;
}

.p-FaqItem__AnswerDetails a.p_text_link:hover {
  text-decoration: none;
  color: #93A5FF;
}

/* .p-PillNotesList
------------------------------- */
.p-PillNotesList {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-PillNotesList {
    padding-bottom: 14.22222vw;
  }
}

.p-PillNotesList__detail {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-PillNotesList__detail {
    margin-top: 7.11111vw;
  }
}

.p-PillNotesList .wrap_in {
  border-top: 1px solid #121852;
  padding-top: calc( var(--custom-rem) * 8);
}

.p-PillNotesList .p-PillNotesList_h4 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  .p-PillNotesList .p-PillNotesList_h4 {
    font-size: 4.44444vw;
    margin-top: 8.88889vw;
    margin-bottom: 2.22222vw;
  }
}

.p-PillNotesList_table {
  width: 100%;
  margin: 15px auto 0;
  table-layout: auto;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-PillNotesList_table {
    font-size: 2.66667vw;
    margin-top: 3.33333vw;
  }
}

.p-PillNotesList_table > tbody > tr > th {
  width: 26%;
  height: 60px;
  padding: 10px 10px;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  background-color: #e7e7e7;
  border-left: 1px solid #b6b6b6;
  border-top: 1px solid #b6b6b6;
  border-bottom: 1px solid #b6b6b6;
}

.p-PillNotesList_table > tbody > tr > th:nth-child(1) {
  border-right: 1px solid #b6b6b6;
}

@media screen and (max-width: 768px) {
  .p-PillNotesList_table > tbody > tr > th {
    width: 30%;
    height: 13.33333vw;
    text-align: left;
    padding: 2.22222vw 2.22222vw;
  }
}

.p-PillNotesList_table > tbody > tr > td {
  width: 74%;
  height: 60px;
  text-align: left;
  padding: 15px 20px;
  vertical-align: middle;
  border: 1px solid #b6b6b6;
}

@media screen and (max-width: 768px) {
  .p-PillNotesList_table > tbody > tr > td {
    width: 70%;
    height: 13.33333vw;
    padding: 2.22222vw 2.22222vw;
  }
}

.p-Clinic {
  background-color: #FFF0F1;
  padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .p-Clinic {
    padding-bottom: 22.22222vw;
  }
}

.p-Clinic__balloon {
  position: relative;
  background: #F195A0;
  padding: 17px 0 19px;
  margin-top: 56px;
  margin-bottom: 30px;
  text-align: center;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06rem;
}

@media screen and (max-width: 768px) {
  .p-Clinic__balloon {
    padding: 2.88889vw 0 3.33333vw;
    margin-top: 7.11111vw;
    margin-bottom: 4.88889vw;
    font-size: 4vw;
  }
}

.p-Clinic__balloon:after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(241, 149, 160, 0);
  border-top-width: 7.5px;
  border-bottom-width: 7.5px;
  border-left-width: 9px;
  border-right-width: 9px;
  margin-left: -9px;
  border-top-color: #F195A0;
  top: 100%;
  left: 50%;
}

@media screen and (max-width: 768px) {
  .p-Clinic__balloon:after {
    border-top-width: 1.66667vw;
    border-bottom-width: 1.66667vw;
    border-left-width: 2vw;
    border-right-width: 2vw;
    margin-left: -2vw;
  }
}

.p-Clinic__box_title a {
  font-size: 20px;
  line-height: 1.9;
  font-weight: 700;
  color: #E36074 !important;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_title a {
    font-size: 4.44444vw;
  }
}

.p-Clinic__box_info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #BEBEBE;
  margin-top: 0px;
  min-height: 50px;
  padding-top: 22px;
  padding-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_info {
    grid-template-columns: 29.55556vw 61.55556vw;
    min-height: 6.22222vw;
    margin-top: 2.22222vw;
    padding-top: 2.44444vw;
    padding-bottom: 2.44444vw;
  }
}

.p-Clinic__box_info:last-of-type {
  border-bottom: none;
}

.p-Clinic__box_info dt {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_info dt {
    font-size: 3.33333vw;
  }
}

.p-Clinic__box_info dd {
  text-align: right;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  padding-right: 48px;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_info dd {
    font-size: 3.33333vw;
    padding-right: 10.22222vw;
  }
}

.p-Clinic__box_map {
  grid-column: 1;
  grid-row: 1 / 4;
  position: relative;
  margin-top: 28px;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_map {
    margin-top: 2.66667vw;
  }
}

.p-Clinic__box_map::before {
  content: '';
  display: block;
  padding-bottom: 35.78947%;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_map::before {
    padding-bottom: 56.25%;
  }
}

.p-Clinic__box_map > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-Clinic__box_address {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_address {
    font-size: 3.33333vw;
    margin-top: 4.44444vw;
  }
}

.p-Clinic__box_address__Tel {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_address__Tel {
    margin-top: min(15px, 4vw);
    width: min(335px, 89.33vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.p-Clinic__box_address__Tel__text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .p-Clinic__box_address__Tel__text {
    font-size: 3.33333vw;
    margin-top: 4.44444vw;
  }
}

.u-Tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ED7386;
}

@media screen and (max-width: 768px) {
  .u-Tel {
    position: relative;
    border: solid 2px #ED7386;
    min-height: min(55px, 14.66vw);
    border-radius: min(35px, 9.33vw);
    padding-right: min(30px, 8vw);
    padding-left: min(30px, 8vw);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .u-Tel::after {
    content: '';
    display: block;
    border-top: solid 2px #ED7386;
    border-right: solid 2px #ED7386;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    width: min(10px, 2.66vw);
    height: min(10px, 2.66vw);
    right: min(20px, 5.33vw);
  }
}

.u-Tel__Icon {
  width: min(22px, 5.86vw);
  margin-right: min(10px, 2.66vw);
  padding-bottom: min(2px, 0.53vw);
}

.u-Tel__Icon img {
  display: block;
  max-width: none;
}

.u-Tel__Number {
  font-size: min(24px, 6.4vw);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .u-Tel__Number {
    font-weight: normal;
  }
}

.l-PageTop {
  margin-top: 0px;
}

.u-ButtonSingle {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .u-ButtonSingle {
    max-width: 78.66667vw;
  }
}

.u-ButtonSingle.--Margin {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .u-ButtonSingle.--Margin {
    margin-top: 8vw;
  }
}

.u-ButtonSingle.--Margin2 {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .u-ButtonSingle.--Margin2 {
    margin-top: 10.66667vw;
  }
}

.u-ButtonMulti {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.u-ButtonMulti .c-ButtonRound {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .u-ButtonMulti {
    display: block;
  }
  .u-ButtonMulti .c-ButtonRound {
    width: 100%;
  }
  .u-ButtonMulti .c-ButtonRound + .c-ButtonRound {
    margin-top: 10px;
  }
}

.u-ButtonMulti.--Margin {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .u-ButtonMulti.--Margin {
    margin-top: 8vw;
  }
}

.u-ButtonMulti.--Margin2 {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .u-ButtonMulti.--Margin2 {
    margin-top: 10.66667vw;
  }
}

.u-ButtonBouble {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.u-ButtonBouble .c-ButtonRound {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .u-ButtonBouble {
    display: block;
  }
  .u-ButtonBouble .c-ButtonRound {
    width: 100%;
  }
  .u-ButtonBouble .c-ButtonRound + .c-ButtonRound {
    margin-top: 10px;
  }
}

.u-ButtonBouble.--Margin {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .u-ButtonBouble.--Margin {
    margin-top: 8vw;
  }
}

.u-ButtonBouble.--Margin2 {
  margin-to6p: 65px;
}

@media screen and (max-width: 768px) {
  .u-ButtonBouble.--Margin2 {
    margin-top: 10.66667vw;
  }
}

.p-Reason {
  padding-top: 82px;
  padding-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .p-Reason {
    padding-top: 9.77778vw;
    padding-bottom: 0vw;
  }
}

.p-Reason__detail {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Reason__detail {
    gap: 1.95312vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Reason__detail {
    margin-top: 2.44444vw;
    gap: 1.77778vw;
  }
}

.p-Reason__detail_item {
  position: relative;
  width: 31.8%;
  background-color: #F5F5F5;
  margin-bottom: 38px;
}

@media screen and (max-width: 768px) {
  .p-Reason__detail_item {
    margin-bottom: 3.33333vw;
  }
}

.p-Reason__detail_item_num {
  position: absolute;
  width: 56px;
  top: -27px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Reason__detail_item_num {
    width: 5.46875vw;
    top: -2.63672vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Reason__detail_item_num {
    width: 5.33333vw;
    top: -3.55556vw;
  }
}

.p-Reason__detail_item_txt {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #E36074;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .p-Reason__detail_item_txt {
    font-size: 2.34375vw;
    height: 8.59375vw;
  }
}

@media screen and (max-width: 768px) {
  .p-Reason__detail_item_txt {
    font-size: 3.33333vw;
    height: 8.44444vw;
    text-align: left;
  }
}

.p-Benefits__detail_title {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 48px;
  border-bottom: 1px solid #E36074;
}

@media screen and (max-width: 768px) {
  .p-Benefits__detail_title {
    padding-bottom: 3.55556vw;
    margin-bottom: 3.55556vw;
  }
}

.p-Benefits__detail_title_label {
  position: relative;
}

.p-Benefits__detail_title_label span {
  display: inline-block;
  position: relative;
  background: #E36074;
  color: #fff;
  padding: 4px 38px;
  font-size: 20px;
  font-weight: 500;
  border-left: 1.5rem solid #fff;
  border-right: 1.5rem solid #fff;
}

@media screen and (max-width: 768px) {
  .p-Benefits__detail_title_label span {
    background: #fff;
    color: #E36074;
    font-size: 2.88889vw;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
    padding: 0 3.55556vw;
  }
}

.p-Benefits__detail_title_label:before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  top: 1rem;
  background-color: #E36074;
  z-index: 0;
}

.p-Benefits__detail_title_txt {
  font-weight: 700;
  color: #E36074;
  font-size: 30px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .p-Benefits__detail_title_txt {
    font-size: 5.55556vw;
    margin-top: 0vw;
  }
}

.p-Benefits__detail_set1 {
  margin-top: 73px;
}

@media screen and (max-width: 768px) {
  .p-Benefits__detail_set1 {
    margin-top: 7.55556vw;
  }
}

.p-Benefits__detail_set1_tablewrap {
  margin-top: 48px;
}

@media screen and (max-width: 768px) {
  .p-Benefits__detail_set1_tablewrap {
    margin-top: 4.44444vw;
  }
}

.uq_top_banner {
  display: block;
  max-width: 100%;
  margin: 2.5rem auto 0;
}

@media (min-width: 768.1px) {
  .uq_top_banner:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .uq_top_banner {
    margin-top: 2rem;
  }
}

.u-TimeTable {
  padding: 60px 0 60px !important;
}

@media (max-width: 768px) {
  .u-TimeTable {
    padding: 40px 0 40px !important;
  }
}

.u-TimeTable__Main {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .u-TimeTable__Main {
    display: block;
  }
}

.u-TimeTable__Column {
  width: 30%;
}

@media (max-width: 768px) {
  .u-TimeTable__Column {
    width: 100%;
  }
  .u-TimeTable__Column + .u-TimeTable__Column {
    margin-top: 60px;
  }
}

.u-TimeTable__Column .u-TimeTable2 {
  gap: min(1px, 0.53vw);
  border: 1px solid #DCDDDD;
}

.u-TimeTable__Column .u-TimeTable2 li + li {
  border-top: 1px solid #DCDDDD;
}

.u-TimeTable__Column .u-TimeTable2__Week {
  background-color: #ED7386;
  font-size: 15px !important;
}

@media (max-width: 768px) {
  .u-TimeTable__Column .u-TimeTable2__Week {
    font-size: 12px !important;
  }
}

.u-TimeTable__Column .u-TimeTable2__Open {
  font-weight: normal;
}

.u-TimeTable__Area {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ED7386;
  border-bottom: 3px solid #FFABB8;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .u-TimeTable__Area {
    font-size: 22px;
  }
}

.u-TimeTable__Title {
  font-size: 31px;
  font-weight: normal;
}

.u-TimeTable__Title a {
  color: #ED7386;
  border-bottom: 1px solid #ED7386;
  display: inline-block;
}

.u-TimeTable__Title a:hover {
  border-bottom: 1px solid transparent;
}

@media (max-width: 768px) {
  .u-TimeTable__Title {
    font-size: 24px;
  }
}

.u-TimeTable__Title span.is_small {
  color: #ED7386;
  font-size: 14px;
  margin-left: 0.6em;
}

@media (max-width: 768px) {
  .u-TimeTable__Title span.is_small {
    font-size: 13px;
  }
}

.u-TimeTable__Tel {
  color: #ED7386;
  font-size: 26px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-TimeTable__Tel img {
  width: 5.86667vw;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .u-TimeTable__Tel {
    font-size: 20px;
  }
}

.u-TimeTable__Text {
  font-size: 15px;
}

@media (max-width: 768px) {
  .u-TimeTable__Text {
    font-size: 12px;
  }
}

.p-Outpatient {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .p-Outpatient {
    gap: 2.66667vw;
    margin-top: 13.33333vw;
    margin-left: -2.66667vw;
    margin-right: -2.66667vw;
  }
}

.p-Outpatient__Catch {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p-Outpatient__Catch {
    min-height: auto;
    margin-top: 4vw;
    font-size: 3.73333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.p-Outpatient__Catch.--Pink {
  color: #ED7386;
}

.p-Outpatient__Catch.--Blue {
  color: #65ADC6;
}

.p-Outpatient__Text {
  margin-top: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.8;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-Outpatient__Text {
    margin-top: 2.66667vw;
    font-size: 3.73333vw;
    text-align: left;
  }
}

.p-OutpatientCard {
  --outpatient-card--color: $COLOR-PRIMARY-BLACK;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 200px;
  color: var(--outpatient-card--color);
  -webkit-box-shadow: 0 0 0px 2px var(--outpatient-card--color) inset;
  box-shadow: 0 0 0px 2px var(--outpatient-card--color) inset;
}

@media screen and (max-width: 768px) {
  .p-OutpatientCard {
    min-height: 44vw;
  }
}

.p-OutpatientCard.--Pink {
  --outpatient-card--color: #ED7386;
  background: -webkit-gradient(linear, left top, right top, from(rgba(237, 115, 134, 0.05)), to(rgba(237, 115, 134, 0.3)));
  background: linear-gradient(to right, rgba(237, 115, 134, 0.05), rgba(237, 115, 134, 0.3));
}

.p-OutpatientCard.--Blue {
  --outpatient-card--color: #65ADC6;
  background: -webkit-gradient(linear, left top, right top, from(rgba(101, 173, 198, 0.05)), to(rgba(101, 173, 198, 0.3)));
  background: linear-gradient(to right, rgba(101, 173, 198, 0.05), rgba(101, 173, 198, 0.3));
}

@media (min-width: 768.1px) {
  .p-OutpatientCard:hover {
    -webkit-box-shadow: 0 0 0px 4px var(--outpatient-card--color) inset;
    box-shadow: 0 0 0px 4px var(--outpatient-card--color) inset;
  }
}

.p-OutpatientCard__Icon {
  width: 60px;
}

@media screen and (max-width: 768px) {
  .p-OutpatientCard__Icon {
    width: 12vw;
  }
}

.p-OutpatientCard__Name {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-OutpatientCard__Name {
    margin-top: 1.33333vw;
    font-size: 6.26667vw;
  }
}

.p-OutpatientCard__More {
  position: absolute;
  right: 25px;
  bottom: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .p-OutpatientCard__More {
    right: 50%;
    bottom: 2.66667vw;
    padding-right: 4vw;
    padding-left: 1.33333vw;
    font-size: 3.73333vw;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.p-OutpatientCard__More::before {
  content: '';
  display: block;
  width: 2.13333vw;
  height: 2.13333vw;
  border-top: solid 2px var(--outpatient-card--color);
  border-right: solid 2px var(--outpatient-card--color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.p-Online {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  margin-bottom: -1.5rem;
}

@media screen and (max-width: 768px) {
  .p-Online {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: -0.5rem;
  }
}

.p-Online__Item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22%;
  flex: 0 0 22%;
}

@media screen and (max-width: 768px) {
  .p-Online__Item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
  .p-Online__Item:nth-child(n+3) {
    margin-top: 1.75rem;
  }
}

.p-OnlineImage {
  width: 100%;
  padding-top: 100%;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

.p-OnlineImage img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .p-OnlineImage img {
    width: 55%;
  }
}

.p-OnlineTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f65275;
  font-weight: 700;
  min-height: 3em;
  margin-top: 0.75rem;
}

@media (max-width: 1023px) {
  .p-OnlineTxt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .p-OnlineTxt {
    font-size: 3.25vw;
  }
}

.u-TextLead {
  font-size: 18px;
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .u-TextLead {
    font-size: 4.26667vw;
  }
}

.u-TextLead.--Margin {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .u-TextLead.--Margin {
    margin-top: 13.33333vw;
  }
}

.u-TextLead__Strong {
  color: #ED7386;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .u-TextLead__Strong {
    font-size: inherit;
  }
}

.u-TextLead__Em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, #dbc448));
  background: linear-gradient(transparent 95%, #dbc448 95%);
}

.u-Doctor {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .u-Doctor {
    margin-top: 13.33333vw;
  }
}

.u-DoctorContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer {
    display: block;
  }
}

.u-DoctorContainer.--Margin {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer.--Margin {
    margin-top: min(70px, 18.66vw);
  }
}

.u-DoctorContainer__Photo {
  width: 300px;
  margin-right: 60px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .u-DoctorContainer__Photo {
    width: 200px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer__Photo {
    width: 50vw;
    margin: 0 auto;
  }
}

.u-DoctorContainer__Photo img {
  display: block;
  width: 100%;
  max-width: none;
  border-radius: 20px;
}

.u-DoctorContainer__Profile {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-item-align: center;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer__Profile {
    margin-top: 8vw;
  }
}

.u-DoctorContainer__NameLabel {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer__NameLabel {
    font-size: 3.2vw;
    text-align: center;
  }
}

.u-DoctorContainer__NameJp {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer__NameJp {
    font-size: 6.4vw;
    text-align: center;
  }
}

.u-DoctorContainer__NameEn {
  margin-top: 1.33333vw;
  font-size: 14px;
  color: #888888;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .u-DoctorContainer__NameEn {
    font-size: 3.46667vw;
    text-align: center;
  }
}

.u-HistoryTable {
  margin-top: 8vw;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.33333vw 5.33333vw;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .u-HistoryTable {
    font-size: 4vw;
    gap: 1.33333vw 4vw;
  }
}

.u-HistoryTable dt {
  white-space: nowrap;
}

.u-DoctorNote {
  margin-top: 1rem;
}

.u-DoctorNote__Label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.u-DoctorNote__Label:not(:first-child) {
  margin-top: 1rem;
}

.uq_inner_price {
  max-width: 990px !important;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 640px) {
  .uq_inner_price {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .uq_inner_price {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
